Secondary Time Area in russia.sui
-
- PPM
- Posts: 6
- Joined: March 29th, 2021, 1:23 pm
- Location: Indonesia
Secondary Time Area in russia.sui
Hi, i have a question for secondary time area
last time i check russia.sui in def/country i get this file from extracted def.scs on my ets 2 main folder
the content is here
country_data : country.data.russia
{
country_id: 38
name: "Россия"
name_localized: "@@russia@@"
country_code: "RU"
pos: (59500, 0, -51500)
fuel_price: 0.52
lights_mandatory: true
driving_tired_offence: true
time_zone: 180 # +3 hours in minutes
time_zone_name: "@@tz_msk@@"
# kaliningrad area, EET, +2 hours
secondary_time_zone_area[]: (32352.0, 41872.0, -26082.0, -20383.0)
secondary_time_zone[]: 120
secondary_time_zone_name[]: "@@tz_eet@@"
mass_limit_per_axle_count[]: 18000 # 2-axle vehicle
mass_limit_per_axle_count[]: 25000
mass_limit_per_axle_count[]: 36000
mass_limit_per_axle_count[]: 40000
mass_limit_per_axle_count[]: 44000
}
Can someone explain to me what is this for, especially the coordinates --> secondary_time_zone_area[]: (32352.0, 41872.0, -26082.0, -20383.0), is that x,y,z coordinate for respective time, thanks
last time i check russia.sui in def/country i get this file from extracted def.scs on my ets 2 main folder
the content is here
country_data : country.data.russia
{
country_id: 38
name: "Россия"
name_localized: "@@russia@@"
country_code: "RU"
pos: (59500, 0, -51500)
fuel_price: 0.52
lights_mandatory: true
driving_tired_offence: true
time_zone: 180 # +3 hours in minutes
time_zone_name: "@@tz_msk@@"
# kaliningrad area, EET, +2 hours
secondary_time_zone_area[]: (32352.0, 41872.0, -26082.0, -20383.0)
secondary_time_zone[]: 120
secondary_time_zone_name[]: "@@tz_eet@@"
mass_limit_per_axle_count[]: 18000 # 2-axle vehicle
mass_limit_per_axle_count[]: 25000
mass_limit_per_axle_count[]: 36000
mass_limit_per_axle_count[]: 40000
mass_limit_per_axle_count[]: 44000
}
Can someone explain to me what is this for, especially the coordinates --> secondary_time_zone_area[]: (32352.0, 41872.0, -26082.0, -20383.0), is that x,y,z coordinate for respective time, thanks
Re: Secondary Time Area in russia.sui
its the point of the map where secondary time zone starts
-
- PPM
- Posts: 6
- Joined: March 29th, 2021, 1:23 pm
- Location: Indonesia
Re: Secondary Time Area in russia.sui
how about this secondary_time_zone_area[]: (32352.0, 41872.0, -26082.0, -20383.0),
is that
X : 32352.0
Y : 41872.0
Z : -20383.0
For this number -26082.0 i don't know is number for, because when i type (goto 32352.0; 41872.0; -20383.0) on console in map editor it goes straight to Kaliningrad
is there any idea for this number
Thanks
is that
X : 32352.0
Y : 41872.0
Z : -20383.0
For this number -26082.0 i don't know is number for, because when i type (goto 32352.0; 41872.0; -20383.0) on console in map editor it goes straight to Kaliningrad
is there any idea for this number
Thanks
Re: Secondary Time Area in russia.sui
all 3 are coordinates, from Kalinigrad area the time changes. Is written even in definition
-
- PPM
- Posts: 6
- Joined: March 29th, 2021, 1:23 pm
- Location: Indonesia
Re: Secondary Time Area in russia.sui
so if i type goto 32352.0; 41872.0; -26082.0 in map editor console, its result is same like goto 32352.0; 41872.0; -20383.0), isn't it?
-
- PPM
- Posts: 6
- Joined: March 29th, 2021, 1:23 pm
- Location: Indonesia
Re: Secondary Time Area in russia.sui
Looks like i already find the meaning of the coordinates in secondary_time_zone_area[]: (32352.0, 41872.0, -26082.0, -20383.0),
this two coordinates (-26082.0, -20383.0) is the range of Z coordinates for time zone
this two coordinates (-26082.0, -20383.0) is the range of Z coordinates for time zone
- Michaleczeq
- Modder
- Posts: 31
- Joined: May 24th, 2021, 10:47 pm
- Location: Poland
Re: Secondary Time Area in russia.sui
In all cases I known, if you have float with 4 coordinates, these are values for most: left, right, bottom, top point like for example in atlases:
110_ru.sii:
And thats mean, that your attribute looks like:
110_ru.sii:
Code: Select all
SiiNunit
{
image_atlas : atlas.110.ru
{
atlas_name: "110 ru"
(...)
# left right bottom top
images_coords: 1
images_coords[0]: (0, 128, 128, 0)
}
}
And thats mean, that your attribute looks like:
Code: Select all
secondary_time_zone_area[]: (<left_pos>, <right_pos>, <bottom_pos>, <top_pos>)
-
- PPM
- Posts: 6
- Joined: March 29th, 2021, 1:23 pm
- Location: Indonesia
Re: Secondary Time Area in russia.sui
Right now i am understand it, Thanks for the help