Skip to content

Commit

Permalink
Merge pull request #290 from jread-usgs/master
Browse files Browse the repository at this point in the history
fix for value filtering bug report
  • Loading branch information
Jordan S Read committed Jul 15, 2016
2 parents b9f9d64 + b5d281e commit 5f80043
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,7 +1,7 @@
Package: geoknife
Type: Package
Title: Web-Processing of Large Gridded Datasets
Version: 1.3.3
Version: 1.3.4
Date: 2016-06-09
Authors@R: c( person("Jordan", "Read", role = c("aut","cre"),
email = "jread@usgs.gov"),
Expand Down
2 changes: 1 addition & 1 deletion R/query-webgeom.R
Expand Up @@ -21,7 +21,7 @@ setMethod(f = "query",signature("webgeom",'character'),
}
url <- sprintf('%s?service=WFS&version=%s&request=GetFeature&typename=%s&propertyname=%s',
url(.Object), version(.Object), geom(.Object), .Object@attribute)
input_list[['key']] = geom(.Object)
input_list[['key']] <- sprintf("%s/*[local-name()='%s']", geom(.Object), .Object@attribute)
} else {
stop('field ', field, ' not supported.')
}
Expand Down

0 comments on commit 5f80043

Please sign in to comment.