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

Release v0.1.2 #1

Merged
merged 3 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 14 additions & 8 deletions meta/SoilData/config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
service_id: phh2o
coverage_id: phh2o_0-5cm_mean
crs: urn:ogc:def:crs:EPSG::152160
west: -1784000
south: 1356000
east: -1140000
north: 1863000
output: test.tif
bmi-soilgrids:
service_id: {{service_id}}
coverage_id: {{coverage_id}}
crs: {{crs}}
west: {{west}}
south: {{south}}
east: {{east}}
north: {{north}}
resx: {{resx}}
resy: {{resy}}
width: {{width}}
height: {{height}}
response_crs: {{response_crs}}
output: {{output}}
90 changes: 90 additions & 0 deletions meta/SoilData/parameters.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
service_id:
name: Service ID
description: Map service identifier for a map service
value:
type: string
default: phh2o
units: 1
coverage_id:
name: Coverage ID
description: Map coverage identifier supported by a map service
value:
type: string
default: phh2o_0-5cm_mean
units: 1
crs:
name: Coordinate system
description: Coordinate system code for a map coverage
value:
type: string
default: urn:ogc:def:crs:EPSG::152160
west:
name: Bounding box west coordinate
description: The x value for the point on the lower left corner of the bounding box.
value:
type: float
default: -1784000
units: meters
south:
name: Bounding box south Coordinate
description: The y value for the point on the lower left corner of the bounding box
value:
type: float
default: 1356000
units: meters
east:
name: Bounding box east Coordinate
description: The x value for the point on the upper right corner of the bounding box
value:
type: float
default: -1140000
units: meters
north:
name: Bounding box North Coordinate
description: The y value for the point on the upper right corner of the bounding box
value:
type: float
default: 1863000
units: meters
resx:
name: X Resolution
description: Pixel resolution in x direction
value:
type: float
default: 250.0
units: meters
resy:
name: Y Resolution
description: Pixel resolution in y direction
value:
type: float
default: 250.0
units: meters
width:
name: Width
description: Total number of pixels for the width of subset data.
value:
type: int
default: 316
units: 1
height:
name: Height
description: Total number of pixels for the height of subset data.
value:
type: int
default: 275
units: 1
response_crs:
name: Response Coordinate System
description: Coordinate system code for the output GeoTiff file.
value:
type: string
default: urn:ogc:def:crs:EPSG::152160
units: 1
output:
name: Output
description: File name for the output GeoTiff file.
value:
type: string
default: 'test.tif'
units: 1
142 changes: 0 additions & 142 deletions meta/SoilData/parameters.yaml

This file was deleted.

17 changes: 9 additions & 8 deletions notebooks/config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
service_id: phh2o
coverage_id: phh2o_0-5cm_mean
crs: urn:ogc:def:crs:EPSG::152160
west: -1784000
south: 1356000
east: -1140000
north: 1863000
output: test.tif
bmi-soilgrids:
service_id: phh2o
coverage_id: phh2o_0-5cm_mean
crs: urn:ogc:def:crs:EPSG::152160
west: -1784000
south: 1356000
east: -1140000
north: 1863000
output: test.tif
Loading