-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from iodepo/126-wod-world-ocean-database-conn…
…ection 126 [WOD] world ocean database connection
- Loading branch information
Showing
1 changed file
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"@context": { | ||
"@vocab": "https://schema.org/" | ||
}, | ||
"@type": "Dataset", | ||
"identifier": { | ||
"@type": "PropertyValue", | ||
"description": "These identifiers for individual casts are assigned by the World Ocean Database", | ||
"propertyID": "Unique_Cast", | ||
"value": "15302" | ||
}, | ||
"name": "A concise but descriptive name of the dataset", | ||
"description": "An extended, free-text description of what's in the dataset, who created it, and other attributes", | ||
"url": "https://noaa-wod-pds.s3.amazonaws.com/index.html", | ||
"sameAs": [ | ||
"http://alternativeUrlToTheDatasetOrLandingPage.org" | ||
], | ||
"license": "Public domain", | ||
"citation": [ | ||
"Citation to other work relevant to this dataset", | ||
"Citation to other work relevant to this dataset", | ||
"Citation to other work relevant to this dataset" | ||
], | ||
"version": "2021-04-24T06:34:56.000Z", | ||
"keywords": [ | ||
"Keyword 1", | ||
"Keyword 2", | ||
"Keyword 3" | ||
], | ||
"measurementTechnique": "The URL to or text about the methods, technique or technology used to generate this Dataset", | ||
"variableMeasured": [ | ||
{ | ||
"@type": "PropertyValue", | ||
"name": "Name of a variable in the dataset", | ||
"description": "Extended description of this variable" | ||
}, | ||
{ | ||
"@type": "PropertyValue", | ||
"name": "Name of a variable in the datase", | ||
"url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable", | ||
"description": "Extended description of this variabl?" | ||
}, | ||
{ | ||
"@type": "PropertyValue", | ||
"name": "SamplingDeviceApertureSurfaceArea", | ||
"url": "http://ontology.org/uriToSemanticDescriptorOfThisVariable", | ||
"description": "Extended description of this variabl" | ||
} | ||
], | ||
"includedInDataCatalog": { | ||
"@id": "https://registryOfCatalogs.org/permanentUrlIdentifiyingCatalog", | ||
"@type": "DataCatalog", | ||
"url": "https://urlOfDataCatalog.org" | ||
}, | ||
"temporalCoverage": "2007/2007", | ||
"distribution": { | ||
"@type": "DataDownload", | ||
"contentUrl": "https://www.ncei.noaa.gov/access/world-ocean-database-select/OCLdb_output/ocldb1678285460.26800.CTD.tar.gz", | ||
"encodingFormat": "application/gzip", | ||
"description": "This tar.gz file contains a collection of netCDF files" | ||
}, | ||
"spatialCoverage": { | ||
"@type": "Place", | ||
"geo": { | ||
"@type": "GeoShape", | ||
"polygon": "142.014 10.161667,142.014 18.033833,147.997833 18.033833,147.997833 10.161667,142.014 10.161667" | ||
}, | ||
"additionalProperty": { | ||
"@type": "PropertyValue", | ||
"propertyID": "http://dbpedia.org/resource/Spatial_reference_system", | ||
"value": "http://www.w3.org/2003/01/geo/wgs84_pos#lat_long" | ||
} | ||
}, | ||
"provider": [ | ||
{ | ||
"@id": "https://registryOfOrganisations.org/identifierOfOrganisation", | ||
"@type": "Organization", | ||
"legalName": "Legal Name of Organisation which generated the dataset", | ||
"name": "Other Name of Organisation which generated the dataset", | ||
"url": "https://organisationWebsite.org/" | ||
} | ||
], | ||
"subjectOf": { | ||
"@type": "Event", | ||
"description": "Describe the event which is the subject of this dataset. For example, a cruise ID.", | ||
"name": "Concise and descriptive name of the Event", | ||
"potentialAction": { | ||
"@type": "Action", | ||
"name": "Concise but descriptive name of action that was part of an Event. For example, the name of a CTD cast", | ||
"agent": [ | ||
"Name or permanent ID of person or thing that performed this action", | ||
"Name or permanent ID of person or thing that performed this action", | ||
"Name or permanent ID of person or thing that performed this action", | ||
], | ||
"startTime": "2007-03-11T14:45UTC" | ||
"endTime": "2007-03-11T15:42UTC" | ||
"instrument": { | ||
"@type": "Thing", | ||
"name": "The name of the instrument used in the action. For example, the specific model of a CTD, a glider, a moored sensor", | ||
"url": "http://ontology.org/uriToSemanticDescriptorOfThisInstrument", | ||
"description": "Extended description of the sampling instrument" | ||
} | ||
} | ||
} | ||
} |