This is a placeholder new/page will refer to, then will be included in Help page of UI and in the upcoming guide.
Here will be explained how to make a script for your desired pattern of shooting.
It will require the FW C1E_02054 or recent
The s language is oriented toward Shots, it can be used for both Single MECHA or MECHA Dual Axis Combo ( MECHA DAC ) or DAC for short.
To be used is need to select [Scripted] in Row page of UI

It starts with the initial position of MECHA, in case of DAC we have commonly 3 possible start positions

There are couple of conventions in S language, the most important are
_ refers to H MECHA 1 LED is ON when paired
and
= refers to V MECHA, 2 LEDs are ON when paired.

So to speccify a start position of V MECHA as Parked the language will start with
S=90,
if the start position is Raised will be
S=-90,
for the Level position will be S=0, or S=,
S=0, or S=,
Suppose we want to script a panorama starting from Parked position, made out of 12 photos around, 3 rows at + - 45 deg + Zenith and Nadir
After starting position, we need to specify the first position
like
1=0_0,
1 mean 1 photo after start, =0 means V MECHA is at 0 deg. and _0 means H MECHA is at 0 deg from start
so, assuming parked position our script grows in
S=90, 1=0_0,
Then we need to think how we want MECHAs to move, as we want 12 photos around, each will be 30 deg apart from the previous one
so the next position will be with only H MECHA rotated 30 deg, while V MECHA will stay at the same level.
we can write that as 1=0_30, but S language allows aslo this compact form instead =_30,
by skipping (1) in 1=when is about the next photo and use = follow by noting means no changes for V MECHA
so the script grows in
S=90, 1=0_0, =_30,
The movement for panorama will continue by changing only H MECHA rotation another 10 photos then at 11th photo something changes, V MECHA should rotate up 45 deg, so we need to add 11=45, making the script
S=90, 1=0_0, =_30, 11=45,
then 11 positions will continue in the same manner and at the 12th photo the V MECHA should rotate to down 45 (-45)
so we need to add 12=-45, to script and it becomes
S=90, 1=0_0, =_30, 11=45, 12=-45,
as for the previous row, things goes the same for another 11 photos and at the 12th photo V MECHA need to rotate
at -90 which is the position for Nadir, so we need to add 12=-90, and the script becomes
S=90, 1=0_0, =_30, 11=45, 12=-45, 12=-90,
Finally we only need another position for Zenith photo which is at 0 deg H MECHA apart from the Nadir so we need to add =90_0, _0 tells that is at 0 deg apart from the previous one, so the script is now
S=90, 1=0_0, =_30, 11=45, 12=-45, 12=-90, =90_0,
to terminate the script we can add = now, in other situations can be left without so our final script is
S=90, 1=0_0, =_30, 11=45, 12=-45, 12=-90, =90_0, =
which you can see in the above image as well.
Just a side note, the script allows to have
certain portions in a loop for less text to be entered, especially in the case of gigapixel panoramas,
will be exemplified with an gigapixel example, later.
To launch this panorama is need to click on either [RIGHT] or [LEFT] and at the number of shots need to be 38 entered via custom.
In next episode I'll explain how to tell MECHA to wait, or to take extra shoots,on a particular orientation, so on.
Homework:
Please modify this script for 8 Shots around on each row.
(there is a bug in forum, it kick me out after a while so I'll save and edit, from time to time)
Here will be explained how to make a script for your desired pattern of shooting.
It will require the FW C1E_02054 or recent
The s language is oriented toward Shots, it can be used for both Single MECHA or MECHA Dual Axis Combo ( MECHA DAC ) or DAC for short.
To be used is need to select [Scripted] in Row page of UI
It starts with the initial position of MECHA, in case of DAC we have commonly 3 possible start positions
There are couple of conventions in S language, the most important are
_ refers to H MECHA 1 LED is ON when paired
and
= refers to V MECHA, 2 LEDs are ON when paired.
So to speccify a start position of V MECHA as Parked the language will start with
S=90,
if the start position is Raised will be
S=-90,
for the Level position will be S=0, or S=,
S=0, or S=,
Suppose we want to script a panorama starting from Parked position, made out of 12 photos around, 3 rows at + - 45 deg + Zenith and Nadir
After starting position, we need to specify the first position
like
1=0_0,
1 mean 1 photo after start, =0 means V MECHA is at 0 deg. and _0 means H MECHA is at 0 deg from start
so, assuming parked position our script grows in
S=90, 1=0_0,
Then we need to think how we want MECHAs to move, as we want 12 photos around, each will be 30 deg apart from the previous one
so the next position will be with only H MECHA rotated 30 deg, while V MECHA will stay at the same level.
we can write that as 1=0_30, but S language allows aslo this compact form instead =_30,
by skipping (1) in 1=when is about the next photo and use = follow by noting means no changes for V MECHA
so the script grows in
S=90, 1=0_0, =_30,
The movement for panorama will continue by changing only H MECHA rotation another 10 photos then at 11th photo something changes, V MECHA should rotate up 45 deg, so we need to add 11=45, making the script
S=90, 1=0_0, =_30, 11=45,
then 11 positions will continue in the same manner and at the 12th photo the V MECHA should rotate to down 45 (-45)
so we need to add 12=-45, to script and it becomes
S=90, 1=0_0, =_30, 11=45, 12=-45,
as for the previous row, things goes the same for another 11 photos and at the 12th photo V MECHA need to rotate
at -90 which is the position for Nadir, so we need to add 12=-90, and the script becomes
S=90, 1=0_0, =_30, 11=45, 12=-45, 12=-90,
Finally we only need another position for Zenith photo which is at 0 deg H MECHA apart from the Nadir so we need to add =90_0, _0 tells that is at 0 deg apart from the previous one, so the script is now
S=90, 1=0_0, =_30, 11=45, 12=-45, 12=-90, =90_0,
to terminate the script we can add = now, in other situations can be left without so our final script is
S=90, 1=0_0, =_30, 11=45, 12=-45, 12=-90, =90_0, =
which you can see in the above image as well.
Just a side note, the script allows to have
certain portions in a loop for less text to be entered, especially in the case of gigapixel panoramas,
will be exemplified with an gigapixel example, later.
To launch this panorama is need to click on either [RIGHT] or [LEFT] and at the number of shots need to be 38 entered via custom.
In next episode I'll explain how to tell MECHA to wait, or to take extra shoots,on a particular orientation, so on.
Homework:
Please modify this script for 8 Shots around on each row.
(there is a bug in forum, it kick me out after a while so I'll save and edit, from time to time)
Comment