Skip to content
Snippets Groups Projects
Commit f398d67f authored by Robert Butora's avatar Robert Butora
Browse files

adds to response VOTable's VLKB-extension: file_url, cutout_url, merge_url

parent 5e2b7f4c
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,11 @@ public final class XmlSerializer
new ColumnInfo( "P3lon", Double.class, "P3 longitude" ),
new ColumnInfo( "P3lat", Double.class, "P3 latitude" ),
new ColumnInfo( "P4lon", Double.class, "P4 longitude" ),
new ColumnInfo( "P4lat", Double.class, "P4 latitude" )
new ColumnInfo( "P4lat", Double.class, "P4 latitude" ),
new ColumnInfo( "file_url", String.class, "Access URL: all file" ),
new ColumnInfo( "cutout_url", String.class, "Access URL: cut file" ),
new ColumnInfo( "merge_url", String.class, "Access URL: demosaicing files" )
};
RowListStarTable astro = new RowListStarTable( colInfos );
......@@ -162,6 +166,10 @@ public final class XmlSerializer
new Double(dataset.vertices_deg.lon[1]), new Double(dataset.vertices_deg.lat[1]),
new Double(dataset.vertices_deg.lon[2]), new Double(dataset.vertices_deg.lat[2]),
new Double(dataset.vertices_deg.lon[3]), new Double(dataset.vertices_deg.lat[3]),
dataset.access.accessFileUrl,
dataset.access.accessCutoutUrl,
dataset.access.accessMosaicUrl
});
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment