Skip to content

Commit

Permalink
docs: update cli flags info
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Oct 8, 2019
1 parent b400e03 commit f481823
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions tagmaps/config/config.py
Expand Up @@ -161,7 +161,11 @@ def parse_args(self):
help="This will used topic modeling "
"to detect groups of tags (based on "
"Latent Dirichlet Allocation). "
"[Not implemented]")
"[Not fully implemented: currently, if this flag "
"is set, tagmaps will output a list of merged "
"terms per user which can be used in topic "
"modeling, e.g. Latent Dirichlet Allocation "
"algorithms]")
parser.add_argument("-w",
"--disable_write_cleaneddata",
action="store_true",
Expand All @@ -175,18 +179,25 @@ def parse_args(self):
"--shapefile_intersect",
type=Path,
help="Provide a relative path to a shapefile "
"to clip data prior to clustering.")
"to clip data prior to clustering. The shapefile "
"must be projected to WGS1984 (4326) Projection. "
"Multipart shapefiles are supported, but be "
"careful with polygon holes: it is recommended to "
"exclude polygon holes with a separate shapefile "
"using the --shapefile_exclude flag.")
parser.add_argument("--shapefile_exclude",
type=Path,
help="Provide a relative path to a shapefile "
"to exclude data prior to clustering. If "
"to exclude data prior to clustering. In case "
"--shapefile_intersect is also used, the exclusion "
"here applies after inclusion.")
parser.add_argument("-n",
"--ignore_stoplists",
action="store_true",
help="Set this flag to ignore any stoplists, "
"even if available/supplied."
"even if available/supplied. This is useful "
"if files that are places in 00_Config folder "
"must be temporarily ignored."
)
parser.add_argument("--stoplist_emoji",
type=Path,
Expand Down

0 comments on commit f481823

Please sign in to comment.