Skip to content

Commit

Permalink
bugfix: Call flattentool with correct schema
Browse files Browse the repository at this point in the history
    0.8.2 of libcoveofds needed for this
  • Loading branch information
jarofgreen committed Jun 28, 2023
1 parent ba5955f commit 0eb06e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cove_ofds/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def process(self, process_data: dict) -> dict:
"output_name": os.path.join(output_dir, "unflattened.json"),
"root_list_path": "networks",
"input_format": get_file_type_for_flatten_tool(self.supplied_data_files[0]),
"schema": schema.package_schema_url,
"schema": schema.network_schema_url,
"convert_wkt": True,
}

Expand Down Expand Up @@ -447,7 +447,7 @@ def process(self, process_data: dict) -> dict:
flatten_kwargs = {
"output_name": self.output_dir,
"root_list_path": "networks",
"schema": schema.package_schema_url,
"schema": schema.network_schema_url,
"truncation_length": 9,
"main_sheet_name": "networks",
"convert_wkt": True,
Expand Down

0 comments on commit 0eb06e6

Please sign in to comment.