Skip to content

Commit

Permalink
correctly specify sticky column. Closes #279
Browse files Browse the repository at this point in the history
  • Loading branch information
boshek committed Aug 24, 2021
1 parent acb30bb commit 8ef27b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions R/describe-feature.R
Expand Up @@ -76,7 +76,6 @@ bcdc_describe_feature.bcdc_record <- function(record){
}

parse_raw_feature_tbl <- function(query_list){

## GET and parse data to sf object
cli <- bcdc_wfs_client()

Expand Down Expand Up @@ -115,7 +114,7 @@ feature_helper <- function(whse_name){


## Fix logicals
xml_df$nillable = ifelse(xml_df$nillable == "true", TRUE, FALSE)
xml_df$nillable = ifelse(xml_df$nillable == "true", FALSE, TRUE)
xml_df <- xml_df[, c("name", "nillable", "type")]

## Add the id_row back into the front
Expand Down

0 comments on commit 8ef27b7

Please sign in to comment.