Skip to main content

Embodied City Python SDK

Project description

embodied-city-python-sdk

A Simple Python SDK to interact with the Embodied City API. Users can easily achieve perception and control of drone agents through the following functions. When the command is issued via the API, changes in the agent's first-person view will be observed in the Console.

Installation

pip install embodiedcity

Usage

Acquire ID and token

Before you can use the SDK, you need to acquire a drone and obtain its token. You can get one by signing up at Embodied City.

In the website, you should go to the "Console" page, choose an available drone, and click on the "Acquire" button. After that, you will see a token with the drone ID.

ATTENTION: The token is a secret key that should not be shared with anyone.

ATTENTION: The token will expire after a certain period of time if you do not use it. (the time constrain will be notified in the website)

Initialize the client

from embodiedcity import DroneClient, ImageType, CameraID

base_url = "https://embodied-city.fiblab.net"
drone_id = "xxx"
token = "xxxxxxxx"
client = DroneClient(base_url, drone_id, token)

Move the drone

# Move the drone forward by 10 meter (Short movement distance may result in action failure)
client.move_back_forth(10)

Obtain the RGB image of the front camera

# Get a RGB image from the front-center camera
image = client.get_image(ImageType.Scene, CameraID.FrontCenter)

Get the depth image

# Get an image of the depth from the front-center camera
image = client.get_image(ImageType.DepthPlanar, CameraID.FrontCenter)

Release the drone

After you finish using the drone, you should release it to make it available for others.

You can do this by clicking on the "Release" button in the "Console" page.

FAQ

After invoking the control action, the drone did not move.

It is possible that the drone collided with a building. Try issuing a command to move the drone in a direction without obstacles. Alternatively, use the function DroneClient.move_to_position to force it to a specified location.

What should I do if I need the drone to perform more complex operations?

Please download and install the full embodiedcity simulator.

HTTP Protocol

POST /api/call-function

Body:

{
    "droneId": "drone ID",
    "action": "action string",
    "args": [arg1, arg2, ...],
    "token": "(optional) token for authorization"
}

Status code is 200 if the action is successful.

Action string, arg, return value:

Action Args Description Return Description
move_back_forth [distance: float] Move the drone back (<0) and forth (>0) by a certain distance (unit: meters) None -
move_horizontal [distance: float] Move the drone left (>0) and right (<0) by a certain distance (unit: meters) None -
move_vertical [distance: float] Move the drone up (>0) and down (<0) by a certain distance (unit: meters) None -
move_by_yaw [yaw: float] Rotate the drone by a certain angle. Positive values mean rotating counterclockwise, negative values mean rotating clockwise. (unit: radians) None -
get_image [image_type: int, camera_id: str] Get an image from the specified camera. image_type can be 0 (Scene), 1 (DepthPlanar), 2 (Segmentation). camera_id can be 0 (FrontCenter), 1 (FrontRight), 2 (FrontLeft), 3 (BottomCenter), 4 (BackCenter) image: bytes The image data in bytes (MIME: image/jpeg)
get_current_state [] Get the current state of the drone [[x, y, z], [pitch, roll, yaw]] The current state of the drone
move_to_position [x: float, y: float, z: float] Move the drone to the specified position None -
set_vehicle_pose [x: float, y: float, z: float, pitch: float, roll: float, yaw: float] Set the pose of the drone None -

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

embodiedcity-0.3.0.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

embodiedcity-0.3.0-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file embodiedcity-0.3.0.tar.gz.

File metadata

  • Download URL: embodiedcity-0.3.0.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for embodiedcity-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f8db0c76054fba59f079085003ea2e6a4ec8c6d202fca1871c16036a62f1f0e4
MD5 1406107ab0d8547efa42d2a4f7aaed14
BLAKE2b-256 1f556d2306c3a567f50bccf91f5ec3b3836ed6c00de14abdabbe9ae3ac545fe1

See more details on using hashes here.

File details

Details for the file embodiedcity-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: embodiedcity-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for embodiedcity-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 83dee5c1bec2916495305b27ee2ba425c859ca02c54e76261d19e29786d040e6
MD5 99555b8a667f4818e1cdfe9ff48860dc
BLAKE2b-256 cac8a07e8e9d842904cdab826dedcefcb33abeed9c561045b7bc6c0387fd80ec

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page