Skip to content

Commit 8350288

Browse files
author
Raffaele Bua
committed
setup 0.12.5-6-osf version for new release
1 parent 6860522 commit 8350288

File tree

1,929 files changed

+81914
-169329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,929 files changed

+81914
-169329
lines changed

README.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,2 @@
1-
# Data Hub System
2-
The Data Hub System is a Java web based system designed to manage the on-line dissemination of Earth Observation Satellites data.
3-
4-
Data Hub System V.0.9.1-osf published here is developed by a [Serco](http://serco.com/) and [Gael Systems](http://www.gael.fr) consortium under a contract with the [European Space Agency](http://www.esa.int) in the frame of the Copernicus Programme. The SW code is made available according to the GNU Affero General Public License.
5-
</p>
6-
<p align="justify">
7-
8-
This Data Hub System version supports the dissemination of the ESA Copernicus Sentinels data access.
9-
It provides a basic web Graphical User Interface (GUI) to allow interactive data discovery and download, and a powerful Application Programming Interface (API) that allows users to access the data via their own computer programs, scripts or client applications.
10-
Detailed information on Sentinels products and Data Access mechanisms is available at [https://scihub.copernicus.eu] (https://scihub.copernicus.eu)
11-
12-
Sentinels products can be freely downloaded at [https://scihub.copernicus.eu] (https://scihub.copernicus.eu).
13-
14-
15-
The software version being published is the one in operations for the dissemination of Sentinel-1A, Sentinel 2A and Sentinel-3A data at [https://scihub.copernicus.eu] (https://scihub.copernicus.eu)
16-
17-
Any interested users can download and and build the code, although they must be informed that no specific SW maintenance is ensured for this public distribution. However, in the future, updated DHuS system releases will be published including new functions, correcting issues and supporting the future Sentinel products, when qualified.
18-
1+
# DHuS
2+
Data Hub Sentinels

addon/pom.xml

Lines changed: 0 additions & 54 deletions
This file was deleted.

addon/sentinel-1/pom.xml

Lines changed: 150 additions & 128 deletions
Original file line numberDiff line numberDiff line change
@@ -1,130 +1,152 @@
1-
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
5-
<modelVersion>4.0.0</modelVersion>
6-
7-
<properties>
8-
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
9-
</properties>
10-
11-
<groupId>fr.gael.dhus</groupId>
12-
<artifactId>dhus-addon-sentinel-1</artifactId>
13-
<packaging>jar</packaging>
14-
<version>1.0.4</version>
15-
16-
<name>DHuS - Sentinel-1 Addon</name>
17-
18-
<dependencies>
19-
<dependency>
20-
<groupId>fr.gael.drb</groupId>
21-
<artifactId>drbx-cortex-topic-sentinel-1</artifactId>
22-
<version>1.0.3</version>
23-
<exclusions>
24-
<exclusion>
25-
<artifactId>drbx-impl-netcdf</artifactId>
26-
<groupId>fr.gael.drb</groupId>
27-
</exclusion>
28-
<exclusion>
29-
<artifactId>drbx-cortex</artifactId>
30-
<groupId>fr.gael.drb</groupId>
31-
</exclusion>
32-
</exclusions>
33-
</dependency>
34-
<dependency>
35-
<groupId>fr.gael.drb</groupId>
36-
<artifactId>drbx-image</artifactId>
37-
<version>1.2</version>
38-
<exclusions>
39-
<exclusion>
40-
<groupId>fr.gael.drb</groupId>
41-
<artifactId>drb</artifactId>
42-
</exclusion>
43-
<exclusion>
44-
<groupId>fr.gael.drb</groupId>
45-
<artifactId>drbx-cortex</artifactId>
46-
</exclusion>
47-
</exclusions>
48-
</dependency>
49-
50-
<dependency>
51-
<groupId>fr.gael.drb</groupId>
52-
<artifactId>drb</artifactId>
53-
<version>2.4.0</version>
54-
</dependency>
55-
56-
<dependency>
57-
<groupId>fr.gael.drb</groupId>
58-
<artifactId>drbx-cortex</artifactId>
59-
<version>1.0.4</version>
60-
<exclusions>
61-
<exclusion>
62-
<groupId>fr.gael.drb</groupId>
63-
<artifactId>drb</artifactId>
64-
</exclusion>
65-
<exclusion>
66-
<groupId>log4j</groupId>
67-
<artifactId>log4j</artifactId>
68-
</exclusion>
69-
</exclusions>
70-
</dependency>
71-
72-
<dependency>
73-
<groupId>fr.gael.drb</groupId>
74-
<artifactId>drbx-impl-tiff</artifactId>
75-
<version>1.1</version>
76-
</dependency>
77-
78-
</dependencies>
79-
80-
<repositories>
81-
<repository>
82-
<id>osf-public</id>
83-
<name>OSF Public Repository</name>
84-
<url>
85-
https://copernicus.serco.eu/repository/nexus/content/groups/public/
86-
</url>
87-
<layout>default</layout>
88-
</repository>
89-
</repositories>
90-
91-
<profiles>
92-
<profile>
93-
<id>sources</id>
94-
<build>
95-
<plugins>
96-
<plugin>
97-
<groupId>org.apache.maven.plugins</groupId>
98-
<artifactId>maven-source-plugin</artifactId>
99-
<version>2.1.2</version>
100-
<executions>
101-
<execution>
102-
<id>attach-sources</id>
103-
<goals>
104-
<goal>jar-no-fork</goal>
105-
</goals>
106-
</execution>
107-
</executions>
108-
</plugin>
109-
</plugins>
110-
</build>
111-
</profile>
112-
</profiles>
113-
114-
<distributionManagement>
115-
<repository>
116-
<uniqueVersion>true</uniqueVersion>
117-
<id>osf-releases</id>
118-
<name>OSF Releases Repository</name>
119-
<url>
1+
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<properties>
8+
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
9+
</properties>
10+
11+
<groupId>fr.gael.dhus</groupId>
12+
<artifactId>dhus-addon-sentinel-1</artifactId>
13+
<packaging>jar</packaging>
14+
<version>1.0.5</version>
15+
16+
<name>DHuS - Sentinel-1 Addon</name>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>fr.gael.drb</groupId>
21+
<artifactId>drbx-cortex-topic-sentinel-1</artifactId>
22+
<version>1.0.4</version>
23+
<exclusions>
24+
<exclusion>
25+
<artifactId>drbx-impl-netcdf</artifactId>
26+
<groupId>fr.gael.drb</groupId>
27+
</exclusion>
28+
<exclusion>
29+
<artifactId>drbx-cortex</artifactId>
30+
<groupId>fr.gael.drb</groupId>
31+
</exclusion>
32+
</exclusions>
33+
</dependency>
34+
<dependency>
35+
<groupId>fr.gael.drb</groupId>
36+
<artifactId>drbx-image</artifactId>
37+
<version>1.2</version>
38+
<exclusions>
39+
<exclusion>
40+
<groupId>fr.gael.drb</groupId>
41+
<artifactId>drb</artifactId>
42+
</exclusion>
43+
<exclusion>
44+
<groupId>fr.gael.drb</groupId>
45+
<artifactId>drbx-cortex</artifactId>
46+
</exclusion>
47+
</exclusions>
48+
</dependency>
49+
50+
<dependency>
51+
<groupId>fr.gael.drb</groupId>
52+
<artifactId>drb</artifactId>
53+
<version>2.4.0</version>
54+
</dependency>
55+
56+
<dependency>
57+
<groupId>fr.gael.drb</groupId>
58+
<artifactId>drbx-cortex</artifactId>
59+
<version>1.0.4</version>
60+
<exclusions>
61+
<exclusion>
62+
<groupId>fr.gael.drb</groupId>
63+
<artifactId>drb</artifactId>
64+
</exclusion>
65+
<exclusion>
66+
<groupId>log4j</groupId>
67+
<artifactId>log4j</artifactId>
68+
</exclusion>
69+
</exclusions>
70+
</dependency>
71+
72+
<dependency>
73+
<groupId>fr.gael.drb</groupId>
74+
<artifactId>drbx-impl-tiff</artifactId>
75+
<version>1.1</version>
76+
</dependency>
77+
78+
</dependencies>
79+
80+
<build>
81+
<plugins>
82+
<plugin>
83+
<groupId>org.apache.maven.plugins</groupId>
84+
<artifactId>maven-compiler-plugin</artifactId>
85+
<version>3.2</version>
86+
<configuration>
87+
<source>1.7</source>
88+
<target>1.7</target>
89+
<encoding>ISO-8859-1</encoding>
90+
<compilerArgs>
91+
<arg>-Xlint:all,-options,-path</arg>
92+
</compilerArgs>
93+
</configuration>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-jar-plugin</artifactId>
98+
<version>2.5</version>
99+
<configuration>
100+
<archive>
101+
<manifest>
102+
<addDefaultImplementationEntries>
103+
true
104+
</addDefaultImplementationEntries>
105+
</manifest>
106+
</archive>
107+
</configuration>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-source-plugin</artifactId>
112+
<version>2.1.2</version>
113+
<executions>
114+
<execution>
115+
<id>attach-sources</id>
116+
<goals>
117+
<goal>jar-no-fork</goal>
118+
</goals>
119+
</execution>
120+
</executions>
121+
</plugin>
122+
</plugins>
123+
</build>
124+
125+
<repositories>
126+
<repository>
127+
<id>osf-public</id>
128+
<name>OSF Public Repository</name>
129+
<url>
130+
https://copernicus.serco.eu/repository/nexus/content/groups/public/
131+
</url>
132+
<layout>default</layout>
133+
</repository>
134+
</repositories>
135+
136+
<distributionManagement>
137+
<repository>
138+
<uniqueVersion>true</uniqueVersion>
139+
<id>osf-releases</id>
140+
<name>OSF Releases Repository</name>
141+
<url>
120142
https://copernicus.serco.eu/repository/nexus/content/repositories/releases/
121-
</url>
122-
<layout>default</layout>
123-
</repository>
124-
<site>
125-
<id>gael-site</id>
126-
<url>${site.baseUrl}/</url>
127-
</site>
128-
</distributionManagement>
129-
143+
</url>
144+
<layout>default</layout>
145+
</repository>
146+
<site>
147+
<id>gael-site</id>
148+
<url>${site.baseUrl}/</url>
149+
</site>
150+
</distributionManagement>
151+
130152
</project>

addon/sentinel-1/src/main/resources/META-INF/sentinel-1.owl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@
533533
drb:Iso8601DateFormatter(
534534
data (manifest.safe/XFDU/metadataSection/
535535
metadataObject[@ID="acquisitionPeriod"]/metadataWrap/xmlData/
536-
acquisitionPeriod/startTime), "yyyy-MM-dd'T'hh:mm:ss.SSSSSS")
536+
acquisitionPeriod/startTime), "yyyy-MM-dd'T'HH:mm:ss.SSSSSS")
537537
}
538538
</metadata>,
539539
@@ -545,7 +545,7 @@
545545
drb:Iso8601DateFormatter(
546546
data(manifest.safe/XFDU/metadataSection/
547547
metadataObject[@ID="acquisitionPeriod"]/metadataWrap/xmlData/
548-
acquisitionPeriod/stopTime), "yyyy-MM-dd'T'hh:mm:ss.SSSSSS")
548+
acquisitionPeriod/stopTime), "yyyy-MM-dd'T'HH:mm:ss.SSSSSS")
549549
}
550550
</metadata>,
551551
@@ -684,7 +684,7 @@
684684
drb:Iso8601DateFormatter(
685685
data (manifest.safe/XFDU/metadataSection/
686686
metadataObject[@ID="acquisitionPeriod"]/metadataWrap/xmlData/
687-
acquisitionPeriod/startTime), "yyyy-MM-dd'T'hh:mm:ss.SSSSSS")
687+
acquisitionPeriod/startTime), "yyyy-MM-dd'T'HH:mm:ss.SSSSSS")
688688
}
689689
</metadata>
690690
]]>

0 commit comments

Comments
 (0)