92e6c4fe1e
Extends DownloadSettings with 4 additional options: - Name: File name pattern for downloaded files (existed) - Disabled: Disables downloads - Originals: Only download files stored in "originals" folder - MediaRaw: Include RAW image files - MediaSidecar: Include metadata sidecar files (JSON, XMP, YAML)
24 lines
865 B
Go
24 lines
865 B
Go
package projection
|
|
|
|
const (
|
|
Unknown Type = ""
|
|
Equirectangular Type = "equirectangular"
|
|
Cubestrip Type = "cubestrip"
|
|
Cylindrical Type = "cylindrical"
|
|
TransverseCylindrical Type = "transverse-cylindrical"
|
|
PseudocylindricalCompromise Type = "pseudocylindrical-compromise"
|
|
Other Type = "other"
|
|
)
|
|
|
|
// Types maps identifiers to known types.
|
|
var Types = Known{
|
|
string(Unknown): Unknown,
|
|
string(Equirectangular): Equirectangular,
|
|
string(Cubestrip): Cubestrip,
|
|
string(Cylindrical): Cylindrical,
|
|
string(TransverseCylindrical): TransverseCylindrical,
|
|
string(PseudocylindricalCompromise): PseudocylindricalCompromise,
|
|
}
|
|
|
|
// Known maps names to standard projection types.
|
|
type Known map[string]Type
|