Package gaiasky.util.datadesc
Class DataDescriptorUtils
java.lang.Object
gaiasky.util.datadesc.DataDescriptorUtils
-
Method Summary
Modifier and TypeMethodDescriptionbuildLocalDatasets
(DataDescriptor server) Constructs a list of local catalogs found in the current data location and combines them with the server data.buildServerDatasets
(com.badlogic.gdx.files.FileHandle fh) Constructs a data descriptor from a server JSON file.static void
static boolean
Checks whether the current data location contains old-version (pre-3.3.1) datasets.static DataDescriptorUtils
instance()
-
Method Details
-
instance
-
dataLocationOldVersionDatasetsCheck
public static boolean dataLocationOldVersionDatasetsCheck()Checks whether the current data location contains old-version (pre-3.3.1) datasets.- Returns:
- True if the data location contains old datasets.
-
cleanDataLocationOldDatasets
public static void cleanDataLocationOldDatasets() -
buildServerDatasets
Constructs a data descriptor from a server JSON file. If the file is null andfh
is also null, it returns null.- Parameters:
fh
- The pointer to the server JSON file.- Returns:
- An instance of
DataDescriptor
.
-
buildLocalDatasets
Constructs a list of local catalogs found in the current data location and combines them with the server data. Local catalogs are JSON files in the data directory that start with either 'catalog-' or 'dataset-'.- Parameters:
server
- The server data descriptor, for combining with the local catalogs.- Returns:
- An instance of
DataDescriptor
.
-