Interface IStarGroupDataProvider
-
- All Superinterfaces:
IParticleGroupDataProvider
- All Known Implementing Classes:
AbstractStarGroupDataProvider
,BinaryDataProvider
,DR2DataProvider
,SerializedDataProvider
,STILDataProvider
public interface IStarGroupDataProvider extends IParticleGroupDataProvider
Data provider for a star vgroup, which contains an index map with the names and indices of the stars.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.badlogic.gdx.utils.LongMap<float[]>
getColors()
long[]
getCountsPerMag()
Gets the star counts per magnitudevoid
setAdaptiveParallax(boolean adaptive)
Whether to use an adaptive threshold, relaxing it for bright (appmag >= 13) stars to let more bright stars in.void
setDistanceCap(double distCap)
Sets a distance cap.void
setGeoDistancesFile(java.lang.String geoDistFile)
Sets the location of the geometric distances file or directoryvoid
setMagCorrections(boolean magCorrections)
Sets the flag to apply magnitude and color corrections for extinction and reddeningvoid
setMustLoadIds(java.util.Set<java.lang.Long> ids)
Adds a set with all the ids which will be loaded regardless of any other conditions (i.e.void
setParallaxErrorFactorBright(double parallaxErrorFactor)
The loader will only load stars for which the parallax error is at most the percentage given here, in [0..1].void
setParallaxErrorFactorFaint(double parallaxErrorFactor)
The loader will only load stars for which the parallax error is at most the percentage given here, in [0..1].void
setParallaxZeroPoint(double parallaxZeroPoint)
Sets the zero point of the parallax as an addition to the parallax values, in [mas]void
setRUWECap(double RUWE)
Sets the RUWE criteria.void
setRUWEFile(java.lang.String RUWEFile)
Sets the location of the gzipped RUWE file-
Methods inherited from interface gaia.cu9.ari.gaiaorbit.data.group.IParticleGroupDataProvider
loadData, loadData, loadData, loadDataMapped, setFileNumberCap
-
-
-
-
Method Detail
-
getColors
com.badlogic.gdx.utils.LongMap<float[]> getColors()
-
setParallaxErrorFactorFaint
void setParallaxErrorFactorFaint(double parallaxErrorFactor)
The loader will only load stars for which the parallax error is at most the percentage given here, in [0..1]. This applies to faint stars (gmag >= 13.1) More specifically, the following must be met:
pllx_err < pllx * pllxErrFactor
- Parameters:
parallaxErrorFactor
- The percentage value of parallax errors with respect to parallax
-
setParallaxErrorFactorBright
void setParallaxErrorFactorBright(double parallaxErrorFactor)
The loader will only load stars for which the parallax error is at most the percentage given here, in [0..1]. This applies to bright stars (gmag < 13.1) More specifically, the following must be met:
pllx_err < pllx * pllxErrFactor
- Parameters:
parallaxErrorFactor
- The percentage value of parallax errors with respect to parallax
-
setAdaptiveParallax
void setAdaptiveParallax(boolean adaptive)
Whether to use an adaptive threshold, relaxing it for bright (appmag >= 13) stars to let more bright stars in.
-
setParallaxZeroPoint
void setParallaxZeroPoint(double parallaxZeroPoint)
Sets the zero point of the parallax as an addition to the parallax values, in [mas]- Parameters:
parallaxZeroPoint
- The parallax zero point
-
setMagCorrections
void setMagCorrections(boolean magCorrections)
Sets the flag to apply magnitude and color corrections for extinction and reddening- Parameters:
magCorrections
- Whether to apply the corrections
-
setGeoDistancesFile
void setGeoDistancesFile(java.lang.String geoDistFile)
Sets the location of the geometric distances file or directory- Parameters:
geoDistFile
- File or directory with geometric distances per sourceId
-
setRUWEFile
void setRUWEFile(java.lang.String RUWEFile)
Sets the location of the gzipped RUWE file- Parameters:
RUWEFile
- Gzipped file with RUWE values for each source id
-
setRUWECap
void setRUWECap(double RUWE)
Sets the RUWE criteria. RUWE file must have been set- Parameters:
RUWE
- The criteria (usually 1.4)
-
setDistanceCap
void setDistanceCap(double distCap)
Sets a distance cap. Stars beyond this distance will not be loaded- Parameters:
distCap
- The distance cap, in parsecs
-
getCountsPerMag
long[] getCountsPerMag()
Gets the star counts per magnitude
-
setMustLoadIds
void setMustLoadIds(java.util.Set<java.lang.Long> ids)
Adds a set with all the ids which will be loaded regardless of any other conditions (i.e. parallax error thresholds)- Parameters:
ids
- The ids that must be loaded
-
-