Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vlkb-siav2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ViaLactea
vlkb-siav2
Commits
7734a622
Commit
7734a622
authored
1 year ago
by
Robert Butora
Browse files
Options
Downloads
Patches
Plain Diff
adds subsurvey metadata to VOTable xml
parent
594c2140
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
data-discovery/src/main/java/vlkb/output/XmlSerializer.java
+15
-2
15 additions, 2 deletions
data-discovery/src/main/java/vlkb/output/XmlSerializer.java
with
15 additions
and
2 deletions
data-discovery/src/main/java/vlkb/output/XmlSerializer.java
+
15
−
2
View file @
7734a622
...
@@ -109,7 +109,14 @@ public final class XmlSerializer
...
@@ -109,7 +109,14 @@ public final class XmlSerializer
new
ColumnInfo
(
"file_url"
,
String
.
class
,
"Access URL: all file"
),
new
ColumnInfo
(
"file_url"
,
String
.
class
,
"Access URL: all file"
),
new
ColumnInfo
(
"cutout_url"
,
String
.
class
,
"Access URL: cut file"
),
new
ColumnInfo
(
"cutout_url"
,
String
.
class
,
"Access URL: cut file"
),
new
ColumnInfo
(
"merge_url"
,
String
.
class
,
"Access URL: demosaicing files"
)
new
ColumnInfo
(
"merge_url"
,
String
.
class
,
"Access URL: demosaicing files"
),
// subsurvey metadata
new
ColumnInfo
(
"velocity_unit"
,
String
.
class
,
"Velocity Unit"
),
new
ColumnInfo
(
"survey"
,
String
.
class
,
"Survey name"
),
new
ColumnInfo
(
"species"
,
String
.
class
,
"Species"
),
new
ColumnInfo
(
"transition"
,
String
.
class
,
"Transition"
),
new
ColumnInfo
(
"description"
,
String
.
class
,
"Descritpion"
)
};
};
RowListStarTable
astro
=
new
RowListStarTable
(
colInfos
);
RowListStarTable
astro
=
new
RowListStarTable
(
colInfos
);
...
@@ -169,7 +176,13 @@ public final class XmlSerializer
...
@@ -169,7 +176,13 @@ public final class XmlSerializer
dataset
.
access
.
accessFileUrl
,
dataset
.
access
.
accessFileUrl
,
dataset
.
access
.
accessCutoutUrl
,
dataset
.
access
.
accessCutoutUrl
,
dataset
.
access
.
accessMosaicUrl
dataset
.
access
.
accessMosaicUrl
,
subsurvey
.
vel_unit
,
subsurvey
.
surveyname
,
subsurvey
.
species
,
subsurvey
.
transition
,
subsurvey
.
description
});
});
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment