Asset
Add description here about this class
ipfs_stac.client
Asset
__init__(cid, local_gateway, api_port, fetch_data=False, name=None)
Constructor for asset object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cid
|
str
|
The CID associated with the object. |
required |
local_gateway
|
str
|
Local gateway endpoint. |
required |
api_port
|
int
|
API port. |
required |
fetch_data
|
bool
|
Fetch data from CID. Defaults to False. |
False
|
name
|
Optional[str]
|
Name of the asset. Defaults to None. |
None
|
addToMFS(filename, mfs_path)
Add CID to MFS.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename
|
str
|
Name of file. |
required |
mfs_path
|
str
|
Path in MFS. |
required |
fetch()
Fetch data for the asset.
pin()
Pin the asset to the local node.
to_np_ndarray(dtype=np.float32)
Convert asset data to numpy ndarray.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dtype
|
Union[dtype, type]
|
Data type for the ndarray. Defaults to np.float32. |
float32
|
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: Numpy array of the asset data. |
Source Code
ipfs_stac.client.Asset
Source code in ipfs_stac/client.py
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 |
|