-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from gantian127/release-v0.1.2
Release v0.1.2
- Loading branch information
Showing
5 changed files
with
142 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.