Skip to content

Commit

Permalink
Updated submodule to use the default dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
abarciauskas-bgse committed Oct 17, 2023
1 parent b112f38 commit 3509b52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion titiler_xarray
Submodule titiler_xarray updated 60 files
+60 −54 .github/workflows/ci.yml
+1 −0 .gitignore
+9 −0 CHANGELOG.md
+15 −4 README.md
+23 −0 RELEASING.md
+34 −0 infrastructure/aws/cdk/app.py
+1 −0 infrastructure/aws/cdk/config.py
+1 −1 infrastructure/aws/lambda/Dockerfile
+1 −1 infrastructure/aws/requirements-cdk.txt
+11 −2 pyproject.toml
+3 −1 tests/conftest.py
+45 −0 tests/fixtures/generate_test_netcdf.py
+26 −0 tests/fixtures/generate_test_zarr_unconsolidated.py
+72 −0 tests/fixtures/responses/histogram-response.json
+72 −0 tests/fixtures/responses/reference_json_histogram.json
+0 −0 tests/fixtures/responses/reference_json_info.json
+21 −0 tests/fixtures/responses/reference_json_tilejson.json
+1 −1 tests/fixtures/responses/test_zarr_store_info.json
+72 −0 tests/fixtures/responses/test_zarr_store_zarr_histogram.json
+19 −0 tests/fixtures/responses/test_zarr_store_zarr_info.json
+21 −0 tests/fixtures/responses/test_zarr_store_zarr_tilejson.json
+72 −0 tests/fixtures/responses/testfile_nc_histogram.json
+19 −0 tests/fixtures/responses/testfile_nc_info.json
+21 −0 tests/fixtures/responses/testfile_nc_tilejson.json
+72 −0 tests/fixtures/responses/unconsolidated_zarr_histogram.json
+19 −0 tests/fixtures/responses/unconsolidated_zarr_info.json
+21 −0 tests/fixtures/responses/unconsolidated_zarr_tilejson.json
+ tests/fixtures/testfile.nc
+1 −0 tests/fixtures/unconsolidated.zarr/.zattrs
+3 −0 tests/fixtures/unconsolidated.zarr/.zgroup
+20 −0 tests/fixtures/unconsolidated.zarr/lat/.zarray
+5 −0 tests/fixtures/unconsolidated.zarr/lat/.zattrs
+ tests/fixtures/unconsolidated.zarr/lat/0
+20 −0 tests/fixtures/unconsolidated.zarr/lon/.zarray
+5 −0 tests/fixtures/unconsolidated.zarr/lon/.zattrs
+ tests/fixtures/unconsolidated.zarr/lon/0
+20 −0 tests/fixtures/unconsolidated.zarr/time/.zarray
+5 −0 tests/fixtures/unconsolidated.zarr/time/.zattrs
+ tests/fixtures/unconsolidated.zarr/time/0
+24 −0 tests/fixtures/unconsolidated.zarr/var1/.zarray
+7 −0 tests/fixtures/unconsolidated.zarr/var1/.zattrs
+ tests/fixtures/unconsolidated.zarr/var1/0.0.0
+ tests/fixtures/unconsolidated.zarr/var1/0.1.0
+ tests/fixtures/unconsolidated.zarr/var1/1.0.0
+ tests/fixtures/unconsolidated.zarr/var1/1.1.0
+24 −0 tests/fixtures/unconsolidated.zarr/var2/.zarray
+7 −0 tests/fixtures/unconsolidated.zarr/var2/.zattrs
+ tests/fixtures/unconsolidated.zarr/var2/0.0.0
+ tests/fixtures/unconsolidated.zarr/var2/0.1.0
+ tests/fixtures/unconsolidated.zarr/var2/1.0.0
+ tests/fixtures/unconsolidated.zarr/var2/1.1.0
+22 −0 tests/helpers.py
+181 −56 tests/test_app.py
+375 −222 titiler/xarray/factory.py
+13 −1 titiler/xarray/main.py
+339 −0 titiler/xarray/map-form.html
+202 −0 titiler/xarray/map.html
+153 −0 titiler/xarray/middleware.py
+41 −10 titiler/xarray/reader.py
+12 −9 titiler/xarray/settings.py

0 comments on commit 3509b52

Please sign in to comment.