I'm trying to create a scenery bundle for the Marketplace that contains two separate airports.
I've setup the folder structure and data so that everything compiles into two individual Community folder packages, one for each airport. What isn't currently clear to me is how to shape the Marketplace data, so that the bundle is recognized as containing two separate airports. There seems to be no such mechanism in place to easily bundle scenery in one Marketplace package, so that it is categorized as containing two individual airports.
I've completely stripped Airport B of all Marketplace info, as there seems no path to combine Marketplace data from both Airport A and Airport B, and the compiler would currently otherwise produce two Marketplace JSON files.
Normally the Marketplace JSON file that holds the info for category, location and price would look like this for example:
"business": {
"PriceInUSD": 11.989999771118164,
"ThirdPartyShortName": "company",
"AccountSellerId": "12341234",
"UseFirstAvailableReleaseDate": true
},
"marketplace": {
"sections": [
{
"category": "Airports",
"section": "Airports"
}
]
},
"locations": [
{
"type": "airport",
"airportCode": "NTTB",
"latitude": -16.4436119754415,
"longitude": -151.7525222111225
}
]
}
Using the above structure and manually editing the file, this would seem like an appropriate structure:
"business": {
"PriceInUSD": 11.989999771118164,
"ThirdPartyShortName": " company",
"AccountSellerId": "12341234",
"UseFirstAvailableReleaseDate": true
},
"marketplace": {
"sections": [
{
"category": "Airports",
"section": "Airports"
}
]
},
"locations": [
{
"type": "airport",
"airportCode": " NTTB",
"latitude": - 16.4436119754415,
"longitude": - 151.7525222111225
},
{
"type": "airport",
"airportCode": "NFFN",
"latitude": -17.755278385931,
"longitude": 177.443333566679
}
]
}
Would this be suitable for submission?
Thanks in advance for your assistance.
Jerome