├── .bumpversion.cfg ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── release.yml └── workflows │ ├── cd.yml │ ├── ci.yaml │ └── main.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── credentials.json.sample ├── docker-compose.yml ├── docs ├── Makefile ├── _config.yml ├── _templates │ └── layout.html ├── _toc.yml ├── api.rst ├── cheat_sheet.rst ├── community │ ├── authors.rst │ ├── contributing.rst │ ├── how_to_contribute.rst │ └── index.rst ├── conf.py ├── data_notes.rst ├── database_structure.rst ├── gallery │ ├── api_intro_example.ipynb │ ├── api_plot_pit_density_example.ipynb │ ├── camera_derived_snow_depths_example.ipynb │ ├── card-images │ │ ├── camera-snow-depths.png │ │ ├── compare-SSA-instruments.png │ │ ├── compare-UAVSAR-depths.png │ │ ├── graupel-pits.png │ │ ├── graupel-smp.png │ │ ├── plot-raster.png │ │ ├── plot-swe.png │ │ ├── raster-union-and-more.png │ │ └── spiral.png │ ├── compare_SSA_instruments_example.ipynb │ ├── compare_UAVSAR_to_depths_example.ipynb │ ├── get_spiral_example.ipynb │ ├── getting_started_example.ipynb │ ├── graupel_pits_example.ipynb │ ├── graupel_smp_example.ipynb │ ├── index.md │ ├── overview_example.ipynb │ ├── plot_pit_swe_example.ipynb │ ├── plot_raster_example.ipynb │ ├── raster_union_and_more_example.ipynb │ └── what_is_in_the_db_example.ipynb ├── history.rst ├── images │ ├── aso_depths_with_sites_example.png │ ├── connect_db_qgis.png │ ├── gpr_example.png │ ├── pit_spiral.png │ └── qgis_db_setup.png ├── logo.png ├── make.bat ├── qgis.rst ├── readme.rst └── usage.rst ├── pyproject.toml ├── snowexsql ├── __init__.py ├── api.py ├── conversions.py ├── db.py ├── functions.py ├── tables │ ├── __init__.py │ ├── base.py │ ├── campaign.py │ ├── campaign_observation.py │ ├── doi.py │ ├── image_data.py │ ├── image_observation.py │ ├── instrument.py │ ├── layer_data.py │ ├── measurement_type.py │ ├── observers.py │ ├── point_data.py │ ├── point_observation.py │ ├── single_location.py │ └── site.py └── utilities.py └── tests ├── __init__.py ├── api ├── test_layer_measurements.py └── test_point_measurements.py ├── conftest.py ├── data ├── LWC.csv ├── LWC2.csv ├── README.txt ├── S06M0874_2N12_20200131.CSV ├── S19M1013_5S21_20200201.CSV ├── SSA.csv ├── be_gm1_0287 │ ├── ..aux.xml │ ├── dblbnd.adf │ ├── hdr.adf │ ├── metadata.xml │ ├── prj.adf │ ├── sta.adf │ ├── w001001.adf │ └── w001001x.adf ├── be_gm1_0328 │ ├── dblbnd.adf │ ├── hdr.adf │ ├── metadata.xml │ ├── prj.adf │ ├── sta.adf │ ├── w001001.adf │ └── w001001x.adf ├── credentials.json ├── density.csv ├── depths.csv ├── gpr.csv ├── pole_depths.csv ├── site_5S21.csv ├── site_details.csv ├── smp_log.csv ├── stratigraphy.csv ├── temperature.csv ├── uavsar.ann ├── uavsar │ ├── uavsar_utm.amp1.real.tif │ ├── uavsar_utm.amp2.real.tif │ ├── uavsar_utm.cor.real.tif │ ├── uavsar_utm.int.imaginary.tif │ └── uavsar_utm.int.real.tif ├── uavsar_latlon.amp1.grd ├── uavsar_latlon.amp1.real.tif ├── uavsar_latlon.amp2.grd ├── uavsar_latlon.ann ├── uavsar_latlon.cor.grd └── uavsar_latlon.int.grd ├── factories ├── __init__.py ├── base_factory.py ├── campaign.py ├── doi.py ├── instrument.py ├── layer_data.py ├── measurement_type.py ├── observer.py ├── point_data.py ├── point_observation.py └── site.py ├── tables ├── test_campaign.py ├── test_doi.py ├── test_instrument.py ├── test_layer_data.py ├── test_measurment_type.py ├── test_observer.py ├── test_point_data.py ├── test_point_observation.py └── test_site.py └── test_db.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/README.rst -------------------------------------------------------------------------------- /credentials.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/credentials.json.sample -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/_toc.yml -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/cheat_sheet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/cheat_sheet.rst -------------------------------------------------------------------------------- /docs/community/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/community/authors.rst -------------------------------------------------------------------------------- /docs/community/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/community/how_to_contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/community/how_to_contribute.rst -------------------------------------------------------------------------------- /docs/community/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/community/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/data_notes.rst -------------------------------------------------------------------------------- /docs/database_structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/database_structure.rst -------------------------------------------------------------------------------- /docs/gallery/api_intro_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/api_intro_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/api_plot_pit_density_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/api_plot_pit_density_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/camera_derived_snow_depths_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/camera_derived_snow_depths_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/card-images/camera-snow-depths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/camera-snow-depths.png -------------------------------------------------------------------------------- /docs/gallery/card-images/compare-SSA-instruments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/compare-SSA-instruments.png -------------------------------------------------------------------------------- /docs/gallery/card-images/compare-UAVSAR-depths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/compare-UAVSAR-depths.png -------------------------------------------------------------------------------- /docs/gallery/card-images/graupel-pits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/graupel-pits.png -------------------------------------------------------------------------------- /docs/gallery/card-images/graupel-smp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/graupel-smp.png -------------------------------------------------------------------------------- /docs/gallery/card-images/plot-raster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/plot-raster.png -------------------------------------------------------------------------------- /docs/gallery/card-images/plot-swe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/plot-swe.png -------------------------------------------------------------------------------- /docs/gallery/card-images/raster-union-and-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/raster-union-and-more.png -------------------------------------------------------------------------------- /docs/gallery/card-images/spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/card-images/spiral.png -------------------------------------------------------------------------------- /docs/gallery/compare_SSA_instruments_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/compare_SSA_instruments_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/compare_UAVSAR_to_depths_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/compare_UAVSAR_to_depths_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/get_spiral_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/get_spiral_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/getting_started_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/getting_started_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/graupel_pits_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/graupel_pits_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/graupel_smp_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/graupel_smp_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/index.md -------------------------------------------------------------------------------- /docs/gallery/overview_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/overview_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/plot_pit_swe_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/plot_pit_swe_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/plot_raster_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/plot_raster_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/raster_union_and_more_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/raster_union_and_more_example.ipynb -------------------------------------------------------------------------------- /docs/gallery/what_is_in_the_db_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/gallery/what_is_in_the_db_example.ipynb -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/images/aso_depths_with_sites_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/images/aso_depths_with_sites_example.png -------------------------------------------------------------------------------- /docs/images/connect_db_qgis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/images/connect_db_qgis.png -------------------------------------------------------------------------------- /docs/images/gpr_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/images/gpr_example.png -------------------------------------------------------------------------------- /docs/images/pit_spiral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/images/pit_spiral.png -------------------------------------------------------------------------------- /docs/images/qgis_db_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/images/qgis_db_setup.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/qgis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/qgis.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/pyproject.toml -------------------------------------------------------------------------------- /snowexsql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/__init__.py -------------------------------------------------------------------------------- /snowexsql/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/api.py -------------------------------------------------------------------------------- /snowexsql/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/conversions.py -------------------------------------------------------------------------------- /snowexsql/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/db.py -------------------------------------------------------------------------------- /snowexsql/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/functions.py -------------------------------------------------------------------------------- /snowexsql/tables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/__init__.py -------------------------------------------------------------------------------- /snowexsql/tables/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/base.py -------------------------------------------------------------------------------- /snowexsql/tables/campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/campaign.py -------------------------------------------------------------------------------- /snowexsql/tables/campaign_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/campaign_observation.py -------------------------------------------------------------------------------- /snowexsql/tables/doi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/doi.py -------------------------------------------------------------------------------- /snowexsql/tables/image_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/image_data.py -------------------------------------------------------------------------------- /snowexsql/tables/image_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/image_observation.py -------------------------------------------------------------------------------- /snowexsql/tables/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/instrument.py -------------------------------------------------------------------------------- /snowexsql/tables/layer_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/layer_data.py -------------------------------------------------------------------------------- /snowexsql/tables/measurement_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/measurement_type.py -------------------------------------------------------------------------------- /snowexsql/tables/observers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/observers.py -------------------------------------------------------------------------------- /snowexsql/tables/point_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/point_data.py -------------------------------------------------------------------------------- /snowexsql/tables/point_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/point_observation.py -------------------------------------------------------------------------------- /snowexsql/tables/single_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/single_location.py -------------------------------------------------------------------------------- /snowexsql/tables/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/tables/site.py -------------------------------------------------------------------------------- /snowexsql/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/snowexsql/utilities.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/api/test_layer_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/api/test_layer_measurements.py -------------------------------------------------------------------------------- /tests/api/test_point_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/api/test_point_measurements.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/LWC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/LWC.csv -------------------------------------------------------------------------------- /tests/data/LWC2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/LWC2.csv -------------------------------------------------------------------------------- /tests/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/README.txt -------------------------------------------------------------------------------- /tests/data/S06M0874_2N12_20200131.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/S06M0874_2N12_20200131.CSV -------------------------------------------------------------------------------- /tests/data/S19M1013_5S21_20200201.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/S19M1013_5S21_20200201.CSV -------------------------------------------------------------------------------- /tests/data/SSA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/SSA.csv -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/..aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/..aux.xml -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/dblbnd.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/dblbnd.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/hdr.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/hdr.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/metadata.xml -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/prj.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/prj.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/sta.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/sta.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/w001001.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/w001001.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0287/w001001x.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0287/w001001x.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/dblbnd.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/dblbnd.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/hdr.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/hdr.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/metadata.xml -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/prj.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/prj.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/sta.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/sta.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/w001001.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/w001001.adf -------------------------------------------------------------------------------- /tests/data/be_gm1_0328/w001001x.adf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/be_gm1_0328/w001001x.adf -------------------------------------------------------------------------------- /tests/data/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/credentials.json -------------------------------------------------------------------------------- /tests/data/density.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/density.csv -------------------------------------------------------------------------------- /tests/data/depths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/depths.csv -------------------------------------------------------------------------------- /tests/data/gpr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/gpr.csv -------------------------------------------------------------------------------- /tests/data/pole_depths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/pole_depths.csv -------------------------------------------------------------------------------- /tests/data/site_5S21.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/site_5S21.csv -------------------------------------------------------------------------------- /tests/data/site_details.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/site_details.csv -------------------------------------------------------------------------------- /tests/data/smp_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/smp_log.csv -------------------------------------------------------------------------------- /tests/data/stratigraphy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/stratigraphy.csv -------------------------------------------------------------------------------- /tests/data/temperature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/temperature.csv -------------------------------------------------------------------------------- /tests/data/uavsar.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar.ann -------------------------------------------------------------------------------- /tests/data/uavsar/uavsar_utm.amp1.real.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar/uavsar_utm.amp1.real.tif -------------------------------------------------------------------------------- /tests/data/uavsar/uavsar_utm.amp2.real.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar/uavsar_utm.amp2.real.tif -------------------------------------------------------------------------------- /tests/data/uavsar/uavsar_utm.cor.real.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar/uavsar_utm.cor.real.tif -------------------------------------------------------------------------------- /tests/data/uavsar/uavsar_utm.int.imaginary.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar/uavsar_utm.int.imaginary.tif -------------------------------------------------------------------------------- /tests/data/uavsar/uavsar_utm.int.real.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar/uavsar_utm.int.real.tif -------------------------------------------------------------------------------- /tests/data/uavsar_latlon.amp1.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar_latlon.amp1.grd -------------------------------------------------------------------------------- /tests/data/uavsar_latlon.amp1.real.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar_latlon.amp1.real.tif -------------------------------------------------------------------------------- /tests/data/uavsar_latlon.amp2.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar_latlon.amp2.grd -------------------------------------------------------------------------------- /tests/data/uavsar_latlon.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar_latlon.ann -------------------------------------------------------------------------------- /tests/data/uavsar_latlon.cor.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar_latlon.cor.grd -------------------------------------------------------------------------------- /tests/data/uavsar_latlon.int.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/data/uavsar_latlon.int.grd -------------------------------------------------------------------------------- /tests/factories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/__init__.py -------------------------------------------------------------------------------- /tests/factories/base_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/base_factory.py -------------------------------------------------------------------------------- /tests/factories/campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/campaign.py -------------------------------------------------------------------------------- /tests/factories/doi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/doi.py -------------------------------------------------------------------------------- /tests/factories/instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/instrument.py -------------------------------------------------------------------------------- /tests/factories/layer_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/layer_data.py -------------------------------------------------------------------------------- /tests/factories/measurement_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/measurement_type.py -------------------------------------------------------------------------------- /tests/factories/observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/observer.py -------------------------------------------------------------------------------- /tests/factories/point_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/point_data.py -------------------------------------------------------------------------------- /tests/factories/point_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/point_observation.py -------------------------------------------------------------------------------- /tests/factories/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/factories/site.py -------------------------------------------------------------------------------- /tests/tables/test_campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_campaign.py -------------------------------------------------------------------------------- /tests/tables/test_doi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_doi.py -------------------------------------------------------------------------------- /tests/tables/test_instrument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_instrument.py -------------------------------------------------------------------------------- /tests/tables/test_layer_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_layer_data.py -------------------------------------------------------------------------------- /tests/tables/test_measurment_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_measurment_type.py -------------------------------------------------------------------------------- /tests/tables/test_observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_observer.py -------------------------------------------------------------------------------- /tests/tables/test_point_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_point_data.py -------------------------------------------------------------------------------- /tests/tables/test_point_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_point_observation.py -------------------------------------------------------------------------------- /tests/tables/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/tables/test_site.py -------------------------------------------------------------------------------- /tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnowEx/snowexsql/HEAD/tests/test_db.py --------------------------------------------------------------------------------