@@ -497,7 +497,7 @@ def get_startup_message_status(self) -> GeoComResponse[bool]:
497497 parsers = parsebool
498498 )
499499
500- def switch_laserlot (
500+ def switch_laserplummet (
501501 self ,
502502 active : bool
503503 ) -> GeoComResponse [None ]:
@@ -506,12 +506,12 @@ def switch_laserlot(
506506
507507 .. versionadded:: GeoCom-VivaTPS
508508
509- Sets the state of the laserlot .
509+ Sets the state of the laser plummet .
510510
511511 Parameters
512512 ----------
513513 active : bool
514- Activate laserlot .
514+ Activate laser plummet .
515515
516516 Returns
517517 -------
@@ -523,27 +523,27 @@ def switch_laserlot(
523523 [active ]
524524 )
525525
526- def get_laserlot_status (self ) -> GeoComResponse [bool ]:
526+ def get_laserplummet_status (self ) -> GeoComResponse [bool ]:
527527 """
528528 RPC 5042, ``CSV_GetLaserlotStatus``
529529
530530 .. versionadded:: GeoCom-VivaTPS
531531
532- Gets the current state of the laserlot .
532+ Gets the current state of the laser plummet .
533533
534534 Returns
535535 -------
536536 GeoComResponse
537537 Params:
538- - `bool`: Laserlot is active.
538+ - `bool`: Laser plummet is active.
539539
540540 """
541541 return self ._request (
542542 5042 ,
543543 parsers = parsebool
544544 )
545545
546- def set_laserlot_intensity (
546+ def set_laserplummet_intensity (
547547 self ,
548548 intensity : int
549549 ) -> GeoComResponse [None ]:
@@ -552,12 +552,12 @@ def set_laserlot_intensity(
552552
553553 .. versionadded:: GeoCom-VivaTPS
554554
555- Sets the intensity of the laserlot .
555+ Sets the intensity of the laser plummet .
556556
557557 Parameters
558558 ----------
559559 intensity : int
560- New laserlot intensity to set.
560+ New laser plummet intensity to set.
561561
562562 Returns
563563 -------
@@ -569,19 +569,19 @@ def set_laserlot_intensity(
569569 [intensity ]
570570 )
571571
572- def get_laserlot_intensity (self ) -> GeoComResponse [int ]:
572+ def get_laserplummet_intensity (self ) -> GeoComResponse [int ]:
573573 """
574574 RPC 5041, ``CSV_GetLaserlotIntens``
575575
576576 .. versionadded:: GeoCom-VivaTPS
577577
578- Gets the current intensity of the laserlot .
578+ Gets the current intensity of the laser plummet .
579579
580580 Returns
581581 -------
582582 GeoComResponse
583583 Params:
584- - `int`: Current laserlot intensity.
584+ - `int`: Current laser plummet intensity.
585585
586586 """
587587 return self ._request (
0 commit comments