├── .DS_Store ├── .github └── workflows │ └── actions.yml ├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── Makefile ├── README.md ├── ansible ├── ansible.cfg ├── inventory.yml └── playbook.yml ├── api ├── Dockerfile ├── index.html └── nginx.conf ├── ci-mapswipe-firebase-adminsdk-80fzw-ebce84bd5b.json.enc ├── community-dashboard ├── .babelrc ├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github │ ├── pull_request_template.md │ └── workflows │ │ └── ci.yml ├── .gitignore ├── .unimportedrc.json ├── Dockerfile ├── README.md ├── app │ ├── Base │ │ ├── components │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── Navbar │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── Page │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── PageTitle │ │ │ │ └── index.tsx │ │ │ ├── PreloadMessage │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── Routes │ │ │ │ └── index.tsx │ │ │ └── SmartNavLink │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ ├── configs │ │ │ ├── apollo.ts │ │ │ ├── env.ts │ │ │ ├── googleAnalytics.ts │ │ │ ├── history.ts │ │ │ ├── routes.tsx │ │ │ └── sentry.ts │ │ ├── context │ │ │ └── NavbarContext.ts │ │ ├── hooks │ │ │ └── useRouteMatching.tsx │ │ ├── index.tsx │ │ ├── styles.css │ │ └── utils │ │ │ ├── common.ts │ │ │ ├── routes.tsx │ │ │ └── temporal.ts │ ├── components │ │ ├── Actions │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Calendar │ │ │ ├── CalendarDate │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── CalendarHeatMapContainer │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ContributionHeatMap │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── DateRangeInput │ │ │ ├── index.tsx │ │ │ ├── predefinedDateRange.ts │ │ │ └── styles.css │ │ ├── Element │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ElementFragments │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Footer │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── GenericOption │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Header │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Heading │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Icons │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── InformationCard │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── InputContainer │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ItemSelectInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── List.tsx │ │ ├── MemberItem │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── NumberInput │ │ │ └── index.tsx │ │ ├── NumberOutput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Page │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Pager │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── PendingMessage │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Popup │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Portal.tsx │ │ ├── RawButton │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── RawInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── SegmentInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── SelectInput │ │ │ ├── SearchSelectInput.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ └── utils.ts │ │ ├── SelectInputContainer │ │ │ ├── EmptyOptions │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ └── TextOutput │ │ │ ├── index.tsx │ │ │ └── styles.css │ ├── declarations │ │ ├── css.d.ts │ │ ├── png.d.ts │ │ └── svg.d.ts │ ├── favicon.ico │ ├── favicon.png │ ├── hooks │ │ ├── useBlurEffect.tsx │ │ ├── useBooleanState.tsx │ │ ├── useDebouncedValue.ts │ │ ├── useDocumentSize.ts │ │ ├── useInputState.tsx │ │ ├── useKeyboard.ts │ │ └── useUrlState.ts │ ├── index.html │ ├── index.tsx │ ├── resources │ │ ├── icons │ │ │ ├── android.svg │ │ │ ├── area.svg │ │ │ ├── feature.svg │ │ │ ├── group.svg │ │ │ ├── ios.svg │ │ │ ├── scene.svg │ │ │ ├── swipe.svg │ │ │ ├── time.svg │ │ │ ├── user.svg │ │ │ └── validate-image.svg │ │ └── img │ │ │ ├── dashboard.svg │ │ │ └── logo.svg │ └── views │ │ ├── Dashboard │ │ └── index.tsx │ │ ├── StatsBoard │ │ ├── index.tsx │ │ └── styles.css │ │ ├── UserDashboard │ │ ├── index.tsx │ │ └── styles.css │ │ └── UserGroupDashboard │ │ ├── index.tsx │ │ └── styles.css ├── codegen.yml ├── docker-compose.yml ├── jest.config.js ├── jest │ ├── cssTransform.js │ ├── pngTransform.js │ └── svgTransform.js ├── package.json ├── postcss.config.js ├── stylelint.config.js ├── tsconfig.json ├── type.template.tsx ├── webpack.config.js └── yarn.lock ├── contributors.md ├── deploy.sh ├── django ├── Dockerfile ├── README.md ├── apps │ ├── __init__.py │ ├── aggregated │ │ ├── apps.py │ │ ├── factories.py │ │ ├── management │ │ │ └── commands │ │ │ │ ├── basic_schedule_jobs.py │ │ │ │ ├── import_aggregated_data.py │ │ │ │ ├── update_aggregated_data.py │ │ │ │ └── update_project_groups_data.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_aggregatedtracking_managers_and_more.py │ │ │ └── __init__.py │ │ └── models.py │ └── existing_database │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── dataloaders.py │ │ ├── enums.py │ │ ├── factories.py │ │ ├── filters.py │ │ ├── management │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── graphql_schema.py │ │ │ └── update_organization_name.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_mappingsession_mappingsessionresult.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── ordering.py │ │ ├── query.py │ │ ├── test_queries.py │ │ └── types.py ├── manage.py ├── mapswipe │ ├── __init__.py │ ├── asgi.py │ ├── dataloaders.py │ ├── db.py │ ├── graphql.py │ ├── managers.py │ ├── paginations.py │ ├── sentry.py │ ├── settings.py │ ├── tests.py │ ├── types.py │ ├── urls.py │ ├── utils.py │ └── wsgi.py ├── poetry.lock ├── pyproject.toml ├── pytest.ini ├── schema.graphql └── scripts │ ├── run_develop.sh │ ├── run_prod.sh │ └── run_tests.sh ├── docker-compose-ci.yaml ├── docker-compose.development.yaml ├── docker-compose.tc.yaml ├── docker-compose.yaml ├── docs ├── Makefile ├── make.bat └── source │ ├── Makefile │ ├── _build │ ├── doctrees │ │ ├── cli.doctree │ │ ├── contributing.doctree │ │ ├── debugging.doctree │ │ ├── diagrams.doctree │ │ ├── index.doctree │ │ ├── project_type-buildArea.doctree │ │ ├── project_type-footprint.doctree │ │ ├── readme_link.doctree │ │ ├── setup.doctree │ │ └── use_cases.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _images │ │ ├── data_structure-firebase-1.svg │ │ ├── data_structure-firebase-2.svg │ │ ├── database_schema-analytics.png │ │ ├── database_schema-postgres.png │ │ ├── deployment_diagram.png │ │ ├── entity_relationship_diagram-postgres.png │ │ └── mapswipe_data_model.png │ │ ├── _sources │ │ ├── cli.md.txt │ │ ├── contributing.md.txt │ │ ├── debugging.md.txt │ │ ├── diagrams.md.txt │ │ ├── index.rst.txt │ │ ├── project_type-buildArea.md.txt │ │ ├── project_type-footprint.md.txt │ │ ├── readme_link.rst.txt │ │ ├── setup.md.txt │ │ └── use_cases.md.txt │ │ ├── _static │ │ ├── basic.css │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Inconsolata.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato │ │ │ │ ├── lato-bold.eot │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ ├── lato-italic.eot │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-italic.woff2 │ │ │ │ ├── lato-regular.eot │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato-regular.woff2 │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── RobotoSlab │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── img │ │ │ ├── BuildArea_screenshot.png │ │ │ ├── building_example1.JPG │ │ │ ├── building_example2.JPG │ │ │ ├── building_example3.JPG │ │ │ ├── data_structure-current-firebase.json │ │ │ ├── data_structure-current-firebase.svg │ │ │ ├── data_structure-firebase-1.json │ │ │ ├── data_structure-firebase-1.png │ │ │ ├── data_structure-firebase-1.svg │ │ │ ├── data_structure-firebase-2.json │ │ │ ├── data_structure-firebase-2.svg │ │ │ ├── database_schema-analytics.png │ │ │ ├── database_schema-analytics.xml │ │ │ ├── database_schema-firebase.png │ │ │ ├── database_schema-firebase.xml │ │ │ ├── database_schema-postgres.png │ │ │ ├── database_schema-postgres.xml │ │ │ ├── deployment_diagram.png │ │ │ ├── deployment_diagram.xml │ │ │ ├── entity_relationship_diagram-postgres.png │ │ │ ├── entity_relationship_diagram-postgres.xml │ │ │ ├── horizontally_sliced_groups.png │ │ │ ├── mapswipe_data_model.png │ │ │ ├── osm_validation_example.png │ │ │ ├── project.png │ │ │ ├── test-mapswipe-firebase-adminsdk-0wgzx-df7af26631.json │ │ │ └── vertically_sliced_groups.png │ │ ├── jquery-3.2.1.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ │ ├── cli.html │ │ ├── contributing.html │ │ ├── debugging.html │ │ ├── diagrams.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── objects.inv │ │ ├── project_type-buildArea.html │ │ ├── project_type-footprint.html │ │ ├── readme_link.html │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── setup.html │ │ └── use_cases.html │ ├── _static │ └── img │ │ ├── BuildArea_screenshot.png │ │ ├── ChangeDetection_screenshot.jpeg │ │ ├── area-plot.png │ │ ├── building_example1.JPG │ │ ├── building_example2.JPG │ │ ├── building_example3.JPG │ │ ├── chad_area.png │ │ ├── data_structure-firebase-1.json │ │ ├── data_structure-firebase-1.png │ │ ├── data_structure-firebase-1.svg │ │ ├── data_structure-firebase-2.json │ │ ├── data_structure-firebase-2.svg │ │ ├── database_schema-analytics.png │ │ ├── database_schema-analytics.xml │ │ ├── database_schema-firebase.png │ │ ├── database_schema-firebase.xml │ │ ├── database_schema-postgres.png │ │ ├── database_schema-postgres.xml │ │ ├── deployment_diagram.png │ │ ├── deployment_diagram.xml │ │ ├── entity_relationship_diagram-postgres.png │ │ ├── entity_relationship_diagram-postgres.xml │ │ ├── entity_relationship_diagram-postgres_desired.PNG │ │ ├── footprint_screenshot.jpeg │ │ ├── horizontally_sliced_groups.png │ │ ├── length-plot.png │ │ ├── manager_dashboard_create_screenshot.png │ │ ├── manager_dashboard_manage_screenshot.png │ │ ├── manager_dashboard_screenshot.png │ │ ├── mapswipe-time-calculation.png │ │ ├── mapswipe_data_model.png │ │ ├── osm_validation_example.png │ │ ├── project.png │ │ ├── tasking_manager_geometries_example.png │ │ └── vertically_sliced_groups.png │ ├── backup.md │ ├── cli.md │ ├── conf.py │ ├── configuration.md │ ├── data.md │ ├── debugging.md │ ├── dev_setup.md │ ├── diagrams.md │ ├── for_mapswipe_managers.md │ ├── index.rst │ ├── installation.md │ ├── make.bat │ ├── notes.md │ ├── overview.md │ ├── project_type-buildArea.md │ ├── project_type-changeDetection.md │ ├── project_type-footprint.md │ ├── project_type.md │ ├── readme_link.rst │ ├── requirements.txt │ ├── tags │ ├── testing.md │ ├── tile_size.md │ ├── tutorials.md │ └── use_cases.md ├── example.env ├── firebase ├── .firebaserc ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── database.rules.json ├── firebase.json ├── functions │ ├── .eslintrc.js │ ├── .gitignore │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── osm_auth.ts │ │ └── utils │ │ │ └── index.ts │ ├── tsconfig.dev.json │ ├── tsconfig.json │ └── yarn.lock └── public │ └── index.html ├── manager-dashboard ├── .babelrc ├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github │ ├── pull_request_template.md │ └── workflows │ │ └── ci.yml ├── .gitignore ├── .unimportedrc.json ├── Dockerfile ├── README.md ├── app │ ├── Base │ │ ├── components │ │ │ ├── AuthPopup │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── ErrorBoundary.tsx │ │ │ ├── Init │ │ │ │ └── index.tsx │ │ │ ├── Navbar │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── Page │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── PageTitle │ │ │ │ └── index.tsx │ │ │ ├── PreloadMessage │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── Routes │ │ │ │ └── index.tsx │ │ │ ├── SmartLink │ │ │ │ └── index.tsx │ │ │ └── SmartNavLink │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ ├── configs │ │ │ ├── apollo.ts │ │ │ ├── firebase.ts │ │ │ ├── history.ts │ │ │ ├── projectTypes.ts │ │ │ ├── routes.tsx │ │ │ └── sentry.ts │ │ ├── context │ │ │ ├── NavbarContext.ts │ │ │ ├── ProjectContext.ts │ │ │ └── UserContext.ts │ │ ├── hooks │ │ │ ├── useAuthSync.ts │ │ │ └── useRouteMatching.tsx │ │ ├── index.tsx │ │ ├── styles.css │ │ ├── types │ │ │ ├── project.ts │ │ │ └── user.ts │ │ └── utils │ │ │ ├── apollo.test.ts │ │ │ ├── apollo.ts │ │ │ ├── errorTransform.ts │ │ │ ├── routes.test.ts │ │ │ └── routes.tsx │ ├── components │ │ ├── AlertBanner │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── AnimatedSwipeIcon │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── BodyBackdrop │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Button │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Calendar │ │ │ ├── CalendarDate │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Checkbox │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Checkmark │ │ │ └── index.tsx │ │ ├── CocoFileInput │ │ │ └── index.tsx │ │ ├── DateRangeInput │ │ │ ├── index.tsx │ │ │ ├── predefinedDateRange.ts │ │ │ └── styles.css │ │ ├── EmptyMessage │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ExpandableContainer │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── FileInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── GenericOption │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── GeoJsonFileInput │ │ │ └── index.tsx │ │ ├── GeoJsonPreview │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Heading │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ImageInput │ │ │ └── index.tsx │ │ ├── InputContainer │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── InputSection │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── JsonFileInput │ │ │ └── index.tsx │ │ ├── List.tsx │ │ ├── MarkdownEditor │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── MarkdownPreview │ │ │ └── index.tsx │ │ ├── MobilePreview │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Modal │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── NonFieldError │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── NumberInput │ │ │ └── index.tsx │ │ ├── PageContent │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Pager │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── PendingMessage │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Popup │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── PopupButton │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Portal.tsx │ │ ├── Preview │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── RadioInput │ │ │ ├── Radio │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── RawButton │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── RawInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── RawTextArea │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── SegmentInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── SelectInput │ │ │ ├── SearchSelectInput.tsx │ │ │ ├── index.tsx │ │ │ ├── styles.css │ │ │ └── utils.ts │ │ ├── SelectInputContainer │ │ │ ├── EmptyOptions │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── Table │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── TextArea │ │ │ └── index.tsx │ │ ├── TextInput │ │ │ └── index.tsx │ │ └── TileServerInput │ │ │ └── index.tsx │ ├── declarations │ │ ├── css.d.ts │ │ ├── png.d.ts │ │ └── svg.d.ts │ ├── favicon.ico │ ├── favicon.png │ ├── hooks │ │ ├── useBlurEffect.tsx │ │ ├── useBooleanState.ts │ │ ├── useConfirmation.ts │ │ ├── useFirebaseDatabase.tsx │ │ ├── useInputState.tsx │ │ ├── useKeyboard.ts │ │ ├── useMountedRef.ts │ │ └── usePagination.ts │ ├── index.html │ ├── index.tsx │ ├── resources │ │ ├── icons │ │ │ ├── 1_Tap_Black.png │ │ │ ├── 2_Tap_Black.png │ │ │ ├── 3_Tap_Black.png │ │ │ ├── swipeleft_icon_black.png │ │ │ ├── tap_icon_angular.png │ │ │ └── tick_green_on_white.png │ │ └── images │ │ │ └── mapswipe-logo.svg │ ├── utils │ │ ├── common.tsx │ │ └── firebase.ts │ └── views │ │ ├── Home │ │ ├── OrganisationFormModal │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── OrganisationList │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── TutorialList │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── index.tsx │ │ └── styles.css │ │ ├── Login │ │ ├── index.tsx │ │ └── styles.css │ │ ├── NewProject │ │ ├── BasicProjectInfoForm │ │ │ └── index.tsx │ │ ├── ImageInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── index.tsx │ │ ├── styles.css │ │ ├── useProjectOptions.ts │ │ └── utils.ts │ │ ├── NewTutorial │ │ ├── CustomOptionInput │ │ │ ├── CustomOptionPreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── SubOptionInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ImageInput │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── InformationPageInput │ │ │ ├── BlockInput │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── InformationPagePreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── ScenarioPageInput │ │ │ ├── BuildAreaGeoJsonPreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── ChangeDetectionGeoJsonPreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── FootprintGeoJsonPreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── ValidateImagePreview │ │ │ │ ├── index.tsx │ │ │ │ └── styles.css │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── index.tsx │ │ ├── styles.css │ │ └── utils.ts │ │ ├── Projects │ │ ├── ProjectDetails │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── index.tsx │ │ └── styles.css │ │ ├── Teams │ │ ├── TeamItem │ │ │ ├── index.tsx │ │ │ └── styles.css │ │ ├── index.tsx │ │ └── styles.css │ │ └── UserGroups │ │ ├── UserGroupFormModal │ │ ├── index.tsx │ │ └── styles.css │ │ ├── UserGroupItem │ │ ├── index.tsx │ │ └── styles.css │ │ ├── index.tsx │ │ └── styles.css ├── codegen.yml ├── docker-compose.yml ├── jest.config.js ├── jest │ ├── cssTransform.js │ ├── pngTransform.js │ └── svgTransform.js ├── package.json ├── postcss.config.js ├── stylelint.config.js ├── tsconfig.json ├── type.template.tsx ├── user_scripts │ ├── README.md │ ├── generate_coco_from_drive.js │ └── generate_coco_from_dropbox.py ├── webpack.config.js └── yarn.lock ├── mapswipe_workers ├── .dockerignore ├── .pre-commit-config.yaml ├── Dockerfile ├── locust_files │ └── load_testing.py ├── mapswipe_workers │ ├── __init__.py │ ├── auth.py │ ├── config.py │ ├── definitions.py │ ├── firebase │ │ ├── __init__.py │ │ └── firebase.py │ ├── firebase_to_postgres │ │ ├── __init__.py │ │ ├── archive_project.py │ │ ├── delete_project.py │ │ ├── transfer_results.py │ │ └── update_data.py │ ├── generate_stats │ │ ├── __init__.py │ │ ├── generate_stats.py │ │ ├── overall_stats.py │ │ ├── project_stats.py │ │ ├── project_stats_by_date.py │ │ ├── tasking_manager_geometries.py │ │ └── user_stats.py │ ├── logging.cfg │ ├── mapswipe_workers.py │ ├── project_types │ │ ├── __init__.py │ │ ├── arbitrary_geometry │ │ │ ├── __init__.py │ │ │ ├── digitization │ │ │ │ ├── __init__.py │ │ │ │ ├── project.py │ │ │ │ └── tutorial.py │ │ │ ├── footprint │ │ │ │ ├── __init__.py │ │ │ │ ├── project.py │ │ │ │ └── tutorial.py │ │ │ ├── grouping_functions.py │ │ │ ├── project.py │ │ │ └── tutorial.py │ │ ├── media_classification │ │ │ ├── __init__.py │ │ │ ├── project.py │ │ │ └── tutorial.py │ │ ├── project.py │ │ ├── street │ │ │ ├── __init__.py │ │ │ ├── project.py │ │ │ └── tutorial.py │ │ ├── tile_map_service │ │ │ ├── __init__.py │ │ │ ├── change_detection │ │ │ │ ├── __init__.py │ │ │ │ ├── project.py │ │ │ │ └── tutorial.py │ │ │ ├── classification │ │ │ │ ├── __init__.py │ │ │ │ ├── project.py │ │ │ │ └── tutorial.py │ │ │ ├── completeness │ │ │ │ ├── __init__.py │ │ │ │ ├── project.py │ │ │ │ └── tutorial.py │ │ │ ├── project.py │ │ │ └── tutorial.py │ │ ├── tile_server.py │ │ ├── tutorial.py │ │ └── validate_image │ │ │ ├── __init__.py │ │ │ ├── project.py │ │ │ └── tutorial.py │ └── utils │ │ ├── __init__.py │ │ ├── api_calls.py │ │ ├── create_directories.py │ │ ├── geojson_functions.py │ │ ├── gzip_str.py │ │ ├── process_mapillary.py │ │ ├── slack_helper.py │ │ ├── spatial_sampling.py │ │ ├── team_management.py │ │ ├── tile_functions.py │ │ ├── tile_grouping_functions.py │ │ ├── user_management.py │ │ └── validate_input.py ├── python_scripts │ ├── add_missing_usernames_in_firebase.py │ ├── add_project_geometries_to_api.py │ ├── add_tutorial_id_to_projects.py │ ├── add_usernames_in_firebase.py │ ├── archive_old_projects.py │ ├── change_organization_name_for_projects.py │ ├── change_tms_api_key_for_projects.py │ ├── change_tutorial_id_for_projects.py │ ├── delete_old_groups.py │ ├── extract_project_population_stats.py │ ├── list_all_project_managers.py │ ├── mapswipe_to_hot_tm_project.py │ ├── remove_duplicated_information_in_postgres.py │ ├── remove_timestamps_from_user_contributions.py │ ├── results_to_mapping_sessions_results.py │ ├── tasks_to_geojson.py │ ├── update_project_status.py │ └── update_task_contribution_count_in_firebase.py ├── requirements.txt ├── sample_data │ ├── 1_share_by_task_id_style.qml │ ├── build_area │ │ ├── README.md │ │ ├── build_area_tutorial_tasks.geojson │ │ ├── default_build_area_tutorial_screens.json │ │ ├── solid_waste_tutorial_screens.json │ │ ├── solid_waste_tutorial_screens_fr.json │ │ └── solid_waste_tutorial_tasks.geojson │ ├── change_detection │ │ ├── change_detection_tutorial_damaged_buildings_haiti_screens.json │ │ ├── change_detection_tutorial_damaged_buildings_haiti_tasks.geojson │ │ ├── change_detection_tutorial_kutupalong.json │ │ ├── change_detection_tutorial_tasks_kutupalong.geojson │ │ ├── change_detection_tutorial_uganda_screens.json │ │ └── change_detection_tutorial_uganda_tasks.geojson │ ├── completeness │ │ ├── completeness_tutorial.json │ │ └── completeness_tutorial_tasks.geojson │ ├── footprint │ │ ├── wsf_validation_tutorial_screens.json │ │ └── wsf_validation_tutorial_tasks.geojson │ ├── street │ │ ├── README.md │ │ └── street_tutorial_sample_scenario.geojson │ ├── tiles.geojson │ └── total_count_by_task_id_style.qml ├── setup.cfg ├── setup.py └── tests │ ├── __init__.py │ ├── fixtures.py │ ├── fixtures │ ├── feature_collection.json │ ├── mapillary_response.csv │ ├── mapillary_sequence.csv │ ├── media.zip │ ├── projectDrafts │ │ ├── change_detection.json │ │ ├── classification.json │ │ ├── completeness.json │ │ ├── digitization.json │ │ ├── footprint.json │ │ ├── media_classification.json │ │ └── street.json │ └── tutorialDrafts │ │ ├── change_detection.json │ │ ├── completeness.json │ │ ├── footprint.json │ │ ├── street.json │ │ └── tile_classification.json │ ├── integration │ ├── __init__.py │ ├── base.py │ ├── fixtures │ │ ├── 1_share_by_task_id_style.qml │ │ ├── change_detection │ │ │ ├── project_drafts.json │ │ │ ├── region.geojson │ │ │ ├── region_uganda.geojson │ │ │ ├── region_uganda2.geojson │ │ │ ├── tutorial.json │ │ │ ├── tutorial_bing.json │ │ │ ├── tutorial_kutupalong.json │ │ │ ├── tutorial_tasks.csv │ │ │ ├── tutorial_tasks.geojson │ │ │ ├── tutorial_tasks_bing.geojson │ │ │ ├── tutorial_tasks_kutupalong.geojson │ │ │ └── tutorial_tasks_new.geojson │ │ ├── digitization │ │ │ ├── groups │ │ │ │ ├── digitization.csv │ │ │ │ └── digitization.json │ │ │ ├── mapping_sessions │ │ │ │ └── digitization.csv │ │ │ ├── mapping_sessions_results_geometry │ │ │ │ └── digitization.csv │ │ │ ├── projects │ │ │ │ ├── digitization.csv │ │ │ │ └── digitization.json │ │ │ ├── results │ │ │ │ └── digitization.json │ │ │ ├── tasks │ │ │ │ ├── digitization.csv │ │ │ │ └── digitization.json │ │ │ ├── user_groups │ │ │ │ └── user_group.json │ │ │ └── users │ │ │ │ ├── user.csv │ │ │ │ └── user.json │ │ ├── footprint │ │ │ ├── groups │ │ │ │ └── osm_validation_malawi.csv │ │ │ ├── input_geometries.geojson │ │ │ ├── mapping_sessions │ │ │ │ └── osm_validation_malawi.csv │ │ │ ├── mapping_sessions_results │ │ │ │ └── osm_validation_malawi.csv │ │ │ ├── projectDrafts │ │ │ │ ├── footprint_TMId.json │ │ │ │ ├── footprint_aoiFile.json │ │ │ │ └── footprint_link.json │ │ │ ├── project_drafts.json │ │ │ ├── projects │ │ │ │ └── osm_validation_malawi.csv │ │ │ ├── tasks │ │ │ │ └── osm_validation_malawi.csv │ │ │ └── users │ │ │ │ └── osm_validation_malawi.csv │ │ ├── street │ │ │ └── projectDrafts │ │ │ │ └── street.json │ │ ├── test_invalid_results.json │ │ ├── tile_classification │ │ │ ├── projectDrafts │ │ │ │ ├── tile_classification.json │ │ │ │ └── tile_classification_with_additional_attributes.json │ │ │ └── tutorialDrafts │ │ │ │ └── tile_classification.json │ │ ├── tile_map_service_grid │ │ │ ├── big.geojson │ │ │ ├── groups │ │ │ │ ├── build_area.csv │ │ │ │ ├── build_area.json │ │ │ │ ├── build_area_heidelberg.csv │ │ │ │ ├── build_area_heidelberg.json │ │ │ │ └── build_area_sandoa.csv │ │ │ ├── invalid_file.geojson │ │ │ ├── linestring.geojson │ │ │ ├── mapping_sessions │ │ │ │ ├── build_area.csv │ │ │ │ └── build_area_sandoa.csv │ │ │ ├── mapping_sessions_results │ │ │ │ ├── build_area.csv │ │ │ │ └── build_area_sandoa.csv │ │ │ ├── mapping_sessions_user_groups │ │ │ │ └── build_area.csv │ │ │ ├── projectDrafts │ │ │ │ ├── build_area.json │ │ │ │ └── build_area_heidelberg.json │ │ │ ├── project_draft_templates.json │ │ │ ├── projects │ │ │ │ ├── build_area.csv │ │ │ │ ├── build_area.json │ │ │ │ ├── build_area_heidelberg.csv │ │ │ │ ├── build_area_heidelberg.json │ │ │ │ ├── build_area_sandoa.csv │ │ │ │ └── build_area_with_geometry.json │ │ │ ├── region.geojson │ │ │ ├── results │ │ │ │ ├── build_area.csv │ │ │ │ ├── build_area.json │ │ │ │ ├── build_area_additional_results_different_group.json │ │ │ │ ├── build_area_additional_results_same_group.json │ │ │ │ ├── build_area_heidelberg.json │ │ │ │ └── build_area_invalid_task.json │ │ │ ├── tasks │ │ │ │ ├── build_area.csv │ │ │ │ ├── build_area.json │ │ │ │ ├── build_area_heidelberg.csv │ │ │ │ ├── build_area_heidelberg.json │ │ │ │ └── build_area_sandoa.csv │ │ │ ├── tutorial.json │ │ │ ├── tutorial_tasks.csv │ │ │ ├── tutorial_tasks.geojson │ │ │ ├── user_groups │ │ │ │ ├── build_area.csv │ │ │ │ └── user_group.json │ │ │ └── users │ │ │ │ ├── build_area_sandoa.csv │ │ │ │ ├── user.csv │ │ │ │ └── user.json │ │ └── total_count_by_task_id_style.qml │ ├── run_tests.sh │ ├── set_up.py │ ├── set_up_db.sql │ ├── tear_down.py │ ├── test_archive_project.py │ ├── test_create_arbitrary_geometry_digitization_project.py │ ├── test_create_arbitrary_geometry_footprint_project.py │ ├── test_create_arbitrary_geometry_footprint_tutorial.py │ ├── test_create_build_area_project.py │ ├── test_create_media_classification_project.py │ ├── test_create_project_with_additional_attributes.py │ ├── test_create_street_project.py │ ├── test_create_tile_change_detection_project.py │ ├── test_create_tile_change_detection_tutorial.py │ ├── test_create_tile_classification_project.py │ ├── test_create_tile_classification_tutorial.py │ ├── test_create_tile_completness_project.py │ ├── test_create_tile_completness_tutorial.py │ ├── test_create_tutorial.py │ ├── test_delete_project.py │ ├── test_delete_project_digitization.py │ ├── test_firebase.py │ ├── test_gdal.py │ ├── test_generate_stats_geo.py │ ├── test_get_results.py │ ├── test_get_results_real_project.py │ ├── test_overall_stats.py │ ├── test_team_management.py │ ├── test_transfer_geo_results.py │ ├── test_transfer_results.py │ ├── test_transfer_results_invalid_results.py │ ├── test_transfer_results_many_results.py │ ├── test_update_data.py │ ├── test_update_project_data.py │ ├── test_update_user_data.py │ ├── test_update_user_group_data.py │ └── test_user_stats.py │ ├── readme.md │ ├── unittests │ ├── __init__.py │ ├── fixtures │ │ ├── completeness │ │ │ ├── check_Groups.geojson │ │ │ ├── closed_poly_groups.geojson │ │ │ ├── closed_polygons.geojson │ │ │ ├── collected.geojson │ │ │ ├── distant_polygons.geojson │ │ │ ├── horizontal_slices_expected.geojson │ │ │ ├── multiplePolygons.geojson │ │ │ ├── overlappingGeoms.geojson │ │ │ ├── overlapping_groups.geojson │ │ │ ├── projectDraft.json │ │ │ ├── projectDraft_overlappingGeom.json │ │ │ ├── projectDraft_single.json │ │ │ ├── project_geometries_very_small_and_close.geojson │ │ │ ├── project_geometries_within.geojson │ │ │ └── single_polygon.geojson │ │ └── tile_map_service_grid │ │ │ ├── agg_results │ │ │ └── agg_results_-M7nTGflMusNxFd4iSfD.csv │ │ │ ├── extent_too_big.geojson │ │ │ ├── groups │ │ │ └── build_area.json │ │ │ ├── invalid_geojson.geojson │ │ │ ├── projectDrafts │ │ │ ├── build_area.json │ │ │ └── tile_classification.json │ │ │ ├── project_extent.geojson │ │ │ ├── projects │ │ │ ├── projectDraft_area_too_large.json │ │ │ ├── projectDraft_broken_geojson.json │ │ │ ├── projectDraft_feature_is_none.json │ │ │ └── projectDraft_no_features.json │ │ │ ├── results │ │ │ └── results_-M7nTGflMusNxFd4iSfD.csv │ │ │ └── users │ │ │ └── users_-M7nTGflMusNxFd4iSfD.csv │ ├── test_check_imagery_url.py │ ├── test_firebase_connection.py │ ├── test_group_size.py │ ├── test_groups_overlap.py │ ├── test_init_project.py │ ├── test_process_mapillary.py │ ├── test_project_stats.py │ ├── test_project_type_arbitrary_geometry_digitization.py │ ├── test_project_type_arbitrary_geometry_footprint.py │ ├── test_project_type_media_classification.py │ ├── test_project_type_street.py │ ├── test_project_type_tile_change_detection.py │ ├── test_project_type_tile_classification.py │ ├── test_project_type_tile_completeness.py │ ├── test_spatial_sampling.py │ ├── test_tile_grouping_functions.py │ ├── test_tutorial_arbitrary_geometry_footprint.py │ ├── test_tutorial_street.py │ ├── test_tutorial_tile_change_detection.py │ ├── test_tutorial_tile_classification.py │ ├── test_tutorial_tile_completeness.py │ ├── test_user_stats.py │ ├── test_utils_validate_input.py │ └── test_validate_geometries.py │ └── wip │ └── test_firebase_db_rules.py ├── nginx └── nginx.conf.template ├── postgres ├── .dockerignore ├── Dockerfile ├── Dockerfile-dev ├── backup │ ├── archive_command.sh │ └── make_basebackup.sh ├── initdb.sql ├── pg_hba.conf ├── postgresql.conf ├── recovery │ ├── Dockerfile │ ├── init_recovery.sh │ ├── recovery.conf │ └── restore_command.sh └── scripts │ ├── backtrack_user_group_mapping_sessions.sql │ ├── backup.sh │ ├── changeGeomType.sql │ ├── change_organization_name_for_projects.sql │ ├── show_table_sizes.sql │ ├── userGroups.sql │ ├── v1_to_v2 │ ├── .gitignore │ ├── copy_from_csv.sh │ ├── copy_groups_from_csv.sql │ ├── copy_projects_from_csv.sql │ ├── copy_results.sh │ ├── copy_results_from_csv.sql │ ├── copy_tasks_from_csv.sql │ ├── copy_to_csv.sh │ ├── copy_users_from_csv.sql │ ├── generate_copy_to_csv.py │ └── project_ids.txt │ └── v2_to_v3 │ ├── 01_create_test_replica.sql │ ├── 02_drop_unused_indexes_and_foreign_keys.sql │ ├── 03_create_mapping_sessions_results_table.sql │ ├── 04_transfer_results_into_new_tables.sql │ ├── 04b_fix_timestamps_for_mapping_sessions.sql │ ├── 05_update_results_user_groups_table.sql │ ├── 06_alter_groups_data_add_total_area_and_time_limit_columns.sql │ ├── 07_update_mapping_sessions_table.sql │ └── 08_change_geom_type_for_tasks.sql ├── recreate_container.sh ├── setup.cfg ├── test_config.py └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/README.md -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/ansible/inventory.yml -------------------------------------------------------------------------------- /ansible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/ansible/playbook.yml -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/api/index.html -------------------------------------------------------------------------------- /api/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/api/nginx.conf -------------------------------------------------------------------------------- /ci-mapswipe-firebase-adminsdk-80fzw-ebce84bd5b.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/ci-mapswipe-firebase-adminsdk-80fzw-ebce84bd5b.json.enc -------------------------------------------------------------------------------- /community-dashboard/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.babelrc -------------------------------------------------------------------------------- /community-dashboard/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.dockerignore -------------------------------------------------------------------------------- /community-dashboard/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.env.example -------------------------------------------------------------------------------- /community-dashboard/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.eslintignore -------------------------------------------------------------------------------- /community-dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.eslintrc.js -------------------------------------------------------------------------------- /community-dashboard/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.github/pull_request_template.md -------------------------------------------------------------------------------- /community-dashboard/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.github/workflows/ci.yml -------------------------------------------------------------------------------- /community-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.gitignore -------------------------------------------------------------------------------- /community-dashboard/.unimportedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/.unimportedrc.json -------------------------------------------------------------------------------- /community-dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/Dockerfile -------------------------------------------------------------------------------- /community-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/README.md -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/Navbar/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/Navbar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/Navbar/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/Page/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/Page/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/Page/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/PageTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/PageTitle/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/PreloadMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/PreloadMessage/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/PreloadMessage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/PreloadMessage/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/Routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/Routes/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/SmartNavLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/SmartNavLink/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/components/SmartNavLink/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/components/SmartNavLink/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/Base/configs/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/configs/apollo.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/configs/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/configs/env.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/configs/googleAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/configs/googleAnalytics.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/configs/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/configs/history.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/configs/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/configs/routes.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/configs/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/configs/sentry.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/context/NavbarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/context/NavbarContext.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/hooks/useRouteMatching.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/hooks/useRouteMatching.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/Base/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/utils/common.ts -------------------------------------------------------------------------------- /community-dashboard/app/Base/utils/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/utils/routes.tsx -------------------------------------------------------------------------------- /community-dashboard/app/Base/utils/temporal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/Base/utils/temporal.ts -------------------------------------------------------------------------------- /community-dashboard/app/components/Actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Actions/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Actions/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Actions/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Button/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Button/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Button/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Calendar/CalendarDate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Calendar/CalendarDate/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Calendar/CalendarDate/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Calendar/CalendarDate/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Calendar/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Calendar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Calendar/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/ContributionHeatMap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/ContributionHeatMap/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/ContributionHeatMap/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/ContributionHeatMap/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/DateRangeInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/DateRangeInput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/DateRangeInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/DateRangeInput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Element/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Element/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Element/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Element/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/ElementFragments/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/ElementFragments/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/ElementFragments/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/ElementFragments/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Footer/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Footer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Footer/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/GenericOption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/GenericOption/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/GenericOption/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/GenericOption/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Header/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Header/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Header/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Heading/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Heading/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Heading/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Icons/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Icons/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Icons/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/InformationCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/InformationCard/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/InformationCard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/InformationCard/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/InputContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/InputContainer/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/InputContainer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/InputContainer/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/ItemSelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/ItemSelectInput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/ItemSelectInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/ItemSelectInput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/List.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/MemberItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/MemberItem/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/MemberItem/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/MemberItem/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/NumberInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/NumberInput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/NumberOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/NumberOutput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/NumberOutput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/NumberOutput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Page/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Page/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Page/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Pager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Pager/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Pager/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Pager/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/PendingMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/PendingMessage/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/PendingMessage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/PendingMessage/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Popup/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/Popup/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Popup/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/Portal.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/RawButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/RawButton/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/RawButton/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/RawButton/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/RawInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/RawInput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/RawInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/RawInput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/SegmentInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SegmentInput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/SegmentInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SegmentInput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/SelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SelectInput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/SelectInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SelectInput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/SelectInput/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SelectInput/utils.ts -------------------------------------------------------------------------------- /community-dashboard/app/components/SelectInputContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SelectInputContainer/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/SelectInputContainer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/SelectInputContainer/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/components/TextOutput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/TextOutput/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/components/TextOutput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/components/TextOutput/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/declarations/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/declarations/css.d.ts -------------------------------------------------------------------------------- /community-dashboard/app/declarations/png.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/declarations/png.d.ts -------------------------------------------------------------------------------- /community-dashboard/app/declarations/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/declarations/svg.d.ts -------------------------------------------------------------------------------- /community-dashboard/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/favicon.ico -------------------------------------------------------------------------------- /community-dashboard/app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/favicon.png -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useBlurEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useBlurEffect.tsx -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useBooleanState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useBooleanState.tsx -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useDebouncedValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useDebouncedValue.ts -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useDocumentSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useDocumentSize.ts -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useInputState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useInputState.tsx -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useKeyboard.ts -------------------------------------------------------------------------------- /community-dashboard/app/hooks/useUrlState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/hooks/useUrlState.ts -------------------------------------------------------------------------------- /community-dashboard/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/index.html -------------------------------------------------------------------------------- /community-dashboard/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/android.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/area.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/area.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/feature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/feature.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/group.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/ios.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/ios.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/scene.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/scene.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/swipe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/swipe.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/time.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/user.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/icons/validate-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/icons/validate-image.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/img/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/img/dashboard.svg -------------------------------------------------------------------------------- /community-dashboard/app/resources/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/resources/img/logo.svg -------------------------------------------------------------------------------- /community-dashboard/app/views/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/Dashboard/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/views/StatsBoard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/StatsBoard/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/views/StatsBoard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/StatsBoard/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/views/UserDashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/UserDashboard/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/views/UserDashboard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/UserDashboard/styles.css -------------------------------------------------------------------------------- /community-dashboard/app/views/UserGroupDashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/UserGroupDashboard/index.tsx -------------------------------------------------------------------------------- /community-dashboard/app/views/UserGroupDashboard/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/app/views/UserGroupDashboard/styles.css -------------------------------------------------------------------------------- /community-dashboard/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/codegen.yml -------------------------------------------------------------------------------- /community-dashboard/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/docker-compose.yml -------------------------------------------------------------------------------- /community-dashboard/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/jest.config.js -------------------------------------------------------------------------------- /community-dashboard/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/jest/cssTransform.js -------------------------------------------------------------------------------- /community-dashboard/jest/pngTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/jest/pngTransform.js -------------------------------------------------------------------------------- /community-dashboard/jest/svgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/jest/svgTransform.js -------------------------------------------------------------------------------- /community-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/package.json -------------------------------------------------------------------------------- /community-dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/postcss.config.js -------------------------------------------------------------------------------- /community-dashboard/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/stylelint.config.js -------------------------------------------------------------------------------- /community-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/tsconfig.json -------------------------------------------------------------------------------- /community-dashboard/type.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/type.template.tsx -------------------------------------------------------------------------------- /community-dashboard/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/webpack.config.js -------------------------------------------------------------------------------- /community-dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/community-dashboard/yarn.lock -------------------------------------------------------------------------------- /contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/contributors.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/deploy.sh -------------------------------------------------------------------------------- /django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/Dockerfile -------------------------------------------------------------------------------- /django/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/README.md -------------------------------------------------------------------------------- /django/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/apps/aggregated/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/aggregated/apps.py -------------------------------------------------------------------------------- /django/apps/aggregated/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/aggregated/factories.py -------------------------------------------------------------------------------- /django/apps/aggregated/management/commands/basic_schedule_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/aggregated/management/commands/basic_schedule_jobs.py -------------------------------------------------------------------------------- /django/apps/aggregated/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/aggregated/migrations/0001_initial.py -------------------------------------------------------------------------------- /django/apps/aggregated/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/apps/aggregated/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/aggregated/models.py -------------------------------------------------------------------------------- /django/apps/existing_database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/apps/existing_database/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/apps/existing_database/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/apps.py -------------------------------------------------------------------------------- /django/apps/existing_database/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/dataloaders.py -------------------------------------------------------------------------------- /django/apps/existing_database/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/enums.py -------------------------------------------------------------------------------- /django/apps/existing_database/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/factories.py -------------------------------------------------------------------------------- /django/apps/existing_database/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/filters.py -------------------------------------------------------------------------------- /django/apps/existing_database/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/apps/existing_database/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/migrations/0001_initial.py -------------------------------------------------------------------------------- /django/apps/existing_database/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/apps/existing_database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/models.py -------------------------------------------------------------------------------- /django/apps/existing_database/ordering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/ordering.py -------------------------------------------------------------------------------- /django/apps/existing_database/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/query.py -------------------------------------------------------------------------------- /django/apps/existing_database/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/test_queries.py -------------------------------------------------------------------------------- /django/apps/existing_database/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/apps/existing_database/types.py -------------------------------------------------------------------------------- /django/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/manage.py -------------------------------------------------------------------------------- /django/mapswipe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django/mapswipe/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/asgi.py -------------------------------------------------------------------------------- /django/mapswipe/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/dataloaders.py -------------------------------------------------------------------------------- /django/mapswipe/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/db.py -------------------------------------------------------------------------------- /django/mapswipe/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/graphql.py -------------------------------------------------------------------------------- /django/mapswipe/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/managers.py -------------------------------------------------------------------------------- /django/mapswipe/paginations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/paginations.py -------------------------------------------------------------------------------- /django/mapswipe/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/sentry.py -------------------------------------------------------------------------------- /django/mapswipe/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/settings.py -------------------------------------------------------------------------------- /django/mapswipe/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/tests.py -------------------------------------------------------------------------------- /django/mapswipe/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/types.py -------------------------------------------------------------------------------- /django/mapswipe/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/urls.py -------------------------------------------------------------------------------- /django/mapswipe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/utils.py -------------------------------------------------------------------------------- /django/mapswipe/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/mapswipe/wsgi.py -------------------------------------------------------------------------------- /django/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/poetry.lock -------------------------------------------------------------------------------- /django/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/pyproject.toml -------------------------------------------------------------------------------- /django/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/pytest.ini -------------------------------------------------------------------------------- /django/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/schema.graphql -------------------------------------------------------------------------------- /django/scripts/run_develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/scripts/run_develop.sh -------------------------------------------------------------------------------- /django/scripts/run_prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/scripts/run_prod.sh -------------------------------------------------------------------------------- /django/scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/django/scripts/run_tests.sh -------------------------------------------------------------------------------- /docker-compose-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docker-compose-ci.yaml -------------------------------------------------------------------------------- /docker-compose.development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docker-compose.development.yaml -------------------------------------------------------------------------------- /docker-compose.tc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docker-compose.tc.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/Makefile -------------------------------------------------------------------------------- /docs/source/_build/doctrees/cli.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/cli.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/contributing.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/contributing.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/debugging.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/debugging.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/diagrams.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/diagrams.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/project_type-buildArea.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/project_type-buildArea.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/project_type-footprint.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/project_type-footprint.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/readme_link.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/readme_link.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/setup.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/setup.doctree -------------------------------------------------------------------------------- /docs/source/_build/doctrees/use_cases.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/doctrees/use_cases.doctree -------------------------------------------------------------------------------- /docs/source/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/source/_build/html/_images/data_structure-firebase-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_images/data_structure-firebase-1.svg -------------------------------------------------------------------------------- /docs/source/_build/html/_images/data_structure-firebase-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_images/data_structure-firebase-2.svg -------------------------------------------------------------------------------- /docs/source/_build/html/_images/database_schema-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_images/database_schema-analytics.png -------------------------------------------------------------------------------- /docs/source/_build/html/_images/database_schema-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_images/database_schema-postgres.png -------------------------------------------------------------------------------- /docs/source/_build/html/_images/deployment_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_images/deployment_diagram.png -------------------------------------------------------------------------------- /docs/source/_build/html/_images/mapswipe_data_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_images/mapswipe_data_model.png -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/cli.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/cli.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/contributing.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/contributing.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/debugging.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/debugging.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/diagrams.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/diagrams.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/project_type-buildArea.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/project_type-buildArea.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/project_type-footprint.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/project_type-footprint.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/readme_link.rst.txt: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../README.md 2 | -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/setup.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/setup.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_sources/use_cases.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_sources/use_cases.md.txt -------------------------------------------------------------------------------- /docs/source/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/source/_build/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/source/_build/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/source/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/source/_build/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/BuildArea_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/BuildArea_screenshot.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/building_example1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/building_example1.JPG -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/building_example2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/building_example2.JPG -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/building_example3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/building_example3.JPG -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/data_structure-firebase-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/data_structure-firebase-1.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/data_structure-firebase-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/data_structure-firebase-1.svg -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/data_structure-firebase-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/data_structure-firebase-2.svg -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/database_schema-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/database_schema-analytics.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/database_schema-analytics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/database_schema-analytics.xml -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/database_schema-firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/database_schema-firebase.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/database_schema-firebase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/database_schema-firebase.xml -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/database_schema-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/database_schema-postgres.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/database_schema-postgres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/database_schema-postgres.xml -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/deployment_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/deployment_diagram.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/deployment_diagram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/deployment_diagram.xml -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/mapswipe_data_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/mapswipe_data_model.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/osm_validation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/osm_validation_example.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/project.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/img/vertically_sliced_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/img/vertically_sliced_groups.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/source/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/source/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/source/_build/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/source/_build/html/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/cli.html -------------------------------------------------------------------------------- /docs/source/_build/html/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/contributing.html -------------------------------------------------------------------------------- /docs/source/_build/html/debugging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/debugging.html -------------------------------------------------------------------------------- /docs/source/_build/html/diagrams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/diagrams.html -------------------------------------------------------------------------------- /docs/source/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/source/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/index.html -------------------------------------------------------------------------------- /docs/source/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/source/_build/html/project_type-buildArea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/project_type-buildArea.html -------------------------------------------------------------------------------- /docs/source/_build/html/project_type-footprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/project_type-footprint.html -------------------------------------------------------------------------------- /docs/source/_build/html/readme_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/readme_link.html -------------------------------------------------------------------------------- /docs/source/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/search.html -------------------------------------------------------------------------------- /docs/source/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/source/_build/html/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/setup.html -------------------------------------------------------------------------------- /docs/source/_build/html/use_cases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_build/html/use_cases.html -------------------------------------------------------------------------------- /docs/source/_static/img/BuildArea_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/BuildArea_screenshot.png -------------------------------------------------------------------------------- /docs/source/_static/img/ChangeDetection_screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/ChangeDetection_screenshot.jpeg -------------------------------------------------------------------------------- /docs/source/_static/img/area-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/area-plot.png -------------------------------------------------------------------------------- /docs/source/_static/img/building_example1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/building_example1.JPG -------------------------------------------------------------------------------- /docs/source/_static/img/building_example2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/building_example2.JPG -------------------------------------------------------------------------------- /docs/source/_static/img/building_example3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/building_example3.JPG -------------------------------------------------------------------------------- /docs/source/_static/img/chad_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/chad_area.png -------------------------------------------------------------------------------- /docs/source/_static/img/data_structure-firebase-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/data_structure-firebase-1.json -------------------------------------------------------------------------------- /docs/source/_static/img/data_structure-firebase-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/data_structure-firebase-1.png -------------------------------------------------------------------------------- /docs/source/_static/img/data_structure-firebase-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/data_structure-firebase-1.svg -------------------------------------------------------------------------------- /docs/source/_static/img/data_structure-firebase-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/data_structure-firebase-2.json -------------------------------------------------------------------------------- /docs/source/_static/img/data_structure-firebase-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/data_structure-firebase-2.svg -------------------------------------------------------------------------------- /docs/source/_static/img/database_schema-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/database_schema-analytics.png -------------------------------------------------------------------------------- /docs/source/_static/img/database_schema-analytics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/database_schema-analytics.xml -------------------------------------------------------------------------------- /docs/source/_static/img/database_schema-firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/database_schema-firebase.png -------------------------------------------------------------------------------- /docs/source/_static/img/database_schema-firebase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/database_schema-firebase.xml -------------------------------------------------------------------------------- /docs/source/_static/img/database_schema-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/database_schema-postgres.png -------------------------------------------------------------------------------- /docs/source/_static/img/database_schema-postgres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/database_schema-postgres.xml -------------------------------------------------------------------------------- /docs/source/_static/img/deployment_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/deployment_diagram.png -------------------------------------------------------------------------------- /docs/source/_static/img/deployment_diagram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/deployment_diagram.xml -------------------------------------------------------------------------------- /docs/source/_static/img/entity_relationship_diagram-postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/entity_relationship_diagram-postgres.png -------------------------------------------------------------------------------- /docs/source/_static/img/entity_relationship_diagram-postgres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/entity_relationship_diagram-postgres.xml -------------------------------------------------------------------------------- /docs/source/_static/img/footprint_screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/footprint_screenshot.jpeg -------------------------------------------------------------------------------- /docs/source/_static/img/horizontally_sliced_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/horizontally_sliced_groups.png -------------------------------------------------------------------------------- /docs/source/_static/img/length-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/length-plot.png -------------------------------------------------------------------------------- /docs/source/_static/img/manager_dashboard_create_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/manager_dashboard_create_screenshot.png -------------------------------------------------------------------------------- /docs/source/_static/img/manager_dashboard_manage_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/manager_dashboard_manage_screenshot.png -------------------------------------------------------------------------------- /docs/source/_static/img/manager_dashboard_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/manager_dashboard_screenshot.png -------------------------------------------------------------------------------- /docs/source/_static/img/mapswipe-time-calculation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/mapswipe-time-calculation.png -------------------------------------------------------------------------------- /docs/source/_static/img/mapswipe_data_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/mapswipe_data_model.png -------------------------------------------------------------------------------- /docs/source/_static/img/osm_validation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/osm_validation_example.png -------------------------------------------------------------------------------- /docs/source/_static/img/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/project.png -------------------------------------------------------------------------------- /docs/source/_static/img/tasking_manager_geometries_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/tasking_manager_geometries_example.png -------------------------------------------------------------------------------- /docs/source/_static/img/vertically_sliced_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/_static/img/vertically_sliced_groups.png -------------------------------------------------------------------------------- /docs/source/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/backup.md -------------------------------------------------------------------------------- /docs/source/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/cli.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/configuration.md -------------------------------------------------------------------------------- /docs/source/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/data.md -------------------------------------------------------------------------------- /docs/source/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/debugging.md -------------------------------------------------------------------------------- /docs/source/dev_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/dev_setup.md -------------------------------------------------------------------------------- /docs/source/diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/diagrams.md -------------------------------------------------------------------------------- /docs/source/for_mapswipe_managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/for_mapswipe_managers.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/installation.md -------------------------------------------------------------------------------- /docs/source/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/make.bat -------------------------------------------------------------------------------- /docs/source/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/notes.md -------------------------------------------------------------------------------- /docs/source/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/overview.md -------------------------------------------------------------------------------- /docs/source/project_type-buildArea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/project_type-buildArea.md -------------------------------------------------------------------------------- /docs/source/project_type-changeDetection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/project_type-changeDetection.md -------------------------------------------------------------------------------- /docs/source/project_type-footprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/project_type-footprint.md -------------------------------------------------------------------------------- /docs/source/project_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/project_type.md -------------------------------------------------------------------------------- /docs/source/readme_link.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../../README.md 2 | -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/requirements.txt -------------------------------------------------------------------------------- /docs/source/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/tags -------------------------------------------------------------------------------- /docs/source/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/testing.md -------------------------------------------------------------------------------- /docs/source/tile_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/tile_size.md -------------------------------------------------------------------------------- /docs/source/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/tutorials.md -------------------------------------------------------------------------------- /docs/source/use_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/docs/source/use_cases.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/example.env -------------------------------------------------------------------------------- /firebase/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/.firebaserc -------------------------------------------------------------------------------- /firebase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/.gitignore -------------------------------------------------------------------------------- /firebase/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/.prettierrc -------------------------------------------------------------------------------- /firebase/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/Dockerfile -------------------------------------------------------------------------------- /firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/README.md -------------------------------------------------------------------------------- /firebase/database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/database.rules.json -------------------------------------------------------------------------------- /firebase/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/firebase.json -------------------------------------------------------------------------------- /firebase/functions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/.eslintrc.js -------------------------------------------------------------------------------- /firebase/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/.gitignore -------------------------------------------------------------------------------- /firebase/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/package.json -------------------------------------------------------------------------------- /firebase/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/src/index.ts -------------------------------------------------------------------------------- /firebase/functions/src/osm_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/src/osm_auth.ts -------------------------------------------------------------------------------- /firebase/functions/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/src/utils/index.ts -------------------------------------------------------------------------------- /firebase/functions/tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/tsconfig.dev.json -------------------------------------------------------------------------------- /firebase/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/tsconfig.json -------------------------------------------------------------------------------- /firebase/functions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/functions/yarn.lock -------------------------------------------------------------------------------- /firebase/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/firebase/public/index.html -------------------------------------------------------------------------------- /manager-dashboard/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.babelrc -------------------------------------------------------------------------------- /manager-dashboard/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.dockerignore -------------------------------------------------------------------------------- /manager-dashboard/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.env.example -------------------------------------------------------------------------------- /manager-dashboard/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.eslintignore -------------------------------------------------------------------------------- /manager-dashboard/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.eslintrc.js -------------------------------------------------------------------------------- /manager-dashboard/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.github/pull_request_template.md -------------------------------------------------------------------------------- /manager-dashboard/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.github/workflows/ci.yml -------------------------------------------------------------------------------- /manager-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.gitignore -------------------------------------------------------------------------------- /manager-dashboard/.unimportedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/.unimportedrc.json -------------------------------------------------------------------------------- /manager-dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/Dockerfile -------------------------------------------------------------------------------- /manager-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/README.md -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/AuthPopup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/AuthPopup/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/AuthPopup/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/AuthPopup/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/Init/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/Init/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/Navbar/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/Navbar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/Navbar/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/Page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/Page/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/Page/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/Page/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/PageTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/PageTitle/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/PreloadMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/PreloadMessage/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/PreloadMessage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/PreloadMessage/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/Routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/Routes/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/SmartLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/SmartLink/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/SmartNavLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/SmartNavLink/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/components/SmartNavLink/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/components/SmartNavLink/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/Base/configs/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/configs/apollo.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/configs/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/configs/firebase.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/configs/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/configs/history.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/configs/projectTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/configs/projectTypes.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/configs/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/configs/routes.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/configs/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/configs/sentry.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/context/NavbarContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/context/NavbarContext.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/context/ProjectContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/context/ProjectContext.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/context/UserContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/context/UserContext.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/hooks/useAuthSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/hooks/useAuthSync.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/hooks/useRouteMatching.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/hooks/useRouteMatching.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/Base/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/Base/types/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/types/project.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/types/user.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/utils/apollo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/utils/apollo.test.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/utils/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/utils/apollo.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/utils/errorTransform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/utils/errorTransform.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/utils/routes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/utils/routes.test.ts -------------------------------------------------------------------------------- /manager-dashboard/app/Base/utils/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/Base/utils/routes.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/AlertBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/AlertBanner/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/AlertBanner/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/AlertBanner/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/AnimatedSwipeIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/AnimatedSwipeIcon/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/AnimatedSwipeIcon/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/AnimatedSwipeIcon/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/BodyBackdrop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/BodyBackdrop/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/BodyBackdrop/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/BodyBackdrop/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Button/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Button/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Button/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Calendar/CalendarDate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Calendar/CalendarDate/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Calendar/CalendarDate/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Calendar/CalendarDate/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Calendar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Calendar/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Calendar/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Calendar/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Checkbox/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Checkbox/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Checkmark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Checkmark/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/CocoFileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/CocoFileInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/DateRangeInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/DateRangeInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/DateRangeInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/DateRangeInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/EmptyMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/EmptyMessage/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/EmptyMessage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/EmptyMessage/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/ExpandableContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/ExpandableContainer/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/ExpandableContainer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/ExpandableContainer/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/FileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/FileInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/FileInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/FileInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/GenericOption/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/GenericOption/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/GenericOption/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/GenericOption/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/GeoJsonFileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/GeoJsonFileInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/GeoJsonPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/GeoJsonPreview/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/GeoJsonPreview/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/GeoJsonPreview/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Heading/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Heading/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Heading/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/ImageInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/ImageInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/InputContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/InputContainer/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/InputContainer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/InputContainer/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/InputSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/InputSection/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/InputSection/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/InputSection/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/JsonFileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/JsonFileInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/List.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/MarkdownEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/MarkdownEditor/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/MarkdownEditor/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/MarkdownEditor/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/MarkdownPreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/MarkdownPreview/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/MobilePreview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/MobilePreview/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/MobilePreview/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/MobilePreview/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Modal/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Modal/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Modal/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/NonFieldError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/NonFieldError/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/NonFieldError/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/NonFieldError/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/NumberInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/NumberInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/PageContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/PageContent/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/PageContent/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/PageContent/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Pager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Pager/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Pager/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Pager/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/PendingMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/PendingMessage/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/PendingMessage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/PendingMessage/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Popup/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Popup/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Popup/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/PopupButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/PopupButton/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/PopupButton/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/PopupButton/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Portal.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Preview/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Preview/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Preview/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/RadioInput/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RadioInput/Radio/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/RadioInput/Radio/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RadioInput/Radio/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/RadioInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RadioInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/RadioInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RadioInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/RawButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RawButton/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/RawButton/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RawButton/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/RawInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RawInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/RawInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RawInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/RawTextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RawTextArea/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/RawTextArea/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/RawTextArea/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/SegmentInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SegmentInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/SegmentInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SegmentInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/SelectInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SelectInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/SelectInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SelectInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/SelectInput/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SelectInput/utils.ts -------------------------------------------------------------------------------- /manager-dashboard/app/components/SelectInputContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SelectInputContainer/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/SelectInputContainer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/SelectInputContainer/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Table/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/Table/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/Table/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/components/TextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/TextArea/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/TextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/TextInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/components/TileServerInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/components/TileServerInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/declarations/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/declarations/css.d.ts -------------------------------------------------------------------------------- /manager-dashboard/app/declarations/png.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/declarations/png.d.ts -------------------------------------------------------------------------------- /manager-dashboard/app/declarations/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/declarations/svg.d.ts -------------------------------------------------------------------------------- /manager-dashboard/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/favicon.ico -------------------------------------------------------------------------------- /manager-dashboard/app/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/favicon.png -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useBlurEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useBlurEffect.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useBooleanState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useBooleanState.ts -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useConfirmation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useConfirmation.ts -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useFirebaseDatabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useFirebaseDatabase.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useInputState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useInputState.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useKeyboard.ts -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/useMountedRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/useMountedRef.ts -------------------------------------------------------------------------------- /manager-dashboard/app/hooks/usePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/hooks/usePagination.ts -------------------------------------------------------------------------------- /manager-dashboard/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/index.html -------------------------------------------------------------------------------- /manager-dashboard/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/resources/icons/1_Tap_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/icons/1_Tap_Black.png -------------------------------------------------------------------------------- /manager-dashboard/app/resources/icons/2_Tap_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/icons/2_Tap_Black.png -------------------------------------------------------------------------------- /manager-dashboard/app/resources/icons/3_Tap_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/icons/3_Tap_Black.png -------------------------------------------------------------------------------- /manager-dashboard/app/resources/icons/swipeleft_icon_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/icons/swipeleft_icon_black.png -------------------------------------------------------------------------------- /manager-dashboard/app/resources/icons/tap_icon_angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/icons/tap_icon_angular.png -------------------------------------------------------------------------------- /manager-dashboard/app/resources/icons/tick_green_on_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/icons/tick_green_on_white.png -------------------------------------------------------------------------------- /manager-dashboard/app/resources/images/mapswipe-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/resources/images/mapswipe-logo.svg -------------------------------------------------------------------------------- /manager-dashboard/app/utils/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/utils/common.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/utils/firebase.ts -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/OrganisationFormModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/OrganisationFormModal/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/OrganisationFormModal/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/OrganisationFormModal/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/OrganisationList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/OrganisationList/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/OrganisationList/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/OrganisationList/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/TutorialList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/TutorialList/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/TutorialList/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/TutorialList/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Home/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Home/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Login/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Login/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Login/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewProject/ImageInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewProject/ImageInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewProject/ImageInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewProject/ImageInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewProject/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewProject/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewProject/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewProject/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewProject/useProjectOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewProject/useProjectOptions.ts -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewProject/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewProject/utils.ts -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewTutorial/ImageInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewTutorial/ImageInput/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewTutorial/ImageInput/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewTutorial/ImageInput/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewTutorial/InformationPageInput/BlockInput/styles.css: -------------------------------------------------------------------------------- 1 | .block { 2 | display: flex; 3 | } -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewTutorial/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewTutorial/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewTutorial/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewTutorial/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/NewTutorial/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/NewTutorial/utils.ts -------------------------------------------------------------------------------- /manager-dashboard/app/views/Projects/ProjectDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Projects/ProjectDetails/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Projects/ProjectDetails/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Projects/ProjectDetails/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Projects/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Projects/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Projects/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Projects/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Teams/TeamItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Teams/TeamItem/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Teams/TeamItem/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Teams/TeamItem/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/Teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Teams/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/Teams/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/Teams/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/UserGroups/UserGroupItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/UserGroups/UserGroupItem/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/UserGroups/UserGroupItem/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/UserGroups/UserGroupItem/styles.css -------------------------------------------------------------------------------- /manager-dashboard/app/views/UserGroups/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/UserGroups/index.tsx -------------------------------------------------------------------------------- /manager-dashboard/app/views/UserGroups/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/app/views/UserGroups/styles.css -------------------------------------------------------------------------------- /manager-dashboard/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/codegen.yml -------------------------------------------------------------------------------- /manager-dashboard/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/docker-compose.yml -------------------------------------------------------------------------------- /manager-dashboard/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/jest.config.js -------------------------------------------------------------------------------- /manager-dashboard/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/jest/cssTransform.js -------------------------------------------------------------------------------- /manager-dashboard/jest/pngTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/jest/pngTransform.js -------------------------------------------------------------------------------- /manager-dashboard/jest/svgTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/jest/svgTransform.js -------------------------------------------------------------------------------- /manager-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/package.json -------------------------------------------------------------------------------- /manager-dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/postcss.config.js -------------------------------------------------------------------------------- /manager-dashboard/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/stylelint.config.js -------------------------------------------------------------------------------- /manager-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/tsconfig.json -------------------------------------------------------------------------------- /manager-dashboard/type.template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/type.template.tsx -------------------------------------------------------------------------------- /manager-dashboard/user_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/user_scripts/README.md -------------------------------------------------------------------------------- /manager-dashboard/user_scripts/generate_coco_from_drive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/user_scripts/generate_coco_from_drive.js -------------------------------------------------------------------------------- /manager-dashboard/user_scripts/generate_coco_from_dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/user_scripts/generate_coco_from_dropbox.py -------------------------------------------------------------------------------- /manager-dashboard/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/webpack.config.js -------------------------------------------------------------------------------- /manager-dashboard/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/manager-dashboard/yarn.lock -------------------------------------------------------------------------------- /mapswipe_workers/.dockerignore: -------------------------------------------------------------------------------- 1 | scripts/ 2 | docs/ 3 | -------------------------------------------------------------------------------- /mapswipe_workers/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mapswipe_workers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/Dockerfile -------------------------------------------------------------------------------- /mapswipe_workers/locust_files/load_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/locust_files/load_testing.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/auth.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/config.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/definitions.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/firebase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/firebase/firebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/firebase/firebase.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/firebase_to_postgres/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/generate_stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/generate_stats/overall_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/generate_stats/overall_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/generate_stats/project_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/generate_stats/project_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/generate_stats/user_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/generate_stats/user_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/logging.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/logging.cfg -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/mapswipe_workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/mapswipe_workers.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/project_types/__init__.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/arbitrary_geometry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/arbitrary_geometry/digitization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/arbitrary_geometry/footprint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/media_classification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/project_types/project.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/street/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/street/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/project_types/street/project.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/tile_map_service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/tile_map_service/change_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/tile_map_service/classification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/tile_map_service/completeness/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/tile_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/project_types/tile_server.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/project_types/tutorial.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/project_types/validate_image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/api_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/api_calls.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/create_directories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/create_directories.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/geojson_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/geojson_functions.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/gzip_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/gzip_str.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/process_mapillary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/process_mapillary.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/slack_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/slack_helper.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/spatial_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/spatial_sampling.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/team_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/team_management.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/tile_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/tile_functions.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/user_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/user_management.py -------------------------------------------------------------------------------- /mapswipe_workers/mapswipe_workers/utils/validate_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/mapswipe_workers/utils/validate_input.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/add_project_geometries_to_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/add_project_geometries_to_api.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/add_tutorial_id_to_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/add_tutorial_id_to_projects.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/add_usernames_in_firebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/add_usernames_in_firebase.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/archive_old_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/archive_old_projects.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/delete_old_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/delete_old_groups.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/list_all_project_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/list_all_project_managers.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/mapswipe_to_hot_tm_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/mapswipe_to_hot_tm_project.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/tasks_to_geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/tasks_to_geojson.py -------------------------------------------------------------------------------- /mapswipe_workers/python_scripts/update_project_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/python_scripts/update_project_status.py -------------------------------------------------------------------------------- /mapswipe_workers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/requirements.txt -------------------------------------------------------------------------------- /mapswipe_workers/sample_data/1_share_by_task_id_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/sample_data/1_share_by_task_id_style.qml -------------------------------------------------------------------------------- /mapswipe_workers/sample_data/build_area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/sample_data/build_area/README.md -------------------------------------------------------------------------------- /mapswipe_workers/sample_data/street/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/sample_data/street/README.md -------------------------------------------------------------------------------- /mapswipe_workers/sample_data/tiles.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/sample_data/tiles.geojson -------------------------------------------------------------------------------- /mapswipe_workers/sample_data/total_count_by_task_id_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/sample_data/total_count_by_task_id_style.qml -------------------------------------------------------------------------------- /mapswipe_workers/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/setup.cfg -------------------------------------------------------------------------------- /mapswipe_workers/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/setup.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/feature_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/feature_collection.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/mapillary_response.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/mapillary_response.csv -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/mapillary_sequence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/mapillary_sequence.csv -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/media.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/media.zip -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/projectDrafts/classification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/projectDrafts/classification.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/projectDrafts/completeness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/projectDrafts/completeness.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/projectDrafts/digitization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/projectDrafts/digitization.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/projectDrafts/footprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/projectDrafts/footprint.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/projectDrafts/street.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/projectDrafts/street.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/tutorialDrafts/completeness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/tutorialDrafts/completeness.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/tutorialDrafts/footprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/tutorialDrafts/footprint.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/fixtures/tutorialDrafts/street.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/fixtures/tutorialDrafts/street.json -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/base.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/fixtures/digitization/groups/digitization.csv: -------------------------------------------------------------------------------- 1 | digitization g100 1 0 5 0 {} 2 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/fixtures/digitization/users/user.csv: -------------------------------------------------------------------------------- 1 | digitization genericUserName 2019-09-26T12:34:55.203Z 2023-06-14 13:09:52.996 2 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/fixtures/tile_map_service_grid/mapping_sessions_user_groups/build_area.csv: -------------------------------------------------------------------------------- 1 | 123 ug1001 2 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/fixtures/tile_map_service_grid/tasks/build_area_heidelberg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/fixtures/tile_map_service_grid/user_groups/build_area.csv: -------------------------------------------------------------------------------- 1 | ug1001 CustomUserGroup Description false 2020-02-03 15:39:39.332 2 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/run_tests.sh -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/set_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/set_up.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/set_up_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/set_up_db.sql -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/tear_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/tear_down.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_archive_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_archive_project.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_create_street_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_create_street_project.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_create_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_create_tutorial.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_delete_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_delete_project.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_firebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_firebase.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_gdal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_gdal.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_generate_stats_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_generate_stats_geo.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_get_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_get_results.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_overall_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_overall_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_team_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_team_management.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_transfer_geo_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_transfer_geo_results.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_transfer_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_transfer_results.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_update_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_update_data.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_update_project_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_update_project_data.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_update_user_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_update_user_data.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_update_user_group_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_update_user_group_data.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/integration/test_user_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/integration/test_user_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/readme.md -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_check_imagery_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_check_imagery_url.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_firebase_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_firebase_connection.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_group_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_group_size.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_groups_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_groups_overlap.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_init_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_init_project.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_process_mapillary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_process_mapillary.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_project_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_project_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_project_type_street.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_project_type_street.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_spatial_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_spatial_sampling.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_tile_grouping_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_tile_grouping_functions.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_tutorial_street.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_tutorial_street.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_user_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_user_stats.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_utils_validate_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_utils_validate_input.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/unittests/test_validate_geometries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/unittests/test_validate_geometries.py -------------------------------------------------------------------------------- /mapswipe_workers/tests/wip/test_firebase_db_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/mapswipe_workers/tests/wip/test_firebase_db_rules.py -------------------------------------------------------------------------------- /nginx/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/nginx/nginx.conf.template -------------------------------------------------------------------------------- /postgres/.dockerignore: -------------------------------------------------------------------------------- 1 | # remove folder from build context 2 | /scripts 3 | -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/Dockerfile-dev -------------------------------------------------------------------------------- /postgres/backup/archive_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/backup/archive_command.sh -------------------------------------------------------------------------------- /postgres/backup/make_basebackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/backup/make_basebackup.sh -------------------------------------------------------------------------------- /postgres/initdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/initdb.sql -------------------------------------------------------------------------------- /postgres/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/pg_hba.conf -------------------------------------------------------------------------------- /postgres/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/postgresql.conf -------------------------------------------------------------------------------- /postgres/recovery/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/recovery/Dockerfile -------------------------------------------------------------------------------- /postgres/recovery/init_recovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/recovery/init_recovery.sh -------------------------------------------------------------------------------- /postgres/recovery/recovery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/recovery/recovery.conf -------------------------------------------------------------------------------- /postgres/recovery/restore_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/recovery/restore_command.sh -------------------------------------------------------------------------------- /postgres/scripts/backtrack_user_group_mapping_sessions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/backtrack_user_group_mapping_sessions.sql -------------------------------------------------------------------------------- /postgres/scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/backup.sh -------------------------------------------------------------------------------- /postgres/scripts/changeGeomType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/changeGeomType.sql -------------------------------------------------------------------------------- /postgres/scripts/change_organization_name_for_projects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/change_organization_name_for_projects.sql -------------------------------------------------------------------------------- /postgres/scripts/show_table_sizes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/show_table_sizes.sql -------------------------------------------------------------------------------- /postgres/scripts/userGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/userGroups.sql -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_from_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_from_csv.sh -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_groups_from_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_groups_from_csv.sql -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_projects_from_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_projects_from_csv.sql -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_results.sh -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_results_from_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_results_from_csv.sql -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_tasks_from_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_tasks_from_csv.sql -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_to_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_to_csv.sh -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/copy_users_from_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/copy_users_from_csv.sql -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/generate_copy_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/generate_copy_to_csv.py -------------------------------------------------------------------------------- /postgres/scripts/v1_to_v2/project_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v1_to_v2/project_ids.txt -------------------------------------------------------------------------------- /postgres/scripts/v2_to_v3/01_create_test_replica.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v2_to_v3/01_create_test_replica.sql -------------------------------------------------------------------------------- /postgres/scripts/v2_to_v3/04_transfer_results_into_new_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v2_to_v3/04_transfer_results_into_new_tables.sql -------------------------------------------------------------------------------- /postgres/scripts/v2_to_v3/05_update_results_user_groups_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v2_to_v3/05_update_results_user_groups_table.sql -------------------------------------------------------------------------------- /postgres/scripts/v2_to_v3/07_update_mapping_sessions_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v2_to_v3/07_update_mapping_sessions_table.sql -------------------------------------------------------------------------------- /postgres/scripts/v2_to_v3/08_change_geom_type_for_tasks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/postgres/scripts/v2_to_v3/08_change_geom_type_for_tasks.sql -------------------------------------------------------------------------------- /recreate_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/recreate_container.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/setup.cfg -------------------------------------------------------------------------------- /test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapswipe/python-mapswipe-workers/HEAD/test_config.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------