Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test info #428

Merged
merged 5 commits into from
Aug 5, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix get_layer_info key name from 'layername' to 'name' in gdal source
  • Loading branch information
index-git committed Aug 5, 2021
commit c1a0b2a776510fe9b4b5c5b1b3b1bed9452de6fe
2 changes: 1 addition & 1 deletion src/layman/layer/filesystem/gdal.py
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ def get_layer_info(workspace, layer):
gdal_gs_path = get_normalized_raster_layer_main_filepath(workspace, layer, geoserver=True)
if os.path.exists(gdal_path):
return {
'layername': layer,
'name': layer,
'_file': {
'normalized_file': {
'path': gdal_path,