1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/integration/utils/ddo-metadata-generator.ts

57 lines
1.9 KiB
TypeScript
Raw Normal View History

2019-03-15 15:23:28 +01:00
import { MetaData } from "../../src" // @oceanprotocol/squid
const metadata: Partial<MetaData> = {
base: {
name: undefined,
type: "dataset",
description: "Weather information of UK including temperature and humidity",
2019-04-29 14:35:42 +02:00
dateCreated: "2012-10-10T17:00:000Z",
datePublished: "2012-10-10T17:00:000Z",
2019-03-15 15:23:28 +01:00
author: "Met Office",
license: "CC-BY",
copyrightHolder: "Met Office",
2019-04-29 14:35:42 +02:00
workExample: "423432fsd,51.509865,-0.118092,2011-01-01T10:55:11+00:00,7.2,68",
links: [
2019-03-15 15:23:28 +01:00
{
2019-04-29 14:35:42 +02:00
sample1: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-daily/",
2019-03-15 15:23:28 +01:00
},
{
2019-04-29 14:35:42 +02:00
sample2: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-averages-25km/",
},
{
fieldsDescription: "http://data.ceda.ac.uk/badc/ukcp09/",
2019-03-15 15:23:28 +01:00
},
],
inLanguage: "en",
2019-04-29 14:35:42 +02:00
categories: ["Economy", "Data Science"],
tags: ["weather", "uk", "2011", "temperature", "humidity"],
2019-03-15 15:23:28 +01:00
price: 10,
2019-04-29 14:35:42 +02:00
files: [
{
url: "234ab87234acbd09543085340abffh21983ddhiiee982143827423421",
checksum: "efb2c764274b745f5fc37f97c6b0e761",
contentLength: 4535431,
resourceId: "access-log2018-02-13-15-17-29-18386C502CAEA932",
},
{
url: "234ab87234acbd6894237582309543085340abffh21983ddhiiee982143827423421",
checksum: "085340abffh21495345af97c6b0e761",
contentLength: 12324,
},
{
url: "80684089027358963495379879a543085340abffh21983ddhiiee982143827abcc2",
},
],
2019-03-15 15:23:28 +01:00
},
}
export const generateMetadata = (name: string): Partial<MetaData> => ({
...metadata,
base: {
...metadata.base,
name,
},
})
export const getMetadata = () => generateMetadata("TestAsset")