photoprism/pkg/projection/types.go
Michael Mayer 92e6c4fe1e Download: Add Disabled, Originals, MediaRaw & MediaSidecar Flags #2234
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)
2022-04-15 09:42:07 +02:00

25 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