convert.py¶
Bases: YamlFile
A class to apply a YAML config file and convert ODK to OSM.
Returns:
Type | Description |
---|---|
Convert
|
An instance of this object |
Source code in osm_merge/fieldwork/convert.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
privateData ¶
privateData(keyword)
Search the private data category for a keyword.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword
|
str
|
The keyword to search for |
required |
Returns:
Type | Description |
---|---|
bool
|
=If the keyword is in the private data section |
Source code in osm_merge/fieldwork/convert.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
convertData ¶
convertData(keyword)
Search the convert data category for a keyword.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword
|
str
|
The keyword to search for |
required |
Returns:
Type | Description |
---|---|
bool
|
Check to see if the keyword is in the convert data section |
Source code in osm_merge/fieldwork/convert.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
ignoreData ¶
ignoreData(keyword)
Search the convert data category for a ketyword.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword
|
str
|
The keyword to search for |
required |
Returns:
Type | Description |
---|---|
bool
|
Check to see if the keyword is in the ignore data section |
Source code in osm_merge/fieldwork/convert.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
|
getKeyword ¶
getKeyword(value)
Get the keyword for a value from the yaml file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
str
|
The value to find the keyword for |
required |
Returns:
Type | Description |
---|---|
str
|
The keyword if found, or None |
Source code in osm_merge/fieldwork/convert.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
|
getValues ¶
getValues(keyword=None)
Get the values for a primary key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keyword
|
str
|
The keyword to get the value of |
None
|
Returns:
Type | Description |
---|---|
str
|
The values or None |
Source code in osm_merge/fieldwork/convert.py
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
|
convertEntry ¶
convertEntry(tag, value)
Convert a tag and value from the ODK represention to an OSM one.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag
|
str
|
The tag from the ODK XML file |
required |
value
|
str
|
The value from the ODK XML file |
required |
Returns:
Type | Description |
---|---|
list
|
The converted values |
Source code in osm_merge/fieldwork/convert.py
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
convertValue ¶
convertValue(tag, value)
Convert a single tag value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag
|
str
|
The tag from the ODK XML file |
required |
value
|
str
|
The value from the ODK XML file |
required |
Returns:
Type | Description |
---|---|
list
|
The converted values |
Source code in osm_merge/fieldwork/convert.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
|
convertTag ¶
convertTag(tag)
Convert a single tag.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tag
|
str
|
The tag from the ODK XML file |
required |
Returns:
Type | Description |
---|---|
str
|
The new tag |
Source code in osm_merge/fieldwork/convert.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
|
convertMultiple ¶
convertMultiple(value)
Convert a multiple tags from a select_multiple question..
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
str
|
The tags from the ODK XML file |
required |
Returns:
Type | Description |
---|---|
list
|
The new tags |
Source code in osm_merge/fieldwork/convert.py
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
|
parseXLS ¶
parseXLS(xlsfile)
Parse the source XLSFile if available to look for details we need.
Source code in osm_merge/fieldwork/convert.py
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
|
dump ¶
dump()
Dump internal data structures, for debugging purposes only.
Source code in osm_merge/fieldwork/convert.py
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 |
|
options: show_source: false heading_level: 3