kepler module¶
Map
¶
Bases: KeplerGl
The Map class inherits keplergl.KeperGl.
Returns:
Name | Type | Description |
---|---|---|
object |
keplergl.KeperGl map object. |
Source code in leafmap/kepler.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 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 233 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 278 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 311 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 340 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 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 |
|
add_csv(in_csv, layer_name='Untitled', config=None, **kwargs)
¶
Adds a CSV to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_csv
|
str
|
File path to the CSV. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Source code in leafmap/kepler.py
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
add_df(df, layer_name='Untitled', config=None, **kwargs)
¶
Adds a DataFrame to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df
|
DataFrame
|
A Pandas DataFrame. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Source code in leafmap/kepler.py
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 |
|
add_gdf(gdf, layer_name='Untitled', config=None, **kwargs)
¶
Adds a GeoDataFrame to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gdf
|
GeoDataFrame
|
A GeoPandas GeoDataFrame. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Source code in leafmap/kepler.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
|
add_gdf_from_postgis(sql, con, layer_name='Untitled', config=None, **kwargs)
¶
Reads a PostGIS database and returns data as a GeoDataFrame to be added to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sql
|
str
|
SQL query to execute in selecting entries from database, or name of the table to read from the database. |
required |
con
|
Engine
|
Active connection to the database to query. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Source code in leafmap/kepler.py
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
|
add_geojson(in_geojson, layer_name='Untitled', config=None, **kwargs)
¶
Adds a GeoJSON file to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_geojson
|
str | dict
|
The file path or http URL to the input GeoJSON or a dictionary containing the geojson. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
FileNotFoundError
|
The provided GeoJSON file could not be found. |
TypeError
|
The input geojson must be a type of str or dict. |
Source code in leafmap/kepler.py
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
|
add_kml(in_kml, layer_name='Untitled', config=None, **kwargs)
¶
Adds a KML file to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_kml
|
str
|
The input file path to the KML. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
FileNotFoundError
|
The provided KML file could not be found. |
Source code in leafmap/kepler.py
327 328 329 330 331 332 333 334 335 336 337 338 339 340 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 |
|
add_shp(in_shp, layer_name='Untitled', config=None, **kwargs)
¶
Adds a shapefile to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
in_shp
|
str
|
The input file path to the shapefile. |
required |
layer_name
|
str
|
The layer name to be used.. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
FileNotFoundError
|
The provided shapefile could not be found. |
Source code in leafmap/kepler.py
175 176 177 178 179 180 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 |
|
add_vector(filename, layer_name='Untitled', config=None, **kwargs)
¶
Adds any geopandas-supported vector dataset to the map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
Either the absolute or relative path to the file or URL to be opened, or any object with a read() method (such as an open file or StringIO). |
required |
layer_name
|
str
|
The layer name to use. Defaults to "Untitled". |
'Untitled'
|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Source code in leafmap/kepler.py
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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
|
load_config(config=None)
¶
Loads a kepler.gl config file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
str
|
Local path or HTTP URL to the config file. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
FileNotFoundError
|
The provided config file could not be found. |
TypeError
|
The provided config file is not a kepler.gl config file. |
Source code in leafmap/kepler.py
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
|
save_config(out_json)
¶
Saves a kepler.gl config file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
out_json
|
str
|
Output file path to the config file. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
The output file extension must be json. |
TypeError
|
The provided filepath is invalid. |
Source code in leafmap/kepler.py
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 |
|
static_map(width=950, height=600, read_only=False, out_file=None, **kwargs)
¶
Display a kepler.gl static map in a Jupyter Notebook.
Args width (int, optional): Width of the map. Defaults to 950. height (int, optional): Height of the map. Defaults to 600. read_only (bool, optional): Whether to hide the side panel to disable map customization. Defaults to False. out_file (str, optional): Output html file path. Defaults to None.
Source code in leafmap/kepler.py
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 |
|
to_html(outfile=None, read_only=False, **kwargs)
¶
Saves the map as a HTML file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
outfile
|
str
|
The output file path to the HTML file. |
None
|
read_only
|
bool
|
Whether to hide the side panel to disable map customization. Defaults to False. |
False
|
Source code in leafmap/kepler.py
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 |
|
to_streamlit(width=800, height=600, responsive=True, scrolling=False, **kwargs)
¶
Renders keplergl.KeplerGl
map figure in a Streamlit app.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
width
|
int
|
Width of the map. Defaults to 800. |
800
|
height
|
int
|
Height of the map. Defaults to 600. |
600
|
responsive
|
bool
|
Whether to make the map responsive. Defaults to True. |
True
|
scrolling
|
bool
|
If True, show a scrollbar when the content is larger than the iframe. Otherwise, do not show a scrollbar. Defaults to False. |
False
|
Raises:
Type | Description |
---|---|
ImportError
|
If streamlit is not installed. |
Returns:
Type | Description |
---|---|
streamlit.components: components.html object. |
Source code in leafmap/kepler.py
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
|