├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── ODM2AdminDBBlank ├── ODM2AdminExamplePostgresqlDB ├── ODM2SQlite.db ├── ODM2SQliteBlank.db ├── ODM2SQliteBlank.sqlite ├── README.rst ├── docker ├── README.md ├── docker-deploy │ ├── README.md │ ├── docker-compose.yml │ └── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── development.py │ │ ├── exportdb.py │ │ └── production.py └── odm2admin │ ├── Dockerfile │ ├── odm2database │ ├── ODM2AdminDBBlank │ ├── cvload.py │ └── odm2adminDB.sql │ ├── startup.sh │ └── wait-for-postgres.sh ├── docs ├── Makefile └── source │ ├── DataLoggerFiles.rst │ ├── DataQAQC.rst │ ├── DataVisualizationTips.rst │ ├── GettingStartedInODM2Admin.rst │ ├── InstallODM2AdminWithDocker.rst │ ├── ManagingODM2WithTheDjangoORM.rst │ ├── ODM2AdminAdministration.rst │ ├── ODM2AdminDemo.rst │ ├── ODM2AdminSettings.rst │ ├── ODM2AdminSiteManagement.rst │ ├── ODM2Adminbackground.rst │ ├── ProfileResults.rst │ ├── _static │ └── logo.png │ ├── conf.py │ ├── images │ ├── AdminDashboard.png │ ├── AnnotatedData.png │ ├── AnnotatingData.png │ ├── CUAHSI-Logo-with-URL---Transparent_(RESIZED).png │ ├── ClusteredSite.png │ ├── DataLoggerFiles.png │ ├── DataResultChangeView.png │ ├── DataResultListPage.png │ ├── DerivingValues.png │ ├── Extendedinfrastructure.png │ ├── FieldArea.png │ ├── NotClustered.png │ ├── ODM2AdminHomePage.png │ ├── ODM2AdminInfrastructure.png │ ├── ODM2AdminShortcuts.png │ ├── PalmDys-21ClaySandSilt.png │ ├── PalmSJHWS2015ClaySandSilt.png │ ├── ProfileResultClay.png │ ├── RESSH-WaterTemperatureReadings.png │ ├── RESSHWaterTemp.png │ ├── RioEspirituSantoStreamGage.png │ ├── SelectWaterTempToAnnotate.png │ ├── SelectingDataWithURLs.png │ ├── methods.png │ └── offsetanddriftcorrect.png │ └── index.rst ├── example_scripts ├── SonadoraNitrateFill.py └── nitratefillshort.csv ├── extrasql.sql ├── github_deploy_key.enc ├── manage.py ├── managecli.py ├── manageexport.py ├── odm2admin ├── NewProcessinglevelForTimeSeries.py ├── __init__.py ├── admin.py ├── apps.py ├── favicon.ico ├── forms.py ├── listfilters.py ├── lookups.py ├── management │ ├── __init__.py │ └── commands │ │ ├── BoundAndAlarmCheckLoggerFile.py │ │ ├── ProcessDataLoggerFile.py │ │ ├── ProcessDataLoggerFileNoQualCheck.py │ │ ├── UpdateMissingL1vals.py │ │ ├── __init__.py │ │ ├── create_hydroshare_resource.py │ │ ├── create_l1_timeseries.py │ │ ├── create_sqlite_export.py │ │ ├── create_sqlite_export2.py │ │ ├── createdrivedvalues.py │ │ ├── dashboard_results.py │ │ ├── export_timeseriesresultvaluesextwannotations.py │ │ ├── preprocess_datalogger_file.py │ │ ├── process_ftp_dataloggerfiles.py │ │ ├── update_datalogger_file.py │ │ ├── update_preprocess_process_datalogger_file.py │ │ └── validate_datalogger_file.py ├── modelHelpers.py ├── models.py ├── readonlyadmin.py ├── static │ ├── css │ │ ├── external-link-alt-solid.svg │ │ ├── main_style.css │ │ └── target_href_style.css │ ├── jquery-1.12.4 │ │ └── jquery-1.12.4.min.js │ ├── js │ │ ├── AjaxRequest.js │ │ ├── App.js │ │ ├── Map.js │ │ ├── functions.js │ │ ├── samplingfeaturesmap.js │ │ └── webmap.js │ ├── leaflet-1.0.1 │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.esm.js │ │ ├── leaflet-src.esm.js.map │ │ ├── leaflet-src.js │ │ ├── leaflet-src.js.map │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.map │ ├── leaflet-awesome-marker │ │ ├── css │ │ │ └── leaflet.awesome-markers.css │ │ ├── img │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ ├── markers-matte.png │ │ │ ├── markers-matte@2x.png │ │ │ ├── markers-plain.png │ │ │ ├── markers-shadow.png │ │ │ ├── markers-shadow@2x.png │ │ │ ├── markers-soft.png │ │ │ └── markers-soft@2x.png │ │ └── js │ │ │ └── leaflet.awesome-markers.js │ ├── leaflet-grouped-layer-control │ │ ├── leaflet.groupedlayercontrol.css │ │ └── leaflet.groupedlayercontrol.js │ ├── leaflet-legend │ │ ├── leaflet-legend.css │ │ └── leaflet-legend.js │ ├── leaflet-marker-cluster │ │ ├── MarkerCluster.Default.css │ │ ├── MarkerCluster.css │ │ └── leaflet.markercluster-src.js │ ├── leaflet-search │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── images │ │ │ ├── back.png │ │ │ ├── leaflet-search.jpg │ │ │ ├── loader.gif │ │ │ ├── search-icon-mobile.png │ │ │ └── search-icon.png │ │ ├── index.html │ │ ├── leaflet-search-geocoder.js │ │ ├── leaflet-search.css │ │ ├── leaflet-search.js │ │ ├── leaflet-search.mobile.css │ │ ├── license.txt │ │ ├── package.json │ │ └── src │ │ │ ├── leaflet-search-geocoder.js │ │ │ ├── leaflet-search.css │ │ │ ├── leaflet-search.js │ │ │ └── leaflet-search.mobile.css │ ├── sidebar │ │ ├── L.Control.Sidebar.css │ │ ├── L.Control.Sidebar.js │ │ ├── L.Control.Sidebar.scss │ │ ├── css │ │ │ ├── gmaps-sidebar.css │ │ │ ├── gmaps-sidebar.min.css │ │ │ ├── leaflet-sidebar.css │ │ │ ├── leaflet-sidebar.min.css │ │ │ ├── ol2-sidebar.css │ │ │ ├── ol2-sidebar.min.css │ │ │ ├── ol3-sidebar.css │ │ │ └── ol3-sidebar.min.css │ │ ├── js │ │ │ ├── jquery-sidebar.js │ │ │ ├── jquery-sidebar.min.js │ │ │ ├── leaflet-sidebar.js │ │ │ ├── leaflet-sidebar.min.js │ │ │ ├── ol3-sidebar.js │ │ │ └── ol3-sidebar.min.js │ │ └── scss │ │ │ ├── _base.scss │ │ │ ├── _ol-base.scss │ │ │ ├── gmaps-sidebar.scss │ │ │ ├── leaflet-sidebar.scss │ │ │ ├── ol2-sidebar.scss │ │ │ └── ol3-sidebar.scss │ └── spin.js │ │ └── spin.min.js ├── templatetags │ ├── __init__.py │ └── admin_extras.py └── views.py ├── requirements-dev.txt ├── requirements.txt ├── scripts └── prep │ ├── changeVarsJody.py │ ├── checkInvalidAddifMissingdatalogger.py │ ├── checkinvalidAddifMissingdatalogger2.py │ ├── checkinvaliddataloggerdata.py │ ├── checkinvaliddataloggerdata2.py │ ├── createeelgrasssites.py │ ├── deleteduprepvs_2862578.py │ ├── ingesteelgrassdata.py │ ├── loadGrabFromLara.py │ ├── loadGrabdata2024.py │ ├── loadtimeseriesautonew3.py │ ├── mcdgrabs2020-21.py │ ├── recombinevars.py │ ├── replacevarforresults.py │ ├── resetqualitycodestogoodsince2022sql.sql │ └── resetqualitycodetoGoodsince2022.py ├── setup.py ├── soilsIngestionExample ├── EnzBiomass.csv └── ImportMStoneData.py ├── templatesAndSettings ├── __init__.py ├── base.py ├── celeryApp.py ├── scripts │ └── create_sqlite_file.sh ├── settings │ ├── __init__.py │ ├── base.py │ ├── development.py │ ├── exportdb.py │ └── production.py ├── templates │ ├── AddProfile.html │ ├── AddSensor.html │ ├── DatasetsList.html │ ├── FeatureAndVariableList.html │ ├── LocationDataInfo.html │ ├── ManageCitations.html │ ├── RecordAction.html │ ├── StartEndDate.html │ ├── StartEndDateAnnotation.html │ ├── VariableList.html │ ├── admin │ │ ├── app_index.html │ │ ├── base_site.html │ │ ├── delete_confirmation.html │ │ ├── delete_selected_confirmation.html │ │ ├── inc │ │ │ ├── branding.html │ │ │ ├── extrahead.html │ │ │ ├── extrastyle.html │ │ │ ├── title.html │ │ │ └── userlinks.html │ │ ├── my_index.html │ │ ├── odm2CZOData │ │ │ └── timeseriesresults │ │ │ │ └── change_list.html │ │ ├── odm2admin │ │ │ ├── actions │ │ │ │ ├── change_form.html │ │ │ │ └── change_list.html │ │ │ ├── dataloggerfiles │ │ │ │ ├── change_form.html │ │ │ │ └── change_list.html │ │ │ ├── datasets │ │ │ │ └── change_list.html │ │ │ ├── methods │ │ │ │ ├── change_form.html │ │ │ │ └── change_list.html │ │ │ ├── organizations │ │ │ │ ├── change_form.html │ │ │ │ └── change_list.html │ │ │ └── processdataloggerfile │ │ │ │ └── change_form.html │ │ ├── odm2testapp │ │ │ ├── datasets │ │ │ │ └── change_form.html │ │ │ ├── measurementresults │ │ │ │ └── change_list.html │ │ │ └── processdataloggerfile │ │ │ │ └── change_form.html │ │ └── submit_line.html │ ├── ajax_select │ │ └── autocompleteselect.html │ ├── chart.html │ ├── chart2.html │ ├── chartAnnotation.html │ ├── chartIndex.html │ ├── chartVariableAndFeature.html │ ├── chartpopup.html │ ├── chartsmall.html │ ├── ds_form.html │ ├── hysteresisChart.html │ ├── mapdata.html │ ├── mapdata_head.html │ ├── profilegraphpopupdetails.html │ ├── profileresultgraphpopup.html │ ├── publications.html │ ├── publications3.html │ ├── resultList.html │ ├── samplingfeatureselect.html │ ├── selectsftsr.html │ ├── sensordashboard.html │ ├── sf_form.html │ ├── soilsscatterplot.html │ ├── user-tools.html │ ├── wsscatterplot.html │ ├── wsscatterplottime.html │ ├── wsscatterplottime2.html │ └── xyVariableList.html ├── urls.py └── wsgi.py └── tests └── test_models.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /ODM2AdminDBBlank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/ODM2AdminDBBlank -------------------------------------------------------------------------------- /ODM2AdminExamplePostgresqlDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/ODM2AdminExamplePostgresqlDB -------------------------------------------------------------------------------- /ODM2SQlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/ODM2SQlite.db -------------------------------------------------------------------------------- /ODM2SQliteBlank.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/ODM2SQliteBlank.db -------------------------------------------------------------------------------- /ODM2SQliteBlank.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/ODM2SQliteBlank.sqlite -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/README.rst -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/docker-deploy/README.md -------------------------------------------------------------------------------- /docker/docker-deploy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/docker-deploy/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-deploy/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/docker-deploy/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/docker-deploy/settings/base.py -------------------------------------------------------------------------------- /docker/docker-deploy/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/docker-deploy/settings/development.py -------------------------------------------------------------------------------- /docker/docker-deploy/settings/exportdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/docker-deploy/settings/exportdb.py -------------------------------------------------------------------------------- /docker/docker-deploy/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/docker-deploy/settings/production.py -------------------------------------------------------------------------------- /docker/odm2admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/odm2admin/Dockerfile -------------------------------------------------------------------------------- /docker/odm2admin/odm2database/ODM2AdminDBBlank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/odm2admin/odm2database/ODM2AdminDBBlank -------------------------------------------------------------------------------- /docker/odm2admin/odm2database/cvload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/odm2admin/odm2database/cvload.py -------------------------------------------------------------------------------- /docker/odm2admin/odm2database/odm2adminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/odm2admin/odm2database/odm2adminDB.sql -------------------------------------------------------------------------------- /docker/odm2admin/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/odm2admin/startup.sh -------------------------------------------------------------------------------- /docker/odm2admin/wait-for-postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docker/odm2admin/wait-for-postgres.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/DataLoggerFiles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/DataLoggerFiles.rst -------------------------------------------------------------------------------- /docs/source/DataQAQC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/DataQAQC.rst -------------------------------------------------------------------------------- /docs/source/DataVisualizationTips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/DataVisualizationTips.rst -------------------------------------------------------------------------------- /docs/source/GettingStartedInODM2Admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/GettingStartedInODM2Admin.rst -------------------------------------------------------------------------------- /docs/source/InstallODM2AdminWithDocker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/InstallODM2AdminWithDocker.rst -------------------------------------------------------------------------------- /docs/source/ManagingODM2WithTheDjangoORM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ManagingODM2WithTheDjangoORM.rst -------------------------------------------------------------------------------- /docs/source/ODM2AdminAdministration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ODM2AdminAdministration.rst -------------------------------------------------------------------------------- /docs/source/ODM2AdminDemo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ODM2AdminDemo.rst -------------------------------------------------------------------------------- /docs/source/ODM2AdminSettings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ODM2AdminSettings.rst -------------------------------------------------------------------------------- /docs/source/ODM2AdminSiteManagement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ODM2AdminSiteManagement.rst -------------------------------------------------------------------------------- /docs/source/ODM2Adminbackground.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ODM2Adminbackground.rst -------------------------------------------------------------------------------- /docs/source/ProfileResults.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/ProfileResults.rst -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/_static/logo.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/images/AdminDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/AdminDashboard.png -------------------------------------------------------------------------------- /docs/source/images/AnnotatedData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/AnnotatedData.png -------------------------------------------------------------------------------- /docs/source/images/AnnotatingData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/AnnotatingData.png -------------------------------------------------------------------------------- /docs/source/images/CUAHSI-Logo-with-URL---Transparent_(RESIZED).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/CUAHSI-Logo-with-URL---Transparent_(RESIZED).png -------------------------------------------------------------------------------- /docs/source/images/ClusteredSite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/ClusteredSite.png -------------------------------------------------------------------------------- /docs/source/images/DataLoggerFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/DataLoggerFiles.png -------------------------------------------------------------------------------- /docs/source/images/DataResultChangeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/DataResultChangeView.png -------------------------------------------------------------------------------- /docs/source/images/DataResultListPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/DataResultListPage.png -------------------------------------------------------------------------------- /docs/source/images/DerivingValues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/DerivingValues.png -------------------------------------------------------------------------------- /docs/source/images/Extendedinfrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/Extendedinfrastructure.png -------------------------------------------------------------------------------- /docs/source/images/FieldArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/FieldArea.png -------------------------------------------------------------------------------- /docs/source/images/NotClustered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/NotClustered.png -------------------------------------------------------------------------------- /docs/source/images/ODM2AdminHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/ODM2AdminHomePage.png -------------------------------------------------------------------------------- /docs/source/images/ODM2AdminInfrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/ODM2AdminInfrastructure.png -------------------------------------------------------------------------------- /docs/source/images/ODM2AdminShortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/ODM2AdminShortcuts.png -------------------------------------------------------------------------------- /docs/source/images/PalmDys-21ClaySandSilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/PalmDys-21ClaySandSilt.png -------------------------------------------------------------------------------- /docs/source/images/PalmSJHWS2015ClaySandSilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/PalmSJHWS2015ClaySandSilt.png -------------------------------------------------------------------------------- /docs/source/images/ProfileResultClay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/ProfileResultClay.png -------------------------------------------------------------------------------- /docs/source/images/RESSH-WaterTemperatureReadings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/RESSH-WaterTemperatureReadings.png -------------------------------------------------------------------------------- /docs/source/images/RESSHWaterTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/RESSHWaterTemp.png -------------------------------------------------------------------------------- /docs/source/images/RioEspirituSantoStreamGage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/RioEspirituSantoStreamGage.png -------------------------------------------------------------------------------- /docs/source/images/SelectWaterTempToAnnotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/SelectWaterTempToAnnotate.png -------------------------------------------------------------------------------- /docs/source/images/SelectingDataWithURLs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/SelectingDataWithURLs.png -------------------------------------------------------------------------------- /docs/source/images/methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/methods.png -------------------------------------------------------------------------------- /docs/source/images/offsetanddriftcorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/images/offsetanddriftcorrect.png -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /example_scripts/SonadoraNitrateFill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/example_scripts/SonadoraNitrateFill.py -------------------------------------------------------------------------------- /example_scripts/nitratefillshort.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/example_scripts/nitratefillshort.csv -------------------------------------------------------------------------------- /extrasql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/extrasql.sql -------------------------------------------------------------------------------- /github_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/github_deploy_key.enc -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/manage.py -------------------------------------------------------------------------------- /managecli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/managecli.py -------------------------------------------------------------------------------- /manageexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/manageexport.py -------------------------------------------------------------------------------- /odm2admin/NewProcessinglevelForTimeSeries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/NewProcessinglevelForTimeSeries.py -------------------------------------------------------------------------------- /odm2admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/__init__.py -------------------------------------------------------------------------------- /odm2admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/admin.py -------------------------------------------------------------------------------- /odm2admin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/apps.py -------------------------------------------------------------------------------- /odm2admin/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/favicon.ico -------------------------------------------------------------------------------- /odm2admin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/forms.py -------------------------------------------------------------------------------- /odm2admin/listfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/listfilters.py -------------------------------------------------------------------------------- /odm2admin/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/lookups.py -------------------------------------------------------------------------------- /odm2admin/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /odm2admin/management/commands/BoundAndAlarmCheckLoggerFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/BoundAndAlarmCheckLoggerFile.py -------------------------------------------------------------------------------- /odm2admin/management/commands/ProcessDataLoggerFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/ProcessDataLoggerFile.py -------------------------------------------------------------------------------- /odm2admin/management/commands/ProcessDataLoggerFileNoQualCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/ProcessDataLoggerFileNoQualCheck.py -------------------------------------------------------------------------------- /odm2admin/management/commands/UpdateMissingL1vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/UpdateMissingL1vals.py -------------------------------------------------------------------------------- /odm2admin/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /odm2admin/management/commands/create_hydroshare_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/create_hydroshare_resource.py -------------------------------------------------------------------------------- /odm2admin/management/commands/create_l1_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/create_l1_timeseries.py -------------------------------------------------------------------------------- /odm2admin/management/commands/create_sqlite_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/create_sqlite_export.py -------------------------------------------------------------------------------- /odm2admin/management/commands/create_sqlite_export2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/create_sqlite_export2.py -------------------------------------------------------------------------------- /odm2admin/management/commands/createdrivedvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/createdrivedvalues.py -------------------------------------------------------------------------------- /odm2admin/management/commands/dashboard_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/dashboard_results.py -------------------------------------------------------------------------------- /odm2admin/management/commands/export_timeseriesresultvaluesextwannotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/export_timeseriesresultvaluesextwannotations.py -------------------------------------------------------------------------------- /odm2admin/management/commands/preprocess_datalogger_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/preprocess_datalogger_file.py -------------------------------------------------------------------------------- /odm2admin/management/commands/process_ftp_dataloggerfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/process_ftp_dataloggerfiles.py -------------------------------------------------------------------------------- /odm2admin/management/commands/update_datalogger_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/update_datalogger_file.py -------------------------------------------------------------------------------- /odm2admin/management/commands/update_preprocess_process_datalogger_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/update_preprocess_process_datalogger_file.py -------------------------------------------------------------------------------- /odm2admin/management/commands/validate_datalogger_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/management/commands/validate_datalogger_file.py -------------------------------------------------------------------------------- /odm2admin/modelHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/modelHelpers.py -------------------------------------------------------------------------------- /odm2admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/models.py -------------------------------------------------------------------------------- /odm2admin/readonlyadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/readonlyadmin.py -------------------------------------------------------------------------------- /odm2admin/static/css/external-link-alt-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/css/external-link-alt-solid.svg -------------------------------------------------------------------------------- /odm2admin/static/css/main_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/css/main_style.css -------------------------------------------------------------------------------- /odm2admin/static/css/target_href_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/css/target_href_style.css -------------------------------------------------------------------------------- /odm2admin/static/jquery-1.12.4/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/jquery-1.12.4/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /odm2admin/static/js/AjaxRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/js/AjaxRequest.js -------------------------------------------------------------------------------- /odm2admin/static/js/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/js/App.js -------------------------------------------------------------------------------- /odm2admin/static/js/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/js/Map.js -------------------------------------------------------------------------------- /odm2admin/static/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/js/functions.js -------------------------------------------------------------------------------- /odm2admin/static/js/samplingfeaturesmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/js/samplingfeaturesmap.js -------------------------------------------------------------------------------- /odm2admin/static/js/webmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/js/webmap.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/images/layers-2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/images/layers.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/images/marker-icon-2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/images/marker-icon.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/images/marker-shadow.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet-src.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet-src.esm.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet-src.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet-src.esm.js.map -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet-src.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet-src.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet-src.js.map -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-1.0.1/leaflet.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-1.0.1/leaflet.js.map -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/css/leaflet.awesome-markers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/css/leaflet.awesome-markers.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/layers-2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/layers.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/marker-icon-2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/marker-icon.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-matte.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-matte@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-matte@2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-plain.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-shadow.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-shadow@2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-soft.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/img/markers-soft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/img/markers-soft@2x.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-awesome-marker/js/leaflet.awesome-markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-awesome-marker/js/leaflet.awesome-markers.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-grouped-layer-control/leaflet.groupedlayercontrol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-grouped-layer-control/leaflet.groupedlayercontrol.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-grouped-layer-control/leaflet.groupedlayercontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-grouped-layer-control/leaflet.groupedlayercontrol.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-legend/leaflet-legend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-legend/leaflet-legend.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-legend/leaflet-legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-legend/leaflet-legend.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-marker-cluster/MarkerCluster.Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-marker-cluster/MarkerCluster.Default.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-marker-cluster/MarkerCluster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-marker-cluster/MarkerCluster.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-marker-cluster/leaflet.markercluster-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-marker-cluster/leaflet.markercluster-src.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/Gruntfile.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/README.md -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/images/back.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/images/leaflet-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/images/leaflet-search.jpg -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/images/loader.gif -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/images/search-icon-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/images/search-icon-mobile.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/images/search-icon.png -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/index.html -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/leaflet-search-geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/leaflet-search-geocoder.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/leaflet-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/leaflet-search.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/leaflet-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/leaflet-search.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/leaflet-search.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/leaflet-search.mobile.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/license.txt -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/package.json -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/src/leaflet-search-geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/src/leaflet-search-geocoder.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/src/leaflet-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/src/leaflet-search.css -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/src/leaflet-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/src/leaflet-search.js -------------------------------------------------------------------------------- /odm2admin/static/leaflet-search/src/leaflet-search.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/leaflet-search/src/leaflet-search.mobile.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/L.Control.Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/L.Control.Sidebar.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/L.Control.Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/L.Control.Sidebar.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/L.Control.Sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/L.Control.Sidebar.scss -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/gmaps-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/gmaps-sidebar.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/gmaps-sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/gmaps-sidebar.min.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/leaflet-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/leaflet-sidebar.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/leaflet-sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/leaflet-sidebar.min.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/ol2-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/ol2-sidebar.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/ol2-sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/ol2-sidebar.min.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/ol3-sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/ol3-sidebar.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/css/ol3-sidebar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/css/ol3-sidebar.min.css -------------------------------------------------------------------------------- /odm2admin/static/sidebar/js/jquery-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/js/jquery-sidebar.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/js/jquery-sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/js/jquery-sidebar.min.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/js/leaflet-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/js/leaflet-sidebar.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/js/leaflet-sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/js/leaflet-sidebar.min.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/js/ol3-sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/js/ol3-sidebar.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/js/ol3-sidebar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/js/ol3-sidebar.min.js -------------------------------------------------------------------------------- /odm2admin/static/sidebar/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/scss/_base.scss -------------------------------------------------------------------------------- /odm2admin/static/sidebar/scss/_ol-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/scss/_ol-base.scss -------------------------------------------------------------------------------- /odm2admin/static/sidebar/scss/gmaps-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/scss/gmaps-sidebar.scss -------------------------------------------------------------------------------- /odm2admin/static/sidebar/scss/leaflet-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/scss/leaflet-sidebar.scss -------------------------------------------------------------------------------- /odm2admin/static/sidebar/scss/ol2-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/scss/ol2-sidebar.scss -------------------------------------------------------------------------------- /odm2admin/static/sidebar/scss/ol3-sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/sidebar/scss/ol3-sidebar.scss -------------------------------------------------------------------------------- /odm2admin/static/spin.js/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/static/spin.js/spin.min.js -------------------------------------------------------------------------------- /odm2admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /odm2admin/templatetags/admin_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/templatetags/admin_extras.py -------------------------------------------------------------------------------- /odm2admin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/odm2admin/views.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/prep/changeVarsJody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/changeVarsJody.py -------------------------------------------------------------------------------- /scripts/prep/checkInvalidAddifMissingdatalogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/checkInvalidAddifMissingdatalogger.py -------------------------------------------------------------------------------- /scripts/prep/checkinvalidAddifMissingdatalogger2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/checkinvalidAddifMissingdatalogger2.py -------------------------------------------------------------------------------- /scripts/prep/checkinvaliddataloggerdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/checkinvaliddataloggerdata.py -------------------------------------------------------------------------------- /scripts/prep/checkinvaliddataloggerdata2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/checkinvaliddataloggerdata2.py -------------------------------------------------------------------------------- /scripts/prep/createeelgrasssites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/createeelgrasssites.py -------------------------------------------------------------------------------- /scripts/prep/deleteduprepvs_2862578.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/deleteduprepvs_2862578.py -------------------------------------------------------------------------------- /scripts/prep/ingesteelgrassdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/ingesteelgrassdata.py -------------------------------------------------------------------------------- /scripts/prep/loadGrabFromLara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/loadGrabFromLara.py -------------------------------------------------------------------------------- /scripts/prep/loadGrabdata2024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/loadGrabdata2024.py -------------------------------------------------------------------------------- /scripts/prep/loadtimeseriesautonew3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/loadtimeseriesautonew3.py -------------------------------------------------------------------------------- /scripts/prep/mcdgrabs2020-21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/mcdgrabs2020-21.py -------------------------------------------------------------------------------- /scripts/prep/recombinevars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/recombinevars.py -------------------------------------------------------------------------------- /scripts/prep/replacevarforresults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/replacevarforresults.py -------------------------------------------------------------------------------- /scripts/prep/resetqualitycodestogoodsince2022sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/resetqualitycodestogoodsince2022sql.sql -------------------------------------------------------------------------------- /scripts/prep/resetqualitycodetoGoodsince2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/scripts/prep/resetqualitycodetoGoodsince2022.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/setup.py -------------------------------------------------------------------------------- /soilsIngestionExample/EnzBiomass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/soilsIngestionExample/EnzBiomass.csv -------------------------------------------------------------------------------- /soilsIngestionExample/ImportMStoneData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/soilsIngestionExample/ImportMStoneData.py -------------------------------------------------------------------------------- /templatesAndSettings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templatesAndSettings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/base.py -------------------------------------------------------------------------------- /templatesAndSettings/celeryApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/celeryApp.py -------------------------------------------------------------------------------- /templatesAndSettings/scripts/create_sqlite_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/scripts/create_sqlite_file.sh -------------------------------------------------------------------------------- /templatesAndSettings/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templatesAndSettings/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/settings/base.py -------------------------------------------------------------------------------- /templatesAndSettings/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/settings/development.py -------------------------------------------------------------------------------- /templatesAndSettings/settings/exportdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/settings/exportdb.py -------------------------------------------------------------------------------- /templatesAndSettings/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/settings/production.py -------------------------------------------------------------------------------- /templatesAndSettings/templates/AddProfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/AddProfile.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/AddSensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/AddSensor.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/DatasetsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/DatasetsList.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/FeatureAndVariableList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/FeatureAndVariableList.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/LocationDataInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/LocationDataInfo.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/ManageCitations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/ManageCitations.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/RecordAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/RecordAction.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/StartEndDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/StartEndDate.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/StartEndDateAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/StartEndDateAnnotation.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/VariableList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/VariableList.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/app_index.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/base_site.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/delete_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/delete_confirmation.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/delete_selected_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/delete_selected_confirmation.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/inc/branding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/inc/branding.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/inc/extrahead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/inc/extrahead.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/inc/extrastyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/inc/extrastyle.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/inc/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/inc/title.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/inc/userlinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/inc/userlinks.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/my_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/my_index.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2CZOData/timeseriesresults/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2CZOData/timeseriesresults/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/actions/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/actions/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/actions/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/actions/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/dataloggerfiles/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/dataloggerfiles/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/dataloggerfiles/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/dataloggerfiles/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/datasets/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/datasets/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/methods/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/methods/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/methods/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/methods/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/organizations/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/organizations/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/organizations/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/organizations/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2admin/processdataloggerfile/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2admin/processdataloggerfile/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2testapp/datasets/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2testapp/datasets/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2testapp/measurementresults/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2testapp/measurementresults/change_list.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/odm2testapp/processdataloggerfile/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/odm2testapp/processdataloggerfile/change_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/admin/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/admin/submit_line.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/ajax_select/autocompleteselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/ajax_select/autocompleteselect.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chart.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chart2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chart2.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chartAnnotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chartAnnotation.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chartIndex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chartIndex.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chartVariableAndFeature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chartVariableAndFeature.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chartpopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chartpopup.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/chartsmall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/chartsmall.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/ds_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/ds_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/hysteresisChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/hysteresisChart.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/mapdata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/mapdata.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/mapdata_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/mapdata_head.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/profilegraphpopupdetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/profilegraphpopupdetails.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/profileresultgraphpopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/profileresultgraphpopup.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/publications.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/publications3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/publications3.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/resultList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/resultList.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/samplingfeatureselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/samplingfeatureselect.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/selectsftsr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/selectsftsr.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/sensordashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/sensordashboard.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/sf_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/sf_form.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/soilsscatterplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/soilsscatterplot.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/user-tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/user-tools.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/wsscatterplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/wsscatterplot.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/wsscatterplottime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/wsscatterplottime.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/wsscatterplottime2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/wsscatterplottime2.html -------------------------------------------------------------------------------- /templatesAndSettings/templates/xyVariableList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/templates/xyVariableList.html -------------------------------------------------------------------------------- /templatesAndSettings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/urls.py -------------------------------------------------------------------------------- /templatesAndSettings/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/templatesAndSettings/wsgi.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ODM2/CZ-Manager/HEAD/tests/test_models.py --------------------------------------------------------------------------------