This function creates all the required elements for a otherEntity section of an ELM document. This should be used if data cannot be added using another more structured format.

create_other_entity(file_name, file_description, file_type, physical)

Arguments

file_name

The name of your entity file

file_description

A short description of your file

file_type

Type of file added as another entity

physical

Physical describtion of object use physical to generate

parent_element

A list to append otherEntity to

Value

A list that contains all the required elements of the otherEntity section of an EML document.

Details

Create Other Entity Element

Examples

if (FALSE) {
create_other_entity(file_name = "other_entity.zip" ,
                    file_description = "An other entity zip",
                    "physical" = add_physical("other_entity.zip")
                    )
}