diff --git a/AgroBase/.vs/AgroBase/FileContentIndex/00d7bdf6-6add-4bc5-b64e-dd234e721d48.vsidx b/AgroBase/.vs/AgroBase/FileContentIndex/00d7bdf6-6add-4bc5-b64e-dd234e721d48.vsidx new file mode 100644 index 000000000..d86c9439f Binary files /dev/null and b/AgroBase/.vs/AgroBase/FileContentIndex/00d7bdf6-6add-4bc5-b64e-dd234e721d48.vsidx differ diff --git a/AgroBase/.vs/AgroBase/FileContentIndex/03ec950b-59f9-4c58-a432-c7a77e2bcacf.vsidx b/AgroBase/.vs/AgroBase/FileContentIndex/9b778fe5-4b6d-4c2f-8e2f-0c9e70f65bc5.vsidx similarity index 98% rename from AgroBase/.vs/AgroBase/FileContentIndex/03ec950b-59f9-4c58-a432-c7a77e2bcacf.vsidx rename to AgroBase/.vs/AgroBase/FileContentIndex/9b778fe5-4b6d-4c2f-8e2f-0c9e70f65bc5.vsidx index 153803d84..38daecf7c 100644 Binary files a/AgroBase/.vs/AgroBase/FileContentIndex/03ec950b-59f9-4c58-a432-c7a77e2bcacf.vsidx and b/AgroBase/.vs/AgroBase/FileContentIndex/9b778fe5-4b6d-4c2f-8e2f-0c9e70f65bc5.vsidx differ diff --git a/AgroBase/.vs/AgroBase/FileContentIndex/6a7adb1a-5666-4465-a737-cd1f5e32b31f.vsidx b/AgroBase/.vs/AgroBase/FileContentIndex/a457bbf8-8b2f-47ca-9946-102fc9201018.vsidx similarity index 99% rename from AgroBase/.vs/AgroBase/FileContentIndex/6a7adb1a-5666-4465-a737-cd1f5e32b31f.vsidx rename to AgroBase/.vs/AgroBase/FileContentIndex/a457bbf8-8b2f-47ca-9946-102fc9201018.vsidx index c47a71204..60cc6c04d 100644 Binary files a/AgroBase/.vs/AgroBase/FileContentIndex/6a7adb1a-5666-4465-a737-cd1f5e32b31f.vsidx and b/AgroBase/.vs/AgroBase/FileContentIndex/a457bbf8-8b2f-47ca-9946-102fc9201018.vsidx differ diff --git a/AgroBase/.vs/AgroBase/FileContentIndex/ad7f795f-9347-497d-9cea-65259bc0baca.vsidx b/AgroBase/.vs/AgroBase/FileContentIndex/ad7f795f-9347-497d-9cea-65259bc0baca.vsidx deleted file mode 100644 index 1389b30df..000000000 Binary files a/AgroBase/.vs/AgroBase/FileContentIndex/ad7f795f-9347-497d-9cea-65259bc0baca.vsidx and /dev/null differ diff --git a/AgroBase/.vs/AgroBase/v17/.suo b/AgroBase/.vs/AgroBase/v17/.suo index 4a61af7f4..1b6e2a9fa 100644 Binary files a/AgroBase/.vs/AgroBase/v17/.suo and b/AgroBase/.vs/AgroBase/v17/.suo differ diff --git a/AgroBase/AgroBase/Forms/IHM/frmDialogoMapa.cs b/AgroBase/AgroBase/Forms/IHM/frmDialogoMapa.cs index a906b8774..baf49f537 100644 --- a/AgroBase/AgroBase/Forms/IHM/frmDialogoMapa.cs +++ b/AgroBase/AgroBase/Forms/IHM/frmDialogoMapa.cs @@ -211,7 +211,7 @@ namespace AgroBase.Forms.IHM txtDF.Text = (ModDF?.MovMotor?.Corrente_Motor ?? 0).ToString("0.00"); lblDF.ForeColor = (ModDF?.Conectado ?? false) ? Color.Green : Color.Red; - if (frmInstancial.DebugMode) + if (!Variaveis.Producao) { AtualizarMapaDinamico(); } diff --git a/AgroBase/AgroBase/Forms/IHM/frmIHM.cs b/AgroBase/AgroBase/Forms/IHM/frmIHM.cs index ddac1e744..8ddb44218 100644 --- a/AgroBase/AgroBase/Forms/IHM/frmIHM.cs +++ b/AgroBase/AgroBase/Forms/IHM/frmIHM.cs @@ -75,7 +75,7 @@ namespace AgroBase.Forms.IHM ); if (res == DialogResult.Yes) { - if (frmInstancial.DebugMode) + if (!Variaveis.Producao) { this.Close(); } diff --git a/AgroBase/AgroBase/Forms/frmInstancial.cs b/AgroBase/AgroBase/Forms/frmInstancial.cs index 9ec9442c9..15c2592f6 100644 --- a/AgroBase/AgroBase/Forms/frmInstancial.cs +++ b/AgroBase/AgroBase/Forms/frmInstancial.cs @@ -11,9 +11,6 @@ namespace AgroBase.Forms { public partial class frmInstancial : Form { - public static bool DebugMode = true; - public static bool Fechando = false; - public static AsyncTaskTimerModel tmrVarreduraDispositivos; public static frmPrincipal frmPrincipal = new frmPrincipal(); @@ -45,7 +42,7 @@ namespace AgroBase.Forms private void frmInstancial_Shown(object sender, EventArgs e) { - if (DebugMode) + if (!Variaveis.Producao) { frmIHM.FormClosing += FrmIHM_FormClosing; frmPrincipal.FormClosing += frmPrincipal_FormClosing; @@ -68,7 +65,7 @@ namespace AgroBase.Forms IniciarConexaoMqtt(); Control control = new Control(); - if (DebugMode) + if (!Variaveis.Producao) { control = frmPrincipal; } @@ -93,9 +90,9 @@ namespace AgroBase.Forms public static async Task EncerrarProcessos() { - Fechando = true; + Variaveis.Fechando = true; - EthernetService.ConfigurarIP(false, false); + await EthernetService.ConfigurarIP(false, false); AsyncTaskTimerModel.PararTimers(); diff --git a/AgroBase/AgroBase/Forms/frmPrincipal.Designer.cs b/AgroBase/AgroBase/Forms/frmPrincipal.Designer.cs index 9ede5098b..3f231200f 100644 --- a/AgroBase/AgroBase/Forms/frmPrincipal.Designer.cs +++ b/AgroBase/AgroBase/Forms/frmPrincipal.Designer.cs @@ -94,6 +94,7 @@ namespace AgroBase this.btnContornos = new System.Windows.Forms.Button(); this.btnAtuCalibragem = new System.Windows.Forms.Button(); this.gpbOperacao = new System.Windows.Forms.GroupBox(); + this.chbWifi = new System.Windows.Forms.CheckBox(); this.btnIHM = new System.Windows.Forms.Button(); this.btnConfigurarOperacao = new System.Windows.Forms.Button(); this.chbDebugMode = new System.Windows.Forms.CheckBox(); @@ -827,6 +828,7 @@ namespace AgroBase // // gpbOperacao // + this.gpbOperacao.Controls.Add(this.chbWifi); this.gpbOperacao.Controls.Add(this.btnIHM); this.gpbOperacao.Controls.Add(this.btnConfigurarOperacao); this.gpbOperacao.Controls.Add(this.chbDebugMode); @@ -842,6 +844,17 @@ namespace AgroBase this.gpbOperacao.TabStop = false; this.gpbOperacao.Text = "Operação"; // + // chbWifi + // + this.chbWifi.AutoSize = true; + this.chbWifi.Location = new System.Drawing.Point(296, 35); + this.chbWifi.Margin = new System.Windows.Forms.Padding(2); + this.chbWifi.Name = "chbWifi"; + this.chbWifi.Size = new System.Drawing.Size(148, 17); + this.chbWifi.TabIndex = 17; + this.chbWifi.Text = "Conexão WiFi Automática"; + this.chbWifi.UseVisualStyleBackColor = true; + // // btnIHM // this.btnIHM.Location = new System.Drawing.Point(296, 58); @@ -855,7 +868,7 @@ namespace AgroBase // // btnConfigurarOperacao // - this.btnConfigurarOperacao.Location = new System.Drawing.Point(121, 58); + this.btnConfigurarOperacao.Location = new System.Drawing.Point(134, 58); this.btnConfigurarOperacao.Margin = new System.Windows.Forms.Padding(2); this.btnConfigurarOperacao.Name = "btnConfigurarOperacao"; this.btnConfigurarOperacao.Size = new System.Drawing.Size(122, 33); @@ -1091,6 +1104,7 @@ namespace AgroBase private System.Windows.Forms.TextBox txtCodErro; private System.Windows.Forms.Button btnOID; private System.Windows.Forms.Button btnTreinamentoIA; + public System.Windows.Forms.CheckBox chbWifi; } } diff --git a/AgroBase/AgroBase/Forms/frmPrincipal.cs b/AgroBase/AgroBase/Forms/frmPrincipal.cs index 6daddbbdd..dfa01a28d 100644 --- a/AgroBase/AgroBase/Forms/frmPrincipal.cs +++ b/AgroBase/AgroBase/Forms/frmPrincipal.cs @@ -156,6 +156,9 @@ namespace AgroBase bool opLiberada = Variaveis.OperacaoEmAndamento.OperacaoLiberada; lblStripOperacaoLiberada.Text = "Operação Liberada: " + (opLiberada ? "Sim" : "Não"); lblStripOperacaoLiberada.ForeColor = opLiberada ? Color.Green : Color.Red; + + Variaveis.DebugMode = chbDebugMode.Checked; + Variaveis.ForcarWifi = chbWifi.Checked; } public void AtualizaDadosGerais() @@ -513,7 +516,5 @@ namespace AgroBase MessageBox.Show(desc); } } - - } } diff --git a/AgroBase/AgroBase/Models/MapasModel.cs b/AgroBase/AgroBase/Models/MapasModel.cs index 2ce769348..8754b1069 100644 --- a/AgroBase/AgroBase/Models/MapasModel.cs +++ b/AgroBase/AgroBase/Models/MapasModel.cs @@ -28,23 +28,28 @@ namespace AgroBase.Models public void btnCarregar_Click(object sender, EventArgs e, string caminhoArquivo = "", bool monitoramento = false) { - var opcoes = Enum.GetValues(typeof(TipoMapaOperacao)) + TipoMapaOperacao? _tipoMapa = TipoMapaOperacao.Indefinido; + + if (!monitoramento && string.IsNullOrEmpty(caminhoArquivo)) + { + var opcoes = Enum.GetValues(typeof(TipoMapaOperacao)) .Cast() .ToDictionary( valor => (valor.ToString(), (TipoMapaOperacao?)valor), valor => (Action)null ); - var tipoMapa = CustomDialog.ShowDialog( - "Tipo de Mapa", - "Qual o tipo de mapa está sendo carregado?", - MessageBoxIcon.Question, - opcoes - ); + _tipoMapa = CustomDialog.ShowDialog( + "Tipo de Mapa", + "Qual o tipo de mapa está sendo carregado?", + MessageBoxIcon.Question, + opcoes + ); - if (tipoMapa == null) - { - return; + if (_tipoMapa == null) + { + return; + } } mapaService.Carregado = false; @@ -69,7 +74,7 @@ namespace AgroBase.Models pnlMapa.Controls.Add(picLoading); } - TipoMapa = tipoMapa.Value; + TipoMapa = _tipoMapa.Value; tmrCarregamento?.Dispose(); tmrCarregamento = new AsyncTaskTimerModel("tmrCarregamento", tmrCarregamento_Tick, 500, pnlMapa); diff --git a/AgroBase/AgroBase/Models/Modules/AtuadorModel.cs b/AgroBase/AgroBase/Models/Modules/AtuadorModel.cs index dded6d208..0bfe8615d 100644 --- a/AgroBase/AgroBase/Models/Modules/AtuadorModel.cs +++ b/AgroBase/AgroBase/Models/Modules/AtuadorModel.cs @@ -556,6 +556,11 @@ namespace AgroBase.Models.Modules public async Task tmrRegistrador_Tick() { + if (Variaveis.Fechando) + { + return; + } + if (Variaveis.OperacaoEmAndamento?.DispAtu != null) { await Variaveis.OperacaoEmAndamento.DispAtu.GerenciarMqttTopicos(); diff --git a/AgroBase/AgroBase/Models/Modules/MovimentacaoUnificadoModel.cs b/AgroBase/AgroBase/Models/Modules/MovimentacaoUnificadoModel.cs index 289834929..b01f7bca3 100644 --- a/AgroBase/AgroBase/Models/Modules/MovimentacaoUnificadoModel.cs +++ b/AgroBase/AgroBase/Models/Modules/MovimentacaoUnificadoModel.cs @@ -52,11 +52,15 @@ namespace AgroBase.Models.Modules .Where(Mod => !Mod.MovMotor.Inicializado || Mod.MovMotor.CodigoAlarme != 0 || - Mod.MovMotor.AlarmeSensores + Mod.MovMotor.AlarmeSensores || + (Mod.MovMotor.ComandoLigado && !Mod.MovMotor.LeituraLigado && Mod.MovMotor.Sentido != Sentido.Parado) ) .ToList(); - bool _operante = ModsComFalha.Count() < Mods.Count(); + int total = Mods.Count; + int falhas = ModsComFalha.Count; + bool _operante = falhas < total; + List ModsInoperantes = ModsComFalha.Select(x => x.Modulo_ID).ToList(); return (_operante, ModsInoperantes); @@ -263,6 +267,11 @@ namespace AgroBase.Models.Modules private async Task tmrRegistradorMOV_Tick() { + if (Variaveis.Fechando) + { + return; + } + if (!OIDService.Iniciado && SerialService.DispositivosMapeados.Any(x => x.Dispositivo == T_Code.Mov)) { await OIDService.InicializarEthernetService(); @@ -314,6 +323,11 @@ namespace AgroBase.Models.Modules private async Task tmrRegistradorDIR_Tick() { + if (Variaveis.Fechando) + { + return; + } + if (!MKS057DService.Iniciado && SerialService.DispositivosMapeados.Any(x => x.Dispositivo == T_Code.Mks)) { await MKS057DService.InicializarEthernetService(); diff --git a/AgroBase/AgroBase/Models/Modules/SensoriamentoModel.cs b/AgroBase/AgroBase/Models/Modules/SensoriamentoModel.cs index ec476aa74..afcd31713 100644 --- a/AgroBase/AgroBase/Models/Modules/SensoriamentoModel.cs +++ b/AgroBase/AgroBase/Models/Modules/SensoriamentoModel.cs @@ -24,7 +24,7 @@ namespace AgroBase.Models.Modules return _MensagemConexaoRecebida; } - public static int _TaxaAmostragem { get; set; } = 1000; + public static int _TaxaAmostragem { get; set; } = 500; public static int PingsConsiderarConexao { get; set; } = 5; public static int TempoLimiteConexao { @@ -730,6 +730,11 @@ namespace AgroBase.Models.Modules public async Task tmrRegistrador_Tick() { + if (Variaveis.Fechando) + { + return; + } + if (Variaveis.OperacaoEmAndamento?.DispSen != null) { await Variaveis.OperacaoEmAndamento.DispSen.GerenciarMqttTopicos(); diff --git a/AgroBase/AgroBase/Models/Operacoes/OperacaoModel.cs b/AgroBase/AgroBase/Models/Operacoes/OperacaoModel.cs index ac183c28f..378c72b7c 100644 --- a/AgroBase/AgroBase/Models/Operacoes/OperacaoModel.cs +++ b/AgroBase/AgroBase/Models/Operacoes/OperacaoModel.cs @@ -134,113 +134,111 @@ namespace AgroBase.Models StatusAtual = etapaAtual; } - public (bool, List) ModulosConectados + public (bool, List) ModulosConectados { get; private set; } + public void AtualizarModulosConectados() { - get + Variaveis.OperacaoEmAndamento.ModulosMandatorios.ForEach(Modulo => { - Variaveis.OperacaoEmAndamento.ModulosMandatorios.ForEach(Modulo => - { - Modulo.Conectado = SerialService.DispositivosMapeados.Any(x => x.Dispositivo == Modulo.Dispositivo && x.Conectado); - }); + Modulo.Conectado = SerialService.DispositivosMapeados.Any(x => x.Dispositivo == Modulo.Dispositivo && x.Conectado); + }); - bool _modulosConectados = - (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Mandatorio) && Variaveis.OperacaoEmAndamento.ModulosMandatorios.Where(x => x.Mandatorio).All(x => x.Conectado)) || - (Variaveis.OperacaoEmAndamento.ModulosMandatorios.All(x => !x.Mandatorio) && Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Conectado)); + List _modsComFalha = Variaveis.OperacaoEmAndamento.ModulosMandatorios.Where(x => x.Mandatorio && !x.Conectado).Select(x => x.Dispositivo).ToList(); - List _modsComFalha = Variaveis.OperacaoEmAndamento.ModulosMandatorios.Where(x => x.Mandatorio && !x.Conectado).Select(x => x.Dispositivo).ToList(); + ModulosConectados = (!_modsComFalha.Any(), _modsComFalha); - return (_modulosConectados, _modsComFalha); - } + ErroOperacaoLiberada = GerarMensagemErroModulos(); } - public bool DispositivosIndividuaisConectados + public bool DispositivosIndividuaisConectados { get; private set; } + public void AtualizarDispositiviosIndividuaisConectados() { - get + // Verificação dos componentes MOV + if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Mov && x.Conectado)) { - bool _dispositivosConectados = true; + (bool _EsqOperante, List _EsqModsInoperantes) = Variaveis.OperacaoEmAndamento.DispMvd.Dados.StatusModulosMOV(Direcao.Esquerda); + (bool _DirOperante, List _DirModsInoperantes) = Variaveis.OperacaoEmAndamento.DispMvd.Dados.StatusModulosMOV(Direcao.Direita); - // Verificação dos motores BLDC - if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Mov && x.Conectado)) + // Se qualquer lado estiver completamente inoperante, o robô não pode operar corretamente + if (!_EsqOperante || !_DirOperante) { - (bool _EsqOperante, List _EsqModsInoperantes) = Variaveis.OperacaoEmAndamento.DispMvd.Dados.StatusModulosMOV(Direcao.Esquerda); - (bool _DirOperante, List _DirModsInoperantes) = Variaveis.OperacaoEmAndamento.DispMvd.Dados.StatusModulosMOV(Direcao.Direita); - - // Se qualquer lado estiver completamente inoperante, o robô não pode operar corretamente - if (!_EsqOperante || !_DirOperante) - { - _dispositivosConectados = false; - } + DispositivosIndividuaisConectados = false; + return; } - - // Verificação dos motores MKS - if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Dir && x.Conectado)) - { - (bool _MksOperante, List _MksModsInoperantes) = Variaveis.OperacaoEmAndamento.DispMvd.Dados.StatusModulosDIR(Variaveis.OperacaoEmAndamento.Controle.TipoMovimento); - - if (!_MksOperante) - { - _dispositivosConectados = false; - } - } - - // Verificação dos componentes ATU - if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Atu && x.Conectado)) - { - (bool _AtuOperante, List _AtuModsInoperantes) = Variaveis.OperacaoEmAndamento.DispAtu.Dados.StatusModulosATU(); - - if (!_AtuOperante) - { - _dispositivosConectados = false; - } - } - - // Verificação dos componentes SEN - if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Sen && x.Conectado)) - { - (bool _SenOperante, List _SenModsInoperantes) = Variaveis.OperacaoEmAndamento.DispSen.Dados.StatusModulosSEN(); - - if (!_SenOperante) - { - _dispositivosConectados = false; - } - } - - return _dispositivosConectados; } + + // Verificação dos componentes DIR + if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Dir && x.Conectado)) + { + (bool _MksOperante, List _MksModsInoperantes) = Variaveis.OperacaoEmAndamento.DispMvd.Dados.StatusModulosDIR(Variaveis.OperacaoEmAndamento.Controle.TipoMovimento); + + if (!_MksOperante) + { + DispositivosIndividuaisConectados = false; + return; + } + } + + // Verificação dos componentes ATU + if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Atu && x.Conectado)) + { + (bool _AtuOperante, List _AtuModsInoperantes) = Variaveis.OperacaoEmAndamento.DispAtu.Dados.StatusModulosATU(); + + if (!_AtuOperante) + { + DispositivosIndividuaisConectados = false; + return; + } + } + + // Verificação dos componentes SEN + if (Variaveis.OperacaoEmAndamento.ModulosMandatorios.Any(x => x.Dispositivo == T_Code.Sen && x.Conectado)) + { + (bool _SenOperante, List _SenModsInoperantes) = Variaveis.OperacaoEmAndamento.DispSen.Dados.StatusModulosSEN(); + + if (!_SenOperante) + { + DispositivosIndividuaisConectados = false; + return; + } + } + + DispositivosIndividuaisConectados = true; } public bool Emergencia { get; set; } = false; - public bool OperacaoLiberada + public bool OperacaoLiberada { get; private set; } + public void AtualizarOperacaoLiberada() { - get + (bool _modsConectados, List _modsComFalha) = Variaveis.OperacaoEmAndamento.ModulosConectados; + + bool _operacaoLiberada = _modsConectados; + + if (_operacaoLiberada) { - (bool _modsConectados, List _modsComFalha) = Variaveis.OperacaoEmAndamento.ModulosConectados; - - bool _operacaoLiberada = _modsConectados; - - if (_operacaoLiberada && Variaveis.OperacaoEmAndamento.ParametrosMandatorios.Any(x => x.Parametro == ParametrosOperacao.CameraSolo && x.Mandatorio) && Variaveis.OperacaoEmAndamento.CamerasSolo.Count(x => x.Iniciada) < Variaveis.OperacaoEmAndamento.QuantidadeCamerasSolo) _operacaoLiberada = false; - if (_operacaoLiberada && Variaveis.OperacaoEmAndamento.ParametrosMandatorios.Any(x => x.Parametro == ParametrosOperacao.Kinect && x.Mandatorio) && (!KinectService.Iniciado || KinectService.Leitura == null)) _operacaoLiberada = false; - if (_operacaoLiberada && Variaveis.OperacaoEmAndamento.ParametrosMandatorios.Any(x => x.Parametro == ParametrosOperacao.Mapa && x.Mandatorio) && !Variaveis.OperacaoEmAndamento.Mapa.mapaService.Carregado) _operacaoLiberada = false; - if (_operacaoLiberada && Variaveis.OperacaoEmAndamento.ParametrosMandatorios.Any(x => x.Parametro == ParametrosOperacao.Joystick && x.Mandatorio && GeneralJoystick.JoystickConectado == null)) _operacaoLiberada = false; - if (_operacaoLiberada && !Variaveis.OperacaoEmAndamento.DispositivosIndividuaisConectados) _operacaoLiberada = false; - - if (frmInstancial.frmPrincipal.chbDebugMode.Checked) _operacaoLiberada = true; - - if (Variaveis.OperacaoEmAndamento.Emergencia) _operacaoLiberada = false; - - return _operacaoLiberada; + var parametrosMandatorios = Variaveis.OperacaoEmAndamento.ParametrosMandatorios; + if (parametrosMandatorios.Any(x => x.Mandatorio && x.Parametro == ParametrosOperacao.CameraSolo) && Variaveis.OperacaoEmAndamento.CamerasSolo.Count(x => x.Iniciada) < Variaveis.OperacaoEmAndamento.QuantidadeCamerasSolo) _operacaoLiberada = false; + if (parametrosMandatorios.Any(x => x.Mandatorio && x.Parametro == ParametrosOperacao.Kinect) && (!KinectService.Iniciado || KinectService.Leitura == null)) _operacaoLiberada = false; + if (parametrosMandatorios.Any(x => x.Mandatorio && x.Parametro == ParametrosOperacao.Mapa) && !Variaveis.OperacaoEmAndamento.Mapa.mapaService.Carregado) _operacaoLiberada = false; + if (parametrosMandatorios.Any(x => x.Mandatorio && x.Parametro == ParametrosOperacao.Joystick) && GeneralJoystick.JoystickConectado == null) _operacaoLiberada = false; + if (!Variaveis.OperacaoEmAndamento.DispositivosIndividuaisConectados) _operacaoLiberada = false; } + + if (Variaveis.DebugMode) _operacaoLiberada = true; + + if (Variaveis.OperacaoEmAndamento.Emergencia) _operacaoLiberada = false; + + OperacaoLiberada = _operacaoLiberada; } - public string ErroOperacaoLiberada + public string ErroOperacaoLiberada { get; private set; } + private string GerarMensagemErroModulos() { - get + var sb = new StringBuilder(); + sb.AppendLine($"Para iniciar a operação {Modo}, é necessário que todos os módulos mandatórios estejam devidamente conectados ao equipamento, ou pelo menos um dos módulos:"); + + ModulosMandatorios.ForEach(mod => { - string MensagemErro = "Para iniciar a operação " + Enum.GetName(typeof(ModoOperacao), Modo) + - ", é necessário que todos os módulos mandatórios estejam devidamente conectados ao equipamento, ou pelo menos um dos módulos:\r\n"; - ModulosMandatorios.ForEach(Modulo => - { - MensagemErro += Enum.GetName(typeof(T_Code), Modulo.Dispositivo) + ": ( " + (Modulo.Conectado ? "OK" : " ") + " ) - Mandatório: " + (Modulo.Mandatorio ? "Sim" : "Não") + "\r\n"; - }); - return MensagemErro; - } + sb.AppendLine($"{mod.Dispositivo,-20}: ( {(mod.Conectado ? "OK" : " ")} ) - Mandatório: {(mod.Mandatorio ? "Sim" : "Não")}"); + }); + + return sb.ToString(); } public bool Iniciado { get; set; } public bool Simulando { get; set; } = false; @@ -797,6 +795,17 @@ namespace AgroBase.Models GPSTrajetoria = new List(); await RealizarCalibragemInicialAsync(); + + if (Modo == ModoOperacao.Manual) + { + await Task.Run(async () => + { + await Task.Delay(3000); + + Controle.Angulo = 25; + Controle.PercentualVelocidadeSP = 25; + }); + } } public void FinalizarOperacao() @@ -1671,7 +1680,7 @@ namespace AgroBase.Models bool atualizandoGrafico = false; private void AtualizarGrafico() { - if (atualizandoGrafico || !frmInstancial.DebugMode) + if (atualizandoGrafico || !Variaveis.DebugMode) { return; } @@ -2980,6 +2989,10 @@ namespace AgroBase.Models var _DispAtu = Variaveis.OperacaoEmAndamento.DispAtu; var _Controle = Variaveis.OperacaoEmAndamento.Controle; + Variaveis.OperacaoEmAndamento.AtualizarDispositiviosIndividuaisConectados(); + Variaveis.OperacaoEmAndamento.AtualizarModulosConectados(); + Variaveis.OperacaoEmAndamento.AtualizarOperacaoLiberada(); + Variaveis.OperacaoEmAndamento.AtualizarStatusAtual(); Variaveis.OperacaoEmAndamento.DadosPerformance.AtualizarDadosPerformance(); diff --git a/AgroBase/AgroBase/Models/Variaveis.cs b/AgroBase/AgroBase/Models/Variaveis.cs index 1a09f7a26..07fa7fcba 100644 --- a/AgroBase/AgroBase/Models/Variaveis.cs +++ b/AgroBase/AgroBase/Models/Variaveis.cs @@ -20,6 +20,11 @@ namespace AgroBase.Models { public class Variaveis { + public static bool Producao { get; set; } = false; + public static bool DebugMode { get; set; } = true; + public static bool ForcarWifi { get; set; } = false; + public static bool Fechando { get; set; } = false; + public static string CaminhoSistema { get; set; } = AppDomain.CurrentDomain.BaseDirectory; public static string NomeAplicacao { diff --git a/AgroBase/AgroBase/Services/APIService.cs b/AgroBase/AgroBase/Services/APIService.cs index 8f79c3fb2..d68feb42a 100644 --- a/AgroBase/AgroBase/Services/APIService.cs +++ b/AgroBase/AgroBase/Services/APIService.cs @@ -17,7 +17,7 @@ namespace AgroBase.Services { get { - return frmInstancial.DebugMode ? "http://localhost:1337/agrobase/" : "https://zendioninc.com.br/api/agrobase/"; + return !Variaveis.Producao ? "http://localhost:1337/agrobase/" : "https://zendioninc.com.br/api/agrobase/"; } } private static string UrlDownloadArquivos diff --git a/AgroBase/AgroBase/Services/EthernetService.cs b/AgroBase/AgroBase/Services/EthernetService.cs index b3d1513ff..10b3fcb66 100644 --- a/AgroBase/AgroBase/Services/EthernetService.cs +++ b/AgroBase/AgroBase/Services/EthernetService.cs @@ -450,7 +450,7 @@ public class EthernetService return "Nenhuma interface de rede ativa encontrada"; } - public static async Task DefinirIpDinamico(string interfaceName, bool response) + public static async Task DefinirIpDinamico(string interfaceName, bool response) { try { @@ -466,6 +466,8 @@ public class EthernetService { MessageBox.Show("IP dinamico definido com sucesso!", "Configuração de IP", MessageBoxButtons.OK, MessageBoxIcon.Information); } + + return true; } catch (Exception ex) { @@ -473,10 +475,12 @@ public class EthernetService { MessageBox.Show($"Erro ao definir IP dinamico: {ex.Message}", "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); } + + return false; } } - public static async Task DefinirIpFixo(string nomeInterface, string ipAddress, string subnetMask, string gateway, bool response) + public static async Task DefinirIpFixo(string nomeInterface, string ipAddress, string subnetMask, string gateway, bool response) { try { @@ -492,6 +496,8 @@ public class EthernetService { MessageBox.Show("IP fixo definido com sucesso!", "Configuração de IP", MessageBoxButtons.OK, MessageBoxIcon.Information); } + + return true; } catch (Exception ex) { @@ -499,6 +505,8 @@ public class EthernetService { MessageBox.Show($"Erro ao definir IP fixo: {ex.Message}", "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); } + + return false; } } @@ -566,8 +574,10 @@ public class EthernetService } } - public static void ConfigurarIP(bool fixo, bool response) + public static async Task ConfigurarIP(bool fixo, bool response) { + bool sucesso = false; + var interfaces = ObterNomesInterfaces(); string _Interface = interfaces.FirstOrDefault(x => x.ToLower().Contains("wi-fi") && x.ToLower().Contains("ativa")); @@ -579,18 +589,17 @@ public class EthernetService string ip = Variaveis.IP_Host; string submask = ObterSubnetMaskAtual(_Interface); - Task.Run(async () => + if (fixo) { - if (fixo) - { - await DefinirIpFixo(_Interface, ip, submask, gateway, response); - } - else - { - await DefinirIpDinamico(_Interface, response); - } - }); + sucesso = await DefinirIpFixo(_Interface, ip, submask, gateway, response); + } + else + { + sucesso = await DefinirIpDinamico(_Interface, response); + } } + + return sucesso; } diff --git a/AgroBase/AgroBase/Services/ModbusService.cs b/AgroBase/AgroBase/Services/ModbusService.cs index 3d6cba247..1f9df737d 100644 --- a/AgroBase/AgroBase/Services/ModbusService.cs +++ b/AgroBase/AgroBase/Services/ModbusService.cs @@ -163,7 +163,7 @@ namespace AgroBase.Services private static async Task tmrLoopComandos_Tick() { - if (EnvioLiberado && !Verificando && !frmInstancial.Fechando) + if (EnvioLiberado && !Verificando && !Variaveis.Fechando) { EnvioLiberado = false; diff --git a/AgroBase/AgroBase/Services/SerialService.cs b/AgroBase/AgroBase/Services/SerialService.cs index feb38c7f7..f1ce39823 100644 --- a/AgroBase/AgroBase/Services/SerialService.cs +++ b/AgroBase/AgroBase/Services/SerialService.cs @@ -183,7 +183,7 @@ namespace AgroBase.Services public static async Task RealizarVarreduraPortasUSB() { - if (VarreduraEmAndamento || frmInstancial.Fechando) + if (VarreduraEmAndamento || Variaveis.Fechando) { return; } diff --git a/AgroBase/AgroBase/Services/SyncDataService.cs b/AgroBase/AgroBase/Services/SyncDataService.cs index fe8cdb6c2..390c7a854 100644 --- a/AgroBase/AgroBase/Services/SyncDataService.cs +++ b/AgroBase/AgroBase/Services/SyncDataService.cs @@ -24,7 +24,7 @@ namespace AgroBase.Services } // Nao executa a verificacao se estiver em ambiente de teste - if (frmInstancial.DebugMode && !frmInstancial.frmPrincipal.chbDebugMode.Checked) + if (!Variaveis.Producao) { return false; } diff --git a/AgroBase/AgroBase/Services/VersionamentoService.cs b/AgroBase/AgroBase/Services/VersionamentoService.cs index a2cd8f966..18d28452f 100644 --- a/AgroBase/AgroBase/Services/VersionamentoService.cs +++ b/AgroBase/AgroBase/Services/VersionamentoService.cs @@ -357,7 +357,7 @@ namespace AgroBase.Services ResultadoAtualizacao = "Arquivos carregados!"; // Nao executa a verificacao se estiver em ambiente de teste - if (frmInstancial.DebugMode && !frmInstancial.frmPrincipal.chbDebugMode.Checked && false) + if (!Variaveis.Producao) { AtualizandoArquivos = false; return; diff --git a/AgroBase/AgroBase/Services/WifiService.cs b/AgroBase/AgroBase/Services/WifiService.cs index bf0201d70..2af3f3ad3 100644 --- a/AgroBase/AgroBase/Services/WifiService.cs +++ b/AgroBase/AgroBase/Services/WifiService.cs @@ -1,4 +1,5 @@ -using AgroBase.Models; +using AgroBase.Forms; +using AgroBase.Models; using System; using System.Diagnostics; using System.IO; @@ -15,104 +16,84 @@ namespace AgroBase.Services public static bool WifiDisponivel { get; set; } = false; public static bool WifiConectado { get; set; } = false; public static bool Conectando { get; set; } = false; + private static string InterfaceAtual { get; set; } = ""; public static void IniciarRotinas() { tmrMonitoramento?.Dispose(); tmrMonitoramento = new AsyncTaskTimerModel("tmrMonitoramento", tmrMonitoramento_Tick, 10000); tmrMonitoramento.Start(); - - Task.Run(async () => - { - PerfilExiste = await PerfilWiFiExisteAsync(Variaveis.NomeRedeWifiEquipamento); - }); } private static async Task tmrMonitoramento_Tick() { - WifiDisponivel = await VerificarRedeDisponivelAsync(Variaveis.NomeRedeWifiEquipamento); - - if (WifiDisponivel) + if (!Variaveis.ForcarWifi) { - string _ssid = await ObterNomeRedeWifiAtual(); - - WifiConectado = _ssid == Variaveis.NomeRedeWifiEquipamento; + return; + } - if (!WifiConectado) + string nomeRede = Variaveis.NomeRedeWifiEquipamento; + + if (!PerfilExiste) + { + PerfilExiste = await PerfilWiFiExisteAsync(nomeRede); + } + + if (PerfilExiste) + { + if (!WifiConectado || !WifiDisponivel) { - Conectando = true; - await VerificarConectarComSenhaAsync(Variaveis.NomeRedeWifiEquipamento, Variaveis.SenhaRedeWifiEquipamento); - Conectando = false; + WifiDisponivel = await VerificarRedeDisponivelAsync(nomeRede); } - if (WifiConectado) + + if (WifiDisponivel) { - string _interface = ""; - VerificaInterfaceConectada(out _interface); - var ip = EthernetService.ObterIpAtual(_interface); - if (ip != Variaveis.IP_Host) + string _ssid = await ObterNomeRedeWifiAtual(); + + WifiConectado = _ssid == nomeRede; + + if (!WifiConectado) { - await Task.Run(async () => + Conectando = true; + await ConectarRedeWifiAsync(nomeRede); + Conectando = false; + } + + if (WifiConectado) + { + if (string.IsNullOrEmpty(InterfaceAtual)) { - EthernetService.ConfigurarIP(true, false); + string _interface = ""; + VerificaInterfaceConectada(out _interface); + InterfaceAtual = _interface; + } + + var ip = EthernetService.ObterIpAtual(InterfaceAtual); + if (!string.IsNullOrEmpty(ip) && ip != Variaveis.IP_Host) + { + bool configurado = await EthernetService.ConfigurarIP(true, false); foreach (var topico in Variaveis.MqttService.Topicos.Where(x => x.Inscrever)) { await Variaveis.MqttService.UnsubscribeAsync(topico); } Variaveis.MqttService.Topicos.Clear(); Variaveis.MqttService = new MqttService("localhost", 1883); - }); + } } } + else + { + WifiConectado = false; + } } else { WifiConectado = false; - Conectando = false; } - } - private static async Task VerificarConectarComSenhaAsync(string nomeRede, string senha) - { - string xmlPerfil = $@" - - {nomeRede} - - - {nomeRede} - - false - - ESS - auto - - - - WPA2PSK - AES - false - - - passPhrase - false - {senha} - - - - "; - - if (!PerfilExiste) + if (!WifiConectado) { - PerfilExiste = await AdicionarPerfilWiFiAsync(nomeRede, xmlPerfil); - } - - if (PerfilExiste) - { - return await ConectarRedeWifiAsync(nomeRede); - } - else - { - Console.WriteLine($"Não foi possível adicionar o perfil para a rede {nomeRede}."); - return false; + InterfaceAtual = ""; } } @@ -138,10 +119,43 @@ namespace AgroBase.Services string output = await process.StandardOutput.ReadToEndAsync(); await Task.Run(() => process.WaitForExit()); - bool existente = output.Contains($"All User Profile : {nomePerfil}"); + PerfilExiste = output.Contains(nomePerfil); + + if (!PerfilExiste) + { + string nomeRede = Variaveis.NomeRedeWifiEquipamento; + string xmlPerfil = $@" + + {nomeRede} + + + {nomeRede} + + false + + ESS + auto + + + + WPA2PSK + AES + false + + + passPhrase + false + {nomeRede} + + + + "; + + PerfilExiste = await AdicionarPerfilWiFiAsync(nomeRede, xmlPerfil); + } // Verifica se o perfil está listado na saída - return existente; + return PerfilExiste; } } catch (Exception ex) @@ -201,6 +215,21 @@ namespace AgroBase.Services { try { + ProcessStartInfo psi0 = new ProcessStartInfo + { + FileName = "netsh", + Arguments = "wlan disconnect", + RedirectStandardOutput = true, + UseShellExecute = false, + CreateNoWindow = true + }; + + using (Process process = Process.Start(psi0)) + { + string output = await process.StandardOutput.ReadToEndAsync(); + await Task.Run(() => process.WaitForExit()); + } + ProcessStartInfo psi = new ProcessStartInfo { FileName = "netsh", @@ -247,7 +276,11 @@ namespace AgroBase.Services string output = await process.StandardOutput.ReadToEndAsync(); await Task.Run(() => process.WaitForExit()); - WifiConectado = output.Contains("successfully"); + await Task.Delay(3000); // tempo para o sistema conectar de fato + string ssidDepois = await ObterNomeRedeWifiAtual(); + WifiConectado = ssidDepois == Variaveis.NomeRedeWifiEquipamento; + + //WifiConectado = output.Contains("successfully"); return WifiConectado; } diff --git a/AgroBase/AgroBase/bin/Debug/AgroBase.pdb b/AgroBase/AgroBase/bin/Debug/AgroBase.pdb index 586650997..b4fcefb5e 100644 Binary files a/AgroBase/AgroBase/bin/Debug/AgroBase.pdb and b/AgroBase/AgroBase/bin/Debug/AgroBase.pdb differ diff --git a/AgroBase/AgroBase/bin/Debug/DawnCache/data_1 b/AgroBase/AgroBase/bin/Debug/DawnCache/data_1 index 97b43fc6c..30a376cac 100644 Binary files a/AgroBase/AgroBase/bin/Debug/DawnCache/data_1 and b/AgroBase/AgroBase/bin/Debug/DawnCache/data_1 differ diff --git a/AgroBase/AgroBase/bin/Debug/GPUCache/data_1 b/AgroBase/AgroBase/bin/Debug/GPUCache/data_1 index 09e2b9fc8..44e6d6eb8 100644 Binary files a/AgroBase/AgroBase/bin/Debug/GPUCache/data_1 and b/AgroBase/AgroBase/bin/Debug/GPUCache/data_1 differ diff --git a/AgroBase/AgroBase/bin/Debug/Parametros/parametersMvd-2_0.par b/AgroBase/AgroBase/bin/Debug/Parametros/parametersMvd-2_0.par index 5eddfcda9..9bcc7d02f 100644 --- a/AgroBase/AgroBase/bin/Debug/Parametros/parametersMvd-2_0.par +++ b/AgroBase/AgroBase/bin/Debug/Parametros/parametersMvd-2_0.par @@ -1 +1 @@ -{"tmrRegistrador":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":1000,"StackTrace":"MovimentacaoUnificadaModel.IniciarRegistrador","Id":"tmrRegistrador_Mvd","TimeTick":"00:00:00.0008979"},"tmrRegistradorMOV":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":1000,"StackTrace":"MovimentacaoUnificadaModel.IniciarRegistrador","Id":"tmrRegistrador_Mov","TimeTick":"00:00:00.0008979"},"tmrRegistradorDIR":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":500,"StackTrace":"MovimentacaoUnificadaModel.IniciarRegistrador","Id":"tmrRegistrador_Dir","TimeTick":"00:00:00"},"Conectado":false,"DistanciaPercorridaOperacao":0.0,"TempoEmAtividade":0.0,"DistanciaPercorridaTotal":0.0,"DistanciaPercorridaParcial":0.0,"VelocidadeMedia":0.0,"DiametroRoda":0.365,"ReducaoMotorBLDC":5.0,"RPM_Max_MotorBLDC":500.0,"IP_Mov":"192.168.105.10","IP_Dir":"192.168.105.11","Modulos":[{"Modulo_ID":"ET","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x01","EnderecoByte":1,"Mod_ID":"ET","LeituraLigado":true,"ComandoLigado":true,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":1,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":true,"AnguloInicial":10,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x01","EnderecoByte":1,"Mod_ID":"ET","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":300,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":3,"UltimoComandoEnviado":"2025-03-21T10:37:24.7691461-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}},{"Modulo_ID":"EF","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x03","EnderecoByte":3,"Mod_ID":"EF","LeituraLigado":true,"ComandoLigado":true,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":1,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":true,"AnguloInicial":10,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x03","EnderecoByte":3,"Mod_ID":"EF","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":300,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":3,"UltimoComandoEnviado":"2025-03-21T10:40:26.7696567-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}},{"Modulo_ID":"DT","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x02","EnderecoByte":2,"Mod_ID":"DT","LeituraLigado":true,"ComandoLigado":true,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":1,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":false,"AnguloInicial":170,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x02","EnderecoByte":2,"Mod_ID":"DT","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":300,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":3,"UltimoComandoEnviado":"2025-03-21T10:37:23.7610487-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}},{"Modulo_ID":"DF","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x04","EnderecoByte":4,"Mod_ID":"DF","LeituraLigado":true,"ComandoLigado":true,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":1,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":false,"AnguloInicial":170,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x04","EnderecoByte":4,"Mod_ID":"DF","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":300,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":3,"UltimoComandoEnviado":"2025-03-21T10:40:26.7726502-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}}]} \ No newline at end of file +{"tmrRegistrador":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":1000,"StackTrace":"MovimentacaoUnificadaModel.IniciarRegistrador","Id":"tmrRegistrador_Mvd","TimeTick":"00:00:00"},"tmrRegistradorMOV":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":1000,"StackTrace":"MovimentacaoUnificadaModel.IniciarRegistrador","Id":"tmrRegistrador_Mov","TimeTick":"00:00:00"},"tmrRegistradorDIR":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":500,"StackTrace":"MovimentacaoUnificadaModel.IniciarRegistrador","Id":"tmrRegistrador_Dir","TimeTick":"00:00:00"},"Conectado":false,"DistanciaPercorridaOperacao":0.0,"TempoEmAtividade":0.0,"DistanciaPercorridaTotal":0.0,"DistanciaPercorridaParcial":0.0,"VelocidadeMedia":0.0,"DiametroRoda":0.365,"ReducaoMotorBLDC":5.0,"RPM_Max_MotorBLDC":500.0,"IP_Mov":"192.168.105.10","IP_Dir":"192.168.105.11","Modulos":[{"Modulo_ID":"ET","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x01","EnderecoByte":1,"Mod_ID":"ET","LeituraLigado":true,"ComandoLigado":false,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":0,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":true,"AnguloInicial":10,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x01","EnderecoByte":1,"Mod_ID":"ET","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":240,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":0,"UltimoComandoEnviado":"2025-03-26T14:57:45.189051-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}},{"Modulo_ID":"EF","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x03","EnderecoByte":3,"Mod_ID":"EF","LeituraLigado":true,"ComandoLigado":false,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":0,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":true,"AnguloInicial":10,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x03","EnderecoByte":3,"Mod_ID":"EF","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":240,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":0,"UltimoComandoEnviado":"2025-03-26T15:06:33.9064064-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}},{"Modulo_ID":"DT","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x02","EnderecoByte":2,"Mod_ID":"DT","LeituraLigado":true,"ComandoLigado":false,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":0,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":false,"AnguloInicial":170,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x02","EnderecoByte":2,"Mod_ID":"DT","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":240,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":0,"UltimoComandoEnviado":"2025-03-26T14:57:45.1920429-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":2,"Direita":1,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}},{"Modulo_ID":"DF","Disponivel":false,"RequisitarDados":false,"Conectado":false,"MovMotor":{"ID":"Mov","Endereco":"0x04","EnderecoByte":4,"Mod_ID":"DF","LeituraLigado":true,"ComandoLigado":false,"CodigoAlarme":0,"AlarmeMotor":false,"RPM_SP":0,"RPM_SP_Controle":0,"RPM_SP_Leitura":0,"Sentido_SP":0,"NumeroPolos":10,"Rampa":0,"OffsetLeitura":1.0,"RPM_Roda":0.0,"Sentido":0,"Temperatura":0.0,"TemperaturaDriver":0.0,"Tensao":0.0,"Corrente_Barramento":0.0,"Corrente_Motor":0.0,"Potencia":0.0,"CicloTrabalho":0.0,"RPM_Motor":0.0,"VelocidadeInstantanea":0.0,"Comandar":true,"AlarmeSensores":false,"Inicializado":false,"Leitura":null,"CompensacaoNecessaria":false,"ConfigSentidos":{"RodasDianteiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RodasTraseiras":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoArco":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0},"RotacionarNoEixo":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoLateral":{"Frente":2,"Tras":1,"Esquerda":0,"Direita":0,"Parado":0},"Diagnostico":{"Frente":1,"Tras":2,"Esquerda":0,"Direita":0,"Parado":0}},"Funcoes":[12,14,9,5,10],"LogGrafico":[],"Alarmes":[{"Tipo":411,"Valor":-1.0,"Minimo":true,"Maximo":false,"ParaMinimo":false,"ParaMaximo":false}],"ConfigFreio":{"Incremental":false,"AnguloInicial":170,"Leitura":false,"Controle":false}},"DirMotor":{"ID":"Dir","Endereco":"0x04","EnderecoByte":4,"Mod_ID":"DF","Sentido_SP":0,"Angulo_SP":0.0,"Angulo_Offset":0.0,"Velocidade_Max":600.0,"Velocidade":240,"Sentido":0,"SentidoReal":2,"Angulo":0.0,"RPM":0.0,"IN1_Atuado":false,"IN2_Atuado":false,"Comandar":true,"Inicializado":false,"Leitura":null,"UltimaDirecao":0,"UltimoComandoEnviado":"2025-03-26T15:06:33.9103955-03:00","RetornandoAzero":false,"EmMovimento":false,"AtingiuAnguloSP":true,"ConfigSentidos":{"RodasDianteiras":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"RodasTraseiras":{"Frente":0,"Tras":0,"Esquerda":0,"Direita":0,"Parado":0},"MovimentoDiagonal":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"MovimentoArco":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"RotacionarNoEixo":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":1,"Parado":0},"MovimentoLateral":{"Frente":0,"Tras":0,"Esquerda":1,"Direita":2,"Parado":0},"Diagnostico":{"Frente":2,"Tras":1,"Esquerda":1,"Direita":2,"Parado":0}},"Funcoes":[13,9,14,41]}}]} \ No newline at end of file diff --git a/AgroBase/AgroBase/bin/Debug/Parametros/parametersSen-1_2.par b/AgroBase/AgroBase/bin/Debug/Parametros/parametersSen-1_2.par index 3a2a46f38..96ca950fb 100644 --- a/AgroBase/AgroBase/bin/Debug/Parametros/parametersSen-1_2.par +++ b/AgroBase/AgroBase/bin/Debug/Parametros/parametersSen-1_2.par @@ -1 +1 @@ -{"tmrRegistrador":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":1000,"StackTrace":"SensoriamentoModel.IniciarRegistrador","Id":"tmrRegistrador_Sen","TimeTick":"00:00:00.0008979"},"Modulo_ID":"Sen","IP":"192.168.100.12","RequisitarDados":false,"Conectado":false,"Sensores":[{"LogGrafico":[],"ID":"TMVET","Prioridade":0,"Descricao":"Temperatura Motor Esquerdo Trás","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TMVEF","Prioridade":0,"Descricao":"Temperatura Motor Esquerdo Frente","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TMVDT","Prioridade":0,"Descricao":"Temperatura Motor Direito Trás","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TMVDF","Prioridade":0,"Descricao":"Temperatura Motor Direito Frente","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"AB5V","Prioridade":10,"Descricao":"Corrente no Barramento 5V","Componente":322,"Aferir":true,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[27],"Parametros":[["Endereço I2C","0x41"],["Corrente Max","3.2"]],"UnidadeMedida":"A","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"AB7V2","Prioridade":10,"Descricao":"Corrente no Barramento 7,2V","Componente":322,"Aferir":true,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[27],"Parametros":[["Endereço I2C","0x44"],["CI","219"]],"UnidadeMedida":"A","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"AB12V","Prioridade":10,"Descricao":"Corrente no Barramento 12V","Componente":322,"Aferir":true,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[27],"Parametros":[["Endereço I2C","0x40"],["Corrente Max","100"]],"UnidadeMedida":"A","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TBAT","Prioridade":5,"Descricao":"Temperatura da bateria","Componente":411,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"POTET","Prioridade":24,"Descricao":"Potenciometro ET","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-110"],["Meio","-8"],["Maximo","104"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":104.0,"LimiteMinimo":-110.0},{"LogGrafico":[],"ID":"POTDT","Prioridade":24,"Descricao":"Potenciometro DT","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-110"],["Meio","-18"],["Maximo","80"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":80.0,"LimiteMinimo":-110.0},{"LogGrafico":[],"ID":"POTEF","Prioridade":24,"Descricao":"Potenciometro EF","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-110"],["Meio","-13"],["Maximo","90"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":90.0,"LimiteMinimo":-110.0},{"LogGrafico":[],"ID":"POTDF","Prioridade":24,"Descricao":"Potenciometro DF","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-104"],["Meio","5"],["Maximo","120"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":120.0,"LimiteMinimo":-104.0}],"Sinaleiros":[{"ID":"LEDMN","Descricao":"Sinaleiro indicação de modo Manual ativo","Componente":445,"Funcoes":[38],"Comportamento":{"statusLED":1,"QtdPiscadas":1,"TempoMs":1000,"PausaMs":1000},"Leitura":null,"Inicializado":false,"LeituraComando":0,"LeituraStatus":0},{"ID":"LEDAT","Descricao":"Sinaleiro indicação de modo Automático ativo","Componente":445,"Funcoes":[38],"Comportamento":{"statusLED":0,"QtdPiscadas":1,"TempoMs":1000,"PausaMs":1000},"Leitura":null,"Inicializado":false,"LeituraComando":0,"LeituraStatus":0},{"ID":"LEDOP","Descricao":"Sinaleiro indicação do status da operação ativa","Componente":445,"Funcoes":[38],"Comportamento":{"statusLED":2,"QtdPiscadas":2,"TempoMs":500,"PausaMs":2000},"Leitura":null,"Inicializado":false,"LeituraComando":0,"LeituraStatus":0}],"Reles":[{"ID":"RLLRA","Descricao":"Relé modo operação LoRa","Componente":479,"Funcoes":[26],"ControleExterno":false,"Controlar":true,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTET","Descricao":"Relé alimentação Direcional ET","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTDT","Descricao":"Relé alimentação Direcional DT","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTEF","Descricao":"Relé alimentação Direcional EF","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTDF","Descricao":"Relé alimentação Direcional DF","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0}],"Servos":[{"ID":"FRO_ET","Descricao":"Freio Motor ET","Componente":480,"Funcoes":[45],"Controlar":true,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0},{"ID":"FRO_EF","Descricao":"Freio Motor EF","Componente":480,"Funcoes":[45],"Controlar":false,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0},{"ID":"FRO_DT","Descricao":"Freio Motor DT","Componente":480,"Funcoes":[45],"Controlar":true,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0},{"ID":"FRO_DF","Descricao":"Freio Motor DF","Componente":480,"Funcoes":[45],"Controlar":false,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0}],"CameraID_Caminho":"14442C10C143E2D600","CameraID_Solo":["14442C1011AD1ED000",""],"ConfiguracaoSensorUltrassom":{"Configuracao":0,"Sensores":[{"ID":1,"Posicao":0,"LimiteMinimo":false,"LimiteMinimoVal":0.0,"MargemMinimo":0.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":false,"Parada":false,"DistanciaIdeal":0.0,"EmUso":false,"LeituraCm":47.3,"SensorAtuado":false},{"ID":2,"Posicao":0,"LimiteMinimo":false,"LimiteMinimoVal":0.0,"MargemMinimo":0.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":false,"Parada":false,"DistanciaIdeal":0.0,"EmUso":false,"LeituraCm":47.6,"SensorAtuado":false},{"ID":3,"Posicao":0,"LimiteMinimo":false,"LimiteMinimoVal":0.0,"MargemMinimo":0.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":false,"Parada":false,"DistanciaIdeal":0.0,"EmUso":false,"LeituraCm":106.2,"SensorAtuado":false},{"ID":4,"Posicao":0,"LimiteMinimo":false,"LimiteMinimoVal":0.0,"MargemMinimo":0.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":false,"Parada":false,"DistanciaIdeal":0.0,"EmUso":false,"LeituraCm":207.2,"SensorAtuado":false}],"_paradaFrontal":false,"_paradaTraseira":false,"_paradaEsquerda":false,"_paradaDireita":false,"DesvioNecessario":false,"ParadaNecessaria":false,"DirecoesObstaculos":[],"DirecaoDesvio":1},"BateriaCargaConsumida":0.0,"DadosLeitura":{"Momento":"0001-01-01T00:00:00","Conectado":false,"Mod_ID":null,"QualidadeWifi":0,"LatenciaLoop":0,"SensoresTemperatura":[],"SensoresCorrente":[],"Sinaleiros":[],"Reles":[],"ServoFreios":[],"SensoresPotenciometro":[],"UltimoComandoRespondido":"0001-01-01T00:00:00"},"LoRaParametrosBase":{"UltimaLeitura":"0001-01-01T00:00:00","PortaCOM":"","baudRate":96,"airRate":2,"baudAndAirRate":98,"parity":0,"packetSize":0,"power":0,"packetSizeAndPower":0,"tranMode":64,"worCycle":7,"tranModeAndWorCycle":71,"channelRssi":0,"lbt":0,"packetRssi":0,"address":1,"channel":23,"key":0}} \ No newline at end of file +{"tmrRegistrador":{"_uiControl":null,"State":2,"IsRunning":false,"IsStopped":true,"IsCreated":false,"Interval":1000,"StackTrace":"SensoriamentoModel.IniciarRegistrador","Id":"tmrRegistrador_Sen","TimeTick":"00:00:00"},"Modulo_ID":"Sen","IP":"192.168.100.12","RequisitarDados":false,"Conectado":false,"Sensores":[{"LogGrafico":[],"ID":"TMVET","Prioridade":0,"Descricao":"Temperatura Motor Esquerdo Trás","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TMVEF","Prioridade":0,"Descricao":"Temperatura Motor Esquerdo Frente","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TMVDT","Prioridade":0,"Descricao":"Temperatura Motor Direito Trás","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TMVDF","Prioridade":0,"Descricao":"Temperatura Motor Direito Frente","Componente":411,"Aferir":true,"DelayAmostragem":200,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"AB5V","Prioridade":10,"Descricao":"Corrente no Barramento 5V","Componente":322,"Aferir":true,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[27],"Parametros":[["Endereço I2C","0x41"],["Corrente Max","3.2"]],"UnidadeMedida":"A","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"AB7V2","Prioridade":10,"Descricao":"Corrente no Barramento 7,2V","Componente":322,"Aferir":true,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[27],"Parametros":[["Endereço I2C","0x44"],["CI","219"]],"UnidadeMedida":"A","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"AB12V","Prioridade":10,"Descricao":"Corrente no Barramento 12V","Componente":322,"Aferir":true,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[27],"Parametros":[["Endereço I2C","0x40"],["Corrente Max","100"]],"UnidadeMedida":"A","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"TBAT","Prioridade":5,"Descricao":"Temperatura da bateria","Componente":411,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[12],"Parametros":[["Offset","-20"]],"UnidadeMedida":"ºC","LimiteMaximo":0.0,"LimiteMinimo":0.0},{"LogGrafico":[],"ID":"POTET","Prioridade":24,"Descricao":"Potenciometro ET","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-110"],["Meio","-8"],["Maximo","104"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":104.0,"LimiteMinimo":-110.0},{"LogGrafico":[],"ID":"POTDT","Prioridade":24,"Descricao":"Potenciometro DT","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-110"],["Meio","-18"],["Maximo","80"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":80.0,"LimiteMinimo":-110.0},{"LogGrafico":[],"ID":"POTEF","Prioridade":24,"Descricao":"Potenciometro EF","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-110"],["Meio","-13"],["Maximo","90"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":90.0,"LimiteMinimo":-110.0},{"LogGrafico":[],"ID":"POTDF","Prioridade":24,"Descricao":"Potenciometro DF","Componente":481,"Aferir":false,"DelayAmostragem":500,"Leitura":null,"Inicializado":false,"Testando":false,"Funcoes":[46],"Parametros":[["Minimo","-104"],["Meio","5"],["Maximo","120"],["Margem","5"]],"UnidadeMedida":"º","LimiteMaximo":120.0,"LimiteMinimo":-104.0}],"Sinaleiros":[{"ID":"LEDMN","Descricao":"Sinaleiro indicação de modo Manual ativo","Componente":445,"Funcoes":[38],"Comportamento":{"statusLED":1,"QtdPiscadas":1,"TempoMs":1000,"PausaMs":1000},"Leitura":null,"Inicializado":false,"LeituraComando":0,"LeituraStatus":0},{"ID":"LEDAT","Descricao":"Sinaleiro indicação de modo Automático ativo","Componente":445,"Funcoes":[38],"Comportamento":{"statusLED":0,"QtdPiscadas":1,"TempoMs":1000,"PausaMs":1000},"Leitura":null,"Inicializado":false,"LeituraComando":0,"LeituraStatus":0},{"ID":"LEDOP","Descricao":"Sinaleiro indicação do status da operação ativa","Componente":445,"Funcoes":[38],"Comportamento":{"statusLED":2,"QtdPiscadas":2,"TempoMs":500,"PausaMs":2000},"Leitura":null,"Inicializado":false,"LeituraComando":0,"LeituraStatus":0}],"Reles":[{"ID":"RLLRA","Descricao":"Relé modo operação LoRa","Componente":479,"Funcoes":[26],"ControleExterno":false,"Controlar":true,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTET","Descricao":"Relé alimentação Direcional ET","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTDT","Descricao":"Relé alimentação Direcional DT","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTEF","Descricao":"Relé alimentação Direcional EF","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0},{"ID":"RLPOTDF","Descricao":"Relé alimentação Direcional DF","Componente":479,"Funcoes":[26],"ControleExterno":true,"Controlar":false,"AtuacaoNivelAlto":true,"StatusControle":0,"Leitura":null,"Inicializado":false,"LeituraEstado":0}],"Servos":[{"ID":"FRO_ET","Descricao":"Freio Motor ET","Componente":480,"Funcoes":[45],"Controlar":true,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0},{"ID":"FRO_EF","Descricao":"Freio Motor EF","Componente":480,"Funcoes":[45],"Controlar":false,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0},{"ID":"FRO_DT","Descricao":"Freio Motor DT","Componente":480,"Funcoes":[45],"Controlar":true,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0},{"ID":"FRO_DF","Descricao":"Freio Motor DF","Componente":480,"Funcoes":[45],"Controlar":false,"_AnguloControle":0,"Leitura":null,"Inicializado":false,"LeituraAngulo":0.0}],"CameraID_Caminho":"14442C10C143E2D600","CameraID_Solo":["14442C1011AD1ED000",""],"ConfiguracaoSensorUltrassom":{"Configuracao":2,"Sensores":[{"ID":1,"Posicao":1,"LimiteMinimo":true,"LimiteMinimoVal":50.0,"MargemMinimo":2.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":true,"Parada":false,"DistanciaIdeal":50.0,"EmUso":true,"LeituraCm":0.0,"SensorAtuado":true},{"ID":2,"Posicao":3,"LimiteMinimo":true,"LimiteMinimoVal":50.0,"MargemMinimo":2.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":true,"Parada":false,"DistanciaIdeal":50.0,"EmUso":true,"LeituraCm":0.0,"SensorAtuado":true},{"ID":3,"Posicao":4,"LimiteMinimo":true,"LimiteMinimoVal":50.0,"MargemMinimo":2.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":true,"Parada":false,"DistanciaIdeal":50.0,"EmUso":true,"LeituraCm":0.0,"SensorAtuado":true},{"ID":4,"Posicao":6,"LimiteMinimo":true,"LimiteMinimoVal":50.0,"MargemMinimo":2.0,"LimiteMaximo":false,"LimiteMaximoVal":0.0,"MargemMaximo":0.0,"Desvio":true,"Parada":false,"DistanciaIdeal":50.0,"EmUso":true,"LeituraCm":0.0,"SensorAtuado":true}],"_paradaFrontal":false,"_paradaTraseira":false,"_paradaEsquerda":false,"_paradaDireita":false,"DesvioNecessario":true,"ParadaNecessaria":false,"DirecoesObstaculos":[3,4],"DirecaoDesvio":0},"BateriaCargaConsumida":0.0,"DadosLeitura":{"Momento":"0001-01-01T00:00:00","Conectado":false,"Mod_ID":null,"QualidadeWifi":0,"LatenciaLoop":0,"SensoresTemperatura":[],"SensoresCorrente":[],"Sinaleiros":[],"Reles":[],"ServoFreios":[],"SensoresPotenciometro":[],"UltimoComandoRespondido":"0001-01-01T00:00:00"},"LoRaParametrosBase":{"UltimaLeitura":"0001-01-01T00:00:00","PortaCOM":"","baudRate":96,"airRate":2,"baudAndAirRate":98,"parity":0,"packetSize":0,"power":0,"packetSizeAndPower":0,"tranMode":64,"worCycle":7,"tranModeAndWorCycle":71,"channelRssi":0,"lbt":0,"packetRssi":0,"address":1,"channel":23,"key":0}} \ No newline at end of file diff --git a/AgroBase/AgroBase/bin/Debug/Python/Output/GeoJson.json b/AgroBase/AgroBase/bin/Debug/Python/Output/GeoJson.json index 9c1b2953c..f76bb341d 100644 --- a/AgroBase/AgroBase/bin/Debug/Python/Output/GeoJson.json +++ b/AgroBase/AgroBase/bin/Debug/Python/Output/GeoJson.json @@ -1,254 +1,230 @@ { "type": "FeatureCollection", "features": [ -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 652.16462487499996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374872355038981, -22.216105252599952 ], [ -47.374852813648644, -22.216069869483672 ], [ -47.374822568648646, -22.216023551317011 ], [ -47.374790607481998, -22.215977583650353 ], [ -47.374760868981966, -22.215936224483713 ], [ -47.374728010148658, -22.215892961817012 ], [ -47.374694537315307, -22.215850819817025 ], [ -47.374660186315324, -22.215809782817072 ], [ -47.374626491148625, -22.215768359983734 ], [ -47.374590913481988, -22.215727854150405 ], [ -47.37455202298198, -22.215689009317035 ], [ -47.374511603481984, -22.215651955317075 ], [ -47.37447058214866, -22.215615852150407 ], [ -47.374427412815336, -22.215581538817073 ], [ -47.37438228698197, -22.215548953317075 ], [ -47.374336848481995, -22.215517223650448 ], [ -47.374290343315302, -22.215486036483753 ], [ -47.37424395764863, -22.215456267650474 ], [ -47.374196558815299, -22.215426501150439 ], [ -47.374149452815303, -22.215396595483757 ], [ -47.374101097648634, -22.215367001817111 ], [ -47.374054618815315, -22.215338322483788 ], [ -47.374007117815296, -22.215309121150469 ], [ -47.373960125481965, -22.215279226650463 ], [ -47.373913292146135, -22.215249375482223 ], [ -47.37386617698197, -22.215219064317161 ], [ -47.373819237148645, -22.21518907898384 ], [ -47.373771997315323, -22.215159228817189 ], [ -47.37372518364861, -22.215128453150498 ], [ -47.373677894648623, -22.215096808817183 ], [ -47.373632020815293, -22.215064740483857 ], [ -47.373586525648626, -22.215032412483872 ], [ -47.373541281815285, -22.214999248650535 ], [ -47.373497033981948, -22.214965333483878 ], [ -47.373453300481948, -22.214930102817206 ], [ -47.373410525315293, -22.214894457317214 ], [ -47.373366519646098, -22.214857857981798 ], [ -47.373323561481953, -22.214821818317237 ], [ -47.37328236431528, -22.214784929483898 ], [ -47.373241282981944, -22.214747686983909 ], [ -47.373200542815283, -22.214709822150585 ], [ -47.373159402315288, -22.214671500650599 ], [ -47.37312076348195, -22.214631988650595 ], [ -47.373082224981971, -22.214592842650603 ], [ -47.373043276981939, -22.214552690150626 ], [ -47.373005917315275, -22.21451199748396 ], [ -47.372967691815255, -22.214472175150622 ], [ -47.372929306148606, -22.214431911650635 ], [ -47.37289197514859, -22.214390071483976 ], [ -47.3728561776486, -22.214348134317298 ], [ -47.372819564481915, -22.214306013317326 ], [ -47.372782781315266, -22.214263947650675 ], [ -47.372745726815268, -22.214221924317343 ], [ -47.372708584981922, -22.214180327484005 ], [ -47.372671702981926, -22.214138081650677 ], [ -47.37263479414861, -22.214096752484014 ], [ -47.372598115148584, -22.214055523817368 ], [ -47.372562001148609, -22.214013306317348 ], [ -47.372523955648596, -22.213972570150705 ], [ -47.372484597815266, -22.213932696650716 ], [ -47.37244555081525, -22.213892008984068 ], [ -47.372407004648579, -22.213851498984081 ], [ -47.372367762315243, -22.213810946317416 ], [ -47.372328676648586, -22.213771180650745 ], [ -47.372288071815227, -22.213731424484081 ], [ -47.372247242648569, -22.2136921504841 ], [ -47.372206026815235, -22.213653176150757 ], [ -47.372164846148578, -22.213614727317438 ], [ -47.372124356648577, -22.213576546484092 ], [ -47.372083483815238, -22.213537875817458 ], [ -47.372042258481898, -22.213499096317459 ], [ -47.372000654815238, -22.213460285817469 ], [ -47.371959841481896, -22.213421871317454 ], [ -47.371918491481928, -22.21338359098414 ], [ -47.37187764731523, -22.213344697150795 ], [ -47.37183627631525, -22.213305880484167 ], [ -47.371795907315246, -22.213266482817481 ], [ -47.371755715981926, -22.213227156650827 ], [ -47.371715931648538, -22.21318767065085 ], [ -47.371675728981891, -22.213147867150838 ], [ -47.37163651714858, -22.213107992984174 ], [ -47.371598276148553, -22.213066196484217 ], [ -47.371561196481892, -22.213024427984202 ], [ -47.371524826815232, -22.212981899817535 ], [ -47.371489383315222, -22.212937938484234 ], [ -47.371456604148548, -22.212892643317556 ], [ -47.371425147815224, -22.212845778817538 ], [ -47.37139547848188, -22.212798235650904 ], [ -47.371369089648553, -22.212749349650899 ], [ -47.371346636481903, -22.212699612317557 ], [ -47.371326491648546, -22.212648106650906 ], [ -47.3713094419819, -22.212595649484253 ], [ -47.37129525781522, -22.212542817317569 ], [ -47.371282915981894, -22.212489829984275 ], [ -47.371272085648577, -22.212436496150929 ], [ -47.371262438648557, -22.212381756150954 ], [ -47.371254836648546, -22.212327541650954 ], [ -47.371248543815234, -22.212273005150923 ], [ -47.371244794981898, -22.212218346484264 ], [ -47.371243773981895, -22.212199818484279 ], [ -47.371242815481907, -22.212181031984297 ], [ -47.371242331981904, -22.212163469650957 ], [ -47.371242155315223, -22.21214531781763 ], [ -47.371241958315217, -22.212126438146818 ], [ -47.371241916481885, -22.212108374317641 ], [ -47.371242550815204, -22.212089982150939 ], [ -47.371243016648549, -22.212071586817618 ], [ -47.371243999315233, -22.212053676650939 ], [ -47.371245118148558, -22.212035466150972 ], [ -47.371246180981892, -22.212017104484307 ], [ -47.371247707981901, -22.21199863365095 ], [ -47.371249631815239, -22.211980509150969 ], [ -47.371251143315227, -22.211962210150965 ], [ -47.371252933815221, -22.211943525650963 ], [ -47.371254970648536, -22.211925414984311 ], [ -47.371256809981887, -22.211907199317608 ], [ -47.371259234315211, -22.211889091817639 ], [ -47.371261635815202, -22.211871387317657 ], [ -47.371264660815214, -22.211853220817627 ], [ -47.371267473981881, -22.211834996150973 ], [ -47.371270366148543, -22.211817147650969 ], [ -47.371272923815248, -22.211799354984326 ], [ -47.371275558815206, -22.211781478484298 ], [ -47.37127837464854, -22.211763489984307 ], [ -47.371281769815226, -22.21174534948431 ], [ -47.37128577114855, -22.211727322484304 ], [ -47.371289483815218, -22.211708949650966 ], [ -47.371293260981879, -22.211691412817636 ], [ -47.371297855981872, -22.21167320581764 ], [ -47.37130253798189, -22.211656452317641 ], [ -47.371307704481886, -22.21163905615099 ], [ -47.371313483148555, -22.21162229898432 ], [ -47.371320167453582, -22.211599643026286 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 282.35830411699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371415149564648, -22.213601085988735 ], [ -47.371375165344993, -22.213561962392252 ], [ -47.371334327596628, -22.213521430787903 ], [ -47.371291954436579, -22.21347947825176 ], [ -47.371244058506612, -22.213430773189465 ], [ -47.371197218876503, -22.213379578459694 ], [ -47.371154613424387, -22.213331585289183 ], [ -47.371110613030993, -22.213280134127011 ], [ -47.37106266947503, -22.213220668510672 ], [ -47.37101740077653, -22.213158114722756 ], [ -47.370976708423697, -22.213097489890707 ], [ -47.3709348254283, -22.213030374807236 ], [ -47.37089332914509, -22.212953501419562 ], [ -47.370859055605607, -22.212877579536659 ], [ -47.370829588499952, -22.212802238335922 ], [ -47.370804629494337, -22.212725445482114 ], [ -47.370785346669422, -22.21265362126233 ], [ -47.370769781775429, -22.21258679530802 ], [ -47.370756474773856, -22.212521263999214 ], [ -47.370744409688534, -22.212452801648478 ], [ -47.370734922917954, -22.212385143946253 ], [ -47.370726782972305, -22.212314597308392 ], [ -47.370722103908399, -22.212246372052736 ], [ -47.370720864270098, -22.212223874935212 ], [ -47.370719587385288, -22.212198846312209 ], [ -47.37071884631618, -22.212171924586912 ], [ -47.370718630430666, -22.212149734707108 ], [ -47.370718417493016, -22.212129331116337 ], [ -47.370718352156636, -22.212101073203776 ], [ -47.370719202815557, -22.212076411450671 ], [ -47.370719785623422, -22.212053400283995 ], [ -47.370721216783103, -22.212027317618421 ], [ -47.370722377571163, -22.21200842539599 ], [ -47.370723717775206, -22.211985273323133 ], [ -47.370726142421553, -22.211955945741387 ], [ -47.370728064636936, -22.2119378371215 ], [ -47.370729385023232, -22.211921852564384 ], [ -47.370731817288949, -22.211896472000497 ], [ -47.370733983784227, -22.211877209073677 ], [ -47.370736305629393, -22.211854215745014 ], [ -47.370739762884845, -22.211828394004112 ], [ -47.370743141971545, -22.211803483157738 ], [ -47.370746853606818, -22.211781193600558 ], [ -47.370749515183768, -22.211763951400496 ], [ -47.370752028781425, -22.211748439529902 ], [ -47.370754122721806, -22.211733873199758 ], [ -47.370757173475106, -22.211713176648235 ], [ -47.370761354015514, -22.211686470570992 ], [ -47.370767404342317, -22.211654144095707 ], [ -47.370772118252084, -22.211632907118208 ], [ -47.370775546260887, -22.21161594327948 ], [ -47.370781631015362, -22.21158769313897 ], [ -47.370789618634738, -22.211556043856415 ], [ -47.370796871058339, -22.211530093007507 ], [ -47.370805954208365, -22.211499509432354 ], [ -47.370811597445602, -22.211483145163552 ], [ -47.370878662046906, -22.211255837174299 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 100.29402235000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370855432876894, -22.213568438769641 ], [ -47.370849674945013, -22.213561952695709 ], [ -47.370799951513874, -22.213503809260686 ], [ -47.370742632934352, -22.213432715387967 ], [ -47.370687997115823, -22.213357217587877 ], [ -47.37064037777629, -22.213286272471127 ], [ -47.37058933458075, -22.213204478401128 ], [ -47.370536507789964, -22.213106614408545 ], [ -47.370493369057826, -22.213011054059589 ], [ -47.370456910335399, -22.212917836163555 ], [ -47.370426019422126, -22.212822791503871 ], [ -47.370412271312034, -22.212771582376526 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 85.090558806000004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37083181808336, -22.213562810664076 ], [ -47.370788445512353, -22.21351209351505 ], [ -47.370730779710044, -22.213440568965439 ], [ -47.370675796961613, -22.213364591756726 ], [ -47.370627921067481, -22.213293264406623 ], [ -47.370576538606024, -22.213210926669653 ], [ -47.370523292168123, -22.213112285246197 ], [ -47.370479825096957, -22.21301599754576 ], [ -47.370443107427199, -22.212922117549173 ], [ -47.370434340180971, -22.212895142636697 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 74.622224654999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370808468469981, -22.213557245754906 ], [ -47.370776939509447, -22.213520377768706 ], [ -47.370718926484365, -22.213448422542164 ], [ -47.370663596806075, -22.213371965924772 ], [ -47.370615464357371, -22.213300256341274 ], [ -47.370563742630061, -22.213217374937273 ], [ -47.370510076545145, -22.213117956082858 ], [ -47.370466281135045, -22.21302094103088 ], [ -47.370448847444564, -22.212976366456996 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 65.651282112999994, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370785118858123, -22.213551680842205 ], [ -47.370765433505156, -22.213528662021659 ], [ -47.370707073257321, -22.213456276118123 ], [ -47.370651396649201, -22.213379340092001 ], [ -47.370603007645961, -22.213307248275065 ], [ -47.370550946652855, -22.213223823203975 ], [ -47.370496860921008, -22.213123626918549 ], [ -47.370460935481525, -22.213044045325098 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 57.763226822999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370761769247792, -22.213546115925986 ], [ -47.370753927499479, -22.213536946273909 ], [ -47.370695220028921, -22.213464129693325 ], [ -47.370639196490998, -22.213386714258416 ], [ -47.370590550933258, -22.213314240208014 ], [ -47.370538150674406, -22.213230271469765 ], [ -47.370483645295721, -22.213129297753241 ], [ -47.370471263404696, -22.213101869547099 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 45.345454935, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370738703165436, -22.213540618579223 ], [ -47.370683366799149, -22.21347198326778 ], [ -47.370626996331467, -22.213394088424028 ], [ -47.370578094219248, -22.213321232140103 ], [ -47.370525354694706, -22.213236719734667 ], [ -47.370503191718669, -22.213195661819526 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 31.156735076, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370700506014899, -22.21351579703521 ], [ -47.370671513568013, -22.213479836841476 ], [ -47.370614796170607, -22.213401462588827 ], [ -47.370565637503951, -22.21332822407134 ], [ -47.37053572689689, -22.213280293854787 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 16.700733414999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370650008051392, -22.213474352528703 ], [ -47.370602596008411, -22.213408836752819 ], [ -47.370561746829338, -22.213347978037152 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 4.133197087, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370606821602458, -22.213438908668298 ], [ -47.370590395844886, -22.213416210916009 ], [ -47.370584736229908, -22.213407779001869 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 2.826514922, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370028083206215, -22.210662786709541 ], [ -47.370035342812415, -22.210638181520174 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 5.475689985, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370033808588587, -22.210694498160862 ], [ -47.370047872320391, -22.210646831548665 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 8.124865048, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370039533974257, -22.210726209611639 ], [ -47.370060401829861, -22.210655481576044 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 10.774040111, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370045259363188, -22.210757921061877 ], [ -47.370072931340829, -22.210664131602318 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 13.423215174, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370050984755409, -22.210789632511577 ], [ -47.370085460853289, -22.21067278162748 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 16.072390238000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370056710150905, -22.210821343960731 ], [ -47.370097990367235, -22.210681431651519 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 18.721565300999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370062435549677, -22.210853055409348 ], [ -47.370110519882687, -22.210690081674457 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 21.370740364, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370068160951732, -22.210884766857419 ], [ -47.370123049399623, -22.21069873169629 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 24.019915429000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370073886357062, -22.210916478304966 ], [ -47.37013557891806, -22.210707381717015 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 26.669090491, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370079611765675, -22.21094818975196 ], [ -47.370148108437988, -22.210716031736627 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 29.318265554, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370085337177557, -22.210979901198414 ], [ -47.370160637959415, -22.210724681755135 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 31.967440617000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370091062592728, -22.211011612644324 ], [ -47.370173167482328, -22.210733331772534 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 34.616615681, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370096788011168, -22.211043324089694 ], [ -47.370185697006747, -22.210741981788811 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 37.265790744999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370102513432897, -22.211075035534535 ], [ -47.370198226532651, -22.21075063180399 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 39.914965807000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370108238857895, -22.211106746978821 ], [ -47.370210756060047, -22.210759281818056 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 42.564140871, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370113964286176, -22.211138458422578 ], [ -47.370223285588949, -22.210767931831011 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 45.213315934000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370119689717733, -22.211170169865781 ], [ -47.370235815119337, -22.210776581842865 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 47.862490997000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370125415152572, -22.211201881308455 ], [ -47.370248344651216, -22.210785231853606 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 50.511666061, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370131140590686, -22.211233592750585 ], [ -47.370260874184588, -22.210793881863228 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 53.160841124000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370136866032084, -22.211265304192175 ], [ -47.370273403719466, -22.210802531871757 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 55.810016188, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370142591476757, -22.211297015633228 ], [ -47.370285933255829, -22.210811181879166 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 58.287656662000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370148009968354, -22.21132702694031 ], [ -47.370150892631962, -22.21131732097286 ], [ -47.370156359054384, -22.211301469653499 ], [ -47.370298462793684, -22.21081983188547 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 60.925109771000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37015371463594, -22.211358623267369 ], [ -47.370164830097202, -22.211321197352142 ], [ -47.370170300281693, -22.211305335118968 ], [ -47.370310992333039, -22.210828481890658 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 63.547881513999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370159751320827, -22.211390165337267 ], [ -47.370164788471357, -22.211372141542991 ], [ -47.370178767563104, -22.211325073730158 ], [ -47.370184241509655, -22.211309200583177 ], [ -47.370323521873885, -22.210837131894749 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 66.183289344000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370166151897848, -22.211421911979343 ], [ -47.370168440597418, -22.211412843643167 ], [ -47.370178834738176, -22.211375651603625 ], [ -47.370192705029673, -22.2113289501069 ], [ -47.370198182738278, -22.211313066046117 ], [ -47.370336051416231, -22.210845781897714 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 68.937529052000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370172786140152, -22.211454817573848 ], [ -47.370182558268567, -22.211416098221104 ], [ -47.370192881005586, -22.211379161662972 ], [ -47.370206642496882, -22.211332826482391 ], [ -47.370212123967548, -22.211316931507803 ], [ -47.370348580960062, -22.210854431899584 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 71.885529474999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37017979664423, -22.211489589391199 ], [ -47.370184730143386, -22.211466684726602 ], [ -47.37019667594025, -22.211419352797737 ], [ -47.370206927273578, -22.211382671721047 ], [ -47.370220579964759, -22.211336702856606 ], [ -47.370226065197478, -22.211320796968213 ], [ -47.370361110505392, -22.210863081900339 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 74.96721407, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37018706585468, -22.211525644358428 ], [ -47.3701871253216, -22.211525376454716 ], [ -47.370190229124105, -22.211510017303688 ], [ -47.37019894205946, -22.211469565905823 ], [ -47.370210793612479, -22.211422607373088 ], [ -47.37022097354216, -22.211386181777854 ], [ -47.370234517433289, -22.211340579229571 ], [ -47.37024000642807, -22.211324662427366 ], [ -47.370373640052222, -22.210871731899985 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 78.01890054, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370194276748016, -22.211561410051928 ], [ -47.370195887744835, -22.211552802796184 ], [ -47.370201393433668, -22.211527999179822 ], [ -47.370204505143803, -22.211512600890096 ], [ -47.370213153975982, -22.211472447083747 ], [ -47.370224911285234, -22.211425861947166 ], [ -47.370235019811332, -22.211389691833375 ], [ -47.37024845490248, -22.21134445560125 ], [ -47.3702539476593, -22.211328527885247 ], [ -47.370386169600529, -22.210880381898527 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 81.301914642, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370201932092115, -22.211599380174842 ], [ -47.37021017565214, -22.21155533635406 ], [ -47.370215661546155, -22.211530621903627 ], [ -47.370218781163899, -22.211515184475193 ], [ -47.370227365892966, -22.211475328260363 ], [ -47.37023902895853, -22.211429116519948 ], [ -47.370249066081087, -22.211393201887628 ], [ -47.370262392372318, -22.211348331971688 ], [ -47.370267888891192, -22.211332393341873 ], [ -47.370398699150343, -22.210889031895956 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 84.876879834999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370210142194004, -22.211640101839386 ], [ -47.370215610451105, -22.211605170462889 ], [ -47.370224463559843, -22.211557869910635 ], [ -47.37022992965904, -22.211533244626136 ], [ -47.370233057184407, -22.211517768058986 ], [ -47.370241577810418, -22.2114782094357 ], [ -47.370253146632351, -22.211432371091441 ], [ -47.370263112351424, -22.211396711940601 ], [ -47.370276329842824, -22.211352208340848 ], [ -47.370281830123744, -22.211336258797228 ], [ -47.370411228701656, -22.210897681892277 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 88.5851637, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370218604373839, -22.211682073765306 ], [ -47.370219293509976, -22.21167782108067 ], [ -47.370220910817856, -22.211666570706299 ], [ -47.370224388895075, -22.211642975768996 ], [ -47.370229972118103, -22.211607309963625 ], [ -47.37023875146793, -22.211560403465903 ], [ -47.370244197772344, -22.21153586734734 ], [ -47.370247333205306, -22.211520351641489 ], [ -47.370255789728333, -22.21148109060973 ], [ -47.370267264306712, -22.211435625661675 ], [ -47.370277158622343, -22.211400221992292 ], [ -47.370290267313976, -22.211356084708751 ], [ -47.370295771356943, -22.211340124251311 ], [ -47.370423758254454, -22.210906331887479 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 92.149174467999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.3702267939221, -22.21172269342372 ], [ -47.37022904676445, -22.211709164687093 ], [ -47.370231556744422, -22.211692904953221 ], [ -47.370233691755807, -22.211679729710987 ], [ -47.370235321945984, -22.211668389716209 ], [ -47.370238788473614, -22.211644873113634 ], [ -47.370244333785408, -22.21160944946304 ], [ -47.370253039376408, -22.211562937019874 ], [ -47.370258465886046, -22.211538490067248 ], [ -47.37026160922661, -22.211522935222689 ], [ -47.370270001646702, -22.211483971782478 ], [ -47.370281381981613, -22.211438880230602 ], [ -47.370291204893853, -22.211403732042715 ], [ -47.370304204785789, -22.211359961075381 ], [ -47.370309712590803, -22.211343989704151 ], [ -47.370436287808751, -22.210914981881583 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 95.891086758, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370235318883815, -22.21176497668035 ], [ -47.370239051056423, -22.211737463595981 ], [ -47.370243430282912, -22.211711165513158 ], [ -47.370245944473993, -22.211694878488554 ], [ -47.370248090001908, -22.211681638340004 ], [ -47.370249733074353, -22.211670208724804 ], [ -47.370253188052423, -22.211646770456962 ], [ -47.370258695453025, -22.211611588961162 ], [ -47.370267327285276, -22.211565470572538 ], [ -47.370272734000167, -22.211541112785852 ], [ -47.370275885248311, -22.211525518802596 ], [ -47.370284213565533, -22.211486852953929 ], [ -47.370295499657047, -22.211442134798247 ], [ -47.370305251165952, -22.211407242091855 ], [ -47.370318142258256, -22.211363837440757 ], [ -47.370323653825309, -22.211347855155701 ], [ -47.370448817364533, -22.210923631874575 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 99.832305848000004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370244218920789, -22.211809120251115 ], [ -47.370244718391731, -22.211804174141847 ], [ -47.370249151237367, -22.211771066730662 ], [ -47.370253453649603, -22.211739349891442 ], [ -47.370257813801651, -22.211713166337915 ], [ -47.370260332203856, -22.211696852022602 ], [ -47.370262488248272, -22.211683546967702 ], [ -47.37026414420297, -22.211672027732082 ], [ -47.370267587631481, -22.211648667798986 ], [ -47.370273057120954, -22.211613728457959 ], [ -47.370281615194543, -22.211568004123905 ], [ -47.370287002114694, -22.21154373550316 ], [ -47.370290161270418, -22.211528102381191 ], [ -47.370298425484826, -22.211489734124086 ], [ -47.370309617333014, -22.211445389364602 ], [ -47.370319297438634, -22.211410752139717 ], [ -47.370332079731384, -22.211367713804862 ], [ -47.370337595060477, -22.211351720606007 ], [ -47.370461346921822, -22.210932281866455 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 104.120869488, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370253807243365, -22.211856677631324 ], [ -47.370254127298409, -22.2118533379928 ], [ -47.370256412658087, -22.211833018827132 ], [ -47.370259176837038, -22.211805645975371 ], [ -47.370263580988116, -22.211772752848592 ], [ -47.370267856243025, -22.211741236185603 ], [ -47.370272197320666, -22.211715167161362 ], [ -47.370274719933988, -22.211698825555324 ], [ -47.370276886494899, -22.211685455594093 ], [ -47.370278555331836, -22.211673846738048 ], [ -47.370281987210809, -22.211650565139685 ], [ -47.370287418789189, -22.211615867953448 ], [ -47.3702959031042, -22.211570537673968 ], [ -47.370301270229625, -22.21154635821917 ], [ -47.37030443729293, -22.211530685958486 ], [ -47.370312637404588, -22.211492615292947 ], [ -47.370323735009528, -22.211448643929682 ], [ -47.370333343711899, -22.211414262186299 ], [ -47.370346017205172, -22.211371590167712 ], [ -47.370351536296297, -22.211355586055035 ], [ -47.370473823380479, -22.210941111832764 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 108.537520965, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370263784878176, -22.211906165927989 ], [ -47.370264449491408, -22.211899904999921 ], [ -47.370265599984307, -22.211885977726002 ], [ -47.370268602750436, -22.21185464510495 ], [ -47.370270884508059, -22.211834357946515 ], [ -47.370273635282516, -22.211807117807577 ], [ -47.370278010739078, -22.211774438965204 ], [ -47.370282258836724, -22.211743122478453 ], [ -47.370286580839966, -22.211717167983505 ], [ -47.370289107664398, -22.211700799086731 ], [ -47.370291284741782, -22.211687364219173 ], [ -47.370292966460944, -22.211675665742714 ], [ -47.3702963867904, -22.211652462479091 ], [ -47.370301780457737, -22.211618007447647 ], [ -47.370310191014241, -22.21157307122273 ], [ -47.370315538344968, -22.211548980933877 ], [ -47.370318713315839, -22.211533269534481 ], [ -47.370326849324805, -22.211495496460515 ], [ -47.370337852686568, -22.211451898493472 ], [ -47.370347389985753, -22.211417772231624 ], [ -47.370359954679607, -22.21137546652929 ], [ -47.370365477532772, -22.211359451502812 ], [ -47.370486091192745, -22.21095064898164 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 113.045573727, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370273931981998, -22.211956494732 ], [ -47.37027701664087, -22.211919185344353 ], [ -47.370278937462935, -22.211901090399067 ], [ -47.370280093265201, -22.211887098835053 ], [ -47.370283078202611, -22.211855952215792 ], [ -47.370285356358174, -22.21183569706459 ], [ -47.370288093728163, -22.211808589638469 ], [ -47.37029244049026, -22.211776125080508 ], [ -47.370296661430672, -22.211745008769991 ], [ -47.370300964359558, -22.211719168804333 ], [ -47.370303495395085, -22.211702772616846 ], [ -47.370305682988935, -22.211689272842939 ], [ -47.370307377590294, -22.211677484746069 ], [ -47.370310786370247, -22.211654359817182 ], [ -47.370316142126597, -22.211620146940522 ], [ -47.37032447892468, -22.211575604770196 ], [ -47.370329806460731, -22.211551603647283 ], [ -47.370332989339147, -22.211535853109172 ], [ -47.370341061245483, -22.211498377626786 ], [ -47.37035197036414, -22.211455153055994 ], [ -47.37036143626019, -22.211421282275658 ], [ -47.370373892154703, -22.2113793428896 ], [ -47.3703794187699, -22.211363316949313 ], [ -47.370498359006646, -22.210960186129434 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 118.15093192800001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37028518332577, -22.212012300421719 ], [ -47.370285564692757, -22.212005350460352 ], [ -47.37028676044698, -22.211985890135939 ], [ -47.37028833182061, -22.211958746056826 ], [ -47.370291504567568, -22.211920371183304 ], [ -47.370293425434582, -22.211902275796906 ], [ -47.370294586546215, -22.211888219942804 ], [ -47.370297553654922, -22.211857259325317 ], [ -47.370299828208438, -22.21183703618135 ], [ -47.370302552173996, -22.211810061468061 ], [ -47.370306870241656, -22.211777811194498 ], [ -47.370311064024875, -22.211746895060223 ], [ -47.370315347879419, -22.21172116962385 ], [ -47.370317883126049, -22.211704746145632 ], [ -47.370320081236351, -22.211691181465408 ], [ -47.370321788719892, -22.21167930374811 ], [ -47.370325185950357, -22.211656257153951 ], [ -47.37033050379577, -22.211622286432107 ], [ -47.370338766835502, -22.211578138316348 ], [ -47.370344074576884, -22.211554226359382 ], [ -47.370347265362859, -22.211538436682581 ], [ -47.370355273166624, -22.21150125879176 ], [ -47.37036608804226, -22.211458407617211 ], [ -47.370375482535216, -22.211424792318414 ], [ -47.370387829630459, -22.211383219248656 ], [ -47.370393360007682, -22.211367182394547 ], [ -47.370510626822167, -22.210969723276136 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 123.76396653800001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370297366751444, -22.212072729092803 ], [ -47.370297616876293, -22.212065478265821 ], [ -47.370298293938681, -22.212038748787229 ], [ -47.370300086428813, -22.212006082717966 ], [ -47.37030128101744, -22.211986641330288 ], [ -47.370302844685014, -22.211959630318059 ], [ -47.37030599249438, -22.211921557020947 ], [ -47.370307913406336, -22.211903461193419 ], [ -47.370309079827315, -22.211889341049215 ], [ -47.370312029107367, -22.211858566433531 ], [ -47.370314300058844, -22.211838375296796 ], [ -47.370317010619992, -22.211811533296331 ], [ -47.370321299993272, -22.21177949730717 ], [ -47.370325466619342, -22.211748781349133 ], [ -47.370329731399565, -22.211723170442063 ], [ -47.37033227085729, -22.211706719673117 ], [ -47.370334479484036, -22.211693090086559 ], [ -47.370336199849731, -22.211681122748828 ], [ -47.370339585530729, -22.211658154489417 ], [ -47.370344865465256, -22.21162442592237 ], [ -47.370353054746722, -22.211580671861203 ], [ -47.370358342693464, -22.211556849070199 ], [ -47.37036154138697, -22.211541020254671 ], [ -47.370369485088226, -22.211504139955437 ], [ -47.370380205720906, -22.21146166217715 ], [ -47.370389528810826, -22.211428302359895 ], [ -47.370401767106863, -22.211387095606433 ], [ -47.370407301246118, -22.211371047838526 ], [ -47.370522894639329, -22.210979260421766 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 130.34976999599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370311327407286, -22.212141972580234 ], [ -47.370311218944984, -22.212131580950956 ], [ -47.370311135378735, -22.212095393390282 ], [ -47.37031215432323, -22.212065855290497 ], [ -47.370312828135084, -22.212039254029577 ], [ -47.37031460816489, -22.212006814974274 ], [ -47.370315801587914, -22.211987392523323 ], [ -47.370317357549467, -22.211960514577981 ], [ -47.370320480421306, -22.211922742857272 ], [ -47.37032240137821, -22.211904646588632 ], [ -47.370323573108521, -22.211890462154336 ], [ -47.370326504559955, -22.211859873540437 ], [ -47.370328771909406, -22.211839714410928 ], [ -47.370331469066166, -22.211813005123293 ], [ -47.370335729745108, -22.211781183418541 ], [ -47.370339869214071, -22.21175066763675 ], [ -47.370344114920002, -22.211725171258959 ], [ -47.370346658588808, -22.211708693199306 ], [ -47.370348877731978, -22.211694998706395 ], [ -47.37035061097982, -22.211682941748244 ], [ -47.370353985111365, -22.211660051823582 ], [ -47.370359227135047, -22.211626565411326 ], [ -47.370367342658334, -22.211583205404757 ], [ -47.370372610810442, -22.211559471779712 ], [ -47.370375817411485, -22.211543603825472 ], [ -47.37038369701029, -22.211507021117821 ], [ -47.370394323400092, -22.211464916735807 ], [ -47.370403575087025, -22.211431812400097 ], [ -47.370415704583934, -22.21139097196296 ], [ -47.370421242485214, -22.211374913281237 ], [ -47.370535162458125, -22.210988797566316 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 141.69731439500001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370329356017308, -22.212254153349967 ], [ -47.370328681757584, -22.212241916179625 ], [ -47.370327166114258, -22.212212205960476 ], [ -47.37032623191368, -22.212178264685743 ], [ -47.370325986633688, -22.212153046268973 ], [ -47.370325761752269, -22.212131500616216 ], [ -47.370325678836302, -22.212095596258376 ], [ -47.370326691770103, -22.212066232313866 ], [ -47.370327362331466, -22.212039759270624 ], [ -47.370329129900981, -22.212007547229248 ], [ -47.370330322158431, -22.211988143715057 ], [ -47.370331870413978, -22.211961398836603 ], [ -47.370334968348338, -22.211923928692279 ], [ -47.370336889350199, -22.211905831982534 ], [ -47.370338066389827, -22.211891583258144 ], [ -47.370340980012671, -22.211861180646025 ], [ -47.370343243760111, -22.211841053523735 ], [ -47.37034592751251, -22.211814476948938 ], [ -47.370350159497157, -22.211782869528598 ], [ -47.370354271809056, -22.211752553923038 ], [ -47.370358498440716, -22.211727172074557 ], [ -47.370361046320603, -22.211710666724159 ], [ -47.370363275980182, -22.211696907324924 ], [ -47.37036502211015, -22.211684760746351 ], [ -47.370368384692256, -22.211661949156419 ], [ -47.370373588805151, -22.211628704898981 ], [ -47.370381630570336, -22.211585738947011 ], [ -47.370386878927839, -22.211562094487906 ], [ -47.370390093436406, -22.211546187394955 ], [ -47.370397908932816, -22.21150990227892 ], [ -47.37040844107981, -22.211468171293173 ], [ -47.370417621363806, -22.211435322439023 ], [ -47.370429642061659, -22.211394848318221 ], [ -47.370435183724965, -22.211378778722686 ], [ -47.370547430278556, -22.210998334709775 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 299.23066211399998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370874791113643, -22.213568990640809 ], [ -47.370860968980907, -22.213553420578297 ], [ -47.370811457514009, -22.213495525005619 ], [ -47.370754486157303, -22.213424861809745 ], [ -47.370700197268697, -22.213349843418221 ], [ -47.370652834483806, -22.213279280534785 ], [ -47.370602130554232, -22.213198030131693 ], [ -47.370549723410647, -22.213100943569916 ], [ -47.37050691301765, -22.213006110572358 ], [ -47.370470713242653, -22.212913554776847 ], [ -47.370440042028186, -22.212819186110579 ], [ -47.370417076914578, -22.212733645381412 ], [ -47.370399184311587, -22.212656824850047 ], [ -47.370384088656543, -22.212582484239135 ], [ -47.370370277235274, -22.212504111286727 ], [ -47.370359429300521, -22.212426744592626 ], [ -47.37034995540062, -22.212344635063904 ], [ -47.370344604564977, -22.212266611706831 ], [ -47.370343207039319, -22.212241248002105 ], [ -47.370341700238441, -22.212211711175463 ], [ -47.370340773190179, -22.212178029884125 ], [ -47.370340528998582, -22.212152923635411 ], [ -47.370340304559406, -22.212131420280194 ], [ -47.370340222293777, -22.212095799125173 ], [ -47.370341229216933, -22.212066609335935 ], [ -47.370341896527819, -22.212040264510357 ], [ -47.370343651637093, -22.212008279482927 ], [ -47.370344842728954, -22.21198889490547 ], [ -47.370346383278537, -22.2119622830939 ], [ -47.370349456275498, -22.211925114525972 ], [ -47.370351377322294, -22.211907017375108 ], [ -47.37035255967124, -22.211892704360629 ], [ -47.370355455465543, -22.211862487750288 ], [ -47.37035771561095, -22.211842392635241 ], [ -47.370360385959032, -22.211815948773257 ], [ -47.370364589249419, -22.211784555637344 ], [ -47.370368674404304, -22.211754440208026 ], [ -47.370372881961714, -22.211729172888841 ], [ -47.370375434052676, -22.211712640247722 ], [ -47.370377674228656, -22.211698815942142 ], [ -47.370379433240736, -22.211686579743155 ], [ -47.370382784273417, -22.211663846487966 ], [ -47.370387950475561, -22.211630844385308 ], [ -47.370395918482735, -22.211588272487958 ], [ -47.370401147045634, -22.211564717194822 ], [ -47.370404369461717, -22.211548770963152 ], [ -47.370412120855796, -22.211512783438714 ], [ -47.370422558760062, -22.211471425849265 ], [ -47.370431667641171, -22.211438832476674 ], [ -47.370443579540037, -22.211398724672222 ], [ -47.370449124965369, -22.211382644162864 ], [ -47.370559698100607, -22.211007871852157 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 298.17174170300001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370892567051939, -22.213567760116529 ], [ -47.3708722630154, -22.213544888460206 ], [ -47.370822963512758, -22.213487240749849 ], [ -47.370766339378889, -22.21341700823076 ], [ -47.370712397420249, -22.213342469247749 ], [ -47.370665291190022, -22.213272288597569 ], [ -47.370614926526464, -22.213191581861352 ], [ -47.370562939030187, -22.213095272730289 ], [ -47.370520456976429, -22.213001167084084 ], [ -47.37048451614897, -22.21290927338903 ], [ -47.370454064633428, -22.212815580716153 ], [ -47.370431241145134, -22.212730567545449 ], [ -47.370413438068518, -22.212654131421157 ], [ -47.370398411207042, -22.212580129629789 ], [ -47.37038466695163, -22.212502137854596 ], [ -47.370373871368429, -22.212425144583445 ], [ -47.370364448773358, -22.212343479781506 ], [ -47.370359123774129, -22.212265833274632 ], [ -47.370357732320784, -22.212240579823312 ], [ -47.37035623436239, -22.212211216389179 ], [ -47.370355314466508, -22.21217779508121 ], [ -47.370355071363313, -22.212152801000549 ], [ -47.3703548473664, -22.212131339942861 ], [ -47.370354765751166, -22.212096001990655 ], [ -47.370355766663707, -22.212066986356692 ], [ -47.370356430724136, -22.212040769748789 ], [ -47.370358173373234, -22.212009011735301 ], [ -47.370359363299507, -22.211989646094569 ], [ -47.370360896143147, -22.211963167349893 ], [ -47.370363944202765, -22.211926300358368 ], [ -47.370365865294509, -22.211908202766381 ], [ -47.370367052952751, -22.211893825461807 ], [ -47.37036993091855, -22.211863794853258 ], [ -47.370372187461953, -22.211843731745439 ], [ -47.370374844405724, -22.21181742059628 ], [ -47.370379019001909, -22.211786241744768 ], [ -47.370383076999801, -22.211756326491702 ], [ -47.370387265482996, -22.211731173701832 ], [ -47.370389821785025, -22.211714613769971 ], [ -47.370392072477387, -22.211700724558053 ], [ -47.370393844371549, -22.211688398738641 ], [ -47.370397183854827, -22.211665743818187 ], [ -47.37040231214629, -22.211632983870352 ], [ -47.370410206395519, -22.211590806027619 ], [ -47.370415415163841, -22.21156733990043 ], [ -47.37041864548744, -22.211551354530041 ], [ -47.370426332779246, -22.211515664597222 ], [ -47.37043667644086, -22.21147468040407 ], [ -47.370445713919125, -22.211442342513052 ], [ -47.370457517019069, -22.21140260102494 ], [ -47.370463066206419, -22.211386509601773 ], [ -47.370571965924299, -22.211017408993452 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 297.11282129099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370910342989745, -22.213566529590338 ], [ -47.370883557048501, -22.213536356341432 ], [ -47.370834469510115, -22.213478956493372 ], [ -47.370778192599104, -22.213409154651021 ], [ -47.370724597570465, -22.213335095076467 ], [ -47.370677747894945, -22.213265296659525 ], [ -47.37062772249746, -22.213185133590098 ], [ -47.370576154648582, -22.213089601889681 ], [ -47.370534000934157, -22.212996223594768 ], [ -47.370498319054342, -22.212904992000119 ], [ -47.370468087237832, -22.212811975320577 ], [ -47.370445405374937, -22.2127274897083 ], [ -47.370427691824787, -22.212651437991074 ], [ -47.370412733756943, -22.21257777501922 ], [ -47.370399056667452, -22.212500164421211 ], [ -47.370388313435875, -22.212423544573017 ], [ -47.370378942145727, -22.212342324497854 ], [ -47.37037364298299, -22.212265054841144 ], [ -47.370372257601979, -22.212239911643216 ], [ -47.370370768486104, -22.212210721601597 ], [ -47.370369855742652, -22.212177560276984 ], [ -47.370369613727895, -22.212152678364383 ], [ -47.370369390173238, -22.212131259604231 ], [ -47.370369309208456, -22.212096204854848 ], [ -47.370370304110423, -22.212067363376132 ], [ -47.37037096492044, -22.212041274985911 ], [ -47.370372695109388, -22.212009743986354 ], [ -47.370373883870087, -22.211990397282364 ], [ -47.370375409007814, -22.211964051604578 ], [ -47.370378432130146, -22.211927486189438 ], [ -47.370380353266839, -22.211909388156339 ], [ -47.370381546234356, -22.211894946561674 ], [ -47.370384406371691, -22.211865101954899 ], [ -47.370386659313084, -22.211845070854324 ], [ -47.370389302852594, -22.211818892417984 ], [ -47.370393448754612, -22.211787927850899 ], [ -47.370397479595567, -22.211758212774061 ], [ -47.370401649004556, -22.21173317451349 ], [ -47.370404209517652, -22.211716587290908 ], [ -47.370406470726387, -22.211702633172656 ], [ -47.370408255502625, -22.211690217732809 ], [ -47.370411583436507, -22.211667641147105 ], [ -47.370416673817324, -22.211635123354075 ], [ -47.370424494308693, -22.211593339565965 ], [ -47.370429683282467, -22.211569962604731 ], [ -47.370432921513562, -22.211553938095648 ], [ -47.37044054470315, -22.21151854575443 ], [ -47.370450794122178, -22.211477934957578 ], [ -47.370459760197662, -22.211445852548149 ], [ -47.370471454498762, -22.211406477376411 ], [ -47.37047700744813, -22.211390375039432 ], [ -47.370584233749618, -22.211026946133675 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 296.05390088000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370928118927033, -22.213565299062232 ], [ -47.370894851080209, -22.213527824222005 ], [ -47.370845975506086, -22.213470672236205 ], [ -47.370790045817955, -22.213401301070526 ], [ -47.370736797719353, -22.213327720904374 ], [ -47.370690204598567, -22.213258304720615 ], [ -47.370640518467205, -22.213178685317946 ], [ -47.370589370265819, -22.213083931048089 ], [ -47.37054754489084, -22.21299128010439 ], [ -47.370512121958761, -22.212900710610096 ], [ -47.370482109841397, -22.212808369923838 ], [ -47.370459569604016, -22.212724411869974 ], [ -47.370441945580396, -22.212648744559786 ], [ -47.370427056306241, -22.212575420407425 ], [ -47.370413446382749, -22.212498190986608 ], [ -47.370402755502873, -22.212421944561335 ], [ -47.37039343551772, -22.212341169212916 ], [ -47.370388162191567, -22.21226427640638 ], [ -47.37038678288291, -22.212239243461841 ], [ -47.370385302609591, -22.212210226812722 ], [ -47.370384397018618, -22.212177325471472 ], [ -47.370384156092314, -22.212152555726924 ], [ -47.370383932979934, -22.212131179264297 ], [ -47.370383852665668, -22.212096407717723 ], [ -47.37038484155709, -22.212067740394282 ], [ -47.370385499116708, -22.21204178022171 ], [ -47.370387216845558, -22.212010476236109 ], [ -47.370388404440689, -22.211991148468847 ], [ -47.370389921872523, -22.211964935857939 ], [ -47.37039292005764, -22.211928672019198 ], [ -47.370394841239282, -22.211910573544984 ], [ -47.370396039516066, -22.211896067660213 ], [ -47.370398881824975, -22.21186640905524 ], [ -47.370401131164378, -22.211846409961879 ], [ -47.370403761299634, -22.211820364238385 ], [ -47.370407878507535, -22.211789613955702 ], [ -47.370411882191583, -22.211760099055123 ], [ -47.3704160325264, -22.211735175323849 ], [ -47.370418597250556, -22.211718560810532 ], [ -47.37042086897565, -22.211704541785945 ], [ -47.370422666633935, -22.211692036725676 ], [ -47.370425983018443, -22.211669538474709 ], [ -47.370431035488672, -22.211637262836497 ], [ -47.370438782222259, -22.211595873102997 ], [ -47.370443951401491, -22.211572585307742 ], [ -47.370447197540074, -22.211556521659933 ], [ -47.370454756627524, -22.211521426910348 ], [ -47.370464911804042, -22.211481189509804 ], [ -47.370473806476788, -22.211449362581963 ], [ -47.370485391979109, -22.21141035372661 ], [ -47.370490948690495, -22.211394240475816 ], [ -47.370596501576564, -22.21103648327281 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 294.99498046799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370945894863816, -22.2135640685322 ], [ -47.370906145110517, -22.2135192921019 ], [ -47.370857481500678, -22.213462387978328 ], [ -47.370801899035442, -22.213393447489281 ], [ -47.370748997866912, -22.213320346731471 ], [ -47.370702661300889, -22.213251312780862 ], [ -47.370653314435707, -22.213172237044873 ], [ -47.370602585881905, -22.213078260205513 ], [ -47.370561088846479, -22.212986336612982 ], [ -47.37052592486225, -22.212896429218983 ], [ -47.370496132444146, -22.212804764525973 ], [ -47.370473733832355, -22.212721334030455 ], [ -47.370456199335337, -22.212646051127297 ], [ -47.370441378854935, -22.212573065794409 ], [ -47.37042783609752, -22.212496217550743 ], [ -47.370417197569417, -22.212420344548395 ], [ -47.37040792888935, -22.212340013926717 ], [ -47.370402681399852, -22.21226349797033 ], [ -47.370401308163565, -22.212238575279176 ], [ -47.370399836732837, -22.212209732022558 ], [ -47.370398938294407, -22.212177090664671 ], [ -47.370398698456569, -22.212152433088164 ], [ -47.37039847578648, -22.212131098923077 ], [ -47.370398396122781, -22.212096610579295 ], [ -47.3703993790037, -22.212068117411118 ], [ -47.370400033312947, -22.212042285456214 ], [ -47.370401738581755, -22.212011208484533 ], [ -47.370402925011312, -22.211991899654016 ], [ -47.370404434737289, -22.211965820109992 ], [ -47.370407407985248, -22.211929857847647 ], [ -47.370409329211839, -22.211911758932317 ], [ -47.370410532797877, -22.211897188757462 ], [ -47.370413357278395, -22.211867716154259 ], [ -47.370415603015807, -22.211847749068134 ], [ -47.370418219746846, -22.211821836057464 ], [ -47.370422308260672, -22.211791300059193 ], [ -47.370426284787868, -22.211761985334864 ], [ -47.370430416048521, -22.211737176132893 ], [ -47.370432984983729, -22.211720534328865 ], [ -47.370435267225176, -22.211706450397919 ], [ -47.370437077765494, -22.211693855717225 ], [ -47.370440382600641, -22.211671435801009 ], [ -47.370445397160331, -22.211639402317612 ], [ -47.370453070136222, -22.211598406638743 ], [ -47.370458219520934, -22.211575208009446 ], [ -47.370461473566998, -22.211559105222921 ], [ -47.370468968552352, -22.211524308064966 ], [ -47.37047902948644, -22.211484444060758 ], [ -47.370487852756504, -22.211452872614508 ], [ -47.370499329460124, -22.211414230075558 ], [ -47.370504889933521, -22.211398105910941 ], [ -47.370608769405159, -22.211046020410869 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 293.93676123699998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37096368240335, -22.213562837197024 ], [ -47.370963267963589, -22.213562384222158 ], [ -47.370917439139433, -22.213510759981116 ], [ -47.370868987493878, -22.213454103719734 ], [ -47.370813752251571, -22.213385593907272 ], [ -47.370761198013142, -22.213312972557766 ], [ -47.370715118001911, -22.213244320840257 ], [ -47.370666110402972, -22.213165788770894 ], [ -47.370615801496847, -22.21307258936195 ], [ -47.370574632801066, -22.212981393120504 ], [ -47.370539727764779, -22.212892147826771 ], [ -47.370510155046055, -22.212801159126947 ], [ -47.370487898059963, -22.21271825618976 ], [ -47.370470453089609, -22.212643357693601 ], [ -47.370455701403024, -22.212570711180184 ], [ -47.370442225811757, -22.212494244113653 ], [ -47.370431639635505, -22.212418744534205 ], [ -47.370422422260617, -22.212338858639246 ], [ -47.370417200607839, -22.212262719533001 ], [ -47.370415833443957, -22.212237907095233 ], [ -47.370414370855848, -22.212209237231097 ], [ -47.370413479570011, -22.212176855856566 ], [ -47.370413240820682, -22.212152310448104 ], [ -47.37041301859287, -22.212131018580539 ], [ -47.370412939579808, -22.212096813439569 ], [ -47.370413916450254, -22.212068494426635 ], [ -47.370414567509158, -22.212042790689409 ], [ -47.370416260317974, -22.212011940731657 ], [ -47.370417445581964, -22.211992650837882 ], [ -47.370418947602111, -22.211966704360737 ], [ -47.370421895912969, -22.211931043674777 ], [ -47.370423817184502, -22.211912944318335 ], [ -47.370425026079793, -22.211898309853371 ], [ -47.370427832731956, -22.211869023251964 ], [ -47.370430074867386, -22.211849088173071 ], [ -47.370432678194234, -22.211823307875232 ], [ -47.370436738014028, -22.211792986161377 ], [ -47.370440687384409, -22.211763871613297 ], [ -47.37044479957094, -22.211739176940629 ], [ -47.370447372717187, -22.211722507845874 ], [ -47.370449665474965, -22.21170835900859 ], [ -47.370451488897295, -22.211695674707471 ], [ -47.37045478218311, -22.211673333125983 ], [ -47.370459758832304, -22.211641541797412 ], [ -47.370467358050568, -22.211600940173184 ], [ -47.370472487640775, -22.211577830709857 ], [ -47.370475749594327, -22.211561688784609 ], [ -47.370483180477642, -22.211527189218288 ], [ -47.370493147169377, -22.211487698610416 ], [ -47.370501899036796, -22.211456382645782 ], [ -47.370513266941785, -22.211418106423228 ], [ -47.370518831177193, -22.211401971344799 ], [ -47.370621037235367, -22.211055557547841 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 292.889390478, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370981649464532, -22.213561593432551 ], [ -47.370974408497254, -22.213553679192355 ], [ -47.370928733166956, -22.21350222785966 ], [ -47.3708804934857, -22.213445819460453 ], [ -47.370825605466337, -22.213377740324507 ], [ -47.370773398158029, -22.213305598383251 ], [ -47.370727574701647, -22.213237328898789 ], [ -47.370678906368994, -22.213159340495999 ], [ -47.370629017110637, -22.213066918517402 ], [ -47.370588176754602, -22.212976449626993 ], [ -47.370553530666378, -22.212887866433451 ], [ -47.370524177647134, -22.212797553726773 ], [ -47.370502062286832, -22.212715178347885 ], [ -47.370484706843214, -22.212640664258707 ], [ -47.370470023950517, -22.212568356564731 ], [ -47.370456615525462, -22.212492270675313 ], [ -47.370446081701125, -22.212417144518749 ], [ -47.370436915631515, -22.212337703350492 ], [ -47.370431719815535, -22.212261941094386 ], [ -47.370430358724086, -22.212237238909999 ], [ -47.370428904978638, -22.212208742438346 ], [ -47.370428020845438, -22.212176621047153 ], [ -47.370427783184624, -22.212152187806744 ], [ -47.370427561399126, -22.212130938236719 ], [ -47.370427483036742, -22.212097016298525 ], [ -47.370428453896757, -22.212068871440859 ], [ -47.370429101705348, -22.212043295921291 ], [ -47.370430782054207, -22.212012672977476 ], [ -47.370431966152644, -22.211993402020433 ], [ -47.370433460466977, -22.211967588610172 ], [ -47.370436383840811, -22.211932229500597 ], [ -47.370438305157286, -22.21191412970304 ], [ -47.370439519361803, -22.211899430947987 ], [ -47.370442308185659, -22.211870330348368 ], [ -47.370444546719114, -22.211850427276701 ], [ -47.370447136641786, -22.211824779691685 ], [ -47.370451167767605, -22.211794672262258 ], [ -47.370455089981206, -22.211765757890422 ], [ -47.370459183093622, -22.211741177747054 ], [ -47.370461760450922, -22.211724481361564 ], [ -47.370464063725009, -22.211710267617956 ], [ -47.370465900029345, -22.211697493696406 ], [ -47.370469181765827, -22.211675230449661 ], [ -47.370474120504582, -22.211643681275909 ], [ -47.370481645965306, -22.211603473706329 ], [ -47.370486755761036, -22.211580453408963 ], [ -47.370490025622047, -22.211564272344994 ], [ -47.370497392403401, -22.211530070370312 ], [ -47.37050726485284, -22.211490953158798 ], [ -47.370515945317678, -22.211459892675769 ], [ -47.3705272044241, -22.211421982769632 ], [ -47.370532772421519, -22.211405836777399 ], [ -47.370633305067223, -22.211065094683729 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 291.84201971800002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.370999616525197, -22.213560349666121 ], [ -47.370985549029506, -22.213544974161913 ], [ -47.370940027193079, -22.213493695737547 ], [ -47.370891999476129, -22.213437535200455 ], [ -47.370837458679731, -22.213369886740988 ], [ -47.370785598301595, -22.213298224207914 ], [ -47.370740031400068, -22.213230336956478 ], [ -47.370691702333772, -22.213152892220201 ], [ -47.370642232723284, -22.21306124767187 ], [ -47.3706017207071, -22.212971506132437 ], [ -47.370567333567031, -22.212883585039027 ], [ -47.370538200247388, -22.212793948325459 ], [ -47.370516226512954, -22.21271210050482 ], [ -47.370498960596152, -22.212637970822602 ], [ -47.370484346497406, -22.212566001948051 ], [ -47.370471005238642, -22.212490297235753 ], [ -47.370460523766297, -22.212415544502051 ], [ -47.370451409002044, -22.212336548060481 ], [ -47.370446239022947, -22.212261162654485 ], [ -47.37044488400393, -22.212236570723476 ], [ -47.370443439101187, -22.212208247644305 ], [ -47.370442562120687, -22.212176386236468 ], [ -47.370442325548417, -22.212152065164094 ], [ -47.370442104205218, -22.212130857891591 ], [ -47.370442026493592, -22.212097219156185 ], [ -47.370442991343204, -22.212069248453773 ], [ -47.370443635901509, -22.212043801151864 ], [ -47.370445303790461, -22.212013405221974 ], [ -47.370446486723338, -22.211994153201669 ], [ -47.370447973331899, -22.211968472858285 ], [ -47.37045087176876, -22.211933415325099 ], [ -47.370452793130184, -22.211915315086429 ], [ -47.370454012643911, -22.211900552041293 ], [ -47.370456783639497, -22.211871637443448 ], [ -47.370459018570976, -22.21185176637902 ], [ -47.370461595089523, -22.211826251506825 ], [ -47.370465597521402, -22.21179635836182 ], [ -47.370469492578259, -22.21176764416624 ], [ -47.370473566616596, -22.211743178552172 ], [ -47.370476148184927, -22.211726454875969 ], [ -47.370478461975324, -22.211712176225994 ], [ -47.370480311161636, -22.211699312684022 ], [ -47.370483581348815, -22.211677127772035 ], [ -47.370488482177173, -22.211645820753091 ], [ -47.370495933880441, -22.211606007238167 ], [ -47.370501023881701, -22.211583076106773 ], [ -47.370504301650179, -22.211566855904096 ], [ -47.370511604329614, -22.21153295152105 ], [ -47.37052138253685, -22.21149420770589 ], [ -47.370529991599142, -22.211463402704481 ], [ -47.370541141907076, -22.211425859114787 ], [ -47.370546713666506, -22.211409702208723 ], [ -47.370645572900706, -22.211074631818533 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 290.79464895799998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371017583585342, -22.213559105897737 ], [ -47.370996689560357, -22.213536269130806 ], [ -47.370951321217809, -22.213485163614735 ], [ -47.370903505465172, -22.213429250939772 ], [ -47.37084931189176, -22.213362033156727 ], [ -47.370797798443832, -22.213290850031779 ], [ -47.370752488097203, -22.213223345013311 ], [ -47.3707044982973, -22.21314644394349 ], [ -47.370655448334773, -22.213055576825354 ], [ -47.370615264658539, -22.212966562636826 ], [ -47.370581136466733, -22.212879303643518 ], [ -47.370552222846804, -22.212790342922979 ], [ -47.370530390738352, -22.212709022660597 ], [ -47.370513214348428, -22.212635277385296 ], [ -47.370498669043691, -22.212563647330153 ], [ -47.370485394951295, -22.212488323794933 ], [ -47.370474965831022, -22.212413944484094 ], [ -47.37046590237221, -22.212335392769187 ], [ -47.370460758230067, -22.212260384213305 ], [ -47.370459409283519, -22.212235902535671 ], [ -47.370457973223502, -22.212207752848983 ], [ -47.370457103395758, -22.212176151424462 ], [ -47.370456867912061, -22.212151942520141 ], [ -47.370456647011167, -22.212130777545163 ], [ -47.370456569950349, -22.212097422012551 ], [ -47.370457528789601, -22.212069625465375 ], [ -47.370458170097642, -22.212044306381141 ], [ -47.370459825526737, -22.212014137465172 ], [ -47.370461007294054, -22.211994904381601 ], [ -47.370462486196871, -22.211969357105097 ], [ -47.37046535969683, -22.2119346011483 ], [ -47.370467281103203, -22.211916500468508 ], [ -47.370468505926134, -22.211901673133269 ], [ -47.370471259093478, -22.211872944537216 ], [ -47.370473490422995, -22.211853105480017 ], [ -47.370476053537431, -22.211827723320656 ], [ -47.370480027275406, -22.211798044460064 ], [ -47.370483895175575, -22.211769530440744 ], [ -47.370487950139861, -22.21174517935599 ], [ -47.370490535919217, -22.211728428389041 ], [ -47.370492860225909, -22.211714084832739 ], [ -47.370494722294175, -22.211701131670335 ], [ -47.370497980932058, -22.21167902509309 ], [ -47.370502843850076, -22.211647960228973 ], [ -47.370510221795961, -22.211608540768701 ], [ -47.370515292002771, -22.211585698803283 ], [ -47.370518577678709, -22.211569439461879 ], [ -47.37052581625629, -22.211535832670489 ], [ -47.370535500221386, -22.211497462251696 ], [ -47.370544037881203, -22.211466912731929 ], [ -47.370555079390705, -22.211429735458662 ], [ -47.37056065491214, -22.211413567638775 ], [ -47.370657840735817, -22.211084168952258 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 289.74727819700001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371035550644969, -22.213557862127388 ], [ -47.371007830089816, -22.213527564099056 ], [ -47.370962615241147, -22.213476631491268 ], [ -47.37091501145283, -22.21342096667837 ], [ -47.370861165102426, -22.213354179571692 ], [ -47.370809998584733, -22.21328347585483 ], [ -47.370764944793038, -22.213216353069296 ], [ -47.370717294259592, -22.21313999566587 ], [ -47.370668663945118, -22.213049905977847 ], [ -47.370628808608942, -22.21296161914017 ], [ -47.370594939365489, -22.212875022246887 ], [ -47.370566245445396, -22.212786737519359 ], [ -47.370544554963004, -22.21270594481517 ], [ -47.370527468100036, -22.212632583946778 ], [ -47.370512991589379, -22.212561292711037 ], [ -47.370499784663409, -22.212486350352879 ], [ -47.370489407895278, -22.212412344464884 ], [ -47.370480395742, -22.212334237476629 ], [ -47.370475277436888, -22.212259605770846 ], [ -47.370473934562831, -22.212235234346576 ], [ -47.370472507345582, -22.212207258052366 ], [ -47.370471644670637, -22.212175916611173 ], [ -47.370471410275535, -22.212151819874887 ], [ -47.370471189816968, -22.212130697197431 ], [ -47.370471113407021, -22.212097624867596 ], [ -47.370472066235941, -22.212070002475677 ], [ -47.370472704293746, -22.21204481160909 ], [ -47.370474347263027, -22.212014869707044 ], [ -47.370475527864805, -22.211995655560216 ], [ -47.370476999061893, -22.211970241350592 ], [ -47.370479847625006, -22.211935786970177 ], [ -47.370481769076328, -22.211917685849279 ], [ -47.370482999208441, -22.211902794223949 ], [ -47.3704857345476, -22.211874251629677 ], [ -47.370487962275156, -22.211854444579711 ], [ -47.370490511985508, -22.21182919513317 ], [ -47.370494457029629, -22.211799730557011 ], [ -47.370498297773146, -22.211771416713933 ], [ -47.370502333663396, -22.21174718015849 ], [ -47.370504923653776, -22.211730401900812 ], [ -47.370507258476749, -22.211715993438169 ], [ -47.370509133426964, -22.211702950655326 ], [ -47.370512380515564, -22.211680922412828 ], [ -47.370517205523292, -22.211650099703544 ], [ -47.370524509711878, -22.211611074297938 ], [ -47.370529560124254, -22.211588321498489 ], [ -47.370532853707637, -22.21157202301837 ], [ -47.370540028183427, -22.21153871381863 ], [ -47.370549617906462, -22.211500716796216 ], [ -47.370558084163832, -22.211470422758094 ], [ -47.370569016874995, -22.211433611801279 ], [ -47.370574596158434, -22.211417433067581 ], [ -47.370670108572561, -22.21109370608491 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 288.69990743699998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371053517704084, -22.213556618355089 ], [ -47.371018970617875, -22.213518859066649 ], [ -47.370973909263093, -22.213468099367123 ], [ -47.370926517439102, -22.213412682416269 ], [ -47.370873018311727, -22.213346325985921 ], [ -47.370822198724305, -22.213276101677071 ], [ -47.370777401487572, -22.213209361124431 ], [ -47.370730090220633, -22.213133547387351 ], [ -47.370681879554304, -22.213044235129363 ], [ -47.370642352558299, -22.212956675642459 ], [ -47.3706087422633, -22.212870740849169 ], [ -47.370580268043149, -22.212783132114595 ], [ -47.370558719186917, -22.21270286696857 ], [ -47.370541721850977, -22.212629890507078 ], [ -47.370527314134456, -22.212558938090705 ], [ -47.370514174375003, -22.21248437690959 ], [ -47.370503849959086, -22.212410744444405 ], [ -47.370494889111427, -22.212333082182788 ], [ -47.370489796643426, -22.212258827327098 ], [ -47.37048845984188, -22.212234566156198 ], [ -47.370487041467435, -22.212206763254454 ], [ -47.370486185945346, -22.21217568179658 ], [ -47.370485952638859, -22.212151697228329 ], [ -47.370485732622633, -22.212130616848398 ], [ -47.3704856568636, -22.21209782772133 ], [ -47.370486603682238, -22.212070379484672 ], [ -47.370487238489822, -22.212045316835731 ], [ -47.370488868999345, -22.212015601947616 ], [ -47.370490048435578, -22.211996406737516 ], [ -47.370491511926964, -22.211971125594765 ], [ -47.370494335553303, -22.211936972790742 ], [ -47.370496257049567, -22.211918871228725 ], [ -47.370497492490856, -22.211903915313311 ], [ -47.370500210001858, -22.211875558720827 ], [ -47.370502434127459, -22.211855783678089 ], [ -47.370504970433764, -22.211830666944383 ], [ -47.37050888678408, -22.21180141665263 ], [ -47.370512700370988, -22.211773302985812 ], [ -47.370516717187222, -22.211749180959679 ], [ -47.37051931138862, -22.211732375411291 ], [ -47.370521656727853, -22.211717902042285 ], [ -47.370523544559987, -22.211704769639017 ], [ -47.370526780099333, -22.211682819731262 ], [ -47.370531567196814, -22.211652239176807 ], [ -47.370538797628178, -22.211613607825857 ], [ -47.370543828246156, -22.211590944192402 ], [ -47.37054712973697, -22.211574606573553 ], [ -47.370554240111026, -22.211541594965492 ], [ -47.370563735592079, -22.211503971339457 ], [ -47.370572130447059, -22.211473932782972 ], [ -47.370582954359946, -22.211437488142629 ], [ -47.370588537405382, -22.211421298495114 ], [ -47.370682376410933, -22.211103243216474 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 287.652536677, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37107148476268, -22.21355537458081 ], [ -47.371030111144528, -22.213510154033592 ], [ -47.370985203283631, -22.213459567242303 ], [ -47.370938023423989, -22.213404398153468 ], [ -47.370884871519671, -22.213338472399379 ], [ -47.370834398862549, -22.213268727498502 ], [ -47.370789858180814, -22.213202369178706 ], [ -47.370742886180437, -22.213127099107904 ], [ -47.370695095162354, -22.213038564279891 ], [ -47.370655896506598, -22.212951732143708 ], [ -47.370622545160181, -22.212866459450353 ], [ -47.370594290640078, -22.212779526708673 ], [ -47.370572883410098, -22.212699789120787 ], [ -47.370555975601256, -22.212627197066166 ], [ -47.370541636678936, -22.212556583469137 ], [ -47.370528564086065, -22.212482403465064 ], [ -47.370518292022439, -22.212409144422686 ], [ -47.370509382480485, -22.212331926887693 ], [ -47.370504315849672, -22.21225804888207 ], [ -47.370502985120659, -22.212233897964531 ], [ -47.370501575589046, -22.212206268455255 ], [ -47.37050072721987, -22.212175446980702 ], [ -47.37050049500202, -22.212151574580478 ], [ -47.370500275428135, -22.212130536498069 ], [ -47.370500200320087, -22.212098030573777 ], [ -47.370501141128464, -22.212070756492349 ], [ -47.370501772685877, -22.212045822061064 ], [ -47.370503390735678, -22.212016334186881 ], [ -47.370504569006364, -22.211997157913505 ], [ -47.370506024792093, -22.211972009837648 ], [ -47.370508823481707, -22.211938158610003 ], [ -47.370510745022926, -22.211920056606868 ], [ -47.370511985773376, -22.211905036401362 ], [ -47.37051468545625, -22.211876865810641 ], [ -47.370516905979919, -22.211857122775143 ], [ -47.37051942888219, -22.211832138754264 ], [ -47.370523316538744, -22.211803102746941 ], [ -47.370527102969078, -22.211775189256375 ], [ -47.370531100711318, -22.211751181759563 ], [ -47.370533699123733, -22.21173434892043 ], [ -47.370536054979219, -22.211719810645093 ], [ -47.370537955693258, -22.211706588621396 ], [ -47.370541179683364, -22.211684717048392 ], [ -47.370545928870648, -22.211654378648767 ], [ -47.370553085544877, -22.211616141352494 ], [ -47.370558096368448, -22.211593566885007 ], [ -47.370561405766693, -22.211577190127432 ], [ -47.370568452039088, -22.211544476111044 ], [ -47.37057785327822, -22.211507225881409 ], [ -47.370586176730875, -22.211477442806583 ], [ -47.370596891845544, -22.211441364482727 ], [ -47.370602478652984, -22.21142516392139 ], [ -47.370694644250953, -22.211112780346951 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 286.60516591599998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371089451820758, -22.213554130804589 ], [ -47.371041251669794, -22.213501448999896 ], [ -47.370996497302784, -22.213451035116808 ], [ -47.370949529407483, -22.213396113889953 ], [ -47.370896724726236, -22.213330618812094 ], [ -47.370846598999464, -22.213261353319119 ], [ -47.370802314872762, -22.213195377232136 ], [ -47.370755682138999, -22.21312065082757 ], [ -47.370708310769253, -22.213032893429435 ], [ -47.37066944045386, -22.212946788643912 ], [ -47.370636348056102, -22.212862178050429 ], [ -47.370608313236175, -22.212775921301613 ], [ -47.370587047632554, -22.212696711271825 ], [ -47.370570229350861, -22.212624503624042 ], [ -47.370555959222813, -22.212554228846361 ], [ -47.370542953796601, -22.212480430019301 ], [ -47.370532734085323, -22.21240754439971 ], [ -47.37052387584918, -22.212330771591308 ], [ -47.37051883505562, -22.212257270435767 ], [ -47.370517510399168, -22.212233229771584 ], [ -47.370516109710422, -22.212205773654752 ], [ -47.370515268494216, -22.212175212163512 ], [ -47.370515037365031, -22.212151451931323 ], [ -47.370514818233495, -22.212130456146451 ], [ -47.370514743776482, -22.212098233424904 ], [ -47.370515678574648, -22.212071133498736 ], [ -47.370516306881903, -22.212046327285101 ], [ -47.370517912472032, -22.212017066424828 ], [ -47.370519089577179, -22.211997909088193 ], [ -47.370520537657271, -22.211972894079203 ], [ -47.370523311410231, -22.211939344427947 ], [ -47.370525232996393, -22.211921241983696 ], [ -47.370526479055989, -22.211906157488094 ], [ -47.370529160910792, -22.211878172899166 ], [ -47.370531377832513, -22.211858461870897 ], [ -47.370533887330787, -22.211833610562842 ], [ -47.370537746293621, -22.211804788839945 ], [ -47.370541505567431, -22.211777075525635 ], [ -47.370545484235706, -22.211753182558127 ], [ -47.370548086859131, -22.211736322428276 ], [ -47.370550453230862, -22.211721719246594 ], [ -47.370552366826779, -22.211708407602458 ], [ -47.370555579267645, -22.211686614364201 ], [ -47.370560290544795, -22.211656518119412 ], [ -47.370567373461967, -22.21161867487783 ], [ -47.370572364491167, -22.211596189576309 ], [ -47.370575681796829, -22.211579773680025 ], [ -47.37058266396761, -22.211547357255313 ], [ -47.370591970964902, -22.211510480422081 ], [ -47.370600223015273, -22.211480952828907 ], [ -47.370610829331802, -22.211445240821547 ], [ -47.370616419901239, -22.211429029346391 ], [ -47.370706912092587, -22.211122317476356 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 285.58006093, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371107774879704, -22.213552862382024 ], [ -47.371102336883126, -22.21354733251091 ], [ -47.371052392193647, -22.213492743965528 ], [ -47.371007791320537, -22.213442502990652 ], [ -47.370961035389598, -22.213387829625749 ], [ -47.370908577931452, -22.213322765224035 ], [ -47.370858799135043, -22.213253979138926 ], [ -47.370814771563396, -22.21318838528471 ], [ -47.370768478096316, -22.213114202546311 ], [ -47.370721526374993, -22.213027222577999 ], [ -47.370682984400077, -22.212941845143064 ], [ -47.370650150951086, -22.212857896649403 ], [ -47.370622335831442, -22.21277231589341 ], [ -47.370601211854257, -22.212693633421686 ], [ -47.370584483099805, -22.212621810180725 ], [ -47.370570281766085, -22.212551874222363 ], [ -47.370557343506604, -22.212478456572285 ], [ -47.37054717614776, -22.21240594437548 ], [ -47.370538369217506, -22.212329616293658 ], [ -47.370533354261283, -22.21225649198816 ], [ -47.370532035677414, -22.212232561577352 ], [ -47.370530643831579, -22.212205278852974 ], [ -47.370529809768378, -22.212174977345033 ], [ -47.370529579727879, -22.212151329280875 ], [ -47.370529361038706, -22.21213037579351 ], [ -47.370529287232792, -22.21209843627474 ], [ -47.370530216020775, -22.212071510503801 ], [ -47.370530841077901, -22.212046832507827 ], [ -47.370532434208407, -22.212017798661471 ], [ -47.370533610148023, -22.211998660261564 ], [ -47.370535050522506, -22.211973778319447 ], [ -47.370537799338869, -22.211940530244568 ], [ -47.370539720969973, -22.211922427359202 ], [ -47.370540972338709, -22.21190727857352 ], [ -47.370543636365468, -22.211879479986379 ], [ -47.370545849685264, -22.211859800965343 ], [ -47.370548345779568, -22.211835082370108 ], [ -47.370552176048719, -22.211806474931645 ], [ -47.37055590816604, -22.211778961793588 ], [ -47.370559867760377, -22.211755183355393 ], [ -47.370562474594806, -22.211738295934815 ], [ -47.370564851482754, -22.211723627846773 ], [ -47.370566777960541, -22.211710226582216 ], [ -47.370569978852203, -22.211688511678712 ], [ -47.370574652219254, -22.211658657588764 ], [ -47.370581661379454, -22.211621208401855 ], [ -47.370586632614284, -22.211598812266324 ], [ -47.37058995782737, -22.211582357231311 ], [ -47.370596875896595, -22.211550238398271 ], [ -47.370606088652124, -22.211513734961471 ], [ -47.370614269300255, -22.211484462849963 ], [ -47.370624766818715, -22.211449117159102 ], [ -47.370630361150148, -22.211432894770141 ], [ -47.370719179935868, -22.211131854604673 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 284.56364577900001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371126236877501, -22.21355158433925 ], [ -47.371113238554884, -22.213538366412966 ], [ -47.371063532716107, -22.213484038930527 ], [ -47.371019085336904, -22.213433970863811 ], [ -47.370972541370328, -22.213379545360837 ], [ -47.370920431135296, -22.21331491163523 ], [ -47.370870999269293, -22.213246604957934 ], [ -47.37082722825275, -22.213181393336438 ], [ -47.370781274052391, -22.213107754264154 ], [ -47.370734741979589, -22.213021551725582 ], [ -47.370696528345235, -22.212936901641164 ], [ -47.370663953845124, -22.212853615247283 ], [ -47.370636358425877, -22.212768710484049 ], [ -47.370615376075222, -22.212690555570362 ], [ -47.370598736848081, -22.212619116736199 ], [ -47.37058460430876, -22.212549519597136 ], [ -47.370571733216082, -22.212476483124046 ], [ -47.370561618209749, -22.212404344349991 ], [ -47.370552862585463, -22.212328460994737 ], [ -47.370547873466656, -22.212255713539282 ], [ -47.370546560955376, -22.212231893381819 ], [ -47.370545177952486, -22.212204784049899 ], [ -47.370544351042369, -22.21217474252526 ], [ -47.370544122090571, -22.212151206629123 ], [ -47.370543903843767, -22.212130295439298 ], [ -47.370543830689009, -22.212098639123262 ], [ -47.370544753466845, -22.212071887507566 ], [ -47.370545375273871, -22.212047337729235 ], [ -47.370546955944803, -22.212018530896788 ], [ -47.370548130718895, -22.211999411433631 ], [ -47.370549563387783, -22.211974662558386 ], [ -47.370552287267621, -22.211941716059894 ], [ -47.370554208943673, -22.211923612733411 ], [ -47.370555465621528, -22.211908399657627 ], [ -47.370558111820287, -22.211880787072257 ], [ -47.37056032153815, -22.211861140058456 ], [ -47.370562804228513, -22.211836554176063 ], [ -47.370566605804036, -22.211808161022017 ], [ -47.370570310764911, -22.211780848060233 ], [ -47.370574251285333, -22.211757184151345 ], [ -47.370576862330758, -22.211740269440046 ], [ -47.370579249734909, -22.211725536445659 ], [ -47.370581189094551, -22.211712045560663 ], [ -47.370584378437016, -22.211690408991903 ], [ -47.370589013894026, -22.211660797056791 ], [ -47.370595949297318, -22.211623741924576 ], [ -47.37060090073782, -22.211601434955032 ], [ -47.370604233858302, -22.2115849407813 ], [ -47.370611087826035, -22.211553119539946 ], [ -47.370620206339879, -22.211516989499565 ], [ -47.370628315585819, -22.211487972869744 ], [ -47.370638704306295, -22.211452993495396 ], [ -47.370644302399718, -22.211436760192612 ], [ -47.37073144778077, -22.211141391731903 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 283.58704001699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371144959526895, -22.213550571350108 ], [ -47.371124140225241, -22.213529400314407 ], [ -47.371074673237167, -22.213475333894863 ], [ -47.371030379351872, -22.213425438736301 ], [ -47.370984047349673, -22.213371261095215 ], [ -47.370932284337769, -22.213307058045668 ], [ -47.370883199402215, -22.213239230776129 ], [ -47.370839684940798, -22.213174401387306 ], [ -47.370794070007214, -22.213101305981073 ], [ -47.370747957583042, -22.213015880872156 ], [ -47.370710072289356, -22.212931958138213 ], [ -47.370677756738225, -22.212849333844055 ], [ -47.37065038101948, -22.21276510507354 ], [ -47.370629540295461, -22.212687477717843 ], [ -47.370612990595689, -22.21261642329047 ], [ -47.370598926850825, -22.212547164970701 ], [ -47.370586122925026, -22.212474509674546 ], [ -47.370576060271269, -22.212402744323239 ], [ -47.37056735595305, -22.212327305694547 ], [ -47.370562392671729, -22.212254935089121 ], [ -47.370561086233081, -22.212231225185015 ], [ -47.370559712073174, -22.21220428924553 ], [ -47.370558892316168, -22.212174507704191 ], [ -47.370558664453107, -22.212151083976082 ], [ -47.370558446648673, -22.212130215083768 ], [ -47.370558374145141, -22.21209884197048 ], [ -47.370559290912873, -22.21207226451002 ], [ -47.370559909469819, -22.212047842949339 ], [ -47.370561477681214, -22.212019263130813 ], [ -47.370562651289788, -22.212000162604383 ], [ -47.37056407625311, -22.211975546796008 ], [ -47.370566775196487, -22.211942901873893 ], [ -47.370568696917488, -22.211924798106303 ], [ -47.37056995890444, -22.211909520740424 ], [ -47.370572587275241, -22.211882094156845 ], [ -47.370574793391185, -22.21186247915027 ], [ -47.370577262677628, -22.2118380259807 ], [ -47.370581035559574, -22.211809847111088 ], [ -47.370584713364039, -22.211782734325563 ], [ -47.370588634810566, -22.211759184945986 ], [ -47.37059125006698, -22.211742242943956 ], [ -47.370593647987342, -22.211727445043227 ], [ -47.370595600228803, -22.211713864537796 ], [ -47.370598778022085, -22.211692306303782 ], [ -47.370603375569097, -22.211662936523503 ], [ -47.37061023721558, -22.211626275445997 ], [ -47.370615168861754, -22.211604057642436 ], [ -47.370618509889638, -22.211587524329982 ], [ -47.370625299755936, -22.211556000680321 ], [ -47.370634324028167, -22.211520244036379 ], [ -47.370642361871973, -22.211491482888242 ], [ -47.370652641794521, -22.211456869830432 ], [ -47.370658243649935, -22.211440625613818 ], [ -47.370743715627306, -22.21115092885805 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 282.92135493199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371165717930531, -22.213551628505819 ], [ -47.371135041894192, -22.213520434215216 ], [ -47.371085813756828, -22.213466628858555 ], [ -47.37104167336544, -22.213416906608121 ], [ -47.370995553327624, -22.21336297682889 ], [ -47.370944137538885, -22.21329920445536 ], [ -47.370895399533808, -22.213231856593509 ], [ -47.370852141627545, -22.213167409437329 ], [ -47.370806865960809, -22.213094857697094 ], [ -47.370761173185336, -22.213010210017771 ], [ -47.370723616232425, -22.212927014634225 ], [ -47.370691559630373, -22.212845052439729 ], [ -47.370664403612253, -22.212761499661884 ], [ -47.370643704514954, -22.212684399864163 ], [ -47.370627244342636, -22.212613729843547 ], [ -47.370613249392292, -22.212544810343037 ], [ -47.370600512633445, -22.212472536223835 ], [ -47.370590502332341, -22.212401144295246 ], [ -47.370581849320274, -22.212326150393089 ], [ -47.370576911876512, -22.21225415663768 ], [ -47.370575611510517, -22.212230556986917 ], [ -47.37057424619362, -22.212203794439887 ], [ -47.370573433589797, -22.212174272881814 ], [ -47.370573206815486, -22.212150961321736 ], [ -47.370572989453443, -22.212130134726941 ], [ -47.37057291760118, -22.212099044816391 ], [ -47.370573828358829, -22.212072641511167 ], [ -47.370574443665738, -22.212048348168132 ], [ -47.370575999417653, -22.212019995363512 ], [ -47.370577171860695, -22.212000913773821 ], [ -47.370578589118502, -22.211976431032319 ], [ -47.370581263125466, -22.211944087686582 ], [ -47.370583184891409, -22.211925983477865 ], [ -47.370584452187465, -22.211910641821913 ], [ -47.37058706273033, -22.211883401240115 ], [ -47.370589265244377, -22.211863818240776 ], [ -47.370591721126928, -22.211839497784023 ], [ -47.370595465315326, -22.211811533198848 ], [ -47.370599115963422, -22.211784620589579 ], [ -47.370603018336084, -22.211761185739334 ], [ -47.370605637803479, -22.211744216446569 ], [ -47.370608046240029, -22.211729353639477 ], [ -47.370610011363304, -22.211715683513617 ], [ -47.370613177607417, -22.211694203614357 ], [ -47.370617737244494, -22.211665075988925 ], [ -47.370624525134232, -22.211628808966115 ], [ -47.370629436986107, -22.211606680328551 ], [ -47.370632785921373, -22.211590107877363 ], [ -47.370639511686306, -22.211558881819414 ], [ -47.370648441716988, -22.211523498571911 ], [ -47.370656408158709, -22.211494992905472 ], [ -47.370666579283402, -22.211460746164207 ], [ -47.370672184900805, -22.21144449103377 ], [ -47.370755983475476, -22.211160465983127 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 282.25566984699998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371186476334195, -22.213552685658854 ], [ -47.371145943561736, -22.21351146811541 ], [ -47.371096954275089, -22.21345792382159 ], [ -47.371052967377622, -22.213408374479261 ], [ -47.371007059304198, -22.213354692561865 ], [ -47.370955990738636, -22.213291350864285 ], [ -47.370907599664058, -22.213224482410077 ], [ -47.370864598312998, -22.213160417486502 ], [ -47.370819661913146, -22.213088409412201 ], [ -47.370774388786479, -22.21300453916238 ], [ -47.37073716017445, -22.212922071129181 ], [ -47.370705362521576, -22.212840771034308 ], [ -47.370678426204194, -22.212757894249069 ], [ -47.370657868733716, -22.212681322009288 ], [ -47.370641498088915, -22.212611036395415 ], [ -47.370627571933156, -22.21254245571415 ], [ -47.37061490234133, -22.212470562771866 ], [ -47.370604944392952, -22.212399544266006 ], [ -47.370596342687129, -22.212324995090349 ], [ -47.370591431081017, -22.21225337818495 ], [ -47.370590136787683, -22.212229888787533 ], [ -47.370588780313831, -22.212203299632936 ], [ -47.370587974863248, -22.212174038058148 ], [ -47.370587749177709, -22.212150838666087 ], [ -47.370587532258064, -22.212130054368814 ], [ -47.370587461057127, -22.212099247660994 ], [ -47.37058836580475, -22.212073018511006 ], [ -47.370588977861622, -22.212048853385614 ], [ -47.370590521154107, -22.212020727594908 ], [ -47.370591692431631, -22.212001664941962 ], [ -47.370593101983935, -22.211977315267312 ], [ -47.370595751054559, -22.211945273497957 ], [ -47.370597672865451, -22.211927168848131 ], [ -47.37059894547059, -22.21191176290208 ], [ -47.370601538185568, -22.211884708322071 ], [ -47.370603737097696, -22.211865157329953 ], [ -47.370606179576392, -22.211840969586035 ], [ -47.370609895071297, -22.21181321928529 ], [ -47.370613518563076, -22.211786506852285 ], [ -47.370617401861885, -22.211763186531361 ], [ -47.370620025540262, -22.211746189947863 ], [ -47.37062244449298, -22.211731262234427 ], [ -47.370624422498047, -22.211717502488128 ], [ -47.370627577193012, -22.211696100923625 ], [ -47.37063209892019, -22.211667215453033 ], [ -47.370638813053283, -22.211631342484935 ], [ -47.370643705110865, -22.211609303013354 ], [ -47.37064706195352, -22.211592691423444 ], [ -47.370653723617131, -22.211561762957196 ], [ -47.370662559406355, -22.211526753106149 ], [ -47.370670454446035, -22.211498502921412 ], [ -47.37068051677295, -22.211464622496703 ], [ -47.370686126152336, -22.211448356452451 ], [ -47.370768251325281, -22.211170003107117 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 281.591180915, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371207250837784, -22.213553743629117 ], [ -47.371206670957285, -22.213553169504351 ], [ -47.37115684522788, -22.213502502014993 ], [ -47.37110809479195, -22.213449218783971 ], [ -47.371064261388398, -22.213399842349734 ], [ -47.371018565279378, -22.213346408294129 ], [ -47.370967843937031, -22.213283497272457 ], [ -47.370919799792993, -22.213217108225841 ], [ -47.370877054997152, -22.213153425534813 ], [ -47.370832457864246, -22.213081961126388 ], [ -47.370787604386479, -22.212998868306023 ], [ -47.370750704115423, -22.212917127623093 ], [ -47.370719165411835, -22.212836489627776 ], [ -47.37069244879531, -22.212754288835121 ], [ -47.370672032951738, -22.212678244153242 ], [ -47.370655751834526, -22.212608342946076 ], [ -47.370641894473415, -22.212540101084056 ], [ -47.37062929204869, -22.212468589318657 ], [ -47.370619386453107, -22.212397944235502 ], [ -47.370610836053615, -22.212323839786343 ], [ -47.370605950285217, -22.212252599730935 ], [ -47.370604662064572, -22.212229220586877 ], [ -47.370603314433822, -22.212202804824695 ], [ -47.370602516136508, -22.212173803233188 ], [ -47.370602291539775, -22.212150716009141 ], [ -47.370602075062529, -22.212129974009386 ], [ -47.370602004512989, -22.212099450504308 ], [ -47.3706029032506, -22.212073395509538 ], [ -47.370603512057485, -22.212049358601789 ], [ -47.370605042890581, -22.212021459824999 ], [ -47.370606213002596, -22.212002416108785 ], [ -47.370607614849426, -22.211978199500994 ], [ -47.370610238983765, -22.211946459308027 ], [ -47.370612160839599, -22.211928354217079 ], [ -47.3706134387538, -22.21191288398094 ], [ -47.370616013640941, -22.211886015402701 ], [ -47.370618208951178, -22.21186649641783 ], [ -47.370620638026033, -22.211842441386729 ], [ -47.370624324827475, -22.211814905370414 ], [ -47.370627921162985, -22.211788393113675 ], [ -47.370631785387971, -22.211765187322072 ], [ -47.370634413277315, -22.21174816344784 ], [ -47.370636842746194, -22.211733170828065 ], [ -47.370638833633038, -22.211719321461331 ], [ -47.370641976778877, -22.211697998231575 ], [ -47.370646460596198, -22.211669354915841 ], [ -47.37065310097271, -22.211633876002459 ], [ -47.370657973236035, -22.211611925696861 ], [ -47.370661337986064, -22.211595274968232 ], [ -47.370667935548425, -22.211564644093688 ], [ -47.370676677096249, -22.211530007639116 ], [ -47.370684500733944, -22.211502012936084 ], [ -47.370694454263145, -22.211468498827948 ], [ -47.37070006740452, -22.211452221869873 ], [ -47.370780519176712, -22.211179540230017 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 280.94692029399999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371228297608916, -22.213554815462238 ], [ -47.371217331397119, -22.213543958099837 ], [ -47.371167746892617, -22.213493535913951 ], [ -47.371119235307411, -22.21344051374572 ], [ -47.371075555397788, -22.213391310219528 ], [ -47.37103007125318, -22.213338124025704 ], [ -47.370979697134047, -22.213275643679872 ], [ -47.370931999920586, -22.213209734040788 ], [ -47.370889511680012, -22.213146433582281 ], [ -47.370845253814103, -22.213075512839687 ], [ -47.370800819985327, -22.212993197448665 ], [ -47.370764248055359, -22.21291218411594 ], [ -47.370732968301155, -22.21283220822016 ], [ -47.370706471385596, -22.212750683420012 ], [ -47.370686197169022, -22.212675166296012 ], [ -47.37067000557947, -22.21260564949554 ], [ -47.370656217013078, -22.212537746452728 ], [ -47.370643681755517, -22.212466615864216 ], [ -47.370633828512808, -22.212396344203739 ], [ -47.370625329419731, -22.212322684481062 ], [ -47.370620469489133, -22.21225182127564 ], [ -47.370619187341205, -22.212228552384914 ], [ -47.370617848553564, -22.212202310015165 ], [ -47.370617057409596, -22.212173568406929 ], [ -47.370616833901686, -22.212150593350895 ], [ -47.370616617866844, -22.212129893648658 ], [ -47.370616547968758, -22.212099653346304 ], [ -47.370617440696414, -22.212073772506773 ], [ -47.37061804625332, -22.212049863816663 ], [ -47.370619564627077, -22.212022192053759 ], [ -47.370620733573581, -22.212003167274293 ], [ -47.37062212771496, -22.211979083733375 ], [ -47.370624726913086, -22.211947645116773 ], [ -47.370626648813868, -22.211929539584716 ], [ -47.370627932037124, -22.211914005058485 ], [ -47.370630489096449, -22.211887322482028 ], [ -47.370632680804796, -22.211867835504378 ], [ -47.370635096475851, -22.211843913186112 ], [ -47.370638754583887, -22.211816591454237 ], [ -47.370642323763143, -22.211790279373766 ], [ -47.370646168914334, -22.211767188111487 ], [ -47.370648801014646, -22.211750136946527 ], [ -47.370651240999671, -22.211735079420393 ], [ -47.37065324476827, -22.211721140433223 ], [ -47.370656376364991, -22.211699895538221 ], [ -47.370660822272527, -22.211671494377327 ], [ -47.370667388892542, -22.211636409518672 ], [ -47.370672241361603, -22.211614548379078 ], [ -47.370675614019, -22.211597858511713 ], [ -47.370682147480174, -22.21156752522889 ], [ -47.370690794786675, -22.211533262170796 ], [ -47.370698547022442, -22.21150552294948 ], [ -47.370708391754, -22.211472375157921 ], [ -47.370714008657359, -22.21145608728602 ], [ -47.370792787029785, -22.211189077351854 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 280.30265967399998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371249344380097, -22.213555887292614 ], [ -47.371227991835539, -22.21353474669473 ], [ -47.371178648555954, -22.213484569812298 ], [ -47.37113037582148, -22.213431808706794 ], [ -47.371086849405778, -22.213382778088654 ], [ -47.371041577225583, -22.213329839756568 ], [ -47.370991550329705, -22.21326779008654 ], [ -47.370944200046857, -22.213202359854936 ], [ -47.370901968361572, -22.213139441628893 ], [ -47.370858049762717, -22.213069064552062 ], [ -47.370814035583024, -22.212987526590336 ], [ -47.370777791994236, -22.212907240607763 ], [ -47.37074677118953, -22.212827926811421 ], [ -47.370720493975043, -22.212747078003765 ], [ -47.370700361385573, -22.2126720884376 ], [ -47.370684259323752, -22.212602956043799 ], [ -47.370670539552137, -22.212535391820182 ], [ -47.370658071461811, -22.212464642408538 ], [ -47.370648270572055, -22.212394744170716 ], [ -47.370639822785485, -22.212321529174506 ], [ -47.37063498869275, -22.212251042819066 ], [ -47.370633712617568, -22.212227884181679 ], [ -47.37063238267308, -22.212201815204349 ], [ -47.3706315986825, -22.212173333579369 ], [ -47.370631376263432, -22.212150470691356 ], [ -47.370631160671017, -22.212129813286637 ], [ -47.370631091424443, -22.212099856186995 ], [ -47.370631978142164, -22.212074149502691 ], [ -47.370632580449126, -22.212050369030216 ], [ -47.370634086363587, -22.212022924281232 ], [ -47.370635254144588, -22.212003918438491 ], [ -47.37063664058055, -22.211979967964439 ], [ -47.370639214842527, -22.211948830924211 ], [ -47.370641136788251, -22.211930724951038 ], [ -47.370642425320554, -22.211915126134716 ], [ -47.370644964552099, -22.211888629560043 ], [ -47.370647152658563, -22.211869174589634 ], [ -47.370649554925834, -22.211845384984191 ], [ -47.370653184340505, -22.211818277536747 ], [ -47.37065672636357, -22.211792165632545 ], [ -47.370660552440974, -22.211769188899584 ], [ -47.370663188752253, -22.211752110443889 ], [ -47.37066563925341, -22.211736988011403 ], [ -47.370667655903752, -22.211722959403804 ], [ -47.370670775951375, -22.211701792843552 ], [ -47.37067518394916, -22.211673633837528 ], [ -47.370681676812758, -22.211638943033584 ], [ -47.370686509487591, -22.211617171059981 ], [ -47.370689890052347, -22.211600442053886 ], [ -47.370696359412392, -22.211570406362796 ], [ -47.370704912477649, -22.211536516701187 ], [ -47.370712593311524, -22.211509032961597 ], [ -47.37072232924551, -22.211476251486641 ], [ -47.370727949910851, -22.211459952700903 ], [ -47.370805054884478, -22.211198614472593 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 279.65839905299998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371270391151306, -22.213556959120229 ], [ -47.371238652272574, -22.213525535289051 ], [ -47.371189550217878, -22.21347560371002 ], [ -47.371141516334141, -22.213423103667232 ], [ -47.371098143412375, -22.213374245957116 ], [ -47.371053083196614, -22.213321555486722 ], [ -47.371003403524, -22.213259936492445 ], [ -47.370956400171792, -22.21319498566827 ], [ -47.370914425041832, -22.213132449674656 ], [ -47.370870845710094, -22.213062616263532 ], [ -47.370827251179577, -22.212981855731005 ], [ -47.370791335932068, -22.212902297098534 ], [ -47.370760574076954, -22.212823645401595 ], [ -47.370734516563665, -22.212743472586368 ], [ -47.370714525601386, -22.212669010578001 ], [ -47.37069851306736, -22.212600262590843 ], [ -47.370684862090584, -22.212533037186411 ], [ -47.370672461167587, -22.21246266895162 ], [ -47.370662712630839, -22.212393144136449 ], [ -47.370654316150869, -22.212320373866685 ], [ -47.370649507896083, -22.212250264361206 ], [ -47.370648237893654, -22.212227215977148 ], [ -47.37064691679236, -22.212201320392243 ], [ -47.37064613995522, -22.212173098750522 ], [ -47.37064591862503, -22.212150348030509 ], [ -47.370645703475041, -22.212129732923312 ], [ -47.370645634880027, -22.212100059026387 ], [ -47.370646515587858, -22.2120745264973 ], [ -47.370647114644903, -22.212050874242468 ], [ -47.370648608100119, -22.212023656507377 ], [ -47.370649774715616, -22.21200466960136 ], [ -47.370651153446197, -22.211980852194184 ], [ -47.370653702772074, -22.211950016730341 ], [ -47.37065562476274, -22.211931910316046 ], [ -47.37065691860407, -22.211916247209651 ], [ -47.370659440007891, -22.211889936636744 ], [ -47.370661624512472, -22.211870513673567 ], [ -47.370664013376, -22.211846856780948 ], [ -47.37066761409735, -22.211819963617945 ], [ -47.370671128964254, -22.211794051889999 ], [ -47.370674935967905, -22.211771189686374 ], [ -47.370677576490145, -22.211754083939947 ], [ -47.370680037507412, -22.211738896601119 ], [ -47.370682067039482, -22.211724778373075 ], [ -47.370685175538014, -22.211703690147584 ], [ -47.370689545626099, -22.211675773296399 ], [ -47.370695964733372, -22.2116414765472 ], [ -47.37070077761399, -22.211619793739587 ], [ -47.370704166086092, -22.211603025594766 ], [ -47.370710571345057, -22.211573287495412 ], [ -47.370719030169148, -22.211539771230285 ], [ -47.370726639601195, -22.211512542972432 ], [ -47.37073626673768, -22.211480127814077 ], [ -47.370741891164997, -22.211463818114538 ], [ -47.37081732274082, -22.211208151592256 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 279.01413843300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371291437922579, -22.213558030945091 ], [ -47.371249312708187, -22.213516323882768 ], [ -47.371200451878408, -22.213466637607116 ], [ -47.371152656845403, -22.213414398627013 ], [ -47.37110943741758, -22.213365713824885 ], [ -47.371064589166252, -22.21331327121618 ], [ -47.37101525671693, -22.213252082897597 ], [ -47.370968600295392, -22.213187611480777 ], [ -47.370926881720798, -22.213125457719567 ], [ -47.370883641656221, -22.213056167974091 ], [ -47.370840466774979, -22.212976184870705 ], [ -47.370804879868864, -22.212897353588247 ], [ -47.370774376963446, -22.212819363990668 ], [ -47.37074853915145, -22.212739867167819 ], [ -47.37072868981646, -22.212665932717229 ], [ -47.370712766810314, -22.212597569136697 ], [ -47.370699184628442, -22.212530682551428 ], [ -47.370686850872829, -22.212460695493455 ], [ -47.370677154689176, -22.212391544100921 ], [ -47.370668809515884, -22.212319218557585 ], [ -47.370664027099124, -22.212249485902063 ], [ -47.37066276316947, -22.212226547771333 ], [ -47.370661450911406, -22.21220082557884 ], [ -47.370660681227776, -22.212172863920362 ], [ -47.370660460986464, -22.212150225368365 ], [ -47.370660246278916, -22.212129652558687 ], [ -47.370660178335527, -22.212100261864464 ], [ -47.370661053033501, -22.21207490349061 ], [ -47.37066164884066, -22.212051379453399 ], [ -47.370663129836679, -22.212024388732218 ], [ -47.370664295286673, -22.212005420762939 ], [ -47.370665666311886, -22.211981736422629 ], [ -47.370668190701743, -22.21195120253515 ], [ -47.370670112737351, -22.211933095679736 ], [ -47.370671411887699, -22.211917368283242 ], [ -47.370673915463819, -22.211891243712127 ], [ -47.37067609636653, -22.21187185275619 ], [ -47.370678471826331, -22.211848328576391 ], [ -47.370682043854401, -22.211821649697832 ], [ -47.370685531565194, -22.211795938146167 ], [ -47.370689319495114, -22.211773190471853 ], [ -47.370691964228307, -22.211756057434709 ], [ -47.370694435761685, -22.211740805189507 ], [ -47.370696478175454, -22.211726597341023 ], [ -47.370699575124917, -22.211705587450286 ], [ -47.370703907303358, -22.211677912753963 ], [ -47.370710252654369, -22.211644010059505 ], [ -47.370715045740795, -22.211622416417907 ], [ -47.370718442120236, -22.211605609134342 ], [ -47.370724783278199, -22.211576168626721 ], [ -47.370733147861188, -22.211543025758107 ], [ -47.370740685891441, -22.211516052981995 ], [ -47.370750204230504, -22.211484004140267 ], [ -47.370755832419796, -22.211467683526891 ], [ -47.370829590598774, -22.211217688710832 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 278.36987781200003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371312484693881, -22.213559102767199 ], [ -47.371259973142401, -22.213507112475913 ], [ -47.371211353537539, -22.213457671503612 ], [ -47.371163797355273, -22.213405693586147 ], [ -47.371120731421385, -22.213357181691997 ], [ -47.371076095134505, -22.21330498694493 ], [ -47.371027109908489, -22.213244229301992 ], [ -47.370980800417669, -22.213180237292498 ], [ -47.370939338398465, -22.213118465763625 ], [ -47.370896437601097, -22.213049719683752 ], [ -47.37085368236923, -22.212970514009413 ], [ -47.370818423804607, -22.212892410076922 ], [ -47.370788179848979, -22.212815082578643 ], [ -47.370762561738417, -22.212736261748127 ], [ -47.370742854030802, -22.212662854855271 ], [ -47.370727020552593, -22.212594875681351 ], [ -47.370713507165689, -22.212528327915219 ], [ -47.370701240577539, -22.212458722034061 ], [ -47.370691596747051, -22.212389944064142 ], [ -47.370683302880536, -22.212318063247224 ], [ -47.370678546301868, -22.212248707441642 ], [ -47.370677288445023, -22.21222587956424 ], [ -47.370675985030225, -22.212200330764158 ], [ -47.370675222500132, -22.212172629088922 ], [ -47.370675003347749, -22.212150102704932 ], [ -47.370674789082649, -22.212129572192758 ], [ -47.370674721790934, -22.212100464701237 ], [ -47.370675590479095, -22.212075280482605 ], [ -47.370676183036387, -22.212051884663026 ], [ -47.370677651573253, -22.212025120955754 ], [ -47.370678815857758, -22.2120061719232 ], [ -47.370680179177633, -22.211982620649756 ], [ -47.370682678631518, -22.211952388338645 ], [ -47.370684600712075, -22.211934281042119 ], [ -47.37068590517142, -22.211918489355543 ], [ -47.370688390919895, -22.21189255078621 ], [ -47.370690568220738, -22.211873191837491 ], [ -47.370692930276839, -22.211849800370533 ], [ -47.37069647361168, -22.211823335776401 ], [ -47.370699934166389, -22.211797824401007 ], [ -47.370703703022613, -22.211775191256034 ], [ -47.370706351966753, -22.211758030928134 ], [ -47.37070883401622, -22.211742713776601 ], [ -47.370710889311667, -22.211728416307668 ], [ -47.370713974712082, -22.211707484751692 ], [ -47.37071826898093, -22.211680052210227 ], [ -47.370724540575765, -22.211646543570509 ], [ -47.370729313868004, -22.211625039094908 ], [ -47.370732718154784, -22.211608192672625 ], [ -47.370738995211795, -22.211579049756743 ], [ -47.37074726555376, -22.211546280284647 ], [ -47.370754732182284, -22.211519562990286 ], [ -47.370764141723988, -22.211487880465178 ], [ -47.370769773675256, -22.211471548937993 ], [ -47.37084185845837, -22.211227225828338 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 277.93161089199998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371334899720509, -22.213561529258527 ], [ -47.371270633575215, -22.213497901068465 ], [ -47.371222255195256, -22.213448705399479 ], [ -47.371174937863735, -22.21339698854462 ], [ -47.371132025423798, -22.213348649558426 ], [ -47.371087601101372, -22.213296702672981 ], [ -47.371038963098691, -22.213236375705641 ], [ -47.370993000538611, -22.213172863103402 ], [ -47.370951795074838, -22.213111473806837 ], [ -47.370909233544744, -22.21304327139249 ], [ -47.370866897962337, -22.212964843147141 ], [ -47.370831967739299, -22.212887466564535 ], [ -47.370801982733582, -22.21281080116551 ], [ -47.370776584324538, -22.212732656327287 ], [ -47.370757018244404, -22.21265977699214 ], [ -47.370741274294204, -22.2125921822248 ], [ -47.370727829702332, -22.212525973277788 ], [ -47.370715630281722, -22.212456748573427 ], [ -47.370706038804471, -22.212388344026103 ], [ -47.370697796244819, -22.212316907935588 ], [ -47.370693065504327, -22.212247928979924 ], [ -47.370691813720313, -22.212225211355854 ], [ -47.370690519148802, -22.212199835948173 ], [ -47.370689763772319, -22.212172394256168 ], [ -47.370689545708863, -22.212149980040198 ], [ -47.370689331886226, -22.212129491825543 ], [ -47.370689265246256, -22.212100667536717 ], [ -47.370690127924632, -22.212075657473292 ], [ -47.370690717232087, -22.21205238987136 ], [ -47.370692173309841, -22.212025853177959 ], [ -47.370693336428864, -22.212006923082161 ], [ -47.370694692043429, -22.211983504875565 ], [ -47.370697166561406, -22.211953574140836 ], [ -47.370699088686912, -22.211935466403204 ], [ -47.370700398455249, -22.211919610426527 ], [ -47.370702866376099, -22.211893857858975 ], [ -47.370705040075094, -22.211874530917484 ], [ -47.370707388727524, -22.211851272163351 ], [ -47.370710903369172, -22.21182502185367 ], [ -47.370714336767854, -22.211799710654539 ], [ -47.37071808655039, -22.211777192038895 ], [ -47.370720739705469, -22.211760004420267 ], [ -47.370723232271011, -22.211744622362371 ], [ -47.370725300448122, -22.211730235273016 ], [ -47.370728374299503, -22.21170938205179 ], [ -47.3707326306588, -22.211682191665179 ], [ -47.370738828497544, -22.211649077080221 ], [ -47.370743581995626, -22.211627661770621 ], [ -47.370746994189737, -22.211610776209604 ], [ -47.370753207145846, -22.211581930885462 ], [ -47.370761383246872, -22.211549534809905 ], [ -47.37076877847371, -22.211523072997306 ], [ -47.37077807921812, -22.211491756788842 ], [ -47.370783714931363, -22.211475414347817 ], [ -47.3708541263196, -22.211236762944754 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 280.10443360599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371374658181772, -22.213581126995944 ], [ -47.371281294006621, -22.213488689660426 ], [ -47.371233156851574, -22.213439739294731 ], [ -47.371186078370798, -22.21338828350245 ], [ -47.371143319424817, -22.213340117424188 ], [ -47.371099107066854, -22.213288418400328 ], [ -47.371050816287521, -22.213228522108523 ], [ -47.371005200658225, -22.213165488913489 ], [ -47.370964251749903, -22.213104481849186 ], [ -47.37092202948714, -22.213036823100317 ], [ -47.370880113554286, -22.21295917228387 ], [ -47.370845511672947, -22.212882523051107 ], [ -47.370815785617232, -22.212806519751279 ], [ -47.370790606909836, -22.212729050905288 ], [ -47.370771182457268, -22.212656699127816 ], [ -47.370755528035154, -22.212589488767037 ], [ -47.370742152238385, -22.212523618639146 ], [ -47.37073001998538, -22.212454775111549 ], [ -47.370720480861436, -22.212386743986816 ], [ -47.370712289608733, -22.212315752622683 ], [ -47.370707584706494, -22.212247150516934 ], [ -47.370706338995319, -22.212224543146188 ], [ -47.370705053267145, -22.212199341130905 ], [ -47.370704305044327, -22.212172159422131 ], [ -47.370704088069836, -22.212149857374158 ], [ -47.37070387468966, -22.212129411457003 ], [ -47.370703808701492, -22.21210087037089 ], [ -47.370704665370113, -22.21207603446268 ], [ -47.370705251427758, -22.212052895078372 ], [ -47.370706695046458, -22.212026585398881 ], [ -47.370707857, -22.2120076742398 ], [ -47.370709204909282, -22.211984389100078 ], [ -47.370711654491416, -22.211954759941705 ], [ -47.370713576661863, -22.211936651762954 ], [ -47.370714891739169, -22.211920731496189 ], [ -47.370717341832446, -22.211895164930414 ], [ -47.370719511929586, -22.211875869996163 ], [ -47.37072184717838, -22.211852743954868 ], [ -47.370725333126884, -22.211826707929614 ], [ -47.370728739369575, -22.211801596906756 ], [ -47.370732470078451, -22.211779192820448 ], [ -47.370735127444462, -22.211761977911092 ], [ -47.370737630526065, -22.211746530946833 ], [ -47.370739711584832, -22.211732054237036 ], [ -47.370742773887187, -22.211711279350567 ], [ -47.370746992336997, -22.211684331118832 ], [ -47.370753116419721, -22.211651610588632 ], [ -47.37075785012366, -22.211630284445029 ], [ -47.370761270225088, -22.211613359745282 ], [ -47.370767419080373, -22.211584812012905 ], [ -47.370775500940518, -22.211552789333876 ], [ -47.370782824765719, -22.211526583003039 ], [ -47.370792016712919, -22.211495633111223 ], [ -47.370797656188131, -22.211479279756389 ], [ -47.370866394182457, -22.211246300060083 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 352.04244724799997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374620878459304, -22.216157792683408 ], [ -47.374613129493305, -22.21614592563931 ], [ -47.374584102898758, -22.216104178496103 ], [ -47.374557183951964, -22.216066740587987 ], [ -47.37452766810484, -22.216027879305312 ], [ -47.374497614907433, -22.215990042537378 ], [ -47.374464132886487, -22.215950043593438 ], [ -47.374432188963027, -22.215910773576862 ], [ -47.374404603872897, -22.215879367399108 ], [ -47.374374790889462, -22.215849589391176 ], [ -47.374339941469707, -22.21581764165369 ], [ -47.37430529988977, -22.215787153329217 ], [ -47.374271309250361, -22.21576013570326 ], [ -47.374232352025153, -22.215732004558731 ], [ -47.37419042085692, -22.215702724045617 ], [ -47.37414792855877, -22.215674227966318 ], [ -47.374104677486692, -22.215646470805407 ], [ -47.374057796038208, -22.215617029213579 ], [ -47.374011905645816, -22.215587895277253 ], [ -47.373964912084411, -22.215559134912723 ], [ -47.373918221393723, -22.215530324846362 ], [ -47.373869262620694, -22.215500227334857 ], [ -47.373820653368405, -22.215469304210732 ], [ -47.37377319320003, -22.2154390536082 ], [ -47.373725973130561, -22.215408674942761 ], [ -47.373679887171441, -22.21537923505738 ], [ -47.37363127057926, -22.215348514925974 ], [ -47.373581739583408, -22.215315952854134 ], [ -47.373531516915975, -22.215282345387617 ], [ -47.373482804395799, -22.215248292640798 ], [ -47.373435057763523, -22.215214364775605 ], [ -47.373386234011079, -22.215178576834308 ], [ -47.373337564161481, -22.215141272249703 ], [ -47.373289968676971, -22.215102930434835 ], [ -47.373245646618834, -22.2150659958495 ], [ -47.373201422103115, -22.215029214619111 ], [ -47.373155084169888, -22.214990339474511 ], [ -47.373110442205125, -22.21495036606159 ], [ -47.373067710886829, -22.214911627725073 ], [ -47.373025784485144, -22.214872660342788 ], [ -47.372980474569601, -22.214830455080374 ], [ -47.372938235017131, -22.214787260946018 ], [ -47.372899359450557, -22.21474777252277 ], [ -47.372857540946761, -22.214704660697286 ], [ -47.372819763276127, -22.214663512686013 ], [ -47.372783075799049, -22.214625292580621 ], [ -47.372741723729398, -22.214581917509481 ], [ -47.372700094391931, -22.214535259754378 ], [ -47.372663312407681, -22.214492169194543 ], [ -47.372627614784676, -22.214451101410503 ], [ -47.372591378419081, -22.214409661016493 ], [ -47.372555128781705, -22.214368550419792 ], [ -47.372517601869305, -22.214326522263793 ], [ -47.37248072617691, -22.214284283599444 ], [ -47.372444548115112, -22.214243772671221 ], [ -47.372406207736326, -22.214200676491423 ], [ -47.372371940575903, -22.21416061790535 ], [ -47.372339626776935, -22.214126018757142 ], [ -47.372301396707769, -22.214087287753902 ], [ -47.372260847347896, -22.214045034553848 ], [ -47.372222640021263, -22.214004880610968 ], [ -47.372184794426289, -22.213965771276989 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 337.459464959, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374604883366864, -22.216159362940413 ], [ -47.374600809531145, -22.216153124121398 ], [ -47.374571955558302, -22.216111625244519 ], [ -47.374545202467431, -22.216074417998914 ], [ -47.374515883266412, -22.216035815621449 ], [ -47.374486031223938, -22.215998232102731 ], [ -47.374452600319387, -22.215958294220975 ], [ -47.374420759410192, -22.215919150840811 ], [ -47.374393644471489, -22.215888279937516 ], [ -47.374364365459634, -22.215859035272892 ], [ -47.374329843691747, -22.215827387904145 ], [ -47.374295577391571, -22.215797229864915 ], [ -47.374262126675632, -22.215770641398748 ], [ -47.374223532309998, -22.215742772275465 ], [ -47.374181807455557, -22.215713635830394 ], [ -47.374139551208707, -22.215685298050559 ], [ -47.374096484524706, -22.215657659223471 ], [ -47.374049633510666, -22.215628236743921 ], [ -47.374003814624665, -22.215599148203541 ], [ -47.373956901157769, -22.215570436856854 ], [ -47.373910198004872, -22.215541619100307 ], [ -47.373861153480398, -22.215511468872371 ], [ -47.373812449115142, -22.215480485240857 ], [ -47.373764952074225, -22.215450211142169 ], [ -47.373717725833849, -22.215419828506121 ], [ -47.373671690102675, -22.215390420705948 ], [ -47.373622992524609, -22.215359649400078 ], [ -47.37357330168571, -22.215326982245433 ], [ -47.373522906449466, -22.215293259300353 ], [ -47.373474026947569, -22.215259089823178 ], [ -47.373426147876039, -22.215225067848142 ], [ -47.373377113539966, -22.215189125547365 ], [ -47.373328183571601, -22.21515162158498 ], [ -47.373280360911416, -22.215113096761161 ], [ -47.373235947859612, -22.215076086347175 ], [ -47.373191710470557, -22.215039294417082 ], [ -47.373145173727302, -22.215000252479324 ], [ -47.37310032912729, -22.214960097620324 ], [ -47.373057500751017, -22.214921271293314 ], [ -47.373015504570795, -22.214882239055136 ], [ -47.372969949395461, -22.214839805335824 ], [ -47.372927498035978, -22.214796394605088 ], [ -47.372888602641957, -22.214756886039279 ], [ -47.372846615284999, -22.214713600135614 ], [ -47.372808813025898, -22.214672425339334 ], [ -47.372772216020763, -22.214634299482743 ], [ -47.372730689456823, -22.214590741377812 ], [ -47.372688807276035, -22.214543800234814 ], [ -47.372651967380968, -22.214500641828245 ], [ -47.372616323613471, -22.214459635998168 ], [ -47.372580119412625, -22.214418232384951 ], [ -47.372543917120105, -22.214377175478685 ], [ -47.372506367555992, -22.214335121950736 ], [ -47.372469492234636, -22.214292883708104 ], [ -47.372433357159387, -22.214252420911599 ], [ -47.372394919052454, -22.214209214877961 ], [ -47.372360760529631, -22.214169283286967 ], [ -47.3723287838895, -22.21413504514025 ], [ -47.372290620159397, -22.214096381342795 ], [ -47.372261800250648, -22.214066350454644 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 323.26378790699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374588888273905, -22.216160933195876 ], [ -47.374588489567664, -22.216160322602644 ], [ -47.374559808216517, -22.216119071992146 ], [ -47.374533220981547, -22.216082095409053 ], [ -47.374504098426613, -22.216043751936834 ], [ -47.374474447539065, -22.216006421667373 ], [ -47.374441067750901, -22.215966544847809 ], [ -47.374409329855958, -22.215927528104068 ], [ -47.374382685068674, -22.2158971924753 ], [ -47.374353940028413, -22.215868481154043 ], [ -47.374319745912395, -22.215837134154089 ], [ -47.374285854891987, -22.215807306400134 ], [ -47.374252944099567, -22.215781147093821 ], [ -47.37421471259352, -22.21575353999183 ], [ -47.374173194052901, -22.215724547614819 ], [ -47.374131173857364, -22.215696368134466 ], [ -47.37408829156147, -22.215668847641222 ], [ -47.374041470981865, -22.21563944427395 ], [ -47.37399572360227, -22.215610401129535 ], [ -47.373948890229897, -22.21558173880069 ], [ -47.373902174614784, -22.21555291335395 ], [ -47.373853044338865, -22.215522710409576 ], [ -47.373804244860629, -22.215491666270683 ], [ -47.373756710947163, -22.215461368675822 ], [ -47.373709478535886, -22.215430982069147 ], [ -47.373663493032659, -22.215401606354195 ], [ -47.373614714468694, -22.215370783873851 ], [ -47.373564863786747, -22.215338011636415 ], [ -47.373514295981664, -22.21530417321274 ], [ -47.373465249498032, -22.215269887005192 ], [ -47.373417237987233, -22.215235770920302 ], [ -47.373367993067518, -22.21519967426001 ], [ -47.373318802980364, -22.21516197091983 ], [ -47.373270753144489, -22.21512326308703 ], [ -47.373226249099005, -22.215086176844387 ], [ -47.373181998836628, -22.215049374214576 ], [ -47.373135263283324, -22.215010165483651 ], [ -47.373090216048055, -22.214969829178553 ], [ -47.373047290613819, -22.214930914861029 ], [ -47.373005224655046, -22.214891817766947 ], [ -47.372959424219914, -22.214849155590713 ], [ -47.372916761053418, -22.214805528263561 ], [ -47.372877845831951, -22.214765999555166 ], [ -47.372835689621844, -22.214722539573319 ], [ -47.372797862774277, -22.21468133799203 ], [ -47.372761356241064, -22.214643306384271 ], [ -47.372719655182848, -22.214599565245496 ], [ -47.372677520158753, -22.214552340714594 ], [ -47.372640622352876, -22.21450911446129 ], [ -47.372605032440859, -22.214468170585153 ], [ -47.372568860404769, -22.214426803752719 ], [ -47.372532705457097, -22.214385800536924 ], [ -47.37249513324128, -22.214343721637025 ], [ -47.372458258290962, -22.214301483816097 ], [ -47.372422166202263, -22.214261069151323 ], [ -47.372383630367196, -22.214217753263835 ], [ -47.372349580481945, -22.214177948667928 ], [ -47.372336609019506, -22.214164059817481 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 316.19317840899998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374572694431926, -22.216162522961117 ], [ -47.37454766087339, -22.216126518738957 ], [ -47.374521239494314, -22.216089772818432 ], [ -47.374492313585449, -22.216051688251486 ], [ -47.374462863852813, -22.216014611231298 ], [ -47.374429535181029, -22.215974795473937 ], [ -47.37439790030033, -22.215935905366649 ], [ -47.37437172566446, -22.215906105012451 ], [ -47.374343514595786, -22.21587792703464 ], [ -47.37430964813165, -22.215846880403518 ], [ -47.374276132391024, -22.215817382934883 ], [ -47.374243761522152, -22.215791652788486 ], [ -47.374205892875736, -22.215764307707822 ], [ -47.374164580648944, -22.215735459398896 ], [ -47.37412279650475, -22.215707438218047 ], [ -47.374080098596984, -22.215680036058664 ], [ -47.374033308451821, -22.215650651803671 ], [ -47.37398763257864, -22.21562165405523 ], [ -47.373940879300783, -22.215593040744238 ], [ -47.37389415122346, -22.215564207607311 ], [ -47.373844935196082, -22.215533951946469 ], [ -47.373796040604859, -22.215502847300186 ], [ -47.37374846981885, -22.215472526209155 ], [ -47.373701231236666, -22.215442135631875 ], [ -47.373655295961385, -22.215412792002144 ], [ -47.373606436411521, -22.215381918347319 ], [ -47.373556425886498, -22.215349041027046 ], [ -47.373505685512555, -22.215315087124772 ], [ -47.373456472047188, -22.215280684186837 ], [ -47.373408328097113, -22.215246473992071 ], [ -47.373358872593741, -22.215210222972249 ], [ -47.373309422387777, -22.215172320254233 ], [ -47.373261145376183, -22.21513342941245 ], [ -47.373216550337034, -22.215096267341146 ], [ -47.373172287201321, -22.215059454011612 ], [ -47.373125352837974, -22.215020078487488 ], [ -47.373080102967435, -22.214979560736246 ], [ -47.373037080475228, -22.214940558428218 ], [ -47.372994944737897, -22.214901396478226 ], [ -47.372948899042974, -22.214858505845033 ], [ -47.372906024069458, -22.214814661921434 ], [ -47.372867089020545, -22.214775113070477 ], [ -47.372824763957276, -22.214731479010403 ], [ -47.372786912521242, -22.214690250644097 ], [ -47.372750496459965, -22.214652313285168 ], [ -47.372708620907474, -22.214608389112545 ], [ -47.372666233040071, -22.214560881193702 ], [ -47.372629277323377, -22.214517587093646 ], [ -47.372593741266854, -22.214476705171474 ], [ -47.372557601395521, -22.214435375119841 ], [ -47.372521493792689, -22.214394425594502 ], [ -47.372483898925168, -22.214352321322639 ], [ -47.372447024345895, -22.214310083923422 ], [ -47.372410975243739, -22.21426971739038 ], [ -47.372372341680538, -22.214226291649034 ], [ -47.37236312015586, -22.214215511613133 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 310.05509862399998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374556476403818, -22.216164115099097 ], [ -47.374535513528926, -22.216133965484978 ], [ -47.374509258005723, -22.216097450227025 ], [ -47.374480528742914, -22.216059624565382 ], [ -47.374451280165175, -22.216022800794498 ], [ -47.374418002609779, -22.215983046099339 ], [ -47.374386470743318, -22.215944282628517 ], [ -47.374360766258839, -22.21591501754898 ], [ -47.374333089161766, -22.215887372914686 ], [ -47.374299550349512, -22.215856626652421 ], [ -47.374266409888691, -22.21582745946916 ], [ -47.374234578943387, -22.215802158482742 ], [ -47.37419707315663, -22.215775075423434 ], [ -47.374155967243695, -22.215746371182615 ], [ -47.374114419150871, -22.215718508301304 ], [ -47.374071905631247, -22.215691224475787 ], [ -47.37402514592052, -22.215661859333068 ], [ -47.373979541553759, -22.215632906980616 ], [ -47.373932868370446, -22.215604342687485 ], [ -47.3738861278309, -22.215575501860364 ], [ -47.373836826052063, -22.21554519348307 ], [ -47.37378783634783, -22.215514028329377 ], [ -47.373740228689279, -22.215483683742171 ], [ -47.373692983936181, -22.215453289194269 ], [ -47.37364709888886, -22.215423977649763 ], [ -47.373598158353069, -22.215393052820456 ], [ -47.373547987984971, -22.215360070417354 ], [ -47.37349707504216, -22.215326001036448 ], [ -47.373447694595029, -22.215291481368105 ], [ -47.373399418205665, -22.215257177063474 ], [ -47.373349752118621, -22.215220771684095 ], [ -47.373300041793833, -22.215182669588213 ], [ -47.373251537606507, -22.215143595737405 ], [ -47.373206851573691, -22.215106357837417 ], [ -47.373162575564649, -22.215069533808169 ], [ -47.373115442391224, -22.21502999149082 ], [ -47.373069989885416, -22.214989292293442 ], [ -47.373026870335231, -22.214950201994878 ], [ -47.372984664819349, -22.21491097518895 ], [ -47.372938373864621, -22.214867856098788 ], [ -47.372895287084084, -22.214823795578713 ], [ -47.372856332207732, -22.214784226585177 ], [ -47.372813838291307, -22.214740418446862 ], [ -47.372775962266815, -22.214699163295538 ], [ -47.372739636677458, -22.214661320185463 ], [ -47.372697586630693, -22.214617212978951 ], [ -47.37265494591999, -22.214569421672124 ], [ -47.372617932292485, -22.214526059725326 ], [ -47.37258245009145, -22.214485239757121 ], [ -47.372546342384872, -22.214443946486295 ], [ -47.372510282126882, -22.214403050651416 ], [ -47.372472664607663, -22.2143609210076 ], [ -47.372435790399415, -22.214318684030076 ], [ -47.372399784283814, -22.214278365628793 ], [ -47.372383868727923, -22.214260475881428 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 304.03293131300001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374540258375177, -22.216165707235497 ], [ -47.374523366183134, -22.216141412230193 ], [ -47.374497276515775, -22.216105127634847 ], [ -47.374468743899008, -22.216067560878543 ], [ -47.374439696476152, -22.216030990356984 ], [ -47.374406470037137, -22.215991296724052 ], [ -47.374375041184919, -22.215952659889712 ], [ -47.374349806851811, -22.21592393008487 ], [ -47.374322663726332, -22.215896818794164 ], [ -47.374289452565982, -22.21586637290082 ], [ -47.374256687384978, -22.215837536002962 ], [ -47.374225396363293, -22.215812664176593 ], [ -47.374188253436216, -22.215785843138676 ], [ -47.374147353837159, -22.215757282965971 ], [ -47.374106041795713, -22.215729578384224 ], [ -47.374063712664253, -22.2157024128926 ], [ -47.374016983387975, -22.215673066862159 ], [ -47.373971450527648, -22.215644159905704 ], [ -47.373924857438865, -22.215615644630432 ], [ -47.373878104437111, -22.215586796113115 ], [ -47.373828716906793, -22.215556435019359 ], [ -47.373779632089558, -22.215525209358258 ], [ -47.373731987558443, -22.215494841274879 ], [ -47.373684736634438, -22.215464442756353 ], [ -47.373638901815085, -22.215435163297073 ], [ -47.373589880293373, -22.215404187293281 ], [ -47.373539550082171, -22.215371099807314 ], [ -47.373488464570471, -22.21533691494778 ], [ -47.373438917141563, -22.215302278549014 ], [ -47.373390508312902, -22.215267880134483 ], [ -47.373340631642158, -22.215231320395528 ], [ -47.373290661198531, -22.215193018921767 ], [ -47.373241929835466, -22.215153762061895 ], [ -47.373197152808977, -22.215116448333237 ], [ -47.373152863926592, -22.215079613604249 ], [ -47.373105531943104, -22.215039904493661 ], [ -47.37305987680201, -22.214999023850108 ], [ -47.373016660193848, -22.214959845561008 ], [ -47.372974384899415, -22.214920553899141 ], [ -47.372927848684867, -22.214877206351971 ], [ -47.372884550097325, -22.214832929235392 ], [ -47.372845575393512, -22.214793340099281 ], [ -47.372802912623932, -22.214749357882699 ], [ -47.37276501201098, -22.214708075946362 ], [ -47.372728776893553, -22.214670327085148 ], [ -47.372686552352512, -22.21462603684472 ], [ -47.372643658798516, -22.214577962149889 ], [ -47.372606587260201, -22.214534532356307 ], [ -47.372571158914653, -22.214493774342095 ], [ -47.372535083372831, -22.21445251785206 ], [ -47.372499070459689, -22.214411675707673 ], [ -47.372461430288766, -22.214369520691893 ], [ -47.372424556451556, -22.214327284136083 ], [ -47.372404155988278, -22.214304440406153 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 297.95734103400002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374524040346017, -22.216167299370305 ], [ -47.374511218835998, -22.216148858974595 ], [ -47.374485295024485, -22.216112805041892 ], [ -47.374456959053738, -22.216075497190946 ], [ -47.37442811278575, -22.216039179918759 ], [ -47.374394937463109, -22.215999547348058 ], [ -47.374363611625128, -22.215961037150191 ], [ -47.374338847443376, -22.215932842620145 ], [ -47.374312238289505, -22.215906264673098 ], [ -47.374279354781066, -22.215876119148707 ], [ -47.374246964879887, -22.215847612536297 ], [ -47.37421621378185, -22.215823169870024 ], [ -47.374179433714488, -22.215796610853555 ], [ -47.374138740429316, -22.215768194748989 ], [ -47.374097664439283, -22.215740648466813 ], [ -47.374055519696007, -22.215713601309098 ], [ -47.374008820854172, -22.215684274390949 ], [ -47.37396335950028, -22.215655412830479 ], [ -47.373916846506056, -22.215626946573074 ], [ -47.373870081042085, -22.215598090365575 ], [ -47.37382060776028, -22.215567676555345 ], [ -47.373771427830022, -22.215536390386816 ], [ -47.373723746426357, -22.215505998807245 ], [ -47.373676489331437, -22.215475596318115 ], [ -47.373630704740052, -22.215446348944081 ], [ -47.373581602232406, -22.215415321765771 ], [ -47.373531112178092, -22.21538212919695 ], [ -47.373479854097489, -22.21534782885875 ], [ -47.373430139686796, -22.215313075729547 ], [ -47.373381598418817, -22.215278583205116 ], [ -47.373331511164359, -22.215241869106553 ], [ -47.373281280601873, -22.215203368254876 ], [ -47.37323232206306, -22.215163928385945 ], [ -47.373187454042878, -22.215126538828578 ], [ -47.373143152287163, -22.215089693399865 ], [ -47.373095621493583, -22.215049817496016 ], [ -47.373049763717205, -22.215008755406256 ], [ -47.373006450051065, -22.214969489126613 ], [ -47.372964104978067, -22.214930132608806 ], [ -47.372917323503714, -22.214886556604576 ], [ -47.372873813109145, -22.214842062891481 ], [ -47.3728348185779, -22.214802453612783 ], [ -47.372791986955157, -22.214758297317918 ], [ -47.372754061753739, -22.21471698859655 ], [ -47.372717917108247, -22.214679333984215 ], [ -47.372675518072931, -22.214634860709864 ], [ -47.37263237167565, -22.214586502626965 ], [ -47.372595242226524, -22.214543004986634 ], [ -47.372559867736463, -22.214502308926402 ], [ -47.372523824359391, -22.214461089217174 ], [ -47.372487858791089, -22.214420300763265 ], [ -47.372450195968469, -22.214378120375518 ], [ -47.372424656071004, -22.214348866103983 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 291.79409228600002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374507822316318, -22.216168891503514 ], [ -47.374499071487527, -22.216156305718215 ], [ -47.374473313531837, -22.216120482448158 ], [ -47.374445174207096, -22.216083433502607 ], [ -47.37441652909397, -22.216047369479824 ], [ -47.374383404887702, -22.216007797971354 ], [ -47.374352182063944, -22.215969414409994 ], [ -47.374327888033548, -22.215941755154802 ], [ -47.374301812851279, -22.215915710551478 ], [ -47.374269256994751, -22.215885865396071 ], [ -47.374237242373425, -22.215857689069164 ], [ -47.374207031199063, -22.215833675563047 ], [ -47.374170613991453, -22.215807378568059 ], [ -47.37413012702018, -22.215779106531652 ], [ -47.374089287081581, -22.215751718549068 ], [ -47.374047326726512, -22.215724789725279 ], [ -47.374000658319126, -22.215695481919422 ], [ -47.373955268471676, -22.215666665754956 ], [ -47.37390883557201, -22.215638248515443 ], [ -47.373862057645816, -22.215609384617732 ], [ -47.373812498612516, -22.21557891809103 ], [ -47.373763223569235, -22.215547571415065 ], [ -47.373715505293006, -22.215517156339324 ], [ -47.373668242027179, -22.21548674987956 ], [ -47.373622507663768, -22.215457534590765 ], [ -47.373573324170181, -22.215426456237957 ], [ -47.373522674272735, -22.215393158586235 ], [ -47.373471243623207, -22.215358742769375 ], [ -47.373421362230708, -22.215323872909718 ], [ -47.373372688523411, -22.215289286275365 ], [ -47.373322390685225, -22.215252417817187 ], [ -47.373271900003864, -22.215213717587549 ], [ -47.373222714289277, -22.215174094709518 ], [ -47.3731777552754, -22.215136629323446 ], [ -47.373133440646356, -22.215099773195018 ], [ -47.373085711042691, -22.21505973049787 ], [ -47.373039650631021, -22.215018486961899 ], [ -47.37299623990689, -22.214979132691692 ], [ -47.372953825055333, -22.214939711317932 ], [ -47.372906798321154, -22.214895906856615 ], [ -47.372863076119572, -22.214851196546967 ], [ -47.372824061760873, -22.214811567125693 ], [ -47.372781061284975, -22.214767236752518 ], [ -47.372743111495097, -22.214725901246119 ], [ -47.372707057321527, -22.214688340882663 ], [ -47.372664483791951, -22.214643684574373 ], [ -47.37262108455139, -22.214595043103387 ], [ -47.372583897191461, -22.214551477616261 ], [ -47.372548576556881, -22.214510843510027 ], [ -47.372512565344564, -22.214469660581603 ], [ -47.37247664712109, -22.214428925818186 ], [ -47.372445505500153, -22.214394048834556 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 285.78580106200002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374491604286092, -22.216170483635153 ], [ -47.37448692413772, -22.216163752461025 ], [ -47.374461332037832, -22.21612815985366 ], [ -47.374433389359076, -22.216091369813533 ], [ -47.374404945400805, -22.216055559040164 ], [ -47.37437187231091, -22.216016048593932 ], [ -47.374340752501375, -22.215977791669097 ], [ -47.374316928622306, -22.215950667688823 ], [ -47.374291387411645, -22.215925156429289 ], [ -47.374259159207043, -22.215895611642921 ], [ -47.374227519865578, -22.215867765601562 ], [ -47.374197848614934, -22.215844181255665 ], [ -47.374161794267089, -22.215818146282178 ], [ -47.374121513609758, -22.21579001831396 ], [ -47.374080909722608, -22.215762788631 ], [ -47.374039133755758, -22.215735978141161 ], [ -47.373992495782829, -22.215706689447604 ], [ -47.373947177441828, -22.215677918679116 ], [ -47.373900824636735, -22.215649550457496 ], [ -47.373854034248325, -22.215620678869591 ], [ -47.373804389463523, -22.215590159626402 ], [ -47.373755019307197, -22.215558752442998 ], [ -47.373707264158398, -22.215528313871058 ], [ -47.373659994721663, -22.215497903440678 ], [ -47.373614310586227, -22.21546872023713 ], [ -47.373565046106684, -22.215437590709808 ], [ -47.373514236366098, -22.215404187975206 ], [ -47.373462633147632, -22.215369656679631 ], [ -47.373412584773313, -22.215334670089511 ], [ -47.373363778626683, -22.215299989345233 ], [ -47.373313270204754, -22.215262966527416 ], [ -47.373262519404491, -22.215224066919792 ], [ -47.373213106514129, -22.215184261032643 ], [ -47.373168056506564, -22.215146719817859 ], [ -47.373123729004178, -22.215109852989698 ], [ -47.373075800590406, -22.215069643499227 ], [ -47.373029537543431, -22.215028218517009 ], [ -47.372986029761307, -22.214988776256231 ], [ -47.372943545131193, -22.214949290026514 ], [ -47.372896273137194, -22.214905257108089 ], [ -47.372852339128585, -22.214860330201869 ], [ -47.372813304942447, -22.214820680637992 ], [ -47.372770135613401, -22.21477617618649 ], [ -47.372732161235049, -22.214734813895067 ], [ -47.372696197533415, -22.214697347780504 ], [ -47.372653449509563, -22.214652508438238 ], [ -47.372609797425731, -22.214603583579134 ], [ -47.372572552154999, -22.214559950245224 ], [ -47.372537285375898, -22.214519378092984 ], [ -47.372501306328331, -22.214478231945382 ], [ -47.372465737427476, -22.214437893344833 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 279.67053819500001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374475386255341, -22.216172075765208 ], [ -47.374474776786577, -22.216171199203021 ], [ -47.374449350542484, -22.216135837258371 ], [ -47.374421604509699, -22.216099306123706 ], [ -47.374393361706254, -22.216063748599804 ], [ -47.374360339732732, -22.21602429921581 ], [ -47.374329322937406, -22.215986168927515 ], [ -47.374305969209665, -22.215959580222219 ], [ -47.374280961970612, -22.215934602306561 ], [ -47.374249061417942, -22.215905357889248 ], [ -47.374217797356359, -22.215877842133484 ], [ -47.374188666029468, -22.215854686947857 ], [ -47.374152974541431, -22.215828913995928 ], [ -47.374112900198035, -22.215800930095916 ], [ -47.374072532362362, -22.215773858712598 ], [ -47.374030940783747, -22.215747166556724 ], [ -47.373984333245282, -22.215717896975455 ], [ -47.373939086410743, -22.215689171602993 ], [ -47.37389281370023, -22.21566085239925 ], [ -47.37384601084959, -22.215631973121166 ], [ -47.373796280313279, -22.215601401161475 ], [ -47.373746815043894, -22.215569933470629 ], [ -47.373699023022532, -22.215539471402487 ], [ -47.37365174741489, -22.215509057001487 ], [ -47.373606113507442, -22.215479905883203 ], [ -47.373556768041936, -22.215448725181353 ], [ -47.373505798458183, -22.21541521736383 ], [ -47.373454022670764, -22.215380570589552 ], [ -47.37340380731461, -22.215345467268957 ], [ -47.373354868728633, -22.215310692414711 ], [ -47.373304149722941, -22.215273515237236 ], [ -47.373253138803761, -22.215234416251604 ], [ -47.37320349873761, -22.215194427355311 ], [ -47.373158357736344, -22.215156810311797 ], [ -47.373114017360621, -22.21511993278391 ], [ -47.373065890136736, -22.2150795565001 ], [ -47.373019424454455, -22.215037950071608 ], [ -47.372975819614339, -22.214998419820247 ], [ -47.372933265205667, -22.214958868734552 ], [ -47.372885747951827, -22.214914607358995 ], [ -47.372841602136198, -22.214869463856161 ], [ -47.372802548122607, -22.214829794149711 ], [ -47.372759209940412, -22.214785115619843 ], [ -47.372721210973602, -22.214743726543382 ], [ -47.372685337743889, -22.214706354677734 ], [ -47.372642415225776, -22.214661332301468 ], [ -47.372598510298673, -22.214612124054202 ], [ -47.372561207117144, -22.214568422873491 ], [ -47.372525994193524, -22.214527912675262 ], [ -47.372490047310706, -22.214486803308485 ], [ -47.372486395967343, -22.214482662330415 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 136.524218214, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373446691666224, -22.215392340684197 ], [ -47.373445412192595, -22.215391484499111 ], [ -47.373395029854592, -22.215356264448019 ], [ -47.373345958829262, -22.215321395483816 ], [ -47.373295029239792, -22.215284063946633 ], [ -47.373243758201681, -22.215244765582987 ], [ -47.373193890959719, -22.215204593677516 ], [ -47.373148658964745, -22.215166900805272 ], [ -47.373104305715685, -22.215130012577646 ], [ -47.373055979681681, -22.215089469500477 ], [ -47.373009311364079, -22.215047681625698 ], [ -47.372965609465972, -22.215008063383728 ], [ -47.372922985278734, -22.214968447442065 ], [ -47.37287522276506, -22.214923957609333 ], [ -47.372830865142411, -22.214878597509855 ], [ -47.372791791301374, -22.214838907660813 ], [ -47.372748284266024, -22.214794055052565 ], [ -47.372710260710754, -22.214752639191083 ], [ -47.37267447795297, -22.214715361574349 ], [ -47.372631380940582, -22.21467015616405 ], [ -47.372587223170228, -22.214620664528599 ], [ -47.372549862077896, -22.214576895501093 ], [ -47.372514703009756, -22.214536447256876 ], [ -47.372507967226738, -22.214528744121569 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 129.10413449500001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374459057863525, -22.216173678727781 ], [ -47.374437369045779, -22.216143514662317 ], [ -47.37440981965895, -22.216107242433139 ], [ -47.374381778010324, -22.216071938158723 ], [ -47.374348807153176, -22.216032549836982 ], [ -47.374317893372059, -22.215994546185229 ], [ -47.374295009795617, -22.215968492754989 ], [ -47.374270536528179, -22.215944048183253 ], [ -47.374238963627455, -22.215915104135068 ], [ -47.374208074845754, -22.215887918664954 ], [ -47.374179483442653, -22.215865192639647 ], [ -47.374144154814445, -22.215839681709301 ], [ -47.37410428678502, -22.215811841877525 ], [ -47.374064155000845, -22.215784928793873 ], [ -47.374022747810493, -22.215758354971978 ], [ -47.373976170706484, -22.215729104502994 ], [ -47.373930995378416, -22.215700424526563 ], [ -47.373884802762483, -22.21567215434073 ], [ -47.373837987449626, -22.215643267372435 ], [ -47.373788171161785, -22.215612642696236 ], [ -47.373738610779348, -22.215581114497933 ], [ -47.373690781885408, -22.215550628933599 ], [ -47.373643500106859, -22.215520210561987 ], [ -47.373597916427393, -22.21549109152895 ], [ -47.373548489975924, -22.215459859652562 ], [ -47.373507766840682, -22.215433087935523 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 114.90180016399999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373323058702454, -22.215321843679568 ], [ -47.373285908755307, -22.215294612655647 ], [ -47.373234377598244, -22.215255114913933 ], [ -47.373184283180464, -22.21521475999927 ], [ -47.373138960191774, -22.215176991298272 ], [ -47.373094594069379, -22.215140092370923 ], [ -47.373046069225246, -22.215099382500362 ], [ -47.372999198272311, -22.21505741317926 ], [ -47.372955399316204, -22.215017706946689 ], [ -47.372912705350409, -22.214978026149033 ], [ -47.372864697576894, -22.214933307859091 ], [ -47.372820128147218, -22.214887731162968 ], [ -47.372781034478727, -22.214848021171324 ], [ -47.372737358590236, -22.214802994484668 ], [ -47.3726993104465, -22.214761551838148 ], [ -47.372663618160637, -22.21472436847035 ], [ -47.372620346653996, -22.214678980026015 ], [ -47.372575936040384, -22.214629205002318 ], [ -47.372540010148541, -22.214587117329032 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 115.64803454600001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374442710038309, -22.216175283596474 ], [ -47.374425387547717, -22.216151192065482 ], [ -47.374398034806838, -22.216115178741823 ], [ -47.374370194313016, -22.216080127716928 ], [ -47.37433727457222, -22.216040800457446 ], [ -47.374306463805311, -22.216002923442268 ], [ -47.374284050380162, -22.215977405287124 ], [ -47.37426011108434, -22.215953494059409 ], [ -47.374228865835569, -22.215924850380379 ], [ -47.374198352333792, -22.215897995195935 ], [ -47.374170300854502, -22.215875698331036 ], [ -47.374135335086159, -22.215850449422309 ], [ -47.374095673370704, -22.21582275365877 ], [ -47.374055777638056, -22.215795998874821 ], [ -47.374014554835981, -22.215769543386902 ], [ -47.373968008166436, -22.215740312030231 ], [ -47.373922904344845, -22.215711677449821 ], [ -47.373876791823506, -22.215683456281891 ], [ -47.373829964048426, -22.215654561623406 ], [ -47.373780062009054, -22.215623884230702 ], [ -47.373730406513538, -22.215592295524925 ], [ -47.373682540747033, -22.215561786464402 ], [ -47.373635252797563, -22.215531364122153 ], [ -47.373596035950584, -22.215506312247715 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 101.413944046, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373264441288171, -22.215295697619773 ], [ -47.37322499699345, -22.215265464244457 ], [ -47.373174675399831, -22.215224926320559 ], [ -47.373129261417432, -22.215187081790802 ], [ -47.373084882421693, -22.215150172163714 ], [ -47.37303615876742, -22.215109295499751 ], [ -47.372989085179157, -22.215067144732309 ], [ -47.372945189165051, -22.215027350509114 ], [ -47.372902425420683, -22.21498760485547 ], [ -47.372854172387314, -22.214942658108296 ], [ -47.372809391150618, -22.214896864815472 ], [ -47.372770277654688, -22.214857134681232 ], [ -47.372726432913034, -22.214811933916152 ], [ -47.372688360180845, -22.214770464484591 ], [ -47.372652758366904, -22.214733375365736 ], [ -47.372609312366002, -22.21468780388733 ], [ -47.372572842773174, -22.214646929090403 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 102.345829427, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37442636221256, -22.216176888463568 ], [ -47.374413406048298, -22.216158869467879 ], [ -47.374386249953346, -22.216123115049758 ], [ -47.374358610614323, -22.216088317274416 ], [ -47.374325741989892, -22.216049051077206 ], [ -47.374295034237178, -22.216011300698597 ], [ -47.3742730909633, -22.215986317818658 ], [ -47.3742496856391, -22.215962939935014 ], [ -47.374218768042297, -22.215934596625168 ], [ -47.374188629820438, -22.215908071726446 ], [ -47.374161118265, -22.215886204021999 ], [ -47.374126515356544, -22.215861217134947 ], [ -47.374087059955102, -22.215833665439671 ], [ -47.374047400274002, -22.215807068955421 ], [ -47.374006361860218, -22.21578073180153 ], [ -47.373959845625144, -22.215751519557156 ], [ -47.37391481331003, -22.215722930372777 ], [ -47.373868780883299, -22.215694758222767 ], [ -47.373821940645996, -22.215665855874079 ], [ -47.373771952855073, -22.215635125764855 ], [ -47.373722202246483, -22.21560347655161 ], [ -47.373683185842467, -22.215578607974681 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 91.565540111000004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373228664366827, -22.215285814630054 ], [ -47.373215616387299, -22.215275813574539 ], [ -47.373165067617833, -22.215235092641382 ], [ -47.373119562641719, -22.215197172282867 ], [ -47.373075170772637, -22.215160251956057 ], [ -47.373026248308207, -22.215119208498656 ], [ -47.372978972084603, -22.215076876284844 ], [ -47.372934979012499, -22.215036994071014 ], [ -47.372892145489558, -22.214997183561362 ], [ -47.372843647196341, -22.214952008356928 ], [ -47.372798654152618, -22.214905998467376 ], [ -47.372759520829234, -22.214866248190543 ], [ -47.372715507234439, -22.214820873347019 ], [ -47.372677409913784, -22.214779377130405 ], [ -47.372641898571771, -22.214742382260525 ], [ -47.372602629530377, -22.214701192087144 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 89.391441592000007, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374410014386257, -22.216178493329036 ], [ -47.374401424547536, -22.216166546869502 ], [ -47.374374465098491, -22.216131051356964 ], [ -47.374347026914251, -22.216096506831182 ], [ -47.37431420940618, -22.216057301696253 ], [ -47.374283604667653, -22.21601967795425 ], [ -47.374262131545038, -22.215995230349549 ], [ -47.374239260192454, -22.215972385810044 ], [ -47.374208670247626, -22.215944342869445 ], [ -47.374178907305712, -22.215918148256492 ], [ -47.374151935674163, -22.215896709712556 ], [ -47.374117695625628, -22.215871984847205 ], [ -47.374078446538199, -22.215844577220206 ], [ -47.374039022908669, -22.215818139035708 ], [ -47.373998168883197, -22.215791920215842 ], [ -47.373951683082602, -22.215762727083774 ], [ -47.373906722273972, -22.215734183295446 ], [ -47.373860769941849, -22.215706060163345 ], [ -47.373813917242323, -22.215677150124446 ], [ -47.373767797205652, -22.215648797726615 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 82.561516370999996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373193873274232, -22.215276203955806 ], [ -47.373155459834472, -22.215245258961765 ], [ -47.37310986386462, -22.215207262774467 ], [ -47.373065459122209, -22.215170331747913 ], [ -47.373016337847609, -22.215129121497061 ], [ -47.372968858988663, -22.215086607836845 ], [ -47.372924768858553, -22.215046637632376 ], [ -47.372881865557041, -22.215006762266722 ], [ -47.372833122003961, -22.214961358604988 ], [ -47.372787917153218, -22.214915132118694 ], [ -47.372748764002381, -22.214875361699249 ], [ -47.372704581554437, -22.214829812777264 ], [ -47.372666459645323, -22.214788289775601 ], [ -47.372631038775232, -22.214751389154682 ], [ -47.37262902471879, -22.214749276566685 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 80.084132964000005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374393666559435, -22.216180098192893 ], [ -47.374389443045416, -22.21617422427034 ], [ -47.374362680242264, -22.216138987663417 ], [ -47.374335443212793, -22.216104696387244 ], [ -47.374302676821074, -22.216065552314596 ], [ -47.374272175096742, -22.216028055209197 ], [ -47.374251172125376, -22.216004142879807 ], [ -47.374228834744422, -22.21598183168452 ], [ -47.374198572451569, -22.215954089113204 ], [ -47.374169184789608, -22.215928224786051 ], [ -47.374142753081976, -22.215907215402698 ], [ -47.374108875893391, -22.215882752559089 ], [ -47.374069833120004, -22.215855489000397 ], [ -47.374030645542057, -22.21582920911565 ], [ -47.373989975904934, -22.215803108629849 ], [ -47.373943520538802, -22.215773934610084 ], [ -47.373898631236671, -22.215745436217787 ], [ -47.37385275899917, -22.215717362103629 ], [ -47.373823853167167, -22.215699526021552 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 73.723270696, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373160045827944, -22.215266859470095 ], [ -47.373145852049724, -22.215255425281679 ], [ -47.373100165086157, -22.215217353265597 ], [ -47.373055747470396, -22.215180411539301 ], [ -47.373006427385633, -22.215139034494975 ], [ -47.372958745891331, -22.215096339388342 ], [ -47.372914558703201, -22.215056281193217 ], [ -47.372871585623116, -22.215016340971534 ], [ -47.372822596810174, -22.214970708852483 ], [ -47.372777180152404, -22.214924265769408 ], [ -47.372738007174128, -22.214884475207374 ], [ -47.372693655873029, -22.214838752206887 ], [ -47.372655509375456, -22.214797202420169 ], [ -47.372655097071899, -22.214796772892253 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 71.179127027000007, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374377311248239, -22.216181703789832 ], [ -47.374350895384673, -22.216146923969117 ], [ -47.37432385950995, -22.216112885942589 ], [ -47.37429114423459, -22.216073802932229 ], [ -47.374260745524438, -22.216036432463458 ], [ -47.374240212704301, -22.216013055409444 ], [ -47.374218409294976, -22.215991277558437 ], [ -47.374188474654119, -22.215963835356437 ], [ -47.374159462272125, -22.215938301315148 ], [ -47.374133570488453, -22.215917721092442 ], [ -47.374100056159847, -22.215893520270608 ], [ -47.374061219700508, -22.215866400780243 ], [ -47.37402226817418, -22.215840279195284 ], [ -47.373981782925405, -22.215814297043526 ], [ -47.373935357993759, -22.215785142136077 ], [ -47.373890540198133, -22.215756689139841 ], [ -47.37387668189794, -22.215748207770549 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 64.532868283, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373127463284504, -22.215258274208182 ], [ -47.373090466306309, -22.215227443756259 ], [ -47.373046035817211, -22.215190491330233 ], [ -47.372996516922271, -22.215148947492398 ], [ -47.3729486327926, -22.215106070939324 ], [ -47.372904348546463, -22.215065924753524 ], [ -47.372861305687799, -22.215025919675817 ], [ -47.372812071614987, -22.2149800590994 ], [ -47.372766443150191, -22.214933399419522 ], [ -47.372727250344468, -22.21489358871488 ], [ -47.372683462626405, -22.21484844672532 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 61.819272648999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374360734607194, -22.216183331112966 ], [ -47.374339110525703, -22.216154860274077 ], [ -47.374312275805721, -22.21612107549722 ], [ -47.37427961164672, -22.216082053549162 ], [ -47.374249315950742, -22.216044809717026 ], [ -47.374229253281825, -22.216021967938463 ], [ -47.37420798384413, -22.216000723431822 ], [ -47.374178376855269, -22.215973581599162 ], [ -47.374149739753271, -22.215948377843777 ], [ -47.37412438789358, -22.21592822678177 ], [ -47.374091236424988, -22.215904287981743 ], [ -47.374052606279719, -22.21587731255973 ], [ -47.374013890805031, -22.215851349274566 ], [ -47.373973589944626, -22.2158254854569 ], [ -47.373932625239256, -22.215799759578349 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 57.34073131, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373096243634571, -22.215250430855779 ], [ -47.373080767525096, -22.215237534246445 ], [ -47.373036324162662, -22.215200571120675 ], [ -47.372986606457516, -22.215158860489332 ], [ -47.372938519692482, -22.215115802489787 ], [ -47.372894138388325, -22.215075568313303 ], [ -47.372851025751089, -22.215035498379564 ], [ -47.372801546418394, -22.214989409345755 ], [ -47.372755706146577, -22.214942533069053 ], [ -47.372716493513401, -22.214902702221792 ], [ -47.372701085763062, -22.214886817942755 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 52.340513973, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374344157965588, -22.216184958434436 ], [ -47.374327325665377, -22.216162796578292 ], [ -47.374300692100121, -22.216129265051123 ], [ -47.374268079057458, -22.216090304165384 ], [ -47.37423788637566, -22.216053186969901 ], [ -47.37421829385795, -22.216030880466846 ], [ -47.374197558391877, -22.216010169304639 ], [ -47.374168279055034, -22.215983327841371 ], [ -47.374140017233039, -22.215958454371936 ], [ -47.374115205297372, -22.215938732470676 ], [ -47.374082416688815, -22.215915055692516 ], [ -47.374043992857644, -22.215888224338869 ], [ -47.374005513434611, -22.215862419353531 ], [ -47.373989402809151, -22.215852080065847 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 50.36257292, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373065006972944, -22.215242583222469 ], [ -47.37302661250672, -22.215210650910659 ], [ -47.372976695991383, -22.215168773485768 ], [ -47.372928406590972, -22.215125534039743 ], [ -47.372883928228795, -22.215085211872552 ], [ -47.372840745812972, -22.215045077082767 ], [ -47.372791021220401, -22.214998759591545 ], [ -47.37274496914155, -22.214951666717983 ], [ -47.372717401966675, -22.214923664929437 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 284.62457632799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371455753207478, -22.213621100300156 ], [ -47.37142740138286, -22.213593430598024 ], [ -47.371385736220567, -22.213552662242837 ], [ -47.371344927733745, -22.21351215968312 ], [ -47.371302614865179, -22.213470266842549 ], [ -47.371254960160115, -22.213421807083481 ], [ -47.371208359380766, -22.213370873416217 ], [ -47.371165907422622, -22.213323053153598 ], [ -47.371122118993696, -22.213271849852944 ], [ -47.371074522661139, -22.213212814912048 ], [ -47.371029600893486, -22.213150740531233 ], [ -47.370989165096169, -22.213090497931354 ], [ -47.370947621368217, -22.213023926513255 ], [ -47.370906544734744, -22.212947830554334 ], [ -47.370872599537158, -22.212872636021135 ], [ -47.370843391381712, -22.212797956919488 ], [ -47.370818652077979, -22.212721840057824 ], [ -47.370799510880815, -22.212650543395654 ], [ -47.370784035515051, -22.212584101847863 ], [ -47.370770797308694, -22.212518909358131 ], [ -47.370758799391133, -22.212450828184121 ], [ -47.37074936497401, -22.212383543904455 ], [ -47.370741276335487, -22.212313441992947 ], [ -47.370736623109991, -22.212245593587173 ], [ -47.370735389544571, -22.212223206722975 ], [ -47.370734121503169, -22.212198351492354 ], [ -47.370733387587819, -22.212171689750267 ], [ -47.370733172791311, -22.212149612038463 ], [ -47.370732960296152, -22.212129250746109 ], [ -47.370732895611688, -22.212101276035334 ], [ -47.370733740260931, -22.212076788437439 ], [ -47.370734319819043, -22.212053905488382 ], [ -47.370735738519755, -22.212028049836707 ], [ -47.37073689814234, -22.212009176551017 ], [ -47.370738230641159, -22.211986157545013 ], [ -47.370740630351783, -22.211957131539627 ], [ -47.370742552612114, -22.211939022478632 ], [ -47.370743878307358, -22.211922973631424 ], [ -47.370746292745579, -22.211897779069325 ], [ -47.370748455639017, -22.211878548149734 ], [ -47.370750764080597, -22.211855687533898 ], [ -47.370754192642991, -22.211830080077444 ], [ -47.370757544573777, -22.211805369407333 ], [ -47.37076123713544, -22.211783194379503 ], [ -47.370763902923315, -22.211765924888699 ], [ -47.370766427037012, -22.211750348111746 ], [ -47.370768533859, -22.211735692161156 ], [ -47.370771573063323, -22.21171507394439 ], [ -47.370775715694322, -22.211688610022023 ], [ -47.370781692265275, -22.211656677601496 ], [ -47.370786386380935, -22.211635529790016 ], [ -47.370789822297041, -22.211618526812561 ], [ -47.370795842950805, -22.211590574263809 ], [ -47.370803736329449, -22.211559298377828 ], [ -47.37081091735152, -22.211533603010686 ], [ -47.370819891704471, -22.211503385752213 ], [ -47.37082553870367, -22.211487010569591 ], [ -47.370890929913031, -22.211265374287478 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 287.02798963700002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371497591650794, -22.213641723251044 ], [ -47.371481878722669, -22.213626980439841 ], [ -47.371437930147628, -22.213584089242545 ], [ -47.371396307094749, -22.213543362092828 ], [ -47.371355527869447, -22.213502888577747 ], [ -47.371313275292373, -22.213461055432766 ], [ -47.371265861812226, -22.213412840976869 ], [ -47.371219499883644, -22.213362168372083 ], [ -47.371177201419457, -22.213314521017338 ], [ -47.371133624955021, -22.213263565578181 ], [ -47.371086375845877, -22.21320496131267 ], [ -47.371041801009099, -22.213143366338901 ], [ -47.371001621767356, -22.213083505971149 ], [ -47.37096041730689, -22.213017478218369 ], [ -47.370919760323254, -22.212942159688119 ], [ -47.370886143467665, -22.212867692504563 ], [ -47.370857194262534, -22.21279367550196 ], [ -47.370832674660782, -22.212718234632391 ], [ -47.370813675091469, -22.212647465527784 ], [ -47.370798289253997, -22.212581408386495 ], [ -47.370785119842935, -22.212516554715815 ], [ -47.3707731890932, -22.21244885471852 ], [ -47.370763807029604, -22.212381943861402 ], [ -47.370755769698299, -22.212312286676216 ], [ -47.370751142311278, -22.212244815120339 ], [ -47.370749914818781, -22.212222538509447 ], [ -47.370748655620822, -22.212197856671207 ], [ -47.370747928859288, -22.212171454912333 ], [ -47.370747715151808, -22.212149489368525 ], [ -47.370747503099217, -22.212129170408225 ], [ -47.370747439066648, -22.212101478865577 ], [ -47.370748277706248, -22.212077165422908 ], [ -47.370748854014629, -22.212054410691465 ], [ -47.370750260256429, -22.212028782053682 ], [ -47.370751418713539, -22.212009927704738 ], [ -47.370752743507154, -22.211987041765585 ], [ -47.370755118282133, -22.21195831733656 ], [ -47.370757040587407, -22.211940207834452 ], [ -47.370758371591585, -22.211924094697153 ], [ -47.370760768202345, -22.211899086136835 ], [ -47.370762927493949, -22.211879887224473 ], [ -47.370765222531972, -22.211857159321465 ], [ -47.370768622401357, -22.211831766149455 ], [ -47.37077194717628, -22.211807255655618 ], [ -47.370775620664347, -22.211785195157134 ], [ -47.370778290663139, -22.211767898375598 ], [ -47.370780825292861, -22.211752256692293 ], [ -47.370782944996442, -22.211737511121246 ], [ -47.370785972651795, -22.21171697123923 ], [ -47.370790077373442, -22.211690749471746 ], [ -47.370795980188625, -22.211659211105985 ], [ -47.370800654510198, -22.211638152460512 ], [ -47.370804098333593, -22.211621110344346 ], [ -47.370810054886704, -22.211593455387352 ], [ -47.3708178540247, -22.211562552897949 ], [ -47.370824963645283, -22.211537113012589 ], [ -47.370833829201231, -22.21150726207081 ], [ -47.370839479962399, -22.211490875974373 ], [ -47.370903197780791, -22.211274911399567 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 289.561976544, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371540606026329, -22.213662925822611 ], [ -47.371535748630485, -22.213658300360038 ], [ -47.371492302204388, -22.213617536332674 ], [ -47.37144845891099, -22.21357474788649 ], [ -47.371406877967516, -22.213534061942262 ], [ -47.37136612800375, -22.213493617471801 ], [ -47.371323935718173, -22.213451844022384 ], [ -47.371276763462923, -22.213403874869641 ], [ -47.371230640385107, -22.213353463327316 ], [ -47.371188495414899, -22.213305988880403 ], [ -47.371145130914954, -22.213255281302715 ], [ -47.371098229029258, -22.213197107712531 ], [ -47.37105400112339, -22.213135992145748 ], [ -47.371014078437234, -22.213076514010108 ], [ -47.370973213244312, -22.213011029922558 ], [ -47.370932975910605, -22.212936488820933 ], [ -47.37089968739712, -22.21286274898695 ], [ -47.370870997142411, -22.212789394083327 ], [ -47.370846697242754, -22.212714629205806 ], [ -47.370827839301384, -22.212644387658738 ], [ -47.370812542992283, -22.212578714923929 ], [ -47.370799442376573, -22.212514200072292 ], [ -47.370787578794733, -22.212446881251676 ], [ -47.370778249084751, -22.212380343817099 ], [ -47.370770263060741, -22.212311131358224 ], [ -47.37076566151228, -22.212244036652208 ], [ -47.370764440092721, -22.212221870294627 ], [ -47.370763189738227, -22.212197361848784 ], [ -47.370762470130572, -22.21217122007311 ], [ -47.370762257512148, -22.212149366697279 ], [ -47.37076204590214, -22.212129090069045 ], [ -47.370761982521529, -22.212101681694534 ], [ -47.370762815151515, -22.212077542407069 ], [ -47.370763388210193, -22.212054915893241 ], [ -47.370764781993124, -22.212029514269354 ], [ -47.370765939284766, -22.212010678857141 ], [ -47.370767256373213, -22.211987925984836 ], [ -47.370769606212598, -22.211959503132167 ], [ -47.370771528562813, -22.211941393188958 ], [ -47.37077286487591, -22.211925215761568 ], [ -47.370775243659246, -22.21190039320302 ], [ -47.370777399349031, -22.211881226297891 ], [ -47.370779680983517, -22.211858631107727 ], [ -47.370783052159936, -22.211833452220169 ], [ -47.370786349779038, -22.211809141902599 ], [ -47.370790004193537, -22.211787195933454 ], [ -47.370792678403241, -22.211769871861193 ], [ -47.370795223548974, -22.211754165271508 ], [ -47.370797356134126, -22.211739330080022 ], [ -47.370800372240524, -22.211718868532763 ], [ -47.370804439052876, -22.211692888920165 ], [ -47.370810268112358, -22.211661744609184 ], [ -47.370814922639866, -22.211640775129723 ], [ -47.37081837437055, -22.211623693874813 ], [ -47.370824266823071, -22.211596336509601 ], [ -47.370831971720484, -22.211565807416783 ], [ -47.370839009939644, -22.211540623013221 ], [ -47.370847766698652, -22.211511138388143 ], [ -47.370853421221781, -22.211494741377887 ], [ -47.370915465650178, -22.211284448510579 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 291.95070609499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371582427760821, -22.213683381614292 ], [ -47.371546109219082, -22.213648797241248 ], [ -47.371502725684707, -22.213608092224941 ], [ -47.371458987672952, -22.21356540652987 ], [ -47.371417448838884, -22.213524761791113 ], [ -47.371376728136646, -22.213484346365266 ], [ -47.37133459614256, -22.213442632611418 ], [ -47.37128766511222, -22.213394908761781 ], [ -47.371241780885178, -22.213344758281881 ], [ -47.371199789408941, -22.213297456742808 ], [ -47.371156636873501, -22.213246997026545 ], [ -47.371110082211267, -22.213189254111629 ], [ -47.371066201236353, -22.213128617951799 ], [ -47.371026535105813, -22.213069522048194 ], [ -47.370986009180491, -22.213004581625846 ], [ -47.370946191496813, -22.212930817952746 ], [ -47.370913231325538, -22.212857805468278 ], [ -47.370884800021337, -22.212785112663582 ], [ -47.370860719823902, -22.212711023778063 ], [ -47.37084200351056, -22.212641309788506 ], [ -47.370826796729894, -22.212576021460151 ], [ -47.370813764909606, -22.212511845427535 ], [ -47.370801968495741, -22.212444907783595 ], [ -47.370792691139428, -22.212378743771531 ], [ -47.370784756422815, -22.212309976038963 ], [ -47.370780180712991, -22.212243258182799 ], [ -47.370778965366384, -22.212221202078531 ], [ -47.370777723855412, -22.21219686702506 ], [ -47.370777011401678, -22.212170985232571 ], [ -47.370776799872331, -22.212149244024744 ], [ -47.370776588704906, -22.212129009728567 ], [ -47.370776525976304, -22.212101884522173 ], [ -47.370777352596733, -22.212077919389912 ], [ -47.370777922405729, -22.212055421093716 ], [ -47.37077930372984, -22.212030246483703 ], [ -47.370780459856014, -22.212011430008221 ], [ -47.370781769239322, -22.211988810202779 ], [ -47.370784094143175, -22.211960688926482 ], [ -47.370786016538332, -22.211942578542143 ], [ -47.370787358160342, -22.211926336824675 ], [ -47.370789719116289, -22.211901700267909 ], [ -47.370791871204261, -22.211882565370004 ], [ -47.37079413943524, -22.211860102892665 ], [ -47.370797481918736, -22.211835138289562 ], [ -47.370800752382046, -22.211811028148265 ], [ -47.370804387723005, -22.21178919670847 ], [ -47.37080706614362, -22.211771845345464 ], [ -47.37080962180535, -22.211756073849422 ], [ -47.370811767272059, -22.211741149037486 ], [ -47.370814771829515, -22.211720765824989 ], [ -47.370818800732621, -22.211695028367277 ], [ -47.370824556036489, -22.211664278111083 ], [ -47.370829190769946, -22.211643397797634 ], [ -47.370832650407905, -22.211626277404005 ], [ -47.3708384787599, -22.211599217630564 ], [ -47.370846089416808, -22.21156906193433 ], [ -47.37085305623458, -22.211544133012559 ], [ -47.370861704196734, -22.211515014704219 ], [ -47.370867362481818, -22.211498606780133 ], [ -47.370927733521199, -22.2112939856205 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 293.47181243400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371618654857514, -22.213697972653787 ], [ -47.371598370221562, -22.213679193835834 ], [ -47.371556469806286, -22.213639294121919 ], [ -47.371513149163619, -22.213598648116662 ], [ -47.371469516433507, -22.213556065172693 ], [ -47.371428019708844, -22.213515461639378 ], [ -47.371387328268142, -22.213475075258167 ], [ -47.371345256565547, -22.213433421199863 ], [ -47.37129856676011, -22.213385942653328 ], [ -47.371252921383849, -22.213336053235796 ], [ -47.371211083401597, -22.213288924604534 ], [ -47.371168142830669, -22.213238712749668 ], [ -47.371121935391919, -22.213181400509981 ], [ -47.371078401347987, -22.213121243757019 ], [ -47.371038991773098, -22.213062530085445 ], [ -47.370998805115434, -22.212998133328227 ], [ -47.37095940708187, -22.212925147083574 ], [ -47.370926775252897, -22.212852861948569 ], [ -47.370898602899324, -22.21278083124275 ], [ -47.370874742404219, -22.21270741834919 ], [ -47.370856167719005, -22.212638231917108 ], [ -47.370841050466851, -22.212573327995187 ], [ -47.370828087442035, -22.212509490781567 ], [ -47.370816358196215, -22.212442934314282 ], [ -47.370807133193665, -22.212377143724712 ], [ -47.370799249784525, -22.212308820718416 ], [ -47.370794699913404, -22.212242479712113 ], [ -47.370793490639791, -22.212220533861146 ], [ -47.370792257972354, -22.212196372200033 ], [ -47.3707915526726, -22.212170750390747 ], [ -47.370791342232359, -22.212149121350905 ], [ -47.370791131507524, -22.212128929386786 ], [ -47.370791069430993, -22.212102087348502 ], [ -47.370791890041886, -22.212078296371452 ], [ -47.370792456601237, -22.212055926292869 ], [ -47.370793825466578, -22.212030978696749 ], [ -47.370794980427284, -22.212012181158009 ], [ -47.370796282105481, -22.211989694419419 ], [ -47.370798582073867, -22.211961874719467 ], [ -47.370800504513973, -22.211943763894023 ], [ -47.370801851444867, -22.211927457886468 ], [ -47.370804194573473, -22.21190300733149 ], [ -47.370806343059627, -22.211883904440807 ], [ -47.370808597887141, -22.211861574676306 ], [ -47.370811911677748, -22.211836824357647 ], [ -47.370815154985323, -22.21181291439262 ], [ -47.370818771252758, -22.211791197482174 ], [ -47.370821453884275, -22.211773818828441 ], [ -47.370824020061988, -22.211757982426029 ], [ -47.370826178410233, -22.211742967993644 ], [ -47.370829171418769, -22.211722663115896 ], [ -47.370833162412673, -22.211697167813082 ], [ -47.37083884396101, -22.211666811611661 ], [ -47.370843458900431, -22.211646020464247 ], [ -47.370846926445658, -22.211628860931874 ], [ -47.370852690697184, -22.211602098750227 ], [ -47.370860207113665, -22.211572316450599 ], [ -47.370867102530099, -22.211547643010643 ], [ -47.37087564169547, -22.211518891019029 ], [ -47.370881303742507, -22.211502472181113 ], [ -47.370940001393855, -22.211303522729335 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 295.00993237699998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371655045207952, -22.213712629434738 ], [ -47.371650947284301, -22.213708772361734 ], [ -47.371608696734818, -22.213669658268124 ], [ -47.371566830392076, -22.213629791002035 ], [ -47.371523572641138, -22.213589204007825 ], [ -47.371480045192662, -22.213546723814936 ], [ -47.371438590577405, -22.213506161487086 ], [ -47.371397928398231, -22.213465804150474 ], [ -47.371355916987127, -22.213424209787728 ], [ -47.371309468406601, -22.213376976544247 ], [ -47.371264061881121, -22.213327348189058 ], [ -47.371222377392847, -22.213280392465585 ], [ -47.371179648786445, -22.213230428472091 ], [ -47.3711337885712, -22.213173546907583 ], [ -47.371090601458285, -22.21311386956144 ], [ -47.371051448439083, -22.213055538121836 ], [ -47.371011601049126, -22.212991685029696 ], [ -47.370972622665775, -22.212919476213429 ], [ -47.370940319179219, -22.212847918427794 ], [ -47.370912405776366, -22.212776549820816 ], [ -47.370888764983697, -22.212703812919159 ], [ -47.37087033192671, -22.212635154044509 ], [ -47.37085530420314, -22.212570634529005 ], [ -47.370842409973861, -22.212507136134377 ], [ -47.370830747896171, -22.212440960843733 ], [ -47.370821575247433, -22.212375543676643 ], [ -47.370813743145874, -22.212307665396608 ], [ -47.370809219113532, -22.212241701240139 ], [ -47.370808015912928, -22.212219865642478 ], [ -47.37080679208907, -22.212195877373738 ], [ -47.370806093943344, -22.212170515547619 ], [ -47.370805884592222, -22.212148998675772 ], [ -47.370805674309999, -22.212128849043701 ], [ -47.370805612885597, -22.212102290173544 ], [ -47.370806427486997, -22.212078673351691 ], [ -47.370806990796723, -22.21205643149073 ], [ -47.370808347203329, -22.212031710908487 ], [ -47.370809500998583, -22.212012932306468 ], [ -47.370810794971682, -22.211990578634733 ], [ -47.370813070004672, -22.211963060511156 ], [ -47.37081499248972, -22.211944949244582 ], [ -47.370816344729505, -22.211928578946964 ], [ -47.370818670030793, -22.211904314393742 ], [ -47.370820814915149, -22.211885243510281 ], [ -47.370823056339212, -22.21186304645861 ], [ -47.370826341436988, -22.211838510424421 ], [ -47.370829557588849, -22.211814800635672 ], [ -47.370833154782794, -22.211793198254572 ], [ -47.370835841625208, -22.211775792310096 ], [ -47.370838418318897, -22.211759891001332 ], [ -47.370840589548656, -22.21174478694849 ], [ -47.370843571008287, -22.211724560405496 ], [ -47.370847524093037, -22.211699307257572 ], [ -47.370853131885923, -22.211669345110963 ], [ -47.370857727031328, -22.211648643129546 ], [ -47.370861202483823, -22.211631444458455 ], [ -47.37086690263493, -22.211604979868596 ], [ -47.370874324811055, -22.211575570965582 ], [ -47.370881148826214, -22.211551153007434 ], [ -47.370889579194852, -22.211522767332564 ], [ -47.370895245003851, -22.211506337580836 ], [ -47.370952269268145, -22.211313059837103 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 296.48209649299997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371690803976144, -22.213727031824771 ], [ -47.371661243777829, -22.213699209001419 ], [ -47.371619023246666, -22.213660122699878 ], [ -47.371577190976474, -22.213620287881607 ], [ -47.371533996117257, -22.213579759898419 ], [ -47.371490573950418, -22.213537382456604 ], [ -47.371449161444566, -22.213496861334214 ], [ -47.371408528526928, -22.213456533042208 ], [ -47.371366577407301, -22.213414998374994 ], [ -47.371320370051684, -22.213368010434543 ], [ -47.371275202376992, -22.21331864314169 ], [ -47.371233671382711, -22.213271860325968 ], [ -47.371191154740835, -22.2132221441938 ], [ -47.371145641749123, -22.213165693304422 ], [ -47.371102801567254, -22.213106495365064 ], [ -47.371063905103767, -22.213048546157371 ], [ -47.371024396981582, -22.212985236730248 ], [ -47.370985838248536, -22.212913805342286 ], [ -47.370953863104489, -22.212842974905989 ], [ -47.37092620865247, -22.212772268397778 ], [ -47.370902787562351, -22.212700207487977 ], [ -47.370884496133684, -22.212632076170742 ], [ -47.370869557938754, -22.212567941061621 ], [ -47.370856732505089, -22.212504781485958 ], [ -47.370845137595595, -22.212438987371936 ], [ -47.370836017300753, -22.212373943627313 ], [ -47.370828236506846, -22.212306510073528 ], [ -47.370823738313369, -22.212240922766878 ], [ -47.370822541185788, -22.21221919742252 ], [ -47.370821326205551, -22.212195382546138 ], [ -47.37082063521391, -22.212170280703202 ], [ -47.37082042695193, -22.212148875999336 ], [ -47.370820217112325, -22.212128768699323 ], [ -47.370820156340109, -22.212102492997271 ], [ -47.370820964932051, -22.212079050330626 ], [ -47.370821524992181, -22.212056936687262 ], [ -47.37082286894011, -22.2120324431189 ], [ -47.370824021569895, -22.212013683453634 ], [ -47.37082530783794, -22.211991462848744 ], [ -47.370827557935591, -22.211964246301513 ], [ -47.370829480465581, -22.211946134593838 ], [ -47.370830838014228, -22.211929700006131 ], [ -47.370833145488255, -22.211905621454683 ], [ -47.370835286770813, -22.211886582578458 ], [ -47.370837514791454, -22.211864518239619 ], [ -47.370840771196434, -22.211840196489877 ], [ -47.370843960192644, -22.211816686877402 ], [ -47.370847538313114, -22.211795199025651 ], [ -47.370850229366411, -22.211777765790444 ], [ -47.370852816576061, -22.211761799575321 ], [ -47.370855000687321, -22.211746605902029 ], [ -47.37085797059806, -22.211726457693796 ], [ -47.370861885773706, -22.211701446700761 ], [ -47.370867419811226, -22.211671878608946 ], [ -47.370871995162638, -22.211651265793556 ], [ -47.370875478522379, -22.211634027983731 ], [ -47.370881114573145, -22.211607860985676 ], [ -47.370888442508985, -22.211578825479275 ], [ -47.370895195122905, -22.21155466300295 ], [ -47.370903516694909, -22.211526643644845 ], [ -47.370909186265855, -22.211510202979287 ], [ -47.370964537144062, -22.211322596943781 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 297.97854673099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371726795492101, -22.213741527946205 ], [ -47.371711806594469, -22.213727545340493 ], [ -47.371671540269958, -22.213689645640571 ], [ -47.371629349757121, -22.213650587131085 ], [ -47.371587551559472, -22.213610784760629 ], [ -47.37154441959197, -22.213570315788477 ], [ -47.371501102706766, -22.213528041097707 ], [ -47.371459732310321, -22.213487561180759 ], [ -47.37141912865421, -22.213447261933364 ], [ -47.371377237826081, -22.213405786961687 ], [ -47.371331271695368, -22.213359044324228 ], [ -47.371286342871464, -22.213309938093651 ], [ -47.371244965371176, -22.213263328185665 ], [ -47.371202660693839, -22.21321385991482 ], [ -47.371157494925676, -22.213157839700507 ], [ -47.371115001674895, -22.213099121167868 ], [ -47.371076361767166, -22.213041554192063 ], [ -47.371037192912787, -22.212978788429901 ], [ -47.370999053830147, -22.212908134470155 ], [ -47.370967407028708, -22.212838031383125 ], [ -47.370940011527622, -22.212767986973645 ], [ -47.370916810140173, -22.212696602055647 ], [ -47.370898660339911, -22.212628998295791 ], [ -47.370883811673707, -22.212565247593034 ], [ -47.370871055035707, -22.212502426836334 ], [ -47.370859527294478, -22.212437013898917 ], [ -47.370850459353605, -22.212372343576721 ], [ -47.370842729867448, -22.212305354749173 ], [ -47.370838257512915, -22.212240144292338 ], [ -47.370837066458385, -22.212218529201273 ], [ -47.370835860321797, -22.212194887717235 ], [ -47.370835176484292, -22.212170045857494 ], [ -47.370834969311481, -22.212148753321589 ], [ -47.370834759914501, -22.212128688353637 ], [ -47.370834699794536, -22.212102695819691 ], [ -47.370835502377055, -22.212079427308236 ], [ -47.370836059187603, -22.212057441882493 ], [ -47.370837390676897, -22.212033175328013 ], [ -47.370838542141243, -22.212014434599478 ], [ -47.370839820704255, -22.211992347061443 ], [ -47.370842045866624, -22.211965432090565 ], [ -47.370843968441562, -22.211947319941782 ], [ -47.370845331299066, -22.21193082106398 ], [ -47.37084762094586, -22.211906928514328 ], [ -47.370849758626619, -22.211887921645314 ], [ -47.370851973243866, -22.211865990019319 ], [ -47.3708552009561, -22.211841882554037 ], [ -47.370858362796689, -22.211818573117824 ], [ -47.370861921843712, -22.211797199795427 ], [ -47.370864617107898, -22.211779739269488 ], [ -47.370867214833488, -22.211763708147991 ], [ -47.370869411826234, -22.211748424854253 ], [ -47.370872370188096, -22.211728354980774 ], [ -47.370876247454703, -22.211703586142644 ], [ -47.37088170773692, -22.211674412105634 ], [ -47.370886263294352, -22.211653888456262 ], [ -47.370889754561347, -22.211636611507707 ], [ -47.370895326511814, -22.211610742101442 ], [ -47.370902560207448, -22.211582079991693 ], [ -47.370909241420193, -22.211558172997194 ], [ -47.370917454195606, -22.211530519955854 ], [ -47.370923127528506, -22.211514068376481 ], [ -47.370976805021613, -22.211332134049382 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 299.49258528399997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371762955568862, -22.213756091946575 ], [ -47.371722122621236, -22.213718000364853 ], [ -47.371681836760686, -22.213680082279179 ], [ -47.371639676266177, -22.213641051561748 ], [ -47.37159791214107, -22.213601281639107 ], [ -47.371554843065283, -22.213560871677963 ], [ -47.371511631461715, -22.213518699738252 ], [ -47.371470303174675, -22.213478261026733 ], [ -47.371429728780093, -22.213437990823945 ], [ -47.371387898243448, -22.213396575547787 ], [ -47.371342173337645, -22.213350078213292 ], [ -47.371297483364536, -22.213301233044955 ], [ -47.371256259358248, -22.213254796044708 ], [ -47.371214166645458, -22.213205575635122 ], [ -47.371169348100864, -22.213149986095836 ], [ -47.371127201781199, -22.213091746969866 ], [ -47.371088818429257, -22.213034562225893 ], [ -47.371049988842756, -22.212972340128633 ], [ -47.371012269410606, -22.212902463597054 ], [ -47.370980950951889, -22.212833087859227 ], [ -47.37095381440183, -22.212763705548408 ], [ -47.370930832717157, -22.212692996622174 ], [ -47.370912824545407, -22.212625920419651 ], [ -47.370898065407992, -22.212562554123252 ], [ -47.370885377565735, -22.212500072185463 ], [ -47.370873916992842, -22.212435040424641 ], [ -47.370864901406016, -22.212370743524882 ], [ -47.370857223227695, -22.212304199423542 ], [ -47.370852776712169, -22.212239365816515 ], [ -47.370851591730705, -22.212217860978747 ], [ -47.370850394437809, -22.21219439288706 ], [ -47.370849717754496, -22.212169811010476 ], [ -47.370849511670876, -22.212148630642567 ], [ -47.370849302716529, -22.212128608006651 ], [ -47.370849243248863, -22.212102898640808 ], [ -47.370850039821995, -22.21207980428456 ], [ -47.370850593383004, -22.212057947076431 ], [ -47.370851912413713, -22.212033907535812 ], [ -47.370853062712612, -22.212015185744018 ], [ -47.37085433357062, -22.211993231272835 ], [ -47.37085653379777, -22.211966617878314 ], [ -47.37085845641765, -22.211948505288397 ], [ -47.370859824583995, -22.211931942120518 ], [ -47.370862096403599, -22.211908235572647 ], [ -47.370864230482574, -22.211889260710866 ], [ -47.370866431696449, -22.211867461797684 ], [ -47.370869630715987, -22.21184356861686 ], [ -47.370872765400996, -22.211820459356947 ], [ -47.370876305374594, -22.211799200563895 ], [ -47.370879004849662, -22.211781712747218 ], [ -47.370881613091186, -22.211765616719354 ], [ -47.370883822965389, -22.211750243805159 ], [ -47.370886769778402, -22.211730252266445 ], [ -47.370890609135998, -22.211705725583219 ], [ -47.370895995663012, -22.21167694560102 ], [ -47.370900531426479, -22.211656511117674 ], [ -47.370904030600705, -22.211639195030379 ], [ -47.370909538450945, -22.211613623215932 ], [ -47.37091667790645, -22.211585334502818 ], [ -47.370923287718064, -22.211561682990151 ], [ -47.370931391696963, -22.211534396265609 ], [ -47.370937068791818, -22.211517933772399 ], [ -47.370989072900791, -22.2113416711539 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 300.96869379600003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371798752178648, -22.213770509544016 ], [ -47.371774081432079, -22.213747302436417 ], [ -47.371732438646603, -22.213708455388669 ], [ -47.371692133250008, -22.213670518917244 ], [ -47.371650002773833, -22.213631515991867 ], [ -47.371608272721275, -22.213591778517031 ], [ -47.371565266537196, -22.213551427566902 ], [ -47.371522160215264, -22.213509358378214 ], [ -47.37148087403763, -22.213468960872142 ], [ -47.371440328904576, -22.213428719713953 ], [ -47.371398558659422, -22.213387364133304 ], [ -47.371353074978522, -22.213341112101737 ], [ -47.371308623856216, -22.213292527995623 ], [ -47.371267553343927, -22.213246263903066 ], [ -47.371225672595692, -22.213197291354724 ], [ -47.371181201274695, -22.213142132490422 ], [ -47.371139401886182, -22.213084372771046 ], [ -47.371101275090048, -22.21302757025888 ], [ -47.371062784771482, -22.212965891826471 ], [ -47.371025484989914, -22.212896792722958 ], [ -47.370994494874019, -22.212828144334264 ], [ -47.370967617275092, -22.212759424122059 ], [ -47.370944855293317, -22.212689391187549 ], [ -47.37092698875017, -22.212622842542345 ], [ -47.37091231914161, -22.212559860652277 ], [ -47.370899700095151, -22.212497717533395 ], [ -47.370888306690674, -22.212433066949135 ], [ -47.370879343457965, -22.2123691434718 ], [ -47.370871716587558, -22.212303044096647 ], [ -47.370867295911125, -22.21223858733941 ], [ -47.37086611700277, -22.212217192754927 ], [ -47.370864928553587, -22.212193898055595 ], [ -47.370864259024515, -22.212169576162172 ], [ -47.370864054030122, -22.21214850796223 ], [ -47.3708638455184, -22.212128527658368 ], [ -47.370863786703111, -22.21210310146062 ], [ -47.370864577266886, -22.212080181259559 ], [ -47.370865127578377, -22.212058452269044 ], [ -47.370866434150543, -22.212034639742306 ], [ -47.370867583284003, -22.212015936887244 ], [ -47.370868846437034, -22.211994115482906 ], [ -47.37087102172903, -22.211967803664734 ], [ -47.370872944393859, -22.21194969063372 ], [ -47.370874317869024, -22.211933063175756 ], [ -47.370876571861473, -22.211909542629652 ], [ -47.370878702338679, -22.211890599775099 ], [ -47.370880890149216, -22.211868933574753 ], [ -47.370884060476101, -22.211845254678391 ], [ -47.370887168005567, -22.211822345594747 ], [ -47.37089068890576, -22.211801201331053 ], [ -47.370893392591704, -22.211783686223633 ], [ -47.370896011349146, -22.211767525289414 ], [ -47.370898234104793, -22.211752062754762 ], [ -47.370901169368963, -22.211732149550809 ], [ -47.370904970817605, -22.211707865022476 ], [ -47.370910283589495, -22.211679479095103 ], [ -47.37091479955901, -22.211659133777779 ], [ -47.370918306640476, -22.211641778551755 ], [ -47.370923750390538, -22.211616504329118 ], [ -47.370930795605979, -22.211588589012671 ], [ -47.370937334016517, -22.211565192981851 ], [ -47.370945329198989, -22.211538272574089 ], [ -47.370951010055784, -22.211521799167066 ], [ -47.371001340781604, -22.211351208257341 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 302.62310241900002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371835729249284, -22.213786103905182 ], [ -47.371824718779727, -22.213775686645373 ], [ -47.371784395951472, -22.213737756054002 ], [ -47.371742754670571, -22.213698910411942 ], [ -47.371702429737944, -22.213660955554769 ], [ -47.37166032928009, -22.213621980421447 ], [ -47.371618633300073, -22.213582275394405 ], [ -47.37157569000771, -22.213541983455293 ], [ -47.371532688967413, -22.213500017017608 ], [ -47.371491444899171, -22.213459660716957 ], [ -47.371450929027652, -22.213419448603361 ], [ -47.371409219073982, -22.213378152718239 ], [ -47.371363976617992, -22.213332145989551 ], [ -47.371319764346481, -22.21328382294563 ], [ -47.371278847328206, -22.213237731760746 ], [ -47.37123717854454, -22.213189007073627 ], [ -47.371193054447154, -22.21313427888424 ], [ -47.37115160198983, -22.21307699857141 ], [ -47.371113731749546, -22.213020578291022 ], [ -47.371075580698957, -22.212959443523395 ], [ -47.371038700568079, -22.212891121847889 ], [ -47.371008038795104, -22.212823200808259 ], [ -47.370981420147416, -22.212755142694622 ], [ -47.370958877868645, -22.21268578575177 ], [ -47.370941152954188, -22.212619764663845 ], [ -47.370926572874566, -22.212557167180073 ], [ -47.370914022623964, -22.212495362880102 ], [ -47.370902696387979, -22.212431093472382 ], [ -47.370893785509459, -22.212367543417454 ], [ -47.370886209947066, -22.212301888768479 ], [ -47.370881815109797, -22.212237808861008 ], [ -47.370880642274557, -22.212216524529829 ], [ -47.37087946266913, -22.21219340322283 ], [ -47.370878800294356, -22.212169341312567 ], [ -47.370878596389204, -22.212148385280603 ], [ -47.370878388320136, -22.212128447308793 ], [ -47.370878330157261, -22.212103304279122 ], [ -47.370879114711727, -22.212080558233264 ], [ -47.370879661773721, -22.212058957460346 ], [ -47.370880955887401, -22.21203537194749 ], [ -47.370882103855415, -22.212016688029163 ], [ -47.370883359303498, -22.211994999691672 ], [ -47.370885509660411, -22.211968989449844 ], [ -47.370887432370175, -22.211950875977717 ], [ -47.37088881115416, -22.211934184229676 ], [ -47.370891047319496, -22.211910849685346 ], [ -47.370893174194926, -22.211891938838015 ], [ -47.370895348602154, -22.211870405350506 ], [ -47.370898490236421, -22.21184694073861 ], [ -47.370901570610393, -22.211824231831237 ], [ -47.37090507243721, -22.211803202096903 ], [ -47.370907780334015, -22.211785659698744 ], [ -47.370910409607369, -22.211769433858152 ], [ -47.370912645244438, -22.211753881703054 ], [ -47.370915568959781, -22.211734046833854 ], [ -47.370919332499525, -22.211710004460439 ], [ -47.370924571516362, -22.211682012587886 ], [ -47.370929067691954, -22.211661756436591 ], [ -47.370932582680638, -22.21164436207183 ], [ -47.370937962330594, -22.211619385441026 ], [ -47.370944913306055, -22.211591843521223 ], [ -47.370951380315553, -22.211568702972261 ], [ -47.370959266701661, -22.211542148881314 ], [ -47.370964951320396, -22.211525664560455 ], [ -47.37101360866405, -22.211360745359688 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 304.949382641, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371877232321715, -22.213806060998511 ], [ -47.371875792057175, -22.213804702853889 ], [ -47.371835069397939, -22.213766174218819 ], [ -47.371794710469473, -22.21372820967105 ], [ -47.371753070693138, -22.213689365434675 ], [ -47.37171272622448, -22.21365139219175 ], [ -47.371670655784946, -22.213612444850479 ], [ -47.371628993877472, -22.213572772271238 ], [ -47.371586113476823, -22.213532539343113 ], [ -47.371543217718155, -22.213490675656434 ], [ -47.371502015759319, -22.213450360561211 ], [ -47.371461529149322, -22.2134101774922 ], [ -47.371419879487142, -22.213368941302576 ], [ -47.371374878256063, -22.21332317987676 ], [ -47.371330904835361, -22.213275117894987 ], [ -47.371290141311086, -22.213229199617764 ], [ -47.371248684491995, -22.213180722791826 ], [ -47.37120490761825, -22.213126425277306 ], [ -47.371163802092134, -22.213069624370984 ], [ -47.37112618840775, -22.213013586322297 ], [ -47.371088376625195, -22.21295299521941 ], [ -47.371051916145085, -22.212885450971825 ], [ -47.371021582715137, -22.212818257281217 ], [ -47.370995223018788, -22.212750861266084 ], [ -47.370972900443149, -22.21268218031485 ], [ -47.370955317157474, -22.212616686784173 ], [ -47.370940826606855, -22.212554473706678 ], [ -47.37092834515218, -22.212493008225589 ], [ -47.370917086084752, -22.2124291199944 ], [ -47.370908227560498, -22.212365943361849 ], [ -47.370900703306205, -22.212300733439037 ], [ -47.370896334308178, -22.212237030381335 ], [ -47.370895167546074, -22.212215856303434 ], [ -47.370893996784453, -22.212192908388776 ], [ -47.37089334156402, -22.212169106461658 ], [ -47.37089313874813, -22.212148262597665 ], [ -47.370892931121716, -22.212128366957913 ], [ -47.370892873611325, -22.21210350709633 ], [ -47.370893652156511, -22.212080935205655 ], [ -47.370894195969043, -22.212059462650348 ], [ -47.370895477624273, -22.212036104151352 ], [ -47.370896624426855, -22.21201743916977 ], [ -47.370897872170012, -22.211995883899121 ], [ -47.370899997591899, -22.211970175233649 ], [ -47.370901920346611, -22.2119520613204 ], [ -47.370903304439395, -22.211935305282282 ], [ -47.370905522777655, -22.211912156739725 ], [ -47.370907646051322, -22.211893277899623 ], [ -47.370909807055263, -22.211871877124953 ], [ -47.370912919996961, -22.211848626797508 ], [ -47.370915973215482, -22.21182611806643 ], [ -47.370919455968938, -22.211805202861445 ], [ -47.370922168076611, -22.211787633172552 ], [ -47.370924807865855, -22.211771342425589 ], [ -47.370927056384332, -22.211755700650031 ], [ -47.370929968550868, -22.211735944115599 ], [ -47.370933694181751, -22.211712143897085 ], [ -47.370938859443619, -22.211684546079361 ], [ -47.370943335825309, -22.211664379094092 ], [ -47.370946858721204, -22.211646945590608 ], [ -47.37095217427111, -22.211622266551618 ], [ -47.370959031006663, -22.211595098028496 ], [ -47.370965426615179, -22.211572212961403 ], [ -47.370973204204994, -22.211546025187268 ], [ -47.370978892585669, -22.211529529952589 ], [ -47.371025876548131, -22.211370282460955 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 307.297931495, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371918937221793, -22.213826115125247 ], [ -47.371886148931239, -22.213795196344769 ], [ -47.371845420014751, -22.213756661791709 ], [ -47.371805024986074, -22.213718663287548 ], [ -47.371763386714306, -22.213679820456861 ], [ -47.371723022709617, -22.213641828828198 ], [ -47.37168098228841, -22.213602909278968 ], [ -47.371639354453471, -22.213563269147517 ], [ -47.371596536944537, -22.213523095230386 ], [ -47.371553746467491, -22.213481334294688 ], [ -47.37151258661806, -22.213441060404897 ], [ -47.371472129269591, -22.213400906380471 ], [ -47.371430539898903, -22.213359729886328 ], [ -47.371385779892726, -22.213314213763354 ], [ -47.371342045322834, -22.213266412843694 ], [ -47.37130143529258, -22.213220667474104 ], [ -47.371260190438079, -22.213172438509314 ], [ -47.371216760787988, -22.213118571669611 ], [ -47.371176002193124, -22.213062250169735 ], [ -47.371138645064647, -22.213006594352727 ], [ -47.37110117255019, -22.212946546914516 ], [ -47.371065131720954, -22.212879780094774 ], [ -47.371035126634126, -22.212813313753109 ], [ -47.371009025889222, -22.212746579836445 ], [ -47.370986923016815, -22.212678574876783 ], [ -47.370969481360021, -22.212613608903315 ], [ -47.370955080338476, -22.212551780232083 ], [ -47.370942667679792, -22.212490653569848 ], [ -47.370931475780992, -22.212427146515161 ], [ -47.370922669611076, -22.212364343304984 ], [ -47.370915196664974, -22.212299578108325 ], [ -47.370910853506267, -22.212236251900386 ], [ -47.370909692817321, -22.212215188075756 ], [ -47.370908530899527, -22.212192413553435 ], [ -47.370907882833507, -22.212168871609467 ], [ -47.370907681106893, -22.212148139913435 ], [ -47.370907473923154, -22.212128286605733 ], [ -47.370907417065297, -22.212103709912228 ], [ -47.370908189601238, -22.212081312176743 ], [ -47.370908730164338, -22.212059967839032 ], [ -47.370909999361167, -22.212036836353914 ], [ -47.370911144998324, -22.212018190309053 ], [ -47.37091238503659, -22.211996768105251 ], [ -47.370914485523507, -22.211971361016136 ], [ -47.370916408323161, -22.211953246661775 ], [ -47.370917797724736, -22.211936426333573 ], [ -47.370919998235955, -22.21191346379279 ], [ -47.37092211790786, -22.211894616959921 ], [ -47.370924265508542, -22.211873348898074 ], [ -47.370927349757714, -22.211850312855095 ], [ -47.370930375820819, -22.211828004300301 ], [ -47.37093383950095, -22.21180720362468 ], [ -47.370936555819476, -22.211789606645052 ], [ -47.370939206124604, -22.211773250991712 ], [ -47.37094146752446, -22.211757519595704 ], [ -47.370944368142212, -22.211737841396026 ], [ -47.370948055864297, -22.21171428333243 ], [ -47.370953147371267, -22.211687079569543 ], [ -47.37095760395907, -22.21166700175031 ], [ -47.370961134762176, -22.211649529108069 ], [ -47.370966386212082, -22.211625147660929 ], [ -47.370973148707797, -22.21159835253448 ], [ -47.370979472915387, -22.211575722949259 ], [ -47.370987141708973, -22.211549901491974 ], [ -47.370992833851595, -22.211533395343452 ], [ -47.37103814443384, -22.211379819561149 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 309.69853874699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371961113420106, -22.213846395862003 ], [ -47.371937740188855, -22.213824573128168 ], [ -47.37189650580391, -22.213785689835117 ], [ -47.371855770630162, -22.213747149364064 ], [ -47.371815339501275, -22.213709116903505 ], [ -47.371773702734075, -22.213670275478506 ], [ -47.371733319193353, -22.213632265464113 ], [ -47.371691308790474, -22.213593373706896 ], [ -47.37164971502807, -22.213553766023256 ], [ -47.371606960410844, -22.213513651117101 ], [ -47.371564275215427, -22.213471992932384 ], [ -47.371523157475394, -22.213431760247989 ], [ -47.371482729388461, -22.21339163526816 ], [ -47.371441200309249, -22.213350518469493 ], [ -47.371396681527983, -22.213305247649323 ], [ -47.371353185808914, -22.213257707791755 ], [ -47.371312729272681, -22.213212135329776 ], [ -47.371271696382763, -22.213164154226114 ], [ -47.371228613956347, -22.21311071806117 ], [ -47.371188202292785, -22.213054875967678 ], [ -47.371151101720251, -22.212999602382308 ], [ -47.371113968473935, -22.212940098608708 ], [ -47.371078347295665, -22.212874109216745 ], [ -47.371048670552071, -22.212808370223961 ], [ -47.371022828758711, -22.212742298405701 ], [ -47.37100094558965, -22.212674969437568 ], [ -47.370983645561836, -22.21261053102128 ], [ -47.370969334069429, -22.212549086756283 ], [ -47.3709569902068, -22.212488298912881 ], [ -47.370945865476706, -22.212425173034699 ], [ -47.370937111661199, -22.212362743246874 ], [ -47.370929690023374, -22.212298422776339 ], [ -47.370925372704065, -22.212235473418144 ], [ -47.370924218088305, -22.212214519846793 ], [ -47.370923065014374, -22.212191918716801 ], [ -47.370922424102808, -22.212168636755965 ], [ -47.370922223465506, -22.212148017227914 ], [ -47.370922016724435, -22.212128206252249 ], [ -47.370921960519183, -22.212103912726814 ], [ -47.370922727045915, -22.212081689146515 ], [ -47.370923264359597, -22.212060473026412 ], [ -47.370924521098075, -22.212037568555157 ], [ -47.370925665569807, -22.212018941447038 ], [ -47.37092689790321, -22.211997652310085 ], [ -47.370928973455221, -22.211972546797305 ], [ -47.370930896299825, -22.211954432001843 ], [ -47.37093229101017, -22.211937547383545 ], [ -47.37093447369439, -22.211914770844547 ], [ -47.370936589764547, -22.211895956018907 ], [ -47.370938723961999, -22.211874820669887 ], [ -47.370941779518688, -22.211851998911381 ], [ -47.370944778426427, -22.211829890532854 ], [ -47.370948223033245, -22.211809204386604 ], [ -47.370950943562619, -22.21179158011623 ], [ -47.370953604383615, -22.21177515955652 ], [ -47.370955878664851, -22.211759338540055 ], [ -47.370958767733818, -22.211739738675142 ], [ -47.37096241754714, -22.211716422766454 ], [ -47.370967435299313, -22.211689613058418 ], [ -47.370971872093243, -22.211669624405211 ], [ -47.370975410803545, -22.21165211262425 ], [ -47.370980598153523, -22.211628028768931 ], [ -47.370987266409479, -22.211601607039189 ], [ -47.370993519216185, -22.211579232935829 ], [ -47.371001079213613, -22.211553777795395 ], [ -47.371006775118175, -22.211537260733056 ], [ -47.371050412321182, -22.211389356660245 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 312.07760134300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372003094502197, -22.2138665827583 ], [ -47.371989093382986, -22.213853343062965 ], [ -47.371948063201707, -22.213815034687933 ], [ -47.371906862675182, -22.213776183324914 ], [ -47.371866121244175, -22.213737636935868 ], [ -47.371825654015076, -22.21369957051893 ], [ -47.37178401875245, -22.213660730499605 ], [ -47.371743615675697, -22.213622702099482 ], [ -47.371701635291132, -22.213583838134305 ], [ -47.371660075601277, -22.213544262898445 ], [ -47.371617383875758, -22.213504207003254 ], [ -47.371574803961963, -22.213462651569504 ], [ -47.371533728331336, -22.213422460090523 ], [ -47.371493329505924, -22.213382364155265 ], [ -47.371451860718203, -22.213341307052072 ], [ -47.37140758316184, -22.213296281534674 ], [ -47.371364326293595, -22.213249002739172 ], [ -47.371324023251383, -22.213203603184763 ], [ -47.371283202326062, -22.213155869942199 ], [ -47.371240467123357, -22.213102864451972 ], [ -47.371200402391104, -22.213047501764819 ], [ -47.371163558374562, -22.212992610411025 ], [ -47.371126764396436, -22.212933650301991 ], [ -47.371091562869232, -22.212868438337736 ], [ -47.371062214468971, -22.212803426693768 ], [ -47.371036631627256, -22.212738016973866 ], [ -47.37101496816166, -22.212671363997195 ], [ -47.370997809762905, -22.212607453138052 ], [ -47.370983587799721, -22.212546393279268 ], [ -47.370971312733204, -22.212485944254709 ], [ -47.370960255171894, -22.21242319955299 ], [ -47.370951553710867, -22.212361143187522 ], [ -47.370944183381411, -22.212297267443081 ], [ -47.370939891901564, -22.212234694934619 ], [ -47.370938743359019, -22.21221385161655 ], [ -47.370937599128979, -22.212191423878888 ], [ -47.370936965371932, -22.21216840190117 ], [ -47.370936765823963, -22.212147894541083 ], [ -47.370936559525575, -22.212128125897468 ], [ -47.370936503972978, -22.212104115540097 ], [ -47.370937264490543, -22.212082066114998 ], [ -47.370937798554834, -22.212060978212481 ], [ -47.370939042835012, -22.21203830075509 ], [ -47.370940186141311, -22.212019692583706 ], [ -47.370941410769873, -22.211998536513601 ], [ -47.370943461387057, -22.211973732577178 ], [ -47.370945384276602, -22.211955617340578 ], [ -47.370946784295704, -22.211938668432225 ], [ -47.370948949152968, -22.211916077894998 ], [ -47.370951061621376, -22.211897295076572 ], [ -47.370953182415626, -22.21187629244039 ], [ -47.370956209279889, -22.211853684966346 ], [ -47.370959181032283, -22.211831776764114 ], [ -47.370962606565826, -22.211811205147207 ], [ -47.370965331306046, -22.211793553586109 ], [ -47.370968002642883, -22.211777068120039 ], [ -47.370970289805477, -22.211761157483114 ], [ -47.370973167325687, -22.211741635952951 ], [ -47.370976779230311, -22.211718562199195 ], [ -47.370981723227743, -22.211692146545989 ], [ -47.370986140227821, -22.211672247058825 ], [ -47.370989686845313, -22.211654696139114 ], [ -47.370994810095425, -22.211630909875652 ], [ -47.371001384111686, -22.211604861542604 ], [ -47.371007565517566, -22.211582742921145 ], [ -47.371015016718921, -22.211557654097557 ], [ -47.371020716385409, -22.211541126121393 ], [ -47.371062680210159, -22.211398893758279 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 314.385993885, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372044435218349, -22.213886461713219 ], [ -47.372039118891117, -22.213881347875024 ], [ -47.371999423560418, -22.213843811310689 ], [ -47.371958386213173, -22.213805496247158 ], [ -47.371917219545054, -22.213766676814153 ], [ -47.371876471856794, -22.213728124507128 ], [ -47.371835968527485, -22.2136900241338 ], [ -47.371794334769426, -22.213651185520167 ], [ -47.371753912156635, -22.213613138734303 ], [ -47.371711961790403, -22.213574302561167 ], [ -47.371670436173083, -22.213534759773072 ], [ -47.371627807339259, -22.21349476288886 ], [ -47.371585332707092, -22.213453310206045 ], [ -47.371544299185871, -22.213413159932479 ], [ -47.371503929621987, -22.213373093041795 ], [ -47.371462521125743, -22.213332095634083 ], [ -47.37141848479429, -22.213287315419407 ], [ -47.371375466776868, -22.213240297685914 ], [ -47.371335317228684, -22.213195071039085 ], [ -47.371294708267982, -22.213147585657584 ], [ -47.371252320288995, -22.213095010842007 ], [ -47.3712126024881, -22.213040127561143 ], [ -47.371176015027572, -22.212985618438903 ], [ -47.371139560317708, -22.212927201994361 ], [ -47.371104778441641, -22.212862767457732 ], [ -47.371075758384819, -22.212798483162526 ], [ -47.371050434494855, -22.212733735540912 ], [ -47.371028990732832, -22.212667758555686 ], [ -47.371011973963242, -22.212604375253651 ], [ -47.370997841529338, -22.212543699801067 ], [ -47.370985635259011, -22.212483589595301 ], [ -47.37097464486655, -22.212421226070052 ], [ -47.370965995760081, -22.212359543126901 ], [ -47.370958676739079, -22.212296112108554 ], [ -47.370954411098786, -22.212233916449811 ], [ -47.370953268629464, -22.212213183385021 ], [ -47.370952133243364, -22.212190929039661 ], [ -47.370951506640871, -22.212168167045078 ], [ -47.370951308182256, -22.212147771852948 ], [ -47.370951102326565, -22.212128045541384 ], [ -47.370951047426679, -22.212104318352083 ], [ -47.370951801935107, -22.21208244308216 ], [ -47.370952332750051, -22.212061483397243 ], [ -47.37095356457197, -22.212039032953719 ], [ -47.370954706712851, -22.212020443719069 ], [ -47.3709559236366, -22.211999420715795 ], [ -47.370957949318999, -22.211974918355722 ], [ -47.370959872253486, -22.211956802678017 ], [ -47.370961277581337, -22.211939789479576 ], [ -47.370963424611681, -22.211917384944115 ], [ -47.370965533478355, -22.211898634132925 ], [ -47.370967640869424, -22.211877764209575 ], [ -47.370970639041296, -22.211855371020004 ], [ -47.37097358363841, -22.211833662994056 ], [ -47.370976990098683, -22.211813205906502 ], [ -47.37097971904975, -22.211795527054669 ], [ -47.370982400902427, -22.211778976682226 ], [ -47.370984700946352, -22.211762976424851 ], [ -47.370987566917812, -22.211743533229452 ], [ -47.37099114091378, -22.2117207016306 ], [ -47.370996011156571, -22.211694680032267 ], [ -47.371000408362811, -22.211674869711128 ], [ -47.371003962887485, -22.211657279652691 ], [ -47.371009022037782, -22.211633790981075 ], [ -47.371015501814441, -22.211608116044737 ], [ -47.371021611819536, -22.211586252905171 ], [ -47.371028954224876, -22.211561530398459 ], [ -47.371034657653304, -22.211544991508458 ], [ -47.371074948100762, -22.211408430855215 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 316.59878282099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372084908132145, -22.213905923363388 ], [ -47.372049525092301, -22.213871888010733 ], [ -47.372009753736442, -22.213834279557858 ], [ -47.371968709223225, -22.213795957805829 ], [ -47.371927576413526, -22.213757170302845 ], [ -47.371886822468007, -22.213718612077834 ], [ -47.371846283038487, -22.213680477748127 ], [ -47.371804650785002, -22.213641640540182 ], [ -47.371764208636179, -22.21360357536858 ], [ -47.371722288288261, -22.213564766987474 ], [ -47.371680796743483, -22.213525256647163 ], [ -47.371638230801373, -22.213485318773898 ], [ -47.371595861450828, -22.213443968842025 ], [ -47.371554870038992, -22.213403859773852 ], [ -47.371514529736643, -22.213363821927739 ], [ -47.37147318153189, -22.213322884215479 ], [ -47.371429386425341, -22.213278349303526 ], [ -47.371386607258749, -22.21323159263202 ], [ -47.371346611204594, -22.213186538892742 ], [ -47.371306214208509, -22.213139301372266 ], [ -47.37126417345327, -22.213087157231296 ], [ -47.371224802583761, -22.213032753356647 ], [ -47.371188471679282, -22.212978626465926 ], [ -47.371152356237729, -22.212920753685832 ], [ -47.371117994012913, -22.212857096576748 ], [ -47.371089302299616, -22.212793539630233 ], [ -47.371064237361509, -22.212729454106871 ], [ -47.371043013303179, -22.212664153113021 ], [ -47.37102613816284, -22.212601297368064 ], [ -47.371012095258301, -22.212541006321654 ], [ -47.370999957784214, -22.212481234934685 ], [ -47.370989034560679, -22.21241925258586 ], [ -47.370980437808832, -22.212357943065015 ], [ -47.37097317009637, -22.212294956772752 ], [ -47.370968930295703, -22.212233137963732 ], [ -47.370967793899638, -22.212212515152196 ], [ -47.3709666673575, -22.212190434199155 ], [ -47.37096604790964, -22.21216793218769 ], [ -47.370965850540401, -22.21214764916353 ], [ -47.370965645127406, -22.212127965184006 ], [ -47.370965590880289, -22.212104521162757 ], [ -47.370966339379628, -22.212082820048014 ], [ -47.370966866945231, -22.212061988580704 ], [ -47.370968086308942, -22.212039765151037 ], [ -47.370969227284412, -22.212021194853111 ], [ -47.370970436503377, -22.212000304916682 ], [ -47.370972437251062, -22.211976104132948 ], [ -47.370974360230498, -22.211957988014142 ], [ -47.370975770867084, -22.211940910525616 ], [ -47.370977900070535, -22.211918691991936 ], [ -47.370980005335475, -22.211899973187968 ], [ -47.370982099323406, -22.211879235977452 ], [ -47.370985068802923, -22.211857057072343 ], [ -47.370987986244785, -22.211835549222677 ], [ -47.370991373631831, -22.2118152066645 ], [ -47.370994106793724, -22.211797500521925 ], [ -47.370996799162228, -22.211780885243112 ], [ -47.370999112087468, -22.21176479536528 ], [ -47.3710019665102, -22.211745430504642 ], [ -47.371005502597562, -22.211722841060716 ], [ -47.371010299085782, -22.211697213517233 ], [ -47.371014676498213, -22.211677492362142 ], [ -47.371018238930063, -22.211659863164961 ], [ -47.371023233980608, -22.211636672085209 ], [ -47.371029619517728, -22.211611370545583 ], [ -47.371035658122089, -22.211589762887932 ], [ -47.371042891731491, -22.211565406698085 ], [ -47.371048598921845, -22.211548856894268 ], [ -47.371087215993008, -22.211417967951075 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 318.71226794500001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372124477011077, -22.213924950287229 ], [ -47.372099177439011, -22.213900179461952 ], [ -47.372059931292071, -22.213862428145887 ], [ -47.372020083911075, -22.213824747804477 ], [ -47.371979032231884, -22.213786419363952 ], [ -47.371937933280599, -22.213747663791001 ], [ -47.371897173077819, -22.213709099648 ], [ -47.371856597548096, -22.213670931361925 ], [ -47.371814966799185, -22.213632095559664 ], [ -47.371774505114324, -22.213594012002325 ], [ -47.371732614784726, -22.213555231413252 ], [ -47.371691157312483, -22.213515753520721 ], [ -47.371648654262074, -22.213475874658396 ], [ -47.371606390193151, -22.213434627477444 ], [ -47.371565440890727, -22.213394559614663 ], [ -47.371525129849893, -22.213354550813115 ], [ -47.371483841936623, -22.213313672796303 ], [ -47.371440288054984, -22.213269383187011 ], [ -47.371397747739231, -22.213222887577466 ], [ -47.371357905179117, -22.213178006745718 ], [ -47.371317720147658, -22.213131017086248 ], [ -47.371276026616179, -22.213079303619832 ], [ -47.371237002678093, -22.213025379151357 ], [ -47.371200928329692, -22.212971634492099 ], [ -47.3711651521565, -22.212914305376387 ], [ -47.371131209583027, -22.212851425694776 ], [ -47.371102846213368, -22.212788596096885 ], [ -47.371078040227225, -22.212725172671725 ], [ -47.371057035872695, -22.212660547669216 ], [ -47.371040302361706, -22.212598219481304 ], [ -47.371026348986589, -22.212538312841044 ], [ -47.371014280308813, -22.212478880272847 ], [ -47.371003424254276, -22.212417279100453 ], [ -47.370994879857136, -22.212356343001886 ], [ -47.370987663453306, -22.212293801435685 ], [ -47.370983449492336, -22.212232359476364 ], [ -47.370982319169549, -22.212211846918095 ], [ -47.370981201471416, -22.212189939357366 ], [ -47.370980589178217, -22.212167697329015 ], [ -47.370980392898382, -22.212147526472801 ], [ -47.370980187928104, -22.212127884825343 ], [ -47.37098013433382, -22.212104723972121 ], [ -47.370980876824085, -22.212083197012557 ], [ -47.370981401140384, -22.212062493762851 ], [ -47.370982608045942, -22.212040497347036 ], [ -47.370983747855988, -22.212021945985853 ], [ -47.370984949370204, -22.212001189116261 ], [ -47.370986925183239, -22.21197728990888 ], [ -47.37098884820761, -22.211959173348944 ], [ -47.370990264152915, -22.211942031570338 ], [ -47.370992375529525, -22.211919999038443 ], [ -47.370994477192745, -22.211901312241697 ], [ -47.370996557777559, -22.211880707744019 ], [ -47.370999498564771, -22.211858743123376 ], [ -47.371002388851423, -22.211837435449997 ], [ -47.371005757165257, -22.211817207421181 ], [ -47.371008494537982, -22.211799473987874 ], [ -47.371011197422298, -22.211782793802683 ], [ -47.371013523228825, -22.211766614304388 ], [ -47.37101636610285, -22.211747327778514 ], [ -47.371019864281656, -22.211724980489521 ], [ -47.371024587015391, -22.21169974700091 ], [ -47.37102894463402, -22.211680115011845 ], [ -47.371032514973038, -22.21166244667593 ], [ -47.371037445923896, -22.211639553188039 ], [ -47.371043737221541, -22.211614625045154 ], [ -47.371049704425232, -22.211593272869408 ], [ -47.371056829238761, -22.211569282996464 ], [ -47.371062540191041, -22.211552722278807 ], [ -47.371099483886873, -22.211427505045865 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 320.68641851699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372162771879118, -22.213943364580906 ], [ -47.372147892217143, -22.213928226027296 ], [ -47.37210967158294, -22.2138908041902 ], [ -47.372070337490449, -22.213852968280495 ], [ -47.372030414084314, -22.213815216050563 ], [ -47.371989355239144, -22.213776880921547 ], [ -47.371948290146264, -22.213738157278605 ], [ -47.371907523686239, -22.213699587217612 ], [ -47.371866912056305, -22.213661384975168 ], [ -47.371825282811962, -22.213622550578584 ], [ -47.371784801591076, -22.213584448635537 ], [ -47.371742941279791, -22.213545695838469 ], [ -47.371701517880091, -22.213506250393717 ], [ -47.371659077721382, -22.213466430542333 ], [ -47.37161691893408, -22.21342528611228 ], [ -47.371576011741055, -22.213385259454896 ], [ -47.371535729961749, -22.213345279697897 ], [ -47.371494502339964, -22.213304461376541 ], [ -47.371451189683228, -22.21326041706989 ], [ -47.371408888218305, -22.213214182522272 ], [ -47.371369199152234, -22.213169474598018 ], [ -47.371329226085415, -22.213122732799512 ], [ -47.371287879777718, -22.213071450007604 ], [ -47.371249202771097, -22.213018004945251 ], [ -47.371213384978809, -22.212964642517424 ], [ -47.371177948074035, -22.212907857066028 ], [ -47.371144425151989, -22.212845754811827 ], [ -47.371116390126076, -22.212783652562507 ], [ -47.371091843091989, -22.212720891235485 ], [ -47.37107105844138, -22.212656942224246 ], [ -47.371054466559826, -22.212595141593358 ], [ -47.371040602714217, -22.21253561935923 ], [ -47.371028602832801, -22.21247652560978 ], [ -47.371017813947354, -22.212415305613789 ], [ -47.371009321904978, -22.212354742937499 ], [ -47.371002156809865, -22.212292646097346 ], [ -47.370997968688677, -22.212231580987702 ], [ -47.370996844439183, -22.212211178682701 ], [ -47.370995735585097, -22.212189444514273 ], [ -47.370995130446623, -22.212167462469029 ], [ -47.370994935256206, -22.212147403780783 ], [ -47.370994730728647, -22.212127804465357 ], [ -47.370994677787252, -22.212104926780196 ], [ -47.370995414268499, -22.212083573975811 ], [ -47.370995935335515, -22.212062998943683 ], [ -47.37099712978295, -22.212041229541725 ], [ -47.370998268427599, -22.212022697117281 ], [ -47.370999462237087, -22.212002073314522 ], [ -47.371001413115522, -22.211978475683484 ], [ -47.371003336184842, -22.21196035868244 ], [ -47.371004757438854, -22.211943152613749 ], [ -47.371006850988657, -22.211921306083628 ], [ -47.371008949050157, -22.211902651294107 ], [ -47.371011016231883, -22.211882179509264 ], [ -47.371013928326832, -22.2118604291731 ], [ -47.371016791458324, -22.211839321676013 ], [ -47.371020140698967, -22.211819208176561 ], [ -47.37102288228251, -22.211801447452505 ], [ -47.371025595682624, -22.211784702360944 ], [ -47.371027934370439, -22.211768433242202 ], [ -47.371030765695764, -22.211749225051086 ], [ -47.371034225966064, -22.211727119917015 ], [ -47.371038874945398, -22.211702280483266 ], [ -47.371043212770232, -22.211682737660254 ], [ -47.371046791016418, -22.2116650301856 ], [ -47.371051657867639, -22.211642434289573 ], [ -47.371057854925894, -22.211617879543432 ], [ -47.37106375072895, -22.211596782849597 ], [ -47.371070766746683, -22.211573159293575 ], [ -47.371076481460904, -22.211556587662091 ], [ -47.371111751782372, -22.211437042139558 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 674.896625051, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374636873551232, -22.216156222424857 ], [ -47.37462544945415, -22.216138727156391 ], [ -47.374596250237872, -22.216096731746891 ], [ -47.37456916543514, -22.216059063176292 ], [ -47.374539452941903, -22.216019942988428 ], [ -47.374509198589536, -22.215981852971311 ], [ -47.374475665452195, -22.215941792965189 ], [ -47.374443618514483, -22.215902396312213 ], [ -47.374415563272905, -22.215870454860077 ], [ -47.374385216317876, -22.215840143508917 ], [ -47.374350039246266, -22.215807895402726 ], [ -47.374315022386604, -22.215777076793056 ], [ -47.374280491823754, -22.215749630007352 ], [ -47.374241171739008, -22.21572123684161 ], [ -47.374199034256989, -22.215691812260484 ], [ -47.374156305907569, -22.215663157881743 ], [ -47.374112870447412, -22.215635282387037 ], [ -47.374065958564508, -22.215605821682939 ], [ -47.374019996665723, -22.215576642350644 ], [ -47.373972923009823, -22.215547832968291 ], [ -47.373926244781345, -22.215519030592116 ], [ -47.37387737175974, -22.215488985797037 ], [ -47.373828857620417, -22.215458123180287 ], [ -47.37378143432457, -22.215427896073926 ], [ -47.373734220426009, -22.215397521379092 ], [ -47.37368808423895, -22.215368049408493 ], [ -47.37363954863266, -22.215337380451558 ], [ -47.373590177479819, -22.215304923462483 ], [ -47.373540127381197, -22.21527143147453 ], [ -47.373491581842714, -22.215237495458048 ], [ -47.373443967649678, -22.215203661702677 ], [ -47.373395354480849, -22.21516802812085 ], [ -47.373346944750004, -22.215130922914003 ], [ -47.37329957644117, -22.21509276410805 ], [ -47.373255345376677, -22.215055905351342 ], [ -47.373211133734287, -22.215019134820679 ], [ -47.373164994611095, -22.214980426469207 ], [ -47.373120555281567, -22.214940634502334 ], [ -47.373077921021235, -22.214901984156292 ], [ -47.3730360643981, -22.2148630816299 ], [ -47.372990999742335, -22.214821104824345 ], [ -47.372948971996884, -22.214778127286355 ], [ -47.372910116257756, -22.214738659005672 ], [ -47.372868466607116, -22.214695721258344 ], [ -47.372830713524948, -22.214654600032063 ], [ -47.372793935575942, -22.214616285677881 ], [ -47.372752758000566, -22.214573093640528 ], [ -47.37271138150642, -22.214526719273252 ], [ -47.372674657433002, -22.214483696560144 ], [ -47.372638905954503, -22.214442566822168 ], [ -47.372602637424144, -22.214401089647389 ], [ -47.372566340441921, -22.214359925360228 ], [ -47.372528836181225, -22.214317922576186 ], [ -47.372491960117799, -22.214275683490136 ], [ -47.372455739069444, -22.214235124430179 ], [ -47.372417496418791, -22.21419213810421 ], [ -47.372383120620789, -22.214151952523078 ], [ -47.372350469662969, -22.214116992373409 ], [ -47.372312173254734, -22.214078194164408 ], [ -47.372271712268962, -22.214036033054651 ], [ -47.372233485010568, -22.213995858167216 ], [ -47.372195499167191, -22.21395660390424 ], [ -47.37215852660669, -22.213918988068631 ], [ -47.37212016572547, -22.213881428917883 ], [ -47.372080743687427, -22.213843508414559 ], [ -47.37204074425614, -22.213805684296105 ], [ -47.371999678245004, -22.213767342478594 ], [ -47.371958647010537, -22.213728650765667 ], [ -47.37191787429326, -22.213690074786687 ], [ -47.371877226563115, -22.213651838587879 ], [ -47.371835598823338, -22.213613005596976 ], [ -47.371795098066421, -22.213574885268198 ], [ -47.371753267773464, -22.213536160263157 ], [ -47.371711878446291, -22.213496747266163 ], [ -47.371669501179291, -22.213456986425708 ], [ -47.371627447673603, -22.213415944746554 ], [ -47.37158658258997, -22.213375959294531 ], [ -47.371546330072199, -22.213336008582122 ], [ -47.37150516274189, -22.213295249956204 ], [ -47.371462091310072, -22.213251450952153 ], [ -47.371420028695987, -22.213205477466417 ], [ -47.371380493123965, -22.213160942449651 ], [ -47.371340732021785, -22.213114448512091 ], [ -47.371299732937899, -22.213063596394633 ], [ -47.371261402862771, -22.213010630738335 ], [ -47.371225841626625, -22.212957650541888 ], [ -47.371190743990326, -22.212901408754774 ], [ -47.371157640719801, -22.212840083927883 ], [ -47.371129934037732, -22.21277870902707 ], [ -47.371105645955808, -22.212716609798136 ], [ -47.371085081009234, -22.212653336778143 ], [ -47.371068630757215, -22.212592063704239 ], [ -47.37105485644117, -22.212532925876204 ], [ -47.3710429253562, -22.212474170945494 ], [ -47.371032203639885, -22.212413332125891 ], [ -47.371023763952373, -22.212353142871859 ], [ -47.371016650166069, -22.212291490757725 ], [ -47.37101248788472, -22.212230802497768 ], [ -47.371011369708555, -22.212210510446031 ], [ -47.371010269698544, -22.212188949669894 ], [ -47.371009671714845, -22.21216722760775 ], [ -47.371009477613875, -22.212147281087454 ], [ -47.371009273529047, -22.212127724104079 ], [ -47.371009221240598, -22.212105129586963 ], [ -47.37100995171285, -22.212083950937743 ], [ -47.371010469530617, -22.212063504123201 ], [ -47.371011651519979, -22.21204196173511 ], [ -47.371012788999224, -22.212023448247404 ], [ -47.371013975104013, -22.212002957511483 ], [ -47.371015901047926, -22.21197966145678 ], [ -47.371017824162195, -22.211961544014628 ], [ -47.371019250724892, -22.21194427365587 ], [ -47.371021326447931, -22.211922613127506 ], [ -47.371023420907719, -22.211903990345217 ], [ -47.371025474686377, -22.211883651273197 ], [ -47.371028358089113, -22.2118621152215 ], [ -47.37103119406548, -22.211841207900704 ], [ -47.371034524232954, -22.211821208930626 ], [ -47.371037270027315, -22.211803420915828 ], [ -47.371039993943214, -22.211786610917898 ], [ -47.371042345512286, -22.211770252178695 ], [ -47.371045165288933, -22.211751122322344 ], [ -47.371048587650783, -22.211729259343191 ], [ -47.371053162875789, -22.211704813964335 ], [ -47.371057480906863, -22.21168536030736 ], [ -47.371061067060189, -22.211667613693962 ], [ -47.371065869811844, -22.211645315389823 ], [ -47.371071972630787, -22.211621134040435 ], [ -47.371077797033266, -22.211600292828518 ], [ -47.371084704255267, -22.211577035589414 ], [ -47.371090422731406, -22.211560453044097 ], [ -47.371124019679513, -22.211446579232174 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 673.69989570099995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374652868642649, -22.216154652164764 ], [ -47.374637769413674, -22.216131528672655 ], [ -47.374608397575649, -22.216089284996862 ], [ -47.37458114691696, -22.216051385763816 ], [ -47.374551237777588, -22.216012006670798 ], [ -47.37452078227026, -22.215973663404537 ], [ -47.374487198016531, -22.215933542336249 ], [ -47.37445504806454, -22.215894019046878 ], [ -47.374426522671506, -22.215861542320418 ], [ -47.374395641744897, -22.215830697626082 ], [ -47.374360137021441, -22.215798149151237 ], [ -47.374324744882053, -22.215767000256413 ], [ -47.37428967439579, -22.215739124311046 ], [ -47.374249991451535, -22.215710469124129 ], [ -47.374207647655766, -22.215680900475004 ], [ -47.374164683255096, -22.215652087796851 ], [ -47.374121063406882, -22.215624093968348 ], [ -47.374074121089556, -22.215594614151986 ], [ -47.374028087684387, -22.215565389423734 ], [ -47.373980933934, -22.21553653102356 ], [ -47.37393426816773, -22.215507736337585 ], [ -47.373885480897542, -22.215477744258919 ], [ -47.373837061871171, -22.215446942149523 ], [ -47.373789675447853, -22.215416738539318 ], [ -47.373742467720191, -22.21538636781511 ], [ -47.3736962813052, -22.215356863759308 ], [ -47.373647826684788, -22.215326245976815 ], [ -47.373598615374952, -22.215293894070495 ], [ -47.37354873784512, -22.215260517561092 ], [ -47.373500359288322, -22.215226698274929 ], [ -47.373452877534518, -22.21519295862937 ], [ -47.373404474949282, -22.21515747940699 ], [ -47.37335632533717, -22.215120573577856 ], [ -47.37330918420399, -22.215082597780807 ], [ -47.373265044133149, -22.215045814852722 ], [ -47.373220845364088, -22.215009055021763 ], [ -47.373174905050909, -22.214970513463399 ], [ -47.373130668356623, -22.214930902942555 ], [ -47.373088131154248, -22.214892340586989 ], [ -47.373046344309657, -22.214853502916476 ], [ -47.373001524913668, -22.214811754567751 ], [ -47.372959708975223, -22.214768993626095 ], [ -47.372920873063549, -22.214729545487973 ], [ -47.372879392266071, -22.214686781818774 ], [ -47.372841663772363, -22.214645687377498 ], [ -47.372804795351421, -22.214607278774523 ], [ -47.372763792270327, -22.214564269770936 ], [ -47.372722668619524, -22.214518178791472 ], [ -47.372686002456923, -22.214475223925071 ], [ -47.37265019712293, -22.214434032233154 ], [ -47.372613896427808, -22.214392518277595 ], [ -47.372577552100736, -22.214351300300009 ], [ -47.372540070491745, -22.214309322887903 ], [ -47.37250319405728, -22.214267083380147 ], [ -47.372466930022377, -22.214226476188479 ], [ -47.372428785099871, -22.214183599716318 ], [ -47.372394300664268, -22.214143287140143 ], [ -47.372361312547604, -22.214107965989072 ], [ -47.372322949800299, -22.214069100574324 ], [ -47.372282577188635, -22.214027031554846 ], [ -47.372244329998473, -22.21398683572286 ], [ -47.372206265624477, -22.213947500309573 ], [ -47.372169160994837, -22.21390975010938 ], [ -47.372130659866592, -22.213872053645012 ], [ -47.372091149882998, -22.213834048548055 ], [ -47.372051074426579, -22.2137961525411 ], [ -47.372010001249471, -22.213757804035094 ], [ -47.37196900387341, -22.213719144252163 ], [ -47.371928224898873, -22.213680562355197 ], [ -47.371887541068524, -22.213642292200042 ], [ -47.371845914833322, -22.213603460614824 ], [ -47.371805394540374, -22.213565321900333 ], [ -47.37176359426573, -22.213526624687304 ], [ -47.371722239011099, -22.213487244138062 ], [ -47.371679924635792, -22.21344754230854 ], [ -47.371637976411719, -22.21340660338026 ], [ -47.371597153437492, -22.213366659133616 ], [ -47.371556930181242, -22.213326737465756 ], [ -47.371515823142424, -22.213286038535259 ], [ -47.371472992935502, -22.213242484833799 ], [ -47.371431169172268, -22.213196772409919 ], [ -47.371391787094296, -22.213152410300605 ], [ -47.371352237956778, -22.213106164223959 ], [ -47.371311586096716, -22.213055742780899 ], [ -47.37127360295311, -22.213003256530612 ], [ -47.371238298273148, -22.212950658565511 ], [ -47.371203539905366, -22.212894960442597 ], [ -47.371170856286469, -22.212834413042955 ], [ -47.371143477948344, -22.212773765490589 ], [ -47.371119448818682, -22.212712328359693 ], [ -47.371099103576249, -22.212649731330892 ], [ -47.371082794953871, -22.21258898581392 ], [ -47.371069110167461, -22.212530232391984 ], [ -47.371057247878987, -22.21247181627999 ], [ -47.371046593331897, -22.212411358636743 ], [ -47.371038205999298, -22.21235154280496 ], [ -47.371031143521897, -22.212290335416842 ], [ -47.371027007080485, -22.212230024006537 ], [ -47.371025894977656, -22.212209842208061 ], [ -47.37102480381175, -22.212188454824226 ], [ -47.371024212982888, -22.212166992745175 ], [ -47.371024019971387, -22.212147158392831 ], [ -47.371023816329291, -22.212127643741493 ], [ -47.371023764693852, -22.212105332392412 ], [ -47.371024489157151, -22.212084327898364 ], [ -47.371025003725691, -22.212064009301422 ], [ -47.371026173257036, -22.212042693927181 ], [ -47.371027309570884, -22.212024199376209 ], [ -47.371028487970989, -22.212003841707123 ], [ -47.371030388980444, -22.211980847228762 ], [ -47.371032312139654, -22.21196272934549 ], [ -47.371033744011037, -22.211945394696652 ], [ -47.371035801907347, -22.211923920170065 ], [ -47.371037892765429, -22.211905329395005 ], [ -47.371039933141041, -22.211885123035824 ], [ -47.371042787851614, -22.211863801268599 ], [ -47.3710455966729, -22.211843094124092 ], [ -47.371048907767225, -22.211823209683384 ], [ -47.371051657772398, -22.211805394377844 ], [ -47.371054392204073, -22.21178851947354 ], [ -47.371056756654383, -22.211772071113877 ], [ -47.371059564882366, -22.211753019592287 ], [ -47.371062949335808, -22.211731398768087 ], [ -47.371067450806564, -22.211707347444097 ], [ -47.3710717490439, -22.211687982953169 ], [ -47.371075343104373, -22.21167019720103 ], [ -47.371080081756517, -22.211648196488763 ], [ -47.371086090336213, -22.211624388536134 ], [ -47.371091843338156, -22.21160380280616 ], [ -47.371098641764505, -22.211580911883988 ], [ -47.371104364002569, -22.211564318424852 ], [ -47.371136287578281, -22.211456116323699 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 672.50316635199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37466886373354, -22.216153081903137 ], [ -47.37465008937189, -22.216124330188084 ], [ -47.374620544912098, -22.216081838246033 ], [ -47.374593128397436, -22.216043708350579 ], [ -47.374563022611909, -22.216004070352433 ], [ -47.374532365949605, -22.215965473837038 ], [ -47.374498730579475, -22.21592529170659 ], [ -47.374466477613211, -22.21588564178084 ], [ -47.3744374820687, -22.215852629780134 ], [ -47.374406067170511, -22.21582125174271 ], [ -47.374370234795229, -22.215788402899239 ], [ -47.374334467376137, -22.215756923719308 ], [ -47.37429885696649, -22.215728618614321 ], [ -47.374258811162761, -22.215699701406269 ], [ -47.374216261053242, -22.215669988689168 ], [ -47.374173060601343, -22.215641017711615 ], [ -47.374129256365109, -22.215612905549339 ], [ -47.374082283613355, -22.215583406620716 ], [ -47.374036178701807, -22.215554136496532 ], [ -47.373988944856947, -22.215525229078548 ], [ -47.373942291552879, -22.215496442082749 ], [ -47.373893590034108, -22.215466502720492 ], [ -47.373845266120668, -22.215435761118446 ], [ -47.373797916569877, -22.215405581004401 ], [ -47.373750715013124, -22.215375214250798 ], [ -47.373704478370207, -22.215345678109806 ], [ -47.373656104735659, -22.215315111501745 ], [ -47.373607053268806, -22.215282864678191 ], [ -47.373557348307742, -22.215249603647301 ], [ -47.373509136732615, -22.215215901091447 ], [ -47.373461787418037, -22.215182255555675 ], [ -47.37341359541638, -22.215146930692718 ], [ -47.373365705922986, -22.21511022424129 ], [ -47.373318791965445, -22.215072431453102 ], [ -47.373274742888249, -22.21503572435363 ], [ -47.373230556992517, -22.21499897522239 ], [ -47.373184815489338, -22.214960600457104 ], [ -47.37314078143028, -22.214921171382262 ], [ -47.373098341285861, -22.214882697017149 ], [ -47.373056624219814, -22.214843924202519 ], [ -47.373012050083595, -22.214802404310589 ], [ -47.37297044595217, -22.214759859965238 ], [ -47.372931629867935, -22.214720431969678 ], [ -47.37289031792362, -22.214677842378578 ], [ -47.372852614018377, -22.214636774722305 ], [ -47.372815655125507, -22.21459827187055 ], [ -47.372774826538695, -22.214555445900711 ], [ -47.372733955731228, -22.214509638309 ], [ -47.372697347479452, -22.214466751289322 ], [ -47.372661488289957, -22.214425497643486 ], [ -47.372625155430079, -22.214383946907144 ], [ -47.372588763758159, -22.214342675239131 ], [ -47.372551304800865, -22.214300723198964 ], [ -47.37251442799537, -22.214258483269504 ], [ -47.372478120973916, -22.214217827946122 ], [ -47.372440073779551, -22.214175061327765 ], [ -47.372405480706355, -22.214134621756553 ], [ -47.372372155430824, -22.214098939604121 ], [ -47.372333726344458, -22.214060006983619 ], [ -47.372293442106894, -22.214018030054422 ], [ -47.372255174984971, -22.213977813277889 ], [ -47.372217032080357, -22.213938396714294 ], [ -47.372179795381577, -22.213900512149554 ], [ -47.372141154006314, -22.21386267837158 ], [ -47.372101556077176, -22.213824588680993 ], [ -47.372061404595613, -22.213786620785555 ], [ -47.372020324252532, -22.213748265591057 ], [ -47.371979360734883, -22.21370963773813 ], [ -47.371938575503094, -22.213671049923182 ], [ -47.371897855572541, -22.213632745811665 ], [ -47.371856230841907, -22.213593915632124 ], [ -47.371815691012934, -22.213555758531921 ], [ -47.371773920756603, -22.213517089110891 ], [ -47.3717325995745, -22.213477741009406 ], [ -47.371690348090894, -22.2134380981908 ], [ -47.371648505148436, -22.213397262013391 ], [ -47.371607724283606, -22.213357358972122 ], [ -47.371567530288885, -22.213317466348819 ], [ -47.371526483541544, -22.213276827113738 ], [ -47.371483894559532, -22.213233518714819 ], [ -47.371442309647144, -22.21318806735276 ], [ -47.371403081063235, -22.213143878150891 ], [ -47.37136374389037, -22.213097879935123 ], [ -47.371323439254169, -22.213047889166411 ], [ -47.37128580304212, -22.212995882322076 ], [ -47.371250754918364, -22.212943666588266 ], [ -47.371216335819177, -22.212888512129517 ], [ -47.371184071851992, -22.21282874215705 ], [ -47.371157021857918, -22.212768821953048 ], [ -47.371133251680618, -22.212708046920138 ], [ -47.371113126142447, -22.21264612588249 ], [ -47.371096959149789, -22.212585907922435 ], [ -47.371083363893085, -22.212527538906556 ], [ -47.371071570401185, -22.212469461613271 ], [ -47.371060983023376, -22.212409385146355 ], [ -47.371052648045776, -22.212349942736818 ], [ -47.371045636877355, -22.212289180074674 ], [ -47.371041526275953, -22.212229245514038 ], [ -47.371040420246487, -22.212209173968812 ], [ -47.371039337924728, -22.212187959977268 ], [ -47.371038754250748, -22.212166757881306 ], [ -47.371038562328742, -22.212147035696916 ], [ -47.371038359129393, -22.212127563377614 ], [ -47.371038308147014, -22.212105535196571 ], [ -47.371039026601395, -22.212084704857691 ], [ -47.371039537920737, -22.212064514478332 ], [ -47.371040694994115, -22.212043426117944 ], [ -47.371041830142559, -22.212024950503693 ], [ -47.371043000838029, -22.212004725901448 ], [ -47.371044876913075, -22.211982032999433 ], [ -47.371046800117227, -22.211963914675053 ], [ -47.371048237297281, -22.211946515736127 ], [ -47.371050277366898, -22.211925227211314 ], [ -47.371052364623274, -22.211906668443479 ], [ -47.371054391595884, -22.211886594797136 ], [ -47.371057217614336, -22.211865487314391 ], [ -47.371059999280568, -22.211844980346179 ], [ -47.371063291301788, -22.211825210434831 ], [ -47.371066045517757, -22.211807367838563 ], [ -47.371068790465195, -22.211790428027879 ], [ -47.371071167796721, -22.211773890047748 ], [ -47.371073964476061, -22.211754916860929 ], [ -47.371077311021153, -22.211733538191648 ], [ -47.371081738737743, -22.211709880922548 ], [ -47.371086017181341, -22.211690605597681 ], [ -47.371089619148954, -22.211672780706806 ], [ -47.371094293701638, -22.211651077586424 ], [ -47.371100208042179, -22.211627643030571 ], [ -47.371105889643644, -22.211607312782533 ], [ -47.371112579274403, -22.211584788177323 ], [ -47.371118305274386, -22.211568183804335 ], [ -47.371148555478683, -22.211465653414152 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 671.30643700099995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374684858823933, -22.216151511639961 ], [ -47.374662409328785, -22.216117131702688 ], [ -47.374632692247204, -22.216074391494416 ], [ -47.374605109876548, -22.216036030936554 ], [ -47.374574807444858, -22.215996134033315 ], [ -47.374543949627572, -22.215957284268825 ], [ -47.374510263141033, -22.215917041076221 ], [ -47.374477907160497, -22.215877264514127 ], [ -47.374448441464494, -22.215843717239228 ], [ -47.374416492594726, -22.215811805858781 ], [ -47.374380332567618, -22.215778656646719 ], [ -47.374344189868836, -22.215746847181734 ], [ -47.374308039535848, -22.215718112917191 ], [ -47.374267630872673, -22.215688933688039 ], [ -47.374224874449425, -22.21565907690298 ], [ -47.374181437946326, -22.215629947626059 ], [ -47.374137449322077, -22.215601717130017 ], [ -47.374090446135902, -22.215572199089145 ], [ -47.374044269717992, -22.215542883569025 ], [ -47.373996955778651, -22.21551392713322 ], [ -47.373950314936792, -22.215485147827607 ], [ -47.373901699169416, -22.215455261181763 ], [ -47.373853470368907, -22.21542458008706 ], [ -47.373806157690645, -22.215394423469164 ], [ -47.373758962304791, -22.215364060686177 ], [ -47.373712675433957, -22.215334492459981 ], [ -47.373664382785265, -22.215303977026359 ], [ -47.373615491161388, -22.215271835285527 ], [ -47.373565958769078, -22.215238689733148 ], [ -47.373517914175608, -22.215205103907582 ], [ -47.373470697300242, -22.215171552481607 ], [ -47.373422715882143, -22.215136381978052 ], [ -47.373375086507437, -22.215099874904283 ], [ -47.373328399725523, -22.215062265124946 ], [ -47.373284441641978, -22.215025633854076 ], [ -47.373240268619568, -22.21498889542254 ], [ -47.373194725926389, -22.214950687450326 ], [ -47.373150894502551, -22.214911439821471 ], [ -47.373108551416081, -22.214873053446787 ], [ -47.373066904128571, -22.214834345488022 ], [ -47.373022575252122, -22.214793054052855 ], [ -47.372981182927703, -22.214750726303787 ], [ -47.372942386670928, -22.214711318450771 ], [ -47.372901243579761, -22.214668902937767 ], [ -47.372863564262992, -22.214627862066489 ], [ -47.372826514898179, -22.214589264965969 ], [ -47.372785860805664, -22.214546622029843 ], [ -47.372745242841539, -22.214501097825877 ], [ -47.372708692500588, -22.214458278652874 ], [ -47.372672779455598, -22.214416963053125 ], [ -47.37263641443095, -22.214375375536026 ], [ -47.372599975414175, -22.214334050177584 ], [ -47.372562539108593, -22.214292123509352 ], [ -47.372525661932059, -22.214249883158189 ], [ -47.372489311924049, -22.214209179703115 ], [ -47.372451362457838, -22.214166522938534 ], [ -47.372416660747035, -22.214125956372307 ], [ -47.372382998312652, -22.214089913218555 ], [ -47.372344502887216, -22.214050913392331 ], [ -47.372304307023768, -22.214009028553388 ], [ -47.37226601997007, -22.213968790832297 ], [ -47.37222779853483, -22.213929293118415 ], [ -47.372190429766917, -22.213891274189141 ], [ -47.372151648144637, -22.213853303097576 ], [ -47.372111962269948, -22.21381512881339 ], [ -47.372071734763253, -22.213777089029467 ], [ -47.372030647254199, -22.213738727146463 ], [ -47.371989717594964, -22.213700131223547 ], [ -47.371948926105915, -22.213661537490609 ], [ -47.371908170075152, -22.213623199422742 ], [ -47.371866546849091, -22.213584370648885 ], [ -47.371825987484087, -22.213546195162969 ], [ -47.371784247246076, -22.213507553533937 ], [ -47.371742960136508, -22.21346823788021 ], [ -47.371700771544596, -22.213428654072512 ], [ -47.371659033883752, -22.213387920645957 ], [ -47.371618295128314, -22.213348058810048 ], [ -47.371578130395129, -22.213308195231281 ], [ -47.371537143939264, -22.213267615691617 ], [ -47.371494796182162, -22.213224552595221 ], [ -47.371453450120626, -22.213179362294952 ], [ -47.371414375030774, -22.213135346000499 ], [ -47.371375249822584, -22.213089595645584 ], [ -47.371335292410258, -22.213040035551167 ], [ -47.371298003129795, -22.21298850811273 ], [ -47.371263211562294, -22.212936674610177 ], [ -47.371229131731738, -22.212882063815528 ], [ -47.371197287416358, -22.212823071270151 ], [ -47.371170565766434, -22.212763878414474 ], [ -47.371147054541616, -22.212703765479493 ], [ -47.371127148707806, -22.212642520432933 ], [ -47.37111112334496, -22.212582830029763 ], [ -47.371097617618048, -22.212524845419928 ], [ -47.371085892922771, -22.212467106945326 ], [ -47.37107537271433, -22.212407411654745 ], [ -47.371067090091792, -22.212348342667411 ], [ -47.371060130232451, -22.212288024731247 ], [ -47.371056045471128, -22.212228467020246 ], [ -47.371054945515048, -22.212208505728277 ], [ -47.371053872037471, -22.212187465129016 ], [ -47.371053295518429, -22.21216652301614 ], [ -47.371053104685934, -22.212146912999696 ], [ -47.371052901929339, -22.212127483012434 ], [ -47.371052851600091, -22.212105737999408 ], [ -47.371053564045589, -22.212085081815708 ], [ -47.371054072115754, -22.212065019653931 ], [ -47.371055216731207, -22.212044158307386 ], [ -47.371056350714262, -22.212025701629884 ], [ -47.371057513705111, -22.212005610094465 ], [ -47.37105936484582, -22.21198321876879 ], [ -47.371061288094914, -22.211965100003294 ], [ -47.371062730583617, -22.211947636774287 ], [ -47.371064752826584, -22.211926534251255 ], [ -47.371066836481276, -22.211908007490639 ], [ -47.371068850050904, -22.211888066557137 ], [ -47.371071647377264, -22.211867173358858 ], [ -47.371074401888507, -22.211846866566944 ], [ -47.37107767483662, -22.211827211184975 ], [ -47.371080433263394, -22.211809341297961 ], [ -47.37108318872658, -22.211792336580896 ], [ -47.371085578939315, -22.211775708980309 ], [ -47.371088364070019, -22.211756814128258 ], [ -47.371091672706797, -22.211735677613909 ], [ -47.371096026669299, -22.21171241439972 ], [ -47.371100285319201, -22.21169322824089 ], [ -47.371103895193933, -22.211675364211267 ], [ -47.371108505647236, -22.211653958682778 ], [ -47.371114325748678, -22.211630897523712 ], [ -47.371119935949707, -22.211610822757628 ], [ -47.371126516784955, -22.211588664469364 ], [ -47.371132246546857, -22.21157204918255 ], [ -47.37116082338072, -22.211475190503521 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 670.10734095700002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37470079611272, -22.216149947049669 ], [ -47.374700458800056, -22.216149336284641 ], [ -47.374674729284365, -22.216109933216458 ], [ -47.374644839580981, -22.216066944741982 ], [ -47.374617091354317, -22.21602835352175 ], [ -47.374586592276444, -22.215988197713454 ], [ -47.374555533304154, -22.215949094699894 ], [ -47.374521795701213, -22.215908790445141 ], [ -47.374489336706382, -22.21586888724671 ], [ -47.374459400858875, -22.215834804697689 ], [ -47.374426918017541, -22.21580235997429 ], [ -47.374390430338615, -22.215768910393685 ], [ -47.374353912360164, -22.215736770643694 ], [ -47.374317222103869, -22.215707607219645 ], [ -47.374276450581263, -22.215678165969432 ], [ -47.374233487844315, -22.215648165116448 ], [ -47.37418981529003, -22.215618877540162 ], [ -47.374145642277789, -22.215590528710397 ], [ -47.374098608657206, -22.215560991557258 ], [ -47.374052360732932, -22.215531630641202 ], [ -47.374004966699133, -22.215502625187611 ], [ -47.373958338319468, -22.215473853572174 ], [ -47.373909808303495, -22.21544401964271 ], [ -47.373861674615902, -22.215413399055361 ], [ -47.373814398810154, -22.215383265933607 ], [ -47.373767209595201, -22.215352907121233 ], [ -47.373720872496456, -22.215323306809847 ], [ -47.373672660833613, -22.21529284255066 ], [ -47.373623929052684, -22.215260805892548 ], [ -47.37357456922912, -22.215227775818654 ], [ -47.373526691617286, -22.215194306723358 ], [ -47.373479607181118, -22.215160849407148 ], [ -47.373431836346562, -22.215125833262977 ], [ -47.373384467090531, -22.215089525566849 ], [ -47.373338007484236, -22.215052098796331 ], [ -47.373294140394322, -22.215015543354049 ], [ -47.373249980245248, -22.214978815622231 ], [ -47.373204636362047, -22.214940774443047 ], [ -47.373161007573422, -22.21490170826014 ], [ -47.373118761544909, -22.2148634098759 ], [ -47.373077184035935, -22.214824766772981 ], [ -47.373033100419249, -22.214783703794563 ], [ -47.372991919901843, -22.214741592641737 ], [ -47.3729531434725, -22.214702204931289 ], [ -47.372912169234503, -22.214659963496327 ], [ -47.372874514506201, -22.214618949410042 ], [ -47.372837374669452, -22.214580258060767 ], [ -47.372796895071218, -22.214537798158332 ], [ -47.37275652995045, -22.214492557342069 ], [ -47.372720037520331, -22.214449806015772 ], [ -47.372684070619833, -22.214408428462104 ], [ -47.372647673430436, -22.214366804164239 ], [ -47.372611187068799, -22.21432542511538 ], [ -47.372573773414921, -22.214283523819084 ], [ -47.372536895867356, -22.21424128304621 ], [ -47.372500502872789, -22.214200531459444 ], [ -47.372462651134725, -22.214157984548631 ], [ -47.372427840786315, -22.214117290987396 ], [ -47.372393841193073, -22.214080886832395 ], [ -47.372355279428561, -22.214041819800428 ], [ -47.372315171939221, -22.214000027051732 ], [ -47.372276864953754, -22.213959768386101 ], [ -47.372238564987903, -22.213920189521939 ], [ -47.37220106415085, -22.213882036228153 ], [ -47.37216214228156, -22.213843927823 ], [ -47.372122368461326, -22.213805668945231 ], [ -47.372082064929494, -22.213767557272824 ], [ -47.372040970254467, -22.213729188701336 ], [ -47.372000074453638, -22.213690624708406 ], [ -47.371959276707337, -22.213652025057495 ], [ -47.371918484576376, -22.213613653033278 ], [ -47.371876862854876, -22.213574825665109 ], [ -47.371836283953847, -22.213536631793474 ], [ -47.371794573734149, -22.213498017956454 ], [ -47.37175332069711, -22.213458734750464 ], [ -47.371711194996898, -22.21341920995367 ], [ -47.371669562617669, -22.213378579277951 ], [ -47.371628865971623, -22.213338758647406 ], [ -47.371588730499958, -22.213298924113182 ], [ -47.371547804335577, -22.213258404268927 ], [ -47.371505697803379, -22.213215586475012 ], [ -47.371464590592716, -22.2131706572365 ], [ -47.37142566899692, -22.213126813849431 ], [ -47.37138675575342, -22.213081311355342 ], [ -47.371347145564982, -22.213032181935159 ], [ -47.371310203216147, -22.212981133902574 ], [ -47.371275668204923, -22.212929682631241 ], [ -47.371241927643055, -22.212875615500629 ], [ -47.371210502979579, -22.212817400382271 ], [ -47.371184109673898, -22.212758934874838 ], [ -47.371160857401655, -22.212699484037746 ], [ -47.371141171272335, -22.212638914982239 ], [ -47.3711252875394, -22.21257975213592 ], [ -47.371111871342336, -22.212522151932088 ], [ -47.371100215443754, -22.212464752276148 ], [ -47.371089762404758, -22.212405438161881 ], [ -47.371081532137353, -22.212346742596754 ], [ -47.371074623587184, -22.212286869386549 ], [ -47.371070564666006, -22.212227688525182 ], [ -47.37106947078334, -22.212207837486456 ], [ -47.371068406149988, -22.212186970279475 ], [ -47.371067836785926, -22.212166288149675 ], [ -47.371067647042977, -22.212146790301169 ], [ -47.371067444729142, -22.212127402645951 ], [ -47.371067395053075, -22.212105940800942 ], [ -47.371068101489726, -22.21208545877241 ], [ -47.371068606310743, -22.212065524828223 ], [ -47.371069738468321, -22.21204489049553 ], [ -47.371070871285987, -22.212026452754749 ], [ -47.371072026572243, -22.212006494286179 ], [ -47.371073852778686, -22.211984404536842 ], [ -47.371075776072715, -22.21196628533022 ], [ -47.37107722387006, -22.211948757811136 ], [ -47.371079228286412, -22.211927841289885 ], [ -47.371081308339427, -22.211909346536498 ], [ -47.371083308506087, -22.211889538315816 ], [ -47.371086077140419, -22.211868859402021 ], [ -47.371088804496694, -22.211848752786395 ], [ -47.371092058371737, -22.211829211933797 ], [ -47.371094821009315, -22.211811314756044 ], [ -47.37109758698822, -22.211794245132612 ], [ -47.371099990082143, -22.211777527911568 ], [ -47.371102763664233, -22.211758711394278 ], [ -47.37110603439276, -22.211737817034862 ], [ -47.37111031460126, -22.211714947875567 ], [ -47.37111455345746, -22.211695850882798 ], [ -47.371118171239317, -22.211677947714435 ], [ -47.371122717593281, -22.211656839777852 ], [ -47.371128443455703, -22.211634152015566 ], [ -47.371133982256367, -22.21161433273144 ], [ -47.371140454296167, -22.211592540760154 ], [ -47.371146187819988, -22.211575914559504 ], [ -47.371173091284376, -22.211484727591806 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 668.89085183999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374716308614985, -22.216148424159858 ], [ -47.374713155044383, -22.216142714056122 ], [ -47.374687049238624, -22.216102734729393 ], [ -47.374656986913408, -22.216059497988756 ], [ -47.374629072830729, -22.216020676106183 ], [ -47.374598377106658, -22.215980261392851 ], [ -47.37456711697935, -22.21594090513026 ], [ -47.374533328260007, -22.215900539813354 ], [ -47.374500766250883, -22.215860509978601 ], [ -47.374470360251863, -22.215825892155532 ], [ -47.374437343438949, -22.215792914089242 ], [ -47.374400528108225, -22.215759164140128 ], [ -47.374363634850106, -22.215726694105179 ], [ -47.374326404670541, -22.215697101521698 ], [ -47.374285270288546, -22.215667398250471 ], [ -47.374242101237911, -22.215637253329554 ], [ -47.37419819263247, -22.215607807453949 ], [ -47.374153835232256, -22.215579340290454 ], [ -47.374106771177253, -22.215549784025054 ], [ -47.374060451746629, -22.215520377713084 ], [ -47.374012977618371, -22.2154913232417 ], [ -47.373966361700916, -22.215462559316446 ], [ -47.373917917436316, -22.215432778103374 ], [ -47.37386987886164, -22.215402218023343 ], [ -47.373822639928406, -22.215372108397741 ], [ -47.37377545688436, -22.215341753555979 ], [ -47.373729069557697, -22.215312121159414 ], [ -47.373680938880689, -22.215281708074635 ], [ -47.373632366942708, -22.215249776499213 ], [ -47.37358317968787, -22.215216861903802 ], [ -47.373535469057657, -22.215183509538768 ], [ -47.373488517060672, -22.21515014633232 ], [ -47.373440956809645, -22.215115284547505 ], [ -47.373393847672276, -22.215079176228976 ], [ -47.373347615241585, -22.215041932467251 ], [ -47.373303839145294, -22.21500545285355 ], [ -47.373259691869549, -22.214968735821447 ], [ -47.373214546796326, -22.214930861435271 ], [ -47.373171120642901, -22.214891976698301 ], [ -47.373128971672337, -22.214853766304472 ], [ -47.373087463941907, -22.214815188057404 ], [ -47.37304362558497, -22.214774353535692 ], [ -47.373002656874569, -22.214732458979075 ], [ -47.372963900272687, -22.214693091411192 ], [ -47.372923094887838, -22.214651024054273 ], [ -47.372885464748009, -22.214610036752973 ], [ -47.372848234439324, -22.214571251154965 ], [ -47.37280792933538, -22.214528974286196 ], [ -47.372767817057969, -22.214484016857579 ], [ -47.372731382538682, -22.214441333377966 ], [ -47.372695361782682, -22.2143998938704 ], [ -47.372658932428514, -22.214358232791781 ], [ -47.372622398722022, -22.214316800052512 ], [ -47.372585007719856, -22.214274924128159 ], [ -47.372548129801253, -22.21423268293357 ], [ -47.37251169382013, -22.214191883215101 ], [ -47.37247393981022, -22.214149446158064 ], [ -47.372439020824203, -22.214108625601849 ], [ -47.372404684072087, -22.214071860445603 ], [ -47.372366055968513, -22.214032726207925 ], [ -47.372326036853273, -22.213991025549468 ], [ -47.372287709936046, -22.213950745939282 ], [ -47.372249331439562, -22.213911085924867 ], [ -47.372211698533384, -22.213872798266575 ], [ -47.372172636417076, -22.213834552547862 ], [ -47.372132774651291, -22.213796209076513 ], [ -47.372092395094327, -22.213758025515645 ], [ -47.372051293253335, -22.213719650255669 ], [ -47.372010431310912, -22.213681118192728 ], [ -47.371969627307358, -22.213642512623839 ], [ -47.371928799076194, -22.213604106643288 ], [ -47.371887178859268, -22.21356528068079 ], [ -47.371846580422208, -22.213527068423438 ], [ -47.371804900220823, -22.213488482378409 ], [ -47.371763681256319, -22.213449231620174 ], [ -47.3717216184478, -22.213409765834264 ], [ -47.371680091350179, -22.213369237909369 ], [ -47.371639436813538, -22.213329458484189 ], [ -47.371599330603388, -22.213289652994508 ], [ -47.371558464730498, -22.213249192845652 ], [ -47.371516599423202, -22.213206620354168 ], [ -47.371475731063391, -22.213161952177394 ], [ -47.371436962961674, -22.2131182816977 ], [ -47.371398261682856, -22.213073027064389 ], [ -47.371358998718343, -22.213024328318404 ], [ -47.371322403301171, -22.212973759691614 ], [ -47.371288124846252, -22.212922690651446 ], [ -47.371254723553129, -22.212869167184817 ], [ -47.371223718541643, -22.21281172949341 ], [ -47.371197653580332, -22.212753991334171 ], [ -47.371174660260756, -22.212695202594894 ], [ -47.371155193836032, -22.212635309530395 ], [ -47.371139451733107, -22.212576674240886 ], [ -47.371126125065963, -22.212519458443055 ], [ -47.371114537964132, -22.212462397605766 ], [ -47.371104152094645, -22.212403464667791 ], [ -47.371095974182467, -22.212345142524839 ], [ -47.37108911694154, -22.212285714040572 ], [ -47.371085083860599, -22.212226910028825 ], [ -47.371083996051361, -22.212207169243346 ], [ -47.371082940262262, -22.212186475428641 ], [ -47.371082378053252, -22.212166053281909 ], [ -47.371082189399864, -22.212146667601356 ], [ -47.371081987528797, -22.212127322278175 ], [ -47.371081938505966, -22.212106143601186 ], [ -47.371082638933814, -22.212085835727816 ], [ -47.371083140505718, -22.212066030001207 ], [ -47.37108426020545, -22.212045622682353 ], [ -47.371085391857733, -22.212027203878318 ], [ -47.371086539439432, -22.212007378476564 ], [ -47.371088340711651, -22.211985590303573 ], [ -47.371090264050629, -22.211967470655839 ], [ -47.371091717156609, -22.211949878846688 ], [ -47.371093703746382, -22.211929148327187 ], [ -47.371095780197713, -22.211910685581035 ], [ -47.371097766961455, -22.211891010073188 ], [ -47.371100506903787, -22.211870545443869 ], [ -47.371103207105151, -22.211850639004549 ], [ -47.371106441907138, -22.211831212681318 ], [ -47.371109208755506, -22.211813288212831 ], [ -47.371111985250131, -22.211796153683018 ], [ -47.371114401225228, -22.211779346841503 ], [ -47.37111716325871, -22.211760608658988 ], [ -47.371120396079029, -22.211739956454519 ], [ -47.371124602533598, -22.211717481350121 ], [ -47.37112882159613, -22.211698473523402 ], [ -47.371132447285106, -22.211680531216288 ], [ -47.371136929539794, -22.211659720871616 ], [ -47.371142561163275, -22.211637406506128 ], [ -47.371148028563596, -22.211617842703973 ], [ -47.371154391808027, -22.211596417049666 ], [ -47.371160129093766, -22.211579779935203 ], [ -47.371185359189674, -22.211494264679018 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 667.67436272400005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374731821116768, -22.216146901268605 ], [ -47.374725851287451, -22.216136091826726 ], [ -47.374699369191575, -22.216095536241507 ], [ -47.374669134244506, -22.216052051234733 ], [ -47.374641054305783, -22.21601299868983 ], [ -47.3746101619355, -22.215972325071501 ], [ -47.374578700653167, -22.215932715559905 ], [ -47.374544860817416, -22.215892289180868 ], [ -47.374512195793997, -22.215852132709799 ], [ -47.374481319643444, -22.215816979612743 ], [ -47.374447768858964, -22.215783468203643 ], [ -47.374410625876436, -22.215749417886062 ], [ -47.374373357338676, -22.215716617566187 ], [ -47.374335587235869, -22.215686595823328 ], [ -47.374294089994514, -22.215656630531104 ], [ -47.374250714630207, -22.215626341542304 ], [ -47.37420656997363, -22.215596737367395 ], [ -47.374162028185467, -22.215568151870201 ], [ -47.374114933696049, -22.215538576492552 ], [ -47.374068542759083, -22.215509124784671 ], [ -47.37402098853638, -22.215480021295484 ], [ -47.373974385081127, -22.215451265060409 ], [ -47.373926026567901, -22.215421536563724 ], [ -47.373878083106121, -22.215391036991015 ], [ -47.3738308810454, -22.215360950861555 ], [ -47.373783704172254, -22.215330599990395 ], [ -47.373737266617688, -22.215300935508647 ], [ -47.373689216926515, -22.215270573598286 ], [ -47.373640804831453, -22.215238747105566 ], [ -47.373591790145312, -22.215205947988593 ], [ -47.373544246496721, -22.215172712353798 ], [ -47.373497426938911, -22.215139443257097 ], [ -47.373450077271393, -22.215104735831616 ], [ -47.373403228252663, -22.215068826890676 ], [ -47.373357222997555, -22.215031766137717 ], [ -47.373313537894902, -22.214995362352589 ], [ -47.373269403492472, -22.214958656020183 ], [ -47.37322445722922, -22.214920948427004 ], [ -47.373181233710987, -22.214882245135939 ], [ -47.373139181798372, -22.214844122732529 ], [ -47.373097743846465, -22.214805609341287 ], [ -47.373054150749283, -22.214765003276256 ], [ -47.373013393845895, -22.214723325315838 ], [ -47.372974657071452, -22.214683977890495 ], [ -47.37293402053978, -22.214642084611597 ], [ -47.372896414988404, -22.214601124095282 ], [ -47.372859094207797, -22.214562244248551 ], [ -47.372818963598135, -22.214520150413417 ], [ -47.372779104164096, -22.214475476372431 ], [ -47.372742727555647, -22.214432860739496 ], [ -47.372706652944132, -22.214391359278029 ], [ -47.3726701914252, -22.214349661418652 ], [ -47.372633610373853, -22.214308174988986 ], [ -47.372596242023391, -22.214266324436547 ], [ -47.37255936373375, -22.21422408282027 ], [ -47.372522884766077, -22.214183234970118 ], [ -47.372485228484322, -22.214140907766808 ], [ -47.37245020086069, -22.214099960215631 ], [ -47.372415526949702, -22.214062834058215 ], [ -47.372376832507051, -22.214023632614822 ], [ -47.372336901765934, -22.213982024046594 ], [ -47.372298554916938, -22.213941723491875 ], [ -47.372260097889829, -22.21390198232719 ], [ -47.372222332914511, -22.213863560304411 ], [ -47.372183130551193, -22.213825177272163 ], [ -47.372143180839871, -22.213786749207248 ], [ -47.372102725257761, -22.213748493757926 ], [ -47.372061616250811, -22.213710111809458 ], [ -47.372020788166786, -22.213671611676496 ], [ -47.37197997790598, -22.213633000189621 ], [ -47.371939113574612, -22.213594560252726 ], [ -47.371897494862253, -22.21355573569593 ], [ -47.371856876889169, -22.213517505052867 ], [ -47.371815226706104, -22.213478946799832 ], [ -47.371774041814128, -22.21343972848933 ], [ -47.371732041897296, -22.213400321714314 ], [ -47.371690620081289, -22.213359896540233 ], [ -47.37165000765404, -22.213320158320386 ], [ -47.371609930705425, -22.213280381875254 ], [ -47.371569125124005, -22.213239981421783 ], [ -47.371527501041619, -22.213197654232708 ], [ -47.371486871532674, -22.213153247117624 ], [ -47.371448256925035, -22.213109749545289 ], [ -47.371409767610913, -22.213064742772744 ], [ -47.371370851870331, -22.213016474700897 ], [ -47.371334603384852, -22.212966385479845 ], [ -47.371300581486281, -22.212915698670809 ], [ -47.371267519461959, -22.212862718868102 ], [ -47.371236934102569, -22.212806058603558 ], [ -47.371211197485707, -22.212749047792435 ], [ -47.371188463118912, -22.212690921150948 ], [ -47.371169216398897, -22.212631704077392 ], [ -47.371153615926076, -22.212573596344676 ], [ -47.371140378788922, -22.212516764952824 ], [ -47.371128860483907, -22.212460042934158 ], [ -47.371118541784014, -22.212401491172454 ], [ -47.371110416227118, -22.212343542451656 ], [ -47.371103610295528, -22.21228455869333 ], [ -47.371099603054901, -22.212226131531196 ], [ -47.371098521319119, -22.212206500998953 ], [ -47.371097474374302, -22.212185980576521 ], [ -47.371096919320394, -22.212165818412853 ], [ -47.371096731756587, -22.212146544900243 ], [ -47.371096530328309, -22.212127241909101 ], [ -47.37109648195878, -22.212106346400109 ], [ -47.371097176377845, -22.212086212681903 ], [ -47.371097674700657, -22.212066535172884 ], [ -47.371098781942607, -22.212046354867869 ], [ -47.371099912429514, -22.212027955000568 ], [ -47.37110105230667, -22.212008262665652 ], [ -47.371102828644744, -22.211986776068986 ], [ -47.371104752028664, -22.21196865598014 ], [ -47.371106210443251, -22.211950999880909 ], [ -47.371108179206487, -22.211930455363191 ], [ -47.371110252056148, -22.211912024624262 ], [ -47.371112225416994, -22.211892481829253 ], [ -47.371114936667368, -22.211872231484406 ], [ -47.371117609713863, -22.211852525221381 ], [ -47.37112082544283, -22.211833213427528 ], [ -47.371123596501974, -22.211815261668292 ], [ -47.371126383512312, -22.211798062232109 ], [ -47.371128812368539, -22.211781165770134 ], [ -47.371131562853456, -22.211762505922383 ], [ -47.37113475776561, -22.21174209587285 ], [ -47.371138890466341, -22.211720014823378 ], [ -47.37114308973522, -22.211701096162713 ], [ -47.371146723331286, -22.211683114716863 ], [ -47.37115114148677, -22.2116626019641 ], [ -47.37115667887138, -22.211640660995428 ], [ -47.371162074871428, -22.211621352675245 ], [ -47.371168329320554, -22.211600293337934 ], [ -47.371174070368198, -22.211583645309624 ], [ -47.371197627096599, -22.21150380176514 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 666.45375322999996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374747333618068, -22.216145378375899 ], [ -47.374738547529248, -22.216129469596428 ], [ -47.374711689143204, -22.216088337752787 ], [ -47.374681281574269, -22.21604460447989 ], [ -47.374653035779495, -22.216005321272707 ], [ -47.374621946762979, -22.215964388749398 ], [ -47.374590284325599, -22.215924525988832 ], [ -47.374556393373439, -22.215884038547671 ], [ -47.374523625335705, -22.215843755440311 ], [ -47.374492279033618, -22.215808067069318 ], [ -47.374458194277572, -22.215774022317483 ], [ -47.374420723643254, -22.215739671631486 ], [ -47.374383079825868, -22.21570654102673 ], [ -47.374344769799862, -22.215676090124546 ], [ -47.374302909699168, -22.215645862811385 ], [ -47.374259328021218, -22.215615429754703 ], [ -47.374214947313526, -22.215585667280511 ], [ -47.374170221137419, -22.21555696344965 ], [ -47.374123096213602, -22.215527368959727 ], [ -47.374076633770294, -22.215497871855948 ], [ -47.374028999453152, -22.21546871934898 ], [ -47.373982408460101, -22.215439970804098 ], [ -47.373934135698242, -22.215410295023766 ], [ -47.37388628734935, -22.215379855958375 ], [ -47.373839122161129, -22.21534979332505 ], [ -47.373791951458891, -22.215319446424502 ], [ -47.373745463676421, -22.215289749857575 ], [ -47.373697494971076, -22.215259439121613 ], [ -47.373649242718919, -22.215227717711556 ], [ -47.373600400601475, -22.215195034073037 ], [ -47.37355302393447, -22.215161915168469 ], [ -47.373506336815822, -22.215128740181495 ], [ -47.373459197731805, -22.215094187115326 ], [ -47.373412608831693, -22.215058477551949 ], [ -47.373366830752154, -22.215021599807724 ], [ -47.373323236643124, -22.214985271851162 ], [ -47.37327911511403, -22.214948576218465 ], [ -47.373234367660721, -22.214911035418254 ], [ -47.373191346777688, -22.214872513573059 ], [ -47.373149391923015, -22.214834479160039 ], [ -47.373108023749637, -22.21479603062464 ], [ -47.373064675912197, -22.214755653016248 ], [ -47.373024130815821, -22.214714191652003 ], [ -47.372985413868825, -22.214674864369197 ], [ -47.372944946190309, -22.214633145168293 ], [ -47.372907365227405, -22.214592211436965 ], [ -47.372869953974856, -22.214553237341509 ], [ -47.37282999785949, -22.214511326540006 ], [ -47.372790391268822, -22.214466935886602 ], [ -47.372754072571205, -22.214424388100323 ], [ -47.372717944104188, -22.214382824684989 ], [ -47.372681450420487, -22.214341090044861 ], [ -47.372644822024284, -22.214299549924803 ], [ -47.372607476325527, -22.214257724744289 ], [ -47.372570597664854, -22.214215482706297 ], [ -47.372534075710625, -22.214174586724472 ], [ -47.372496517157032, -22.214132369374891 ], [ -47.372461380895778, -22.214091294828759 ], [ -47.372426369825902, -22.214053807670215 ], [ -47.372387609044189, -22.214014539021122 ], [ -47.372347766677173, -22.213973022543104 ], [ -47.372309399896416, -22.213932701043831 ], [ -47.372270864338688, -22.21389287872892 ], [ -47.372232967294231, -22.213854322341675 ], [ -47.372193624683902, -22.213815801995889 ], [ -47.372153587027043, -22.213777289337415 ], [ -47.372113055419803, -22.213738961999656 ], [ -47.372071939246872, -22.213700573362701 ], [ -47.372031145021268, -22.213662105159724 ], [ -47.371990328503202, -22.213623487754866 ], [ -47.37194942807163, -22.213585013861639 ], [ -47.371907810863846, -22.21354619071052 ], [ -47.37186717335473, -22.213507941681762 ], [ -47.371825553189979, -22.213469411220711 ], [ -47.371784402370537, -22.213430225357946 ], [ -47.371742465345392, -22.213390877593795 ], [ -47.371701148810992, -22.213350555170521 ], [ -47.371660578493142, -22.213310858156021 ], [ -47.371620530806048, -22.213271110755414 ], [ -47.371579785516104, -22.213230769997327 ], [ -47.371538402658629, -22.213188688110638 ], [ -47.371498012000565, -22.213144542057218 ], [ -47.371459550886989, -22.213101217392218 ], [ -47.371421273537585, -22.213056458480384 ], [ -47.371382705020963, -22.213008621082626 ], [ -47.371346803467212, -22.212959011267262 ], [ -47.371313038125017, -22.212908706689309 ], [ -47.371280315369546, -22.212856270550475 ], [ -47.371250149662337, -22.212800387712726 ], [ -47.371224741390044, -22.212744104249666 ], [ -47.371202265976123, -22.2126866397059 ], [ -47.371183238960938, -22.212628098623242 ], [ -47.371167780118306, -22.212570518447269 ], [ -47.371154632511221, -22.212514071461374 ], [ -47.371143183003085, -22.212457688261328 ], [ -47.37113293147285, -22.212399517675884 ], [ -47.371124858271315, -22.212341942377247 ], [ -47.371118103649152, -22.212283403344816 ], [ -47.371114122248905, -22.21222535303227 ], [ -47.371113046586615, -22.212205832753277 ], [ -47.371112008486115, -22.212185485723104 ], [ -47.37111146058735, -22.212165583542493 ], [ -47.371111274113161, -22.212146422197829 ], [ -47.371111073127665, -22.212127161538724 ], [ -47.371111025411487, -22.212106549197749 ], [ -47.371111713821819, -22.212086589634691 ], [ -47.371112208895561, -22.212067040343246 ], [ -47.371113303679778, -22.212047087052071 ], [ -47.37111443300131, -22.212028706121512 ], [ -47.371115565173959, -22.212009146853422 ], [ -47.371117316577944, -22.211987961833096 ], [ -47.371119240006806, -22.211969841303134 ], [ -47.371120703729993, -22.211952120913821 ], [ -47.371122654666735, -22.211931762397882 ], [ -47.371124723914733, -22.21191336366617 ], [ -47.371126683872703, -22.211893953583985 ], [ -47.371129366431184, -22.211873917523629 ], [ -47.371132012322825, -22.211854411436907 ], [ -47.371135208978792, -22.211835214172428 ], [ -47.371137984248719, -22.211817235122449 ], [ -47.371140781774749, -22.211799970779886 ], [ -47.371143223512114, -22.211782984697447 ], [ -47.371145962448452, -22.211764403184471 ], [ -47.371149119452504, -22.211744235289885 ], [ -47.371153178399474, -22.211722548295331 ], [ -47.371157357874708, -22.211703718800724 ], [ -47.371160999377871, -22.211685698216126 ], [ -47.371165353434208, -22.21166548305527 ], [ -47.371170796580024, -22.211643915483425 ], [ -47.371176121179836, -22.211624862645227 ], [ -47.371182266833735, -22.211604169624923 ], [ -47.371188011643291, -22.211587510682786 ], [ -47.371209884422669, -22.211513374718677 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 665.23171706300002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374762846118884, -22.216143855481736 ], [ -47.374751243769794, -22.216122847365249 ], [ -47.374724009093519, -22.216081139263238 ], [ -47.374693428902695, -22.216037157724262 ], [ -47.37466501725185, -22.215997643854806 ], [ -47.374633731589086, -22.215956452426553 ], [ -47.374601867996645, -22.215916336417038 ], [ -47.374567925928076, -22.215875787913763 ], [ -47.374535054876041, -22.215835378170123 ], [ -47.374503238422385, -22.215799154525275 ], [ -47.374468619694774, -22.215764576430765 ], [ -47.37443082140868, -22.215729925376394 ], [ -47.374392802311682, -22.215696464486804 ], [ -47.374353952362505, -22.215665584425366 ], [ -47.374311729402514, -22.21563509509129 ], [ -47.374267941410928, -22.215604517966749 ], [ -47.374223324652142, -22.215574597193314 ], [ -47.374178414088114, -22.215545775028755 ], [ -47.374131258729903, -22.215516161426617 ], [ -47.374084724780261, -22.215486618926914 ], [ -47.374037010368696, -22.215457417402188 ], [ -47.373990431837839, -22.215428676547475 ], [ -47.373942244827333, -22.215399053483509 ], [ -47.373894491591322, -22.215368674925415 ], [ -47.373847363275608, -22.215338635788221 ], [ -47.37380019874427, -22.215308292858293 ], [ -47.373753660733904, -22.215278564206191 ], [ -47.373705773014372, -22.215248304644632 ], [ -47.373657680605106, -22.215216688317227 ], [ -47.373609011056331, -22.215184120157129 ], [ -47.373561801370911, -22.215151117982757 ], [ -47.373515246691419, -22.215118037105508 ], [ -47.373468318190866, -22.215083638398639 ], [ -47.373421989409366, -22.215048128212782 ], [ -47.373376438505389, -22.215011433477283 ], [ -47.373332935389975, -22.21497518134926 ], [ -47.373288826734203, -22.21493849641627 ], [ -47.373244278090844, -22.214901122409 ], [ -47.373201459842988, -22.214862782009675 ], [ -47.37315960204625, -22.214824835587034 ], [ -47.373118303651417, -22.214786451907454 ], [ -47.373075201073711, -22.214746302755671 ], [ -47.373034867784341, -22.214705057987558 ], [ -47.372996170664791, -22.214665750847317 ], [ -47.372955871839437, -22.214624205724377 ], [ -47.372918315465007, -22.214583298778017 ], [ -47.372880813740515, -22.214544230433866 ], [ -47.372841032119446, -22.214502502665958 ], [ -47.372801678372156, -22.214458395400118 ], [ -47.372765417585377, -22.214415915460499 ], [ -47.372729235262845, -22.214374290091268 ], [ -47.37269270941438, -22.2143325186704 ], [ -47.372656033673316, -22.214290924859945 ], [ -47.37261871062627, -22.214249125051357 ], [ -47.372581831594566, -22.214206882591668 ], [ -47.372545266653766, -22.214165938478164 ], [ -47.372507805828334, -22.214123830982306 ], [ -47.372472560929474, -22.214082629441226 ], [ -47.372437212700703, -22.214044781281586 ], [ -47.372398385579928, -22.214005445426825 ], [ -47.372358631587019, -22.213964021039001 ], [ -47.372320244874494, -22.213923678595201 ], [ -47.372281630786148, -22.213883775130032 ], [ -47.372243601672551, -22.213845084378342 ], [ -47.372204118815212, -22.213806426719067 ], [ -47.372163993212816, -22.213767829467038 ], [ -47.372123385580451, -22.213729430240843 ], [ -47.372082262241548, -22.213691034915392 ], [ -47.372041501874335, -22.213652598642391 ], [ -47.372000679099024, -22.213613975319568 ], [ -47.371959742567263, -22.213575467470019 ], [ -47.371918126864038, -22.213536645724574 ], [ -47.371877469818898, -22.213498378310106 ], [ -47.371835879672453, -22.213459875641043 ], [ -47.371794762925546, -22.213420722226001 ], [ -47.371752888792095, -22.21338143347273 ], [ -47.371711677539295, -22.213341213800238 ], [ -47.371671149330837, -22.213301557991084 ], [ -47.371631130905271, -22.213261839634995 ], [ -47.371590445906811, -22.213221558572279 ], [ -47.371549304274247, -22.213179721987956 ], [ -47.371509152467048, -22.213135836996162 ], [ -47.371470844847565, -22.213092685238454 ], [ -47.371432779462864, -22.213048174187318 ], [ -47.37139455817023, -22.213000767463601 ], [ -47.371359003548235, -22.212951637053859 ], [ -47.371325494762452, -22.212901714706966 ], [ -47.371293111275889, -22.212849822231938 ], [ -47.371263365220955, -22.212794716820902 ], [ -47.371238285293323, -22.212739160705855 ], [ -47.371216068832389, -22.212682358259737 ], [ -47.371197261522141, -22.212624493167954 ], [ -47.371181944309804, -22.2125674405487 ], [ -47.371168886232851, -22.212511377968735 ], [ -47.371157505521666, -22.212455333587279 ], [ -47.37114732116116, -22.212397544178067 ], [ -47.37113930031505, -22.212340342301566 ], [ -47.371132597002408, -22.21228224799502 ], [ -47.371128641442624, -22.212224574532073 ], [ -47.371127571853826, -22.212205164506315 ], [ -47.371126542597693, -22.212184990868398 ], [ -47.371126001854137, -22.212165348670851 ], [ -47.371125816469572, -22.212146299494108 ], [ -47.371125615926879, -22.212127081167043 ], [ -47.371125568864116, -22.212106751994064 ], [ -47.371126251265743, -22.21208696658617 ], [ -47.37112674309045, -22.212067545512298 ], [ -47.371127825416977, -22.212047819234975 ], [ -47.371128953573127, -22.212029457241144 ], [ -47.371130078041304, -22.212010031039885 ], [ -47.371131804511265, -22.21198914759588 ], [ -47.371133727985061, -22.211971026624816 ], [ -47.371135197016841, -22.211953241945416 ], [ -47.371137130127117, -22.211933069431257 ], [ -47.371139195773459, -22.211914702706778 ], [ -47.371141142328582, -22.211895425337421 ], [ -47.371143796195199, -22.211875603561545 ], [ -47.371146414932056, -22.211856297651124 ], [ -47.371149592515046, -22.211837214916024 ], [ -47.371152371995741, -22.21181920857531 ], [ -47.371155180037448, -22.211801879326359 ], [ -47.37115763465593, -22.211784803623459 ], [ -47.371160362043717, -22.211766300445252 ], [ -47.37116348113971, -22.211746374705609 ], [ -47.371167466332992, -22.21172508176598 ], [ -47.371171626014615, -22.211706341437427 ], [ -47.371175275424861, -22.211688281714089 ], [ -47.3711795653821, -22.211668364145154 ], [ -47.371184914289195, -22.211647169970153 ], [ -47.371190167488834, -22.211628372613941 ], [ -47.371196204347569, -22.211608045910655 ], [ -47.371201952919037, -22.211591376054677 ], [ -47.37122213808621, -22.211522960090509 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 664.00968089800006, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37477835861921, -22.216142332586127 ], [ -47.374763940009068, -22.216116225133174 ], [ -47.37473632904252, -22.216073940772869 ], [ -47.374705576229786, -22.216029710967835 ], [ -47.374676998722848, -22.215989966436133 ], [ -47.374645516413828, -22.215948516102976 ], [ -47.374613451666313, -22.215908146844548 ], [ -47.374579458481328, -22.215867537279152 ], [ -47.374546484414985, -22.215827000899257 ], [ -47.374514197809752, -22.21579024198061 ], [ -47.37447904511059, -22.215755130543492 ], [ -47.37444091917272, -22.215720179120776 ], [ -47.374402524796125, -22.215686387946395 ], [ -47.374363134923804, -22.215655078725764 ], [ -47.374320549104539, -22.215624327370815 ], [ -47.374276554799337, -22.215593606178448 ], [ -47.374231701989487, -22.215563527105765 ], [ -47.374186607037565, -22.215534586607564 ], [ -47.374139421244948, -22.215504953893181 ], [ -47.374092815788991, -22.215475365997587 ], [ -47.37404502128301, -22.21544611545508 ], [ -47.373998455214348, -22.21541738229055 ], [ -47.373950353955188, -22.215387811942946 ], [ -47.373902695832044, -22.215357493892146 ], [ -47.373855604388829, -22.215327478251083 ], [ -47.373808446028384, -22.215297139291767 ], [ -47.373761857790136, -22.215267378554486 ], [ -47.37371405105641, -22.215237170167317 ], [ -47.373666118490021, -22.215205658922567 ], [ -47.373617621509901, -22.21517320624087 ], [ -47.373570578806039, -22.215140320796689 ], [ -47.373524156565693, -22.215107334029145 ], [ -47.373477438648607, -22.215073089681535 ], [ -47.373431369985688, -22.215037778873185 ], [ -47.373386046257259, -22.215001267146377 ], [ -47.373342634135447, -22.214965090846892 ], [ -47.373298538353005, -22.214928416613592 ], [ -47.373254188519581, -22.214891209399255 ], [ -47.373211572906904, -22.214853050445765 ], [ -47.373169812168101, -22.214815192013493 ], [ -47.373128583551789, -22.214776873189731 ], [ -47.373085726233818, -22.214736952494544 ], [ -47.373045604751454, -22.21469592432253 ], [ -47.37300692745935, -22.214656637324811 ], [ -47.372966797487166, -22.214615266279832 ], [ -47.372929265701202, -22.21457438611845 ], [ -47.372891673504768, -22.214535223525601 ], [ -47.372852066378002, -22.214493678791253 ], [ -47.372812965474097, -22.214449854912949 ], [ -47.372776762598157, -22.214407442819969 ], [ -47.37274052642011, -22.214365755496875 ], [ -47.372703968406881, -22.214323947295274 ], [ -47.372667245320947, -22.214282299794437 ], [ -47.372629944925613, -22.214240525357763 ], [ -47.372593065522871, -22.21419828247636 ], [ -47.372556457595515, -22.21415729023121 ], [ -47.372519094498244, -22.214115292589039 ], [ -47.372483740961755, -22.214073964053043 ], [ -47.372448055574111, -22.214035754892361 ], [ -47.372409162114252, -22.213996351831909 ], [ -47.372369496495459, -22.213955019534282 ], [ -47.372331089851166, -22.213914656145942 ], [ -47.372292397232201, -22.213874671530558 ], [ -47.372254236049471, -22.213835846414433 ], [ -47.372214612945115, -22.213797051441666 ], [ -47.372174399397188, -22.213758369596118 ], [ -47.372133715739693, -22.213719898481486 ], [ -47.372092585234824, -22.213681496467554 ], [ -47.372051858726024, -22.213643092124524 ], [ -47.372011029693446, -22.213604462883715 ], [ -47.371970057061482, -22.213565921077834 ], [ -47.371928442862831, -22.213527100738084 ], [ -47.371887766281667, -22.213488814937914 ], [ -47.371846206153535, -22.213450340060838 ], [ -47.371805123479156, -22.213411219093519 ], [ -47.371763312237391, -22.21337198935111 ], [ -47.371722206266199, -22.213331872429379 ], [ -47.371681720167139, -22.21329225782555 ], [ -47.371641731003088, -22.213252568514005 ], [ -47.371601106296112, -22.213212347146651 ], [ -47.371560205888443, -22.213170755864642 ], [ -47.371520292932132, -22.213127131934442 ], [ -47.371482138806734, -22.213084153084026 ], [ -47.371444285386765, -22.213039889893551 ], [ -47.371406411318127, -22.21299291384382 ], [ -47.37137120362793, -22.21294426283966 ], [ -47.371337951398587, -22.212894722723775 ], [ -47.371305907180989, -22.212843373912484 ], [ -47.371276580778435, -22.212789045928098 ], [ -47.371251829195558, -22.212734217160985 ], [ -47.371229871687717, -22.212678076812491 ], [ -47.37121128408252, -22.212620887711513 ], [ -47.371196108500556, -22.212564362648937 ], [ -47.371183139953807, -22.212508684474887 ], [ -47.371171828039635, -22.212452978912008 ], [ -47.371161710848931, -22.212395570679021 ], [ -47.371153742358338, -22.212338742224631 ], [ -47.371147090355301, -22.212281092643966 ], [ -47.371143160636059, -22.212223796030589 ], [ -47.371142097120782, -22.212204496258053 ], [ -47.371141076709037, -22.212184496012409 ], [ -47.371140543120738, -22.212165113797909 ], [ -47.371140358825834, -22.212146176789091 ], [ -47.371140158725936, -22.212127000794066 ], [ -47.371140112316652, -22.212106954789082 ], [ -47.371140788709617, -22.212087343536339 ], [ -47.371141277285304, -22.212068050680053 ], [ -47.371142347154183, -22.212048551416558 ], [ -47.371143474144972, -22.212030208359455 ], [ -47.371144590908699, -22.212010915225029 ], [ -47.371146292444692, -22.21199033335737 ], [ -47.371148215963437, -22.21197221194517 ], [ -47.371149690303781, -22.211954362975717 ], [ -47.371151605587642, -22.211934376463311 ], [ -47.371153667632335, -22.211916041746065 ], [ -47.37115560078464, -22.211896897089549 ], [ -47.371158225959441, -22.211877289598149 ], [ -47.371160817541544, -22.211858183864024 ], [ -47.371163976051577, -22.211839215658305 ], [ -47.371166759743041, -22.211821182026842 ], [ -47.37116957830041, -22.211803787871514 ], [ -47.37117204579998, -22.21178662254815 ], [ -47.371174761639239, -22.211768197704718 ], [ -47.37117784282723, -22.211748514120025 ], [ -47.3711817542669, -22.211727615235333 ], [ -47.37118589415492, -22.211708964072841 ], [ -47.371189551472256, -22.211690865210752 ], [ -47.371193777330461, -22.211671245233752 ], [ -47.371199031998906, -22.211650424455577 ], [ -47.371204213798414, -22.211631882581365 ], [ -47.371210141862058, -22.211611922195114 ], [ -47.37121589419543, -22.211595241425314 ], [ -47.3712343917514, -22.211532545461267 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 662.78764473199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374793871119053, -22.216140809689058 ], [ -47.374776636247077, -22.216109602900207 ], [ -47.374748648990199, -22.216066742281662 ], [ -47.374717723555541, -22.216022264210597 ], [ -47.374688980192495, -22.21598228901669 ], [ -47.374657301237193, -22.215940579778653 ], [ -47.374625035334603, -22.21589995727134 ], [ -47.374590991033195, -22.21585928664383 ], [ -47.374557913952529, -22.21581862362768 ], [ -47.374525157195713, -22.215781329435313 ], [ -47.374489470524985, -22.21574568465568 ], [ -47.37445101693536, -22.21571043286465 ], [ -47.374412247279189, -22.215676311405527 ], [ -47.374372317483768, -22.215644573025767 ], [ -47.374329368805256, -22.215613559649981 ], [ -47.374285168186461, -22.215582694389788 ], [ -47.374240079325567, -22.2155524570179 ], [ -47.374194799985766, -22.215523398186061 ], [ -47.374147583758749, -22.215493746359428 ], [ -47.374100906796478, -22.215464113067949 ], [ -47.37405303219608, -22.215434813507692 ], [ -47.374006478589621, -22.215406088033337 ], [ -47.373958463081792, -22.215376570402089 ], [ -47.373910900071508, -22.215346312858561 ], [ -47.373863845500786, -22.215316320713629 ], [ -47.373816693311248, -22.215285985724918 ], [ -47.37377005484511, -22.21525619290248 ], [ -47.373722329097177, -22.215226035689689 ], [ -47.373674556373651, -22.215194629527563 ], [ -47.37362623196217, -22.215162292324258 ], [ -47.373579356239865, -22.215129523610244 ], [ -47.373533066438647, -22.215096630952395 ], [ -47.373486559104997, -22.215062540964034 ], [ -47.373440750560647, -22.215027429533155 ], [ -47.373395654007751, -22.214991100815002 ], [ -47.373352332879556, -22.214955000344055 ], [ -47.373308249970428, -22.214918336810477 ], [ -47.373264098946933, -22.214881296389009 ], [ -47.373221685969419, -22.214843318881329 ], [ -47.373180022288551, -22.214805548439426 ], [ -47.373138863450762, -22.214767294471464 ], [ -47.373096251392525, -22.214727602232824 ], [ -47.37305634171716, -22.214686790656906 ], [ -47.37301768425251, -22.214647523801727 ], [ -47.372977723133481, -22.214606326834669 ], [ -47.372940215935991, -22.214565473458244 ], [ -47.37290253326762, -22.214526216616729 ], [ -47.372863100635151, -22.214484854915931 ], [ -47.372824252574645, -22.214441314425109 ], [ -47.372788107609544, -22.214398970178774 ], [ -47.372751817575981, -22.21435722090181 ], [ -47.372715227397975, -22.21431537591948 ], [ -47.372678456967186, -22.214273674728265 ], [ -47.372641179223564, -22.214231925663505 ], [ -47.372604299449783, -22.214189682360409 ], [ -47.372567648535863, -22.214148641983577 ], [ -47.372530383166769, -22.2141067541951 ], [ -47.372494920992644, -22.214065298664199 ], [ -47.372458898446105, -22.214026728502535 ], [ -47.372419938647184, -22.213987258236408 ], [ -47.372380361402499, -22.213946018028945 ], [ -47.372341934826437, -22.213905633696083 ], [ -47.37230316367684, -22.213865567930483 ], [ -47.372264870424985, -22.213826608449935 ], [ -47.372225107073625, -22.213787676163715 ], [ -47.372184805580154, -22.213748909724629 ], [ -47.372144045897535, -22.213710366721582 ], [ -47.372102908226701, -22.213671958019166 ], [ -47.372062215576292, -22.213633585606107 ], [ -47.372021380286476, -22.213594950447312 ], [ -47.371980371554308, -22.213556374685133 ], [ -47.371938758860232, -22.213517555751054 ], [ -47.371898062743035, -22.213479251565182 ], [ -47.371856532633217, -22.213440804480083 ], [ -47.371815484031366, -22.213401715960497 ], [ -47.371773735681288, -22.213362545228922 ], [ -47.371732734991703, -22.213322531057969 ], [ -47.371692291002027, -22.213282957659466 ], [ -47.371652331099504, -22.213243297392442 ], [ -47.371611766684005, -22.213203135720441 ], [ -47.371571107501246, -22.21316178974072 ], [ -47.371531433395816, -22.213118426872072 ], [ -47.37149343276451, -22.21307562092894 ], [ -47.37145579130928, -22.213031605599095 ], [ -47.371418264464666, -22.212985060223293 ], [ -47.371383403706304, -22.212936888624647 ], [ -47.371350408033429, -22.212887730739723 ], [ -47.371318703084846, -22.212836925592129 ], [ -47.37128979633475, -22.212783375034313 ], [ -47.371265373096747, -22.212729273615061 ], [ -47.371243674542093, -22.212673795364136 ], [ -47.371225306642067, -22.21261728225392 ], [ -47.371210272690575, -22.212561284748006 ], [ -47.371197393674109, -22.212505990979839 ], [ -47.371186150557008, -22.212450624235515 ], [ -47.371176100536182, -22.212393597178725 ], [ -47.371168184401164, -22.212337142146435 ], [ -47.371161583707824, -22.212279937291633 ], [ -47.371157679829196, -22.212223017527826 ], [ -47.371156622387453, -22.212203828008512 ], [ -47.371155610820146, -22.212184001155119 ], [ -47.371155084387155, -22.212164878923662 ], [ -47.371154901181924, -22.21214605408279 ], [ -47.371154701524851, -22.212126920419788 ], [ -47.371154655769097, -22.212107157582782 ], [ -47.371155326153435, -22.212087720485197 ], [ -47.371155811480136, -22.212068555846475 ], [ -47.371156868891418, -22.212049283596823 ], [ -47.371157994716839, -22.212030959476465 ], [ -47.371159103776144, -22.212011799408856 ], [ -47.37116078037824, -22.211991519117536 ], [ -47.37116270394192, -22.211973397264227 ], [ -47.371164183590835, -22.21195548400469 ], [ -47.371166081048308, -22.211935683494051 ], [ -47.371168139491353, -22.21191738078403 ], [ -47.371170059240868, -22.211898368840348 ], [ -47.371172655723896, -22.211878975633446 ], [ -47.371175220151294, -22.211860070075613 ], [ -47.371178359588392, -22.211841216399275 ], [ -47.371181147490617, -22.211823155477074 ], [ -47.371183976563643, -22.211805696415368 ], [ -47.371186456944287, -22.211788441471537 ], [ -47.371189161235016, -22.211770094962873 ], [ -47.371192204515054, -22.211750653533127 ], [ -47.371196042201206, -22.211730148703374 ], [ -47.371200162295636, -22.211711586706951 ], [ -47.371203827520041, -22.211693448706111 ], [ -47.371207989279277, -22.211674126321043 ], [ -47.371213149709156, -22.211653678939726 ], [ -47.371218260108577, -22.211635392547514 ], [ -47.371224079377207, -22.211615798478327 ], [ -47.371229835472484, -22.211599106794676 ], [ -47.371246645418218, -22.211542130830942 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 661.56560856700003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374809383618427, -22.21613928679055 ], [ -47.374789332483829, -22.216102980666342 ], [ -47.37476096893657, -22.216059543789626 ], [ -47.374729870879953, -22.216014817452557 ], [ -47.374700961660793, -22.215974611596462 ], [ -47.374669086059193, -22.21593264345357 ], [ -47.374636619001507, -22.215891767697403 ], [ -47.374602523583675, -22.215851036007809 ], [ -47.374569343488687, -22.215810246355431 ], [ -47.374536116580266, -22.215772416889394 ], [ -47.374499895937994, -22.215736238767288 ], [ -47.374461114696615, -22.21570068660801 ], [ -47.374421969760874, -22.215666234864173 ], [ -47.374381500042389, -22.215634067325336 ], [ -47.374338188504659, -22.215602791928763 ], [ -47.374293781572284, -22.215571782600772 ], [ -47.374248456660375, -22.215541386929697 ], [ -47.374202992932709, -22.215512209764249 ], [ -47.374155746271299, -22.215482538825373 ], [ -47.374108997802722, -22.215452860137997 ], [ -47.374061043107922, -22.215423511560001 ], [ -47.374014501963657, -22.215394793775822 ], [ -47.373966572207152, -22.215365328860905 ], [ -47.373919104309721, -22.215335131824656 ], [ -47.373872086611492, -22.215305163175845 ], [ -47.373824940592847, -22.215274832157746 ], [ -47.373778251898834, -22.215245007250164 ], [ -47.373730607136693, -22.215214901211738 ], [ -47.373682994256008, -22.215183600132221 ], [ -47.373634842413146, -22.215151378407292 ], [ -47.373588133672378, -22.215118726423437 ], [ -47.373541976310278, -22.215085927875258 ], [ -47.373495679560058, -22.215051992246131 ], [ -47.373450131134256, -22.215017080192681 ], [ -47.373405261756872, -22.214980934483183 ], [ -47.373362031622278, -22.214944909840753 ], [ -47.37331796158648, -22.214908257006865 ], [ -47.373274009372899, -22.214871383378284 ], [ -47.373231799030542, -22.214833587316392 ], [ -47.373190232407609, -22.214795904864832 ], [ -47.373149143348343, -22.214757715752661 ], [ -47.373106776549825, -22.214718251970538 ], [ -47.373067078681473, -22.214677656990673 ], [ -47.373028441044262, -22.214638410278038 ], [ -47.372988648778396, -22.214597387388888 ], [ -47.372951166169379, -22.21455656079743 ], [ -47.372913393029073, -22.214517209707243 ], [ -47.3728741348909, -22.214476031039975 ], [ -47.372835539673787, -22.214432773936608 ], [ -47.372799452619539, -22.21439049753689 ], [ -47.37276310873046, -22.214348686306078 ], [ -47.372726486387684, -22.214306804543018 ], [ -47.372689668612026, -22.214265049661428 ], [ -47.372652413520115, -22.214223325968582 ], [ -47.372615533375303, -22.214181082243773 ], [ -47.372578839474812, -22.214139993735294 ], [ -47.372541671833893, -22.21409821580049 ], [ -47.372506101022132, -22.214056633274701 ], [ -47.372469741316699, -22.214017702112088 ], [ -47.372430715178709, -22.213978164640292 ], [ -47.372391226308132, -22.213937016523001 ], [ -47.372352779800302, -22.213896611245612 ], [ -47.372313930120093, -22.213856464329812 ], [ -47.372275504799099, -22.213817370484865 ], [ -47.372235601200735, -22.213778300885178 ], [ -47.372195211761728, -22.213739449852586 ], [ -47.372154376053984, -22.213700834961134 ], [ -47.37211323121717, -22.213662419570234 ], [ -47.372072572425175, -22.213624079087136 ], [ -47.372031730878099, -22.213585438010369 ], [ -47.371990686045734, -22.213546828291875 ], [ -47.371949074856225, -22.213508010763476 ], [ -47.371908359203012, -22.213469688191914 ], [ -47.371866859111499, -22.213431268898788 ], [ -47.371825844582176, -22.213392212826921 ], [ -47.371784159123784, -22.213353101106193 ], [ -47.371743263715793, -22.21331318968598 ], [ -47.371702861835516, -22.213273657492792 ], [ -47.371662931194521, -22.213234026270278 ], [ -47.371622427070491, -22.213193924293645 ], [ -47.371582009112643, -22.213152823616177 ], [ -47.371542573858108, -22.213109721809065 ], [ -47.3715047267209, -22.213067088773165 ], [ -47.371467297230403, -22.213023321303925 ], [ -47.371430117609833, -22.212977206602009 ], [ -47.371395603783334, -22.212929514408824 ], [ -47.37136286466697, -22.212880738754823 ], [ -47.371331498987459, -22.212830477270874 ], [ -47.371303011889921, -22.212777704139537 ], [ -47.371278916996893, -22.212724330068095 ], [ -47.371257477395531, -22.212669513914687 ], [ -47.371239329200783, -22.212613676795179 ], [ -47.371224436879857, -22.212558206845884 ], [ -47.371211647393736, -22.212503297483575 ], [ -47.371200473073777, -22.2124482695578 ], [ -47.371190490222894, -22.212391623677203 ], [ -47.371182626443535, -22.212335542066992 ], [ -47.371176077059971, -22.212278781938021 ], [ -47.371172199022034, -22.212222239023756 ], [ -47.371171147653868, -22.212203159757685 ], [ -47.371170144931021, -22.212183506296537 ], [ -47.371169625653394, -22.212164644048116 ], [ -47.371169443537866, -22.212145931375176 ], [ -47.371169244323617, -22.212126840044203 ], [ -47.371169199221455, -22.212107360375185 ], [ -47.371169863597196, -22.212088097432762 ], [ -47.37117034567494, -22.212069061011604 ], [ -47.371171390628668, -22.212050015775791 ], [ -47.371172515288734, -22.212031710592161 ], [ -47.371173616643638, -22.212012683591379 ], [ -47.371175268311895, -22.21199270487638 ], [ -47.371177191920523, -22.21197458258197 ], [ -47.371178676877982, -22.211956605032348 ], [ -47.371180556509117, -22.211936990523498 ], [ -47.37118261135052, -22.211918719820698 ], [ -47.371184517697266, -22.211899840589837 ], [ -47.371187085488572, -22.211880661667415 ], [ -47.371189622761293, -22.211861956285894 ], [ -47.371192743125491, -22.211843217138941 ], [ -47.371195535238471, -22.211825128925991 ], [ -47.371198374827131, -22.211807604957912 ], [ -47.371200868088835, -22.211790260393606 ], [ -47.371203560831063, -22.211771992219717 ], [ -47.371206566203192, -22.211752792944939 ], [ -47.371210330135895, -22.211732682170123 ], [ -47.371214430436773, -22.211714209339764 ], [ -47.371218103568239, -22.21169603220017 ], [ -47.371222201228562, -22.211677007407058 ], [ -47.371227267419933, -22.211656933422585 ], [ -47.371232306419337, -22.211638902512398 ], [ -47.371238016893017, -22.211619674760257 ], [ -47.371243776750191, -22.211602972162783 ], [ -47.371258899086683, -22.211551716199534 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 660.34357240099996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374824896117296, -22.216137763890575 ], [ -47.374802028719316, -22.216096358431592 ], [ -47.374773288881613, -22.216052345296767 ], [ -47.374742018203037, -22.21600737069372 ], [ -47.374712943127733, -22.215966934175469 ], [ -47.374680870879828, -22.215924707127751 ], [ -47.374648202667032, -22.215883578122757 ], [ -47.374614056132778, -22.215842785371073 ], [ -47.37458077302346, -22.215801869082476 ], [ -47.37454707596342, -22.215763504342849 ], [ -47.374510321349597, -22.215726792878346 ], [ -47.37447121245647, -22.215690940350857 ], [ -47.374431692241181, -22.215656158322371 ], [ -47.37439068259966, -22.215623561624504 ], [ -47.374347008202747, -22.215592024207165 ], [ -47.374302394956814, -22.215560870811423 ], [ -47.374256833993897, -22.215530316841171 ], [ -47.374211185878401, -22.215501021342124 ], [ -47.374163908782599, -22.215471331291013 ], [ -47.374117088807722, -22.215441607207762 ], [ -47.374069054018534, -22.215412209612012 ], [ -47.374022525336457, -22.215383499518001 ], [ -47.373974681331269, -22.21535408731943 ], [ -47.373927308546676, -22.215323950790445 ], [ -47.373880327720933, -22.215294005637766 ], [ -47.373833187873188, -22.215263678590269 ], [ -47.3737864489513, -22.215233821597515 ], [ -47.373738885174937, -22.215203766733477 ], [ -47.373691432137086, -22.215172570736549 ], [ -47.373643452862837, -22.215140464489973 ], [ -47.373596911103576, -22.215107929236254 ], [ -47.373550886180588, -22.215075224797747 ], [ -47.373504800013777, -22.215041443527817 ], [ -47.373459511706507, -22.215006730851787 ], [ -47.373414869504629, -22.214970768150906 ], [ -47.37337173036363, -22.214934819336989 ], [ -47.373327673201153, -22.214898177202791 ], [ -47.37328391979748, -22.214861470367058 ], [ -47.373241912090279, -22.214823855750915 ], [ -47.373200442525267, -22.214786261289706 ], [ -47.373159423244523, -22.214748137033322 ], [ -47.373117301705719, -22.214708901707688 ], [ -47.373077815644379, -22.214668523323851 ], [ -47.373039197834608, -22.214629296753749 ], [ -47.372999574421918, -22.214588447942479 ], [ -47.372962116401361, -22.214547648135994 ], [ -47.372924252789112, -22.214508202797141 ], [ -47.372885169145242, -22.214467207163381 ], [ -47.372846826771536, -22.214424233447417 ], [ -47.372810797628141, -22.214382024894338 ], [ -47.372774399883539, -22.214340151709671 ], [ -47.372737745375993, -22.214298233165881 ], [ -47.372700880255472, -22.214256424593941 ], [ -47.372663647815273, -22.214214726273003 ], [ -47.372626767299423, -22.214172482126479 ], [ -47.372590030412375, -22.214131345486361 ], [ -47.372552960499618, -22.214089677405212 ], [ -47.372517281050229, -22.21404796788454 ], [ -47.372480584185887, -22.214008675721036 ], [ -47.372441491708827, -22.213969071043575 ], [ -47.372402091212358, -22.213928015016432 ], [ -47.372363624772767, -22.213887588794531 ], [ -47.372324696561925, -22.213847360728536 ], [ -47.372286139171806, -22.213808132519212 ], [ -47.372246095326432, -22.213768925606093 ], [ -47.372205617941901, -22.213729989980006 ], [ -47.372164706209034, -22.21369130320015 ], [ -47.372123554206254, -22.213652881120769 ], [ -47.372082929272658, -22.213614572567618 ], [ -47.372042081468322, -22.213575925572883 ], [ -47.372001000535761, -22.213537281898063 ], [ -47.371959390850826, -22.213498465775363 ], [ -47.371918655661581, -22.213460124818095 ], [ -47.371877185588382, -22.213421733316942 ], [ -47.371836205131586, -22.213382709692787 ], [ -47.371794582564881, -22.2133436569829 ], [ -47.37175379243849, -22.213303848313409 ], [ -47.371713432667605, -22.213264357325542 ], [ -47.371673531288131, -22.213224755147561 ], [ -47.371633087455585, -22.213184712866255 ], [ -47.37159291072264, -22.213143857491012 ], [ -47.371553714318999, -22.213101016745401 ], [ -47.371516020675891, -22.213058556616716 ], [ -47.37147880315014, -22.213015037008059 ], [ -47.371441970753644, -22.212969352979965 ], [ -47.371407803859036, -22.212922140192195 ], [ -47.371375321299219, -22.21287374676907 ], [ -47.371344294888829, -22.212824028948688 ], [ -47.371316227443948, -22.212772033243773 ], [ -47.371292460895987, -22.212719386520092 ], [ -47.371271280248024, -22.212665232464133 ], [ -47.371253351758668, -22.212610071335288 ], [ -47.371238601068399, -22.212555128942586 ], [ -47.371225901112702, -22.212500603986133 ], [ -47.371214795589935, -22.212445914878874 ], [ -47.371204879909087, -22.212389650174419 ], [ -47.371197068485451, -22.212333941986294 ], [ -47.371190570411763, -22.212277626583141 ], [ -47.371186718214588, -22.212221460518432 ], [ -47.371185672920014, -22.212202491505579 ], [ -47.371184679041669, -22.212183011436675 ], [ -47.371184166919456, -22.21216440917128 ], [ -47.371183985893651, -22.212145808666257 ], [ -47.371183787122227, -22.212126759667328 ], [ -47.371183742673722, -22.212107563166288 ], [ -47.3711844010409, -22.212088474379016 ], [ -47.371184879869716, -22.212069566175426 ], [ -47.371185912365945, -22.212050747953441 ], [ -47.37118703586065, -22.212032461706539 ], [ -47.371188129511189, -22.212013567772583 ], [ -47.371189756245663, -22.211993890633927 ], [ -47.371191679899233, -22.211975767898387 ], [ -47.371193170165228, -22.211957726058696 ], [ -47.371195031970053, -22.211938297551608 ], [ -47.371197083209829, -22.211920058856045 ], [ -47.371198976153849, -22.211901312338021 ], [ -47.371201515253468, -22.211882347700094 ], [ -47.371204025371561, -22.211863842494875 ], [ -47.371207126662867, -22.21184521787729 ], [ -47.371209922986601, -22.211827102373622 ], [ -47.371212773090889, -22.211809513499144 ], [ -47.371215279233624, -22.211792079314382 ], [ -47.371217960427373, -22.211773889475253 ], [ -47.371220927891642, -22.211754932355419 ], [ -47.371224618070983, -22.211735215635557 ], [ -47.371228698578307, -22.211716831971266 ], [ -47.371232379616835, -22.211698615692935 ], [ -47.371236413178302, -22.211679888491755 ], [ -47.371241385131249, -22.211660187904172 ], [ -47.371246352730672, -22.211642412475999 ], [ -47.37125195440948, -22.21162355104094 ], [ -47.371257718028552, -22.211606837529615 ], [ -47.371271152756776, -22.211561301567041 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 659.121536236, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37484040861569, -22.216136240989165 ], [ -47.374814724953545, -22.216089736195954 ], [ -47.374785608825349, -22.216045146803072 ], [ -47.374754165524777, -22.215999923934078 ], [ -47.374724924593323, -22.215959256753685 ], [ -47.374692655699086, -22.215916770801179 ], [ -47.374659786331172, -22.215875388547396 ], [ -47.374625588680495, -22.215834534733638 ], [ -47.374592202556833, -22.215793491808828 ], [ -47.374558035345167, -22.21575459179568 ], [ -47.374520746759792, -22.215717346988857 ], [ -47.374481310214939, -22.215681194093175 ], [ -47.374441414720117, -22.21564608178009 ], [ -47.374399865155596, -22.215613055923267 ], [ -47.374355827899521, -22.215581256485201 ], [ -47.374311008340051, -22.215549959021708 ], [ -47.374265211326161, -22.215519246752304 ], [ -47.374219378822836, -22.215489832919676 ], [ -47.374172071292655, -22.21546012375633 ], [ -47.374125179811479, -22.215430354277224 ], [ -47.37407706492791, -22.215400907663724 ], [ -47.374030548708021, -22.215372205259904 ], [ -47.373982790454143, -22.215342845777649 ], [ -47.373935512782374, -22.215312769755922 ], [ -47.373888568829123, -22.215282848099353 ], [ -47.373841435152272, -22.215252525022464 ], [ -47.373794646002523, -22.215222635944567 ], [ -47.373747163211931, -22.21519263225488 ], [ -47.373699870016878, -22.215161541340542 ], [ -47.373652063311226, -22.215129550572307 ], [ -47.373605688533473, -22.215097132048712 ], [ -47.373559796049584, -22.215064521719857 ], [ -47.373513920466166, -22.215030894809104 ], [ -47.373468892277401, -22.214996381510463 ], [ -47.373424477251014, -22.214960601818174 ], [ -47.37338142910361, -22.214924728832738 ], [ -47.373337384814455, -22.214888097398251 ], [ -47.373293830220675, -22.214851557355342 ], [ -47.373252025148616, -22.214814124184937 ], [ -47.373210652641525, -22.214776617714044 ], [ -47.373169703139311, -22.214738558313439 ], [ -47.373127826860213, -22.214699551444266 ], [ -47.373088552605878, -22.214659389656433 ], [ -47.373049954623561, -22.214620183228856 ], [ -47.373010500064026, -22.214579508495454 ], [ -47.372973066631943, -22.214538735473919 ], [ -47.372935112547758, -22.214499195886432 ], [ -47.372896203398192, -22.214458383286154 ], [ -47.372858113867899, -22.214415692957573 ], [ -47.372822142635343, -22.214373552251089 ], [ -47.372785691035226, -22.214331617112599 ], [ -47.372749004362902, -22.21428966178809 ], [ -47.372712091897519, -22.214247799525783 ], [ -47.372674882109031, -22.214206126576741 ], [ -47.372638001222136, -22.214163882008531 ], [ -47.372601221348525, -22.214122697236768 ], [ -47.37256424916395, -22.214081139009259 ], [ -47.372528461076925, -22.214039302493738 ], [ -47.37249142705366, -22.213999649329374 ], [ -47.372452268237538, -22.213959977446276 ], [ -47.372412956115191, -22.213919013509262 ], [ -47.372374469743825, -22.213878566342832 ], [ -47.372335463002365, -22.213838257126657 ], [ -47.372296773543106, -22.213798894552966 ], [ -47.372256589450735, -22.213759550326436 ], [ -47.372216024120668, -22.213720530106855 ], [ -47.372175036362684, -22.213681771438615 ], [ -47.372133877193932, -22.21364334267075 ], [ -47.372093286118734, -22.213605066047563 ], [ -47.372052432057153, -22.213566413134853 ], [ -47.372011315024395, -22.213527735503732 ], [ -47.371969706844027, -22.213488920786702 ], [ -47.371928952118758, -22.213450561443754 ], [ -47.371887512063864, -22.213412197734552 ], [ -47.371846565679597, -22.213373206558117 ], [ -47.371805006004571, -22.213334212859046 ], [ -47.37176432115978, -22.213294506940279 ], [ -47.371724003498286, -22.213255057157731 ], [ -47.371684131380341, -22.21321548402425 ], [ -47.371643747839265, -22.213175501438283 ], [ -47.37160381233123, -22.213134891365225 ], [ -47.371564854778484, -22.213092311681077 ], [ -47.371527314629475, -22.213050024459605 ], [ -47.371490309068491, -22.213006752711479 ], [ -47.371453823896083, -22.21296149935716 ], [ -47.371420003933416, -22.212914765974748 ], [ -47.371387777930167, -22.212866754782453 ], [ -47.371357090788962, -22.212817580625611 ], [ -47.371329442996824, -22.21276636234704 ], [ -47.371306004794036, -22.212714442971027 ], [ -47.371285083099572, -22.212660951012474 ], [ -47.371267374315721, -22.212606465874256 ], [ -47.371252765256216, -22.212552051038095 ], [ -47.371240154830993, -22.212497910487464 ], [ -47.371229118105504, -22.212443560198722 ], [ -47.371219269594746, -22.212387676670414 ], [ -47.371211510526912, -22.212332341904354 ], [ -47.371205063763178, -22.212276471226996 ], [ -47.371201237406851, -22.212220682011814 ], [ -47.371200198185889, -22.212201823252183 ], [ -47.371199213152074, -22.212182516575517 ], [ -47.371198708185339, -22.212164174293139 ], [ -47.37119852824928, -22.212145685956052 ], [ -47.371198329920702, -22.212126679289156 ], [ -47.371198286125896, -22.212107765956091 ], [ -47.371198938484561, -22.212088851323955 ], [ -47.371199414064463, -22.212070071337944 ], [ -47.371200434103237, -22.21205148012978 ], [ -47.371201556432595, -22.212033212819609 ], [ -47.371202642378783, -22.212014451952488 ], [ -47.371204244179552, -22.211995076390142 ], [ -47.371206167878064, -22.211976953213501 ], [ -47.371207663452573, -22.211958847083725 ], [ -47.371209507431139, -22.211939604578422 ], [ -47.371211555069287, -22.21192139789008 ], [ -47.371213434610596, -22.211902784084884 ], [ -47.371215945018577, -22.211884033731444 ], [ -47.371218427982079, -22.211865728702534 ], [ -47.371221510200527, -22.211847218614334 ], [ -47.371224310735009, -22.211829075819921 ], [ -47.371227171354903, -22.211811422039069 ], [ -47.371229690378662, -22.211793898233836 ], [ -47.371232360023939, -22.211775786729476 ], [ -47.371235289580397, -22.211757071764605 ], [ -47.371238906006454, -22.211737749099704 ], [ -47.371242966720253, -22.211719454601475 ], [ -47.371246655665821, -22.21170119918439 ], [ -47.371250625128503, -22.21168276957517 ], [ -47.371255502843105, -22.211663442384459 ], [ -47.371260399042598, -22.211645922438333 ], [ -47.371265891926598, -22.211627427320344 ], [ -47.371271659307574, -22.211610702895197 ], [ -47.371283406428525, -22.211570886933472 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 657.89950007000004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.3748559211136, -22.216134718086288 ], [ -47.374827421186509, -22.216083113959421 ], [ -47.374797928767762, -22.216037948308546 ], [ -47.374766312845189, -22.215992477173639 ], [ -47.374736906057556, -22.21595157933114 ], [ -47.374704440516979, -22.215908834473876 ], [ -47.374671369993933, -22.215867198971328 ], [ -47.374637121226819, -22.215826284095481 ], [ -47.374603632088821, -22.215785114534491 ], [ -47.374568994725514, -22.215745679247881 ], [ -47.374531172168588, -22.21570790109881 ], [ -47.374491407972016, -22.215671447834996 ], [ -47.374451137197674, -22.215636005237332 ], [ -47.374409047710181, -22.215602550221615 ], [ -47.374364647594987, -22.215570488762872 ], [ -47.374319621721988, -22.215539047231633 ], [ -47.374273588657147, -22.215508176663118 ], [ -47.374227571766021, -22.215478644496912 ], [ -47.374180233801454, -22.215448916221352 ], [ -47.374133270813992, -22.215419101346363 ], [ -47.374085075836049, -22.215389605715153 ], [ -47.374038572078355, -22.215360911001497 ], [ -47.373990899575773, -22.215331604235558 ], [ -47.373943717016829, -22.215301588721086 ], [ -47.373896809936049, -22.21527169056062 ], [ -47.373849682430091, -22.215241371454344 ], [ -47.373802843052481, -22.215211450291317 ], [ -47.37375544124766, -22.215181497775969 ], [ -47.373708307895399, -22.215150511944191 ], [ -47.373660673758316, -22.215118636654282 ], [ -47.373614465962056, -22.215086334860796 ], [ -47.373568705917251, -22.215053818641582 ], [ -47.373523040917213, -22.215020346089982 ], [ -47.373478272846931, -22.214986032168703 ], [ -47.373434084996035, -22.214950435484976 ], [ -47.373391127842211, -22.21491463832804 ], [ -47.373347096426372, -22.214878017593229 ], [ -47.373303740642484, -22.214841644343135 ], [ -47.373262138205561, -22.214804392618447 ], [ -47.373220862756391, -22.21476697413787 ], [ -47.373179983032699, -22.214728979593033 ], [ -47.373138352013314, -22.214690201180286 ], [ -47.373099289565971, -22.214650255988417 ], [ -47.373060711411092, -22.214611069703384 ], [ -47.373021425704735, -22.214570569047801 ], [ -47.372984016861125, -22.214529822811226 ], [ -47.37294597230499, -22.214490188975116 ], [ -47.372907237649727, -22.21444955940828 ], [ -47.372869400962863, -22.214407152467039 ], [ -47.372833487641159, -22.21436507960718 ], [ -47.37279698218552, -22.214323082514845 ], [ -47.372760263348425, -22.21428109040961 ], [ -47.372723303538166, -22.21423917445696 ], [ -47.37268611640139, -22.214197526879829 ], [ -47.37264923514347, -22.214155281889909 ], [ -47.372612412283281, -22.214114048986499 ], [ -47.372575537826897, -22.214072600612639 ], [ -47.372539641102222, -22.214030637102262 ], [ -47.372502269920041, -22.213990622937089 ], [ -47.372463044764849, -22.213950883848355 ], [ -47.372423821016611, -22.213910012001477 ], [ -47.372385314713483, -22.213869543890528 ], [ -47.372346229441398, -22.21382915352417 ], [ -47.372307407912999, -22.21378965658614 ], [ -47.372267083573632, -22.213750175046219 ], [ -47.372226430298035, -22.213711070233153 ], [ -47.372185366514927, -22.213672239676541 ], [ -47.372144200180216, -22.21363380422018 ], [ -47.372103642963417, -22.213595559526958 ], [ -47.372062782644576, -22.213556900696265 ], [ -47.372021629511629, -22.21351818910885 ], [ -47.371980022835828, -22.213479375797498 ], [ -47.371939248574535, -22.213440998068858 ], [ -47.371897838537947, -22.213402662151626 ], [ -47.371856926226208, -22.213363703422885 ], [ -47.371815429442862, -22.213324768734644 ], [ -47.371774849879671, -22.213285165566596 ], [ -47.371734574327569, -22.213245756989338 ], [ -47.371694731471145, -22.21320621290036 ], [ -47.371654408221545, -22.213166290009717 ], [ -47.371614713938413, -22.213125925238824 ], [ -47.371575995236576, -22.213083606616099 ], [ -47.371538608581673, -22.213041492301805 ], [ -47.371501814985457, -22.212998468414199 ], [ -47.371465677037165, -22.212953645733617 ], [ -47.37143220400646, -22.212907391756495 ], [ -47.371400234559815, -22.212859762795002 ], [ -47.371369886687845, -22.212811132301617 ], [ -47.371342658548549, -22.212760691449304 ], [ -47.371319548691034, -22.212709499420917 ], [ -47.371298885950168, -22.212656669559717 ], [ -47.371281396871943, -22.212602860412069 ], [ -47.37126692944328, -22.212548973132439 ], [ -47.371254408548623, -22.212495216987605 ], [ -47.371243440620461, -22.212441205517347 ], [ -47.371233659279881, -22.212385703165165 ], [ -47.371225952567919, -22.212330741821134 ], [ -47.37121955711423, -22.212275315869579 ], [ -47.371215756598829, -22.212219903503918 ], [ -47.371214723451487, -22.212201154997494 ], [ -47.371213747262253, -22.212182021713065 ], [ -47.371213249451039, -22.212163939413713 ], [ -47.371213070604753, -22.212145563244544 ], [ -47.37121287271902, -22.212126598909681 ], [ -47.371212829577985, -22.212107968744572 ], [ -47.371213475928165, -22.212089228267587 ], [ -47.371213948259182, -22.212070576499148 ], [ -47.37121495584055, -22.212052212304815 ], [ -47.371216077004554, -22.212033963931379 ], [ -47.371217155246441, -22.212015336131074 ], [ -47.371218732113554, -22.211996262145057 ], [ -47.371220655857002, -22.211978138527307 ], [ -47.371222156740025, -22.211959968107461 ], [ -47.37122398289236, -22.211940911603911 ], [ -47.371226026928888, -22.211922736922798 ], [ -47.37122789306752, -22.21190425583044 ], [ -47.371230374783906, -22.21188571976149 ], [ -47.371232830592866, -22.211867614908883 ], [ -47.371235893738479, -22.211849219350075 ], [ -47.371238698483687, -22.211831049264912 ], [ -47.371241569619187, -22.211813330577673 ], [ -47.371244101523949, -22.211795717151976 ], [ -47.371246759620767, -22.211777683982394 ], [ -47.371249651269466, -22.211759211172478 ], [ -47.371253193942323, -22.211740282562534 ], [ -47.371257234862611, -22.211722077230387 ], [ -47.37126093171522, -22.211703782674554 ], [ -47.371264837079174, -22.211685650657284 ], [ -47.371269620555488, -22.211666696863468 ], [ -47.371274445355105, -22.211649432399369 ], [ -47.371279829444369, -22.211631303598491 ], [ -47.371285600587242, -22.211614568259499 ], [ -47.3712956601019, -22.211580472298831 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 656.67746390399998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374871433611034, -22.216133195181975 ], [ -47.374840117418202, -22.216076491721989 ], [ -47.374810248708862, -22.216030749813196 ], [ -47.374778460164258, -22.215985030412391 ], [ -47.37474888752044, -22.21594390190781 ], [ -47.374716225333501, -22.215900898145811 ], [ -47.374682953655309, -22.215859009394531 ], [ -47.374648653771764, -22.215818033456632 ], [ -47.374615061619423, -22.215776737259461 ], [ -47.374579954104455, -22.215736766699457 ], [ -47.374541597575984, -22.215698455208202 ], [ -47.374501505727693, -22.215661701576295 ], [ -47.374460859673853, -22.215625928694106 ], [ -47.374418230263423, -22.215592044519546 ], [ -47.374373467289139, -22.215559721040158 ], [ -47.374328235102638, -22.215528135441215 ], [ -47.374281965986867, -22.215497106573604 ], [ -47.374235764707954, -22.215467456073846 ], [ -47.374188396309002, -22.21543770868605 ], [ -47.374141361815269, -22.215407848415207 ], [ -47.374093086742953, -22.215378303766268 ], [ -47.374046595447453, -22.215349616742792 ], [ -47.373999008696153, -22.215320362693166 ], [ -47.373951921250018, -22.215290407685924 ], [ -47.373905051041717, -22.215260533021588 ], [ -47.373857929706659, -22.215230217885903 ], [ -47.373811040101188, -22.21520026463773 ], [ -47.373763719282117, -22.215170363296732 ], [ -47.373716745772647, -22.21513948254751 ], [ -47.373669284204112, -22.215107722735908 ], [ -47.373623243389332, -22.215075537672512 ], [ -47.373577615783596, -22.215043115562914 ], [ -47.373532161366917, -22.215009797370463 ], [ -47.373487653415118, -22.214975682826505 ], [ -47.373443692739677, -22.214940269151317 ], [ -47.373400826579442, -22.214904547822858 ], [ -47.373356808036924, -22.214867937787758 ], [ -47.373313651062908, -22.214831731330431 ], [ -47.37327225126112, -22.214794661051428 ], [ -47.373231072869871, -22.214757330561152 ], [ -47.373190262924687, -22.214719400872077 ], [ -47.373148877164994, -22.214680850915727 ], [ -47.373110026524664, -22.214641122319804 ], [ -47.373071468197232, -22.214601956177287 ], [ -47.373032351344044, -22.214561629599523 ], [ -47.372994967088893, -22.2145209101479 ], [ -47.372956832060829, -22.214481182063167 ], [ -47.37291827189987, -22.214440735529774 ], [ -47.372880688056426, -22.214398611975849 ], [ -47.372844832645576, -22.214356606962571 ], [ -47.372808273334414, -22.214314547916423 ], [ -47.372771522332542, -22.214272519030487 ], [ -47.372734515177413, -22.214230549387487 ], [ -47.372697350692356, -22.214188927182246 ], [ -47.372660469063398, -22.214146681770625 ], [ -47.372623603216645, -22.21410540073559 ], [ -47.37258682648843, -22.214064062215336 ], [ -47.372550821126111, -22.214021971710139 ], [ -47.372513112785022, -22.213981596544205 ], [ -47.372473821290754, -22.213941790249837 ], [ -47.37243468591663, -22.213901010493082 ], [ -47.372396159681735, -22.213860521437606 ], [ -47.372356995879024, -22.21382004992109 ], [ -47.372318042281499, -22.21378041861874 ], [ -47.372277577695137, -22.213740799765425 ], [ -47.372236836474002, -22.21370161035891 ], [ -47.372195696665777, -22.213662707913919 ], [ -47.372154523165094, -22.213624265769084 ], [ -47.3721139998067, -22.213586053005795 ], [ -47.372073133230607, -22.213547388257137 ], [ -47.372031943997463, -22.213508642713421 ], [ -47.37199033882623, -22.213469830807753 ], [ -47.371949545028919, -22.21343143469343 ], [ -47.371908165010638, -22.213393126568157 ], [ -47.371867286771419, -22.213354200287114 ], [ -47.371825852879752, -22.213315324609678 ], [ -47.371785378598162, -22.213275824192312 ], [ -47.371745145155451, -22.213236456820365 ], [ -47.371705331560548, -22.213196941775895 ], [ -47.371665068602418, -22.213157078580576 ], [ -47.371625615544204, -22.213116959111808 ], [ -47.371587135693261, -22.213074901550492 ], [ -47.371549902532479, -22.213032960143344 ], [ -47.371513320901045, -22.212990184116212 ], [ -47.371477530176875, -22.212945792109306 ], [ -47.371444404078161, -22.212900017537429 ], [ -47.371412691188169, -22.212852770806691 ], [ -47.371382682585484, -22.212804683976707 ], [ -47.371355874099123, -22.212755020550595 ], [ -47.371333092586994, -22.21270455586976 ], [ -47.371312688799826, -22.212652388105862 ], [ -47.371295419427334, -22.212599254948731 ], [ -47.371281093629619, -22.212545895225588 ], [ -47.371268662265592, -22.212492523486532 ], [ -47.371257763134814, -22.212438850834744 ], [ -47.371248048964475, -22.212383729658679 ], [ -47.371240394608463, -22.212329141736674 ], [ -47.371234050464913, -22.212274160510884 ], [ -47.371230275790502, -22.212219124994729 ], [ -47.371229248716823, -22.21220048674153 ], [ -47.37122828137219, -22.212181526849328 ], [ -47.37122779071656, -22.212163704532983 ], [ -47.371227612960062, -22.212145440531746 ], [ -47.37122741551719, -22.212126518528901 ], [ -47.371227373029981, -22.212108171531764 ], [ -47.371228013371706, -22.212089605209918 ], [ -47.371228482453873, -22.212071081659037 ], [ -47.371229477577884, -22.212052944478536 ], [ -47.371230597576542, -22.212034715041824 ], [ -47.371231668114142, -22.212016220308339 ], [ -47.371233220047671, -22.211997447898664 ], [ -47.37123514383606, -22.211979323839792 ], [ -47.371236650027576, -22.211961089129872 ], [ -47.371238458353716, -22.211942218628092 ], [ -47.371240498788637, -22.211924075954212 ], [ -47.371242351524614, -22.211905727574674 ], [ -47.371244804549448, -22.211887405790218 ], [ -47.371247233203903, -22.211869501113927 ], [ -47.371250277276701, -22.211851220084501 ], [ -47.371253086232656, -22.2118330227086 ], [ -47.371255967883734, -22.211815239114983 ], [ -47.371258512669471, -22.211797536068804 ], [ -47.371261159217859, -22.211779581234001 ], [ -47.371264012958846, -22.211761350579057 ], [ -47.371267481878583, -22.211742816024078 ], [ -47.371271503005374, -22.211724699857996 ], [ -47.371275207765017, -22.211706366163401 ], [ -47.371279049030299, -22.211688531738115 ], [ -47.371283738268417, -22.211669951341193 ], [ -47.371288491668203, -22.211652942359148 ], [ -47.3712937669628, -22.211635179875373 ], [ -47.371299541867565, -22.211618433622544 ], [ -47.371307913776931, -22.211590057663098 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 651.770316632, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371352112845344, -22.211624632101362 ], [ -47.3713490319819, -22.211648600817654 ], [ -47.37134611732121, -22.211664876473414 ], [ -47.371343440981903, -22.211682085484323 ], [ -47.371340106315245, -22.211699668984309 ], [ -47.37133694181523, -22.211718596150988 ], [ -47.371333208648572, -22.211737314650993 ], [ -47.371329636315238, -22.211757245817637 ], [ -47.37132587314855, -22.211775897150968 ], [ -47.371321993148214, -22.211795032152892 ], [ -47.371318411648566, -22.21181437115095 ], [ -47.371315005315232, -22.211833373817647 ], [ -47.37131170081522, -22.211853140484315 ], [ -47.371308825481883, -22.211872981317629 ], [ -47.371305638315199, -22.211892838484303 ], [ -47.371303208815206, -22.211912019817628 ], [ -47.371300873481893, -22.211932356817627 ], [ -47.37129910431522, -22.211952508817614 ], [ -47.371296997315227, -22.211972491150981 ], [ -47.371295273315226, -22.211992292817619 ], [ -47.371293613148524, -22.21201147865154 ], [ -47.371292658148569, -22.212030939317607 ], [ -47.371292161981899, -22.212051102150951 ], [ -47.371291922648552, -22.212070494817628 ], [ -47.371291970481892, -22.212091213317631 ], [ -47.371292297148571, -22.212114578817619 ], [ -47.371292670815237, -22.212136735317625 ], [ -47.371292554648562, -22.212159921650944 ], [ -47.371293392481917, -22.212182842650954 ], [ -47.37129453148188, -22.212206072984298 ], [ -47.371295723648664, -22.212230076151627 ], [ -47.371298233315201, -22.2122523233176 ], [ -47.371300616148552, -22.212274737484275 ], [ -47.371303645148579, -22.212296743317605 ], [ -47.371306921981898, -22.21231933665095 ], [ -47.371309883315242, -22.212342633650948 ], [ -47.371312939315217, -22.212364590317627 ], [ -47.37131601564856, -22.21238837648427 ], [ -47.371319374315227, -22.212410507817602 ], [ -47.371323269815242, -22.212433856817601 ], [ -47.371327336148561, -22.212456957317606 ], [ -47.371331640981879, -22.212480177150926 ], [ -47.371336621481873, -22.212502634484242 ], [ -47.371342793648552, -22.212525810650906 ], [ -47.371348846481936, -22.212548561317671 ], [ -47.371355216481888, -22.212571134150906 ], [ -47.371362087648542, -22.212593355484234 ], [ -47.371369603315259, -22.212615961150902 ], [ -47.371377028481888, -22.212637894817597 ], [ -47.371385157148552, -22.212659728650895 ], [ -47.371393840815223, -22.21268191548425 ], [ -47.371403379148553, -22.212703132650887 ], [ -47.371413914981879, -22.212724702317555 ], [ -47.371425006815223, -22.212745114150891 ], [ -47.37143651048202, -22.212766301651079 ], [ -47.371448720315236, -22.212786924317545 ], [ -47.371460847481885, -22.212807284484221 ], [ -47.371473738148538, -22.21282720431752 ], [ -47.371487481315214, -22.212847445484218 ], [ -47.371501192315243, -22.212866794150859 ], [ -47.371514860815701, -22.212886057484805 ], [ -47.371530079981895, -22.212905763650873 ], [ -47.371544994148579, -22.212924986984209 ], [ -47.371560042148545, -22.212943401984202 ], [ -47.371575516148553, -22.212962265817545 ], [ -47.371591562315224, -22.212980972984194 ], [ -47.371607374648569, -22.212999193984196 ], [ -47.371623286315227, -22.213017096817531 ], [ -47.371639818315245, -22.21303518048418 ], [ -47.371656380981889, -22.213052643984163 ], [ -47.37167246231521, -22.213070656484181 ], [ -47.371689770648572, -22.213088995984194 ], [ -47.371706574648556, -22.213106442650847 ], [ -47.371723689815234, -22.213124280650831 ], [ -47.37174060098188, -22.213141980317509 ], [ -47.371758044148564, -22.213159853317517 ], [ -47.371775104981886, -22.213176531984175 ], [ -47.371792916148578, -22.213194265817496 ], [ -47.371809948315246, -22.213211376984184 ], [ -47.371828014315241, -22.213228265150807 ], [ -47.371845427648573, -22.213244985650821 ], [ -47.371863015148591, -22.213261547817503 ], [ -47.371880923315246, -22.21327815148415 ], [ -47.371898703315246, -22.213294806150788 ], [ -47.371917238148576, -22.213311841817472 ], [ -47.37193508498229, -22.213328261151148 ], [ -47.371953141481924, -22.213344730150826 ], [ -47.371971178981916, -22.21336205281747 ], [ -47.371989175315228, -22.213379116150811 ], [ -47.372006747481898, -22.213396045817454 ], [ -47.372024845982239, -22.213413470484461 ], [ -47.372042234482002, -22.213430202484204 ], [ -47.372060158315236, -22.21344788265079 ], [ -47.372078105648583, -22.213464625984095 ], [ -47.372095586815234, -22.213481513650791 ], [ -47.37211400731524, -22.213498607817421 ], [ -47.372132410981898, -22.213515238484113 ], [ -47.37215044081524, -22.213532592650783 ], [ -47.372167118815241, -22.213548684650757 ], [ -47.37218591081524, -22.2135667304841 ], [ -47.372202962815244, -22.213583167650761 ], [ -47.372220747315225, -22.213600144817431 ], [ -47.372237938315237, -22.213617513317434 ], [ -47.372255789148568, -22.213635067484088 ], [ -47.372272726481896, -22.213651261984097 ], [ -47.372289524815244, -22.213668012150762 ], [ -47.372306817815229, -22.213684428317414 ], [ -47.372324210981901, -22.213701869317415 ], [ -47.37234200064858, -22.213718888484063 ], [ -47.372359647815237, -22.213736188650739 ], [ -47.372377050815238, -22.213753558817398 ], [ -47.372394148815246, -22.21377068481738 ], [ -47.372411369481917, -22.213788581650729 ], [ -47.372429677815269, -22.213805186817389 ], [ -47.372448167481942, -22.213823192150709 ], [ -47.37246528581526, -22.213840122484047 ], [ -47.372482510148608, -22.213858155150717 ], [ -47.37250010648193, -22.213876050484046 ], [ -47.37251753481528, -22.213894243150712 ], [ -47.372534433315273, -22.213911711817374 ], [ -47.372550915981925, -22.213929918817378 ], [ -47.372568464315265, -22.21394829265072 ], [ -47.372584854148599, -22.213966099817362 ], [ -47.372601171315274, -22.213983884984035 ], [ -47.372617211648596, -22.214001208484028 ], [ -47.372632470315274, -22.214017908150684 ], [ -47.372647771481944, -22.214034695650671 ], [ -47.372662878815262, -22.214051445484039 ], [ -47.372673784481918, -22.214064071317367 ], [ -47.372680147481923, -22.214071330650675 ], [ -47.372686964148606, -22.214079705317371 ], [ -47.372698474981938, -22.214092703817332 ], [ -47.372710909481917, -22.214107207484034 ], [ -47.372725627148597, -22.214124183150684 ], [ -47.37273994931526, -22.214140431150675 ], [ -47.372754274315255, -22.214156622650687 ], [ -47.372768984981924, -22.214173450317325 ], [ -47.372782749648607, -22.214189996984022 ], [ -47.372797352315246, -22.214207010817329 ], [ -47.372811438481925, -22.214223694983996 ], [ -47.372825629648595, -22.214239978983983 ], [ -47.372839153148597, -22.214256353817341 ], [ -47.37285373914861, -22.214272845484004 ], [ -47.372867375815261, -22.214288583483999 ], [ -47.372882150481928, -22.214304999650654 ], [ -47.3728971786486, -22.214321589983996 ], [ -47.372911727481927, -22.214337363317323 ], [ -47.372925924315261, -22.214353095817295 ], [ -47.372940610148603, -22.2143692363173 ], [ -47.372955061148609, -22.214384896817325 ], [ -47.37296965114863, -22.214400638650648 ], [ -47.372983952149397, -22.214416046818112 ], [ -47.372999140815253, -22.21443206148399 ], [ -47.373012680148584, -22.214447193150637 ], [ -47.373027081648608, -22.214462648150629 ], [ -47.373042473648596, -22.214479210650612 ], [ -47.373057006981966, -22.214494759817281 ], [ -47.373072029315288, -22.214510931983952 ], [ -47.373087315815276, -22.214527268150604 ], [ -47.373102681648604, -22.214543159983943 ], [ -47.373118297148608, -22.214559044317284 ], [ -47.373133315148614, -22.214574626983943 ], [ -47.373148824815289, -22.214590549817281 ], [ -47.373165004315275, -22.214606037317271 ], [ -47.373180711315278, -22.214621631150589 ], [ -47.373196796815272, -22.214637523317268 ], [ -47.373212347148623, -22.214652945817264 ], [ -47.373228587315282, -22.214668215150599 ], [ -47.37324420614862, -22.214682840650564 ], [ -47.373260498481955, -22.214698231983924 ], [ -47.373276111815272, -22.214713980817272 ], [ -47.373292264315282, -22.214729299483928 ], [ -47.373308642981947, -22.214744614150586 ], [ -47.373325336815284, -22.214758687150585 ], [ -47.373342372981959, -22.214773087150594 ], [ -47.373359250648619, -22.214787577317221 ], [ -47.373376215315282, -22.214801701317221 ], [ -47.373393235481934, -22.21481615598389 ], [ -47.373410764981955, -22.214831318983883 ], [ -47.373427064315266, -22.214845568817207 ], [ -47.373443666981956, -22.214860046150541 ], [ -47.373461298648614, -22.214874719817232 ], [ -47.373478978315283, -22.214889208983895 ], [ -47.373496730981948, -22.214903259483879 ], [ -47.373514924315273, -22.21491755448389 ], [ -47.373533260648621, -22.214931805150563 ], [ -47.373551429648607, -22.214946047817197 ], [ -47.373569531648613, -22.214959439150554 ], [ -47.373588008148616, -22.214972957317208 ], [ -47.373606332648627, -22.214986320150565 ], [ -47.373624619648602, -22.214999800817193 ], [ -47.373642963315277, -22.215013111317205 ], [ -47.373661821148616, -22.215026259650539 ], [ -47.373680874148647, -22.21503964748387 ], [ -47.373699884148621, -22.215052833650525 ], [ -47.373718471815302, -22.215066033317182 ], [ -47.37373770114862, -22.215078702317182 ], [ -47.373757620148631, -22.215091442650511 ], [ -47.373776966815299, -22.215103984817166 ], [ -47.373796588648609, -22.215116033483824 ], [ -47.373816470481948, -22.215128661317173 ], [ -47.373836413481975, -22.215141715317166 ], [ -47.373855643315302, -22.215153854817174 ], [ -47.373874898815309, -22.215166795983855 ], [ -47.373894867148948, -22.215180227984046 ], [ -47.373913978315294, -22.215192485983827 ], [ -47.373933932815319, -22.215205075817163 ], [ -47.373953664981961, -22.215217873817164 ], [ -47.373973590148623, -22.215230253650486 ], [ -47.373993907315324, -22.215243060817151 ], [ -47.374012437481966, -22.215255184150475 ], [ -47.374032660981968, -22.215267633817128 ], [ -47.374052341815293, -22.215279973317124 ], [ -47.374071759648636, -22.215292251983829 ], [ -47.374091556981966, -22.215304282983794 ], [ -47.374112161815312, -22.215316599483796 ], [ -47.374131865315292, -22.215328508817123 ], [ -47.374151949981979, -22.215340168983776 ], [ -47.374171593481968, -22.21535300031713 ], [ -47.374191585648632, -22.215365755317119 ], [ -47.374211321648644, -22.215378684650442 ], [ -47.374230602315301, -22.215391280817123 ], [ -47.374251117815312, -22.215403981317102 ], [ -47.374271296648637, -22.215416714983775 ], [ -47.374292202481953, -22.215430414317122 ], [ -47.374311887648638, -22.215442763150431 ], [ -47.374332069315301, -22.215455953483765 ], [ -47.374352754148653, -22.215469266650423 ], [ -47.374372260981971, -22.21548223931709 ], [ -47.374391848981979, -22.215495747983748 ], [ -47.374410990981964, -22.215508846983745 ], [ -47.374430022815339, -22.215523268483757 ], [ -47.374448454815315, -22.215536956817058 ], [ -47.374467816148645, -22.215551458650413 ], [ -47.374485337148634, -22.215566052317065 ], [ -47.374503727481972, -22.215581668983742 ], [ -47.374520911148657, -22.215596844150415 ], [ -47.374538442481992, -22.215612122483726 ], [ -47.374554993148678, -22.215627193983732 ], [ -47.374572743648649, -22.215643021150406 ], [ -47.374589156148659, -22.215658667317072 ], [ -47.374604667981977, -22.215674790650411 ], [ -47.374621497148667, -22.215691988150365 ], [ -47.374635993481981, -22.215707841150397 ], [ -47.374651636983003, -22.215724978318178 ], [ -47.37466664531533, -22.215741778817055 ], [ -47.37468175381531, -22.215759790650377 ], [ -47.374696264315325, -22.215777291483711 ], [ -47.374711082315336, -22.215794622650378 ], [ -47.374725151148652, -22.215811686150385 ], [ -47.374739358815319, -22.215829204983709 ], [ -47.374752928481982, -22.215845854483714 ], [ -47.374767571648668, -22.215863294150356 ], [ -47.374780801648662, -22.215880145650345 ], [ -47.374795551648646, -22.215898578483685 ], [ -47.374808137815329, -22.215915705317038 ], [ -47.374819702148649, -22.21593241998368 ], [ -47.374832729815324, -22.215949052650352 ], [ -47.37484525648199, -22.215966430483682 ], [ -47.374857382648671, -22.215983855650343 ], [ -47.374868834315329, -22.216001634150341 ], [ -47.374880393148629, -22.216019035150353 ], [ -47.374891462148661, -22.216036075650329 ], [ -47.374901900981989, -22.216052319650323 ], [ -47.374910664148643, -22.216068289150343 ], [ -47.374918014148655, -22.216083438817012 ], [ -47.374925344648631, -22.216099031150346 ], [ -47.374937501348086, -22.216126709114651 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 641.43690383399996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371456930454201, -22.211706624881877 ], [ -47.371454882745724, -22.211717422374345 ], [ -47.371451639271221, -22.21173682199051 ], [ -47.371447790051683, -22.211756122472373 ], [ -47.371444197687083, -22.211776165491976 ], [ -47.371440216077765, -22.2117958995706 ], [ -47.37143648764593, -22.211814287395601 ], [ -47.371433115962432, -22.211832493532125 ], [ -47.371429866128899, -22.211850623228308 ], [ -47.37142684132057, -22.211868716941147 ], [ -47.371424013228228, -22.211888231906038 ], [ -47.371420969991384, -22.211907192437305 ], [ -47.371418825559189, -22.211924123220545 ], [ -47.371416711855048, -22.211942530319668 ], [ -47.371414983710864, -22.21196221523169 ], [ -47.371412880554161, -22.211982161273077 ], [ -47.371411236373021, -22.212001046329156 ], [ -47.371409743138095, -22.212018303333171 ], [ -47.371408940816515, -22.212034653046942 ], [ -47.371408490201922, -22.212052965386107 ], [ -47.371408267634315, -22.212071000768972 ], [ -47.371408312418751, -22.21209039173646 ], [ -47.371408628841841, -22.212113023208037 ], [ -47.371409018679095, -22.212136137409924 ], [ -47.371408907503614, -22.212158331178049 ], [ -47.371409645834945, -22.21217852959936 ], [ -47.371410754078305, -22.212201132261281 ], [ -47.371411786002135, -22.21222190833452 ], [ -47.371413976828805, -22.212241328975026 ], [ -47.371416228928048, -22.212262513227113 ], [ -47.371418994892259, -22.212282607974039 ], [ -47.371422346960415, -22.212305719912781 ], [ -47.371425344931986, -22.212329304998072 ], [ -47.371428385707482, -22.212351152153143 ], [ -47.371431382069133, -22.212374319835043 ], [ -47.371434461827015, -22.212394613240907 ], [ -47.371438160163308, -22.212416780366564 ], [ -47.371442068195805, -22.212438981471706 ], [ -47.371445965512834, -22.212460003113179 ], [ -47.371450097364985, -22.212478633782808 ], [ -47.371455717392173, -22.212499736632022 ], [ -47.371461579292365, -22.212521769565249 ], [ -47.371467394930853, -22.212542377897773 ], [ -47.371473569804941, -22.212562347373208 ], [ -47.371480655085705, -22.212583658473495 ], [ -47.371487494739114, -22.212603862510683 ], [ -47.37149478275024, -22.212623438279401 ], [ -47.371502216549587, -22.212642431656541 ], [ -47.371510016593135, -22.212659782125446 ], [ -47.371518818585201, -22.212677802129551 ], [ -47.371528818585809, -22.212696204685443 ], [ -47.371539401697561, -22.212715696665409 ], [ -47.37155053591519, -22.212734502572843 ], [ -47.371561577555624, -22.21275304024093 ], [ -47.37157274503334, -22.212770297228204 ], [ -47.371585215167585, -22.212788663434154 ], [ -47.371598301958201, -22.212807131213594 ], [ -47.371610662154055, -22.212824550672693 ], [ -47.371624463232514, -22.212842420648379 ], [ -47.371638458003915, -22.212860458930894 ], [ -47.371652566404308, -22.212877724082929 ], [ -47.371667210343851, -22.212895576005089 ], [ -47.371682263702283, -22.212913125710582 ], [ -47.371697440232701, -22.212930614045721 ], [ -47.371712403005624, -22.212947449231592 ], [ -47.371727725663597, -22.212964210039544 ], [ -47.371744737879091, -22.212982147528862 ], [ -47.371760909762429, -22.213000261442239 ], [ -47.371776777130627, -22.21301707412028 ], [ -47.371793262991794, -22.213034190471735 ], [ -47.371810532987141, -22.213052189829689 ], [ -47.371827116846291, -22.213069546918536 ], [ -47.371843230200604, -22.213086057328539 ], [ -47.371859717305249, -22.213102175110262 ], [ -47.371878069444172, -22.213120447558051 ], [ -47.371893855512553, -22.213136306839015 ], [ -47.371910994398498, -22.213152328328501 ], [ -47.37192855659373, -22.213169191759988 ], [ -47.371945427764722, -22.213185079351874 ], [ -47.371963226373609, -22.213201581434166 ], [ -47.371980827802432, -22.213218068824673 ], [ -47.371998970195975, -22.213234743786476 ], [ -47.372016678309365, -22.213251035470545 ], [ -47.372035626782406, -22.213268318015281 ], [ -47.372054449666997, -22.213286394933377 ], [ -47.372072510959264, -22.213303519850157 ], [ -47.372090406179865, -22.213320760750822 ], [ -47.372108476667954, -22.213338158431117 ], [ -47.3721263442634, -22.213355351424596 ], [ -47.37214365011355, -22.213372422001328 ], [ -47.37216116942318, -22.213388766017545 ], [ -47.372178543906053, -22.213405550614944 ], [ -47.372195589261104, -22.213421368644486 ], [ -47.372214755427947, -22.213438688345093 ], [ -47.37223411043545, -22.213457318016754 ], [ -47.372250741588836, -22.21347336480871 ], [ -47.372269514294011, -22.213491392105023 ], [ -47.37228644628842, -22.213507713585553 ], [ -47.372305183616291, -22.213525600317798 ], [ -47.372322959633102, -22.213543559866217 ], [ -47.372339709890994, -22.213560031740183 ], [ -47.372356928536952, -22.213576495207331 ], [ -47.372373584239334, -22.213593103144113 ], [ -47.372390991402376, -22.213609627677439 ], [ -47.372408538102448, -22.21362722262467 ], [ -47.372425870067858, -22.213643803906031 ], [ -47.372444365300531, -22.213661935454375 ], [ -47.372462193973874, -22.213679730482529 ], [ -47.372480088853344, -22.213697654657889 ], [ -47.372495382942354, -22.213713549258916 ], [ -47.372512339125556, -22.213728928054717 ], [ -47.372532568916597, -22.213748627921088 ], [ -47.372551125928752, -22.21376698112406 ], [ -47.372568888000387, -22.213785576755232 ], [ -47.37258642697573, -22.213803413746579 ], [ -47.372604170126998, -22.21382193502793 ], [ -47.372622158841459, -22.213840530683495 ], [ -47.372638879772744, -22.21385900086366 ], [ -47.372656112241195, -22.21387704396324 ], [ -47.372673255412231, -22.213895669602863 ], [ -47.372689460857039, -22.21391333298622 ], [ -47.372705577983261, -22.213930739412234 ], [ -47.372721129889911, -22.213947760001972 ], [ -47.372736671709411, -22.213964811521404 ], [ -47.372752766480204, -22.213982656137649 ], [ -47.372764183997766, -22.213995874548523 ], [ -47.372771606427548, -22.214004342544264 ], [ -47.372778246557516, -22.214012500319935 ], [ -47.372788826210794, -22.214024447285933 ], [ -47.372801637368354, -22.214039390278419 ], [ -47.372815858911778, -22.214055793695561 ], [ -47.372829815018804, -22.214071626403729 ], [ -47.372844290283417, -22.214087987737162 ], [ -47.372860103977047, -22.21410607715492 ], [ -47.372874188478924, -22.214123008287913 ], [ -47.372888530241148, -22.214139718125683 ], [ -47.372902348422038, -22.214156084869479 ], [ -47.372916931286483, -22.214172818321693 ], [ -47.372930198087801, -22.214188882322546 ], [ -47.37294392120581, -22.214204398361428 ], [ -47.372957244744207, -22.214219774972214 ], [ -47.372971204705735, -22.214235285908664 ], [ -47.372985778799602, -22.214251374959169 ], [ -47.373000398900096, -22.214267225548586 ], [ -47.373014847747143, -22.214283237313023 ], [ -47.373029119237785, -22.214298922419488 ], [ -47.373043224528061, -22.214314208266199 ], [ -47.373057731985128, -22.214329861031139 ], [ -47.373071572376865, -22.214344772880668 ], [ -47.37308745678996, -22.214361521120885 ], [ -47.373101321802359, -22.214377016759983 ], [ -47.373115010494857, -22.21439170680064 ], [ -47.373130345252484, -22.214408207695872 ], [ -47.373144887300413, -22.214423766177422 ], [ -47.373159887958124, -22.21443991500027 ], [ -47.373174414352867, -22.214455438859467 ], [ -47.373188826123091, -22.214470343962482 ], [ -47.373204505118956, -22.214486292876494 ], [ -47.373219701499579, -22.214502060622483 ], [ -47.373233639711643, -22.214516370131459 ], [ -47.373249141503635, -22.214531208902031 ], [ -47.373265477077325, -22.214547426772448 ], [ -47.373281542210655, -22.21456329880953 ], [ -47.373296106731537, -22.214577743594145 ], [ -47.373311171748021, -22.214591908021102 ], [ -47.373326888026256, -22.214606624762151 ], [ -47.373344696853991, -22.214623448716907 ], [ -47.373360386903371, -22.21463927492454 ], [ -47.373374996239818, -22.21465313008332 ], [ -47.373388960532303, -22.21466618721427 ], [ -47.373403480611699, -22.214678427722301 ], [ -47.373420908446072, -22.214693158778346 ], [ -47.373437463972692, -22.214707372369546 ], [ -47.37345419403421, -22.214721301043202 ], [ -47.373472032219674, -22.214736450420908 ], [ -47.373490177904394, -22.214752146414256 ], [ -47.373506647486181, -22.214766545083364 ], [ -47.373522208360342, -22.214780113980666 ], [ -47.373538501139649, -22.214793673375514 ], [ -47.3735550943425, -22.214807272138898 ], [ -47.373571923579696, -22.214820591778629 ], [ -47.373589718171722, -22.214834573472537 ], [ -47.373608003253537, -22.214848784303285 ], [ -47.373625097308221, -22.21486218431729 ], [ -47.373641661288055, -22.214874437864793 ], [ -47.373659818695039, -22.214887722566587 ], [ -47.373678310922621, -22.214901207709122 ], [ -47.373696487973483, -22.214914607321024 ], [ -47.373713596326063, -22.214927021451615 ], [ -47.373731731322458, -22.214939665795207 ], [ -47.373750669380208, -22.214952972860029 ], [ -47.373769916863004, -22.214966323752218 ], [ -47.373787372328373, -22.214978719405789 ], [ -47.373804243199508, -22.214989834561084 ], [ -47.373823798172943, -22.215002342058312 ], [ -47.373842242831245, -22.215014299464031 ], [ -47.373861399936914, -22.215026062765688 ], [ -47.373882710335188, -22.215039597941825 ], [ -47.373902518451054, -22.215052563649209 ], [ -47.373922349055015, -22.215065082404344 ], [ -47.373942991723986, -22.215078955852043 ], [ -47.373961942339115, -22.215091703254714 ], [ -47.373979612196266, -22.215103036789504 ], [ -47.373999817673599, -22.215115784969143 ], [ -47.374019210548752, -22.215128362907603 ], [ -47.374038492154483, -22.21514034288408 ], [ -47.374059969046151, -22.215153881094984 ], [ -47.374077978025888, -22.215165663440764 ], [ -47.374097236899907, -22.215177519277994 ], [ -47.374117516261926, -22.215190234041962 ], [ -47.374136242148616, -22.215202075161638 ], [ -47.374154779411256, -22.21521334040489 ], [ -47.374175263094315, -22.215225584485982 ], [ -47.374194323018962, -22.215237104823444 ], [ -47.37421618457337, -22.215249796561665 ], [ -47.374237886181099, -22.215263972269835 ], [ -47.374257944061206, -22.215276769192805 ], [ -47.374278208211045, -22.21529004452233 ], [ -47.374296233142125, -22.215301820308071 ], [ -47.374315963600601, -22.215314034811616 ], [ -47.374337418260886, -22.215327573575021 ], [ -47.37435819346387, -22.215341187305771 ], [ -47.374377819411315, -22.215353498987799 ], [ -47.374398569878572, -22.215367061075625 ], [ -47.374419646746055, -22.21538062656079 ], [ -47.374440700523976, -22.215394627992399 ], [ -47.374460923111982, -22.215408574293519 ], [ -47.374482203674312, -22.215423136722865 ], [ -47.374503017124631, -22.215438908251272 ], [ -47.374521190941302, -22.215452404843891 ], [ -47.374543115148761, -22.215468826291065 ], [ -47.37456332370899, -22.215485658486529 ], [ -47.374582967195764, -22.21550233929754 ], [ -47.374600696454173, -22.215517996278969 ], [ -47.374618878832969, -22.215533841983937 ], [ -47.374635904363338, -22.215549345901891 ], [ -47.374654617146803, -22.215566031078115 ], [ -47.374674141921574, -22.215584644192525 ], [ -47.374690999672197, -22.215602166492303 ], [ -47.374708814973047, -22.215620371699806 ], [ -47.374724579657205, -22.215637611741855 ], [ -47.374740688594457, -22.215655258714968 ], [ -47.37475723734407, -22.215673783563126 ], [ -47.374773648727867, -22.215693348636645 ], [ -47.37478782897081, -22.215710451141675 ], [ -47.374802745133657, -22.215727897108142 ], [ -47.374817720165602, -22.215746059686047 ], [ -47.374832123356825, -22.215763819599271 ], [ -47.374845103140345, -22.215779745322358 ], [ -47.374860388498156, -22.21579794981087 ], [ -47.374874415220546, -22.215815816110091 ], [ -47.374890248283847, -22.215835602415044 ], [ -47.374905070290538, -22.215855771687785 ], [ -47.374915687778469, -22.21587111780514 ], [ -47.374928069537212, -22.215886925816442 ], [ -47.374942385350707, -22.215906785657594 ], [ -47.374956121265008, -22.215926523995702 ], [ -47.374968202180646, -22.215945279374537 ], [ -47.374979647284569, -22.215962509146248 ], [ -47.374991158938911, -22.215980231085918 ], [ -47.375003737047457, -22.215999804018672 ], [ -47.37501554269712, -22.216021317941138 ], [ -47.375024323738891, -22.216039417214947 ], [ -47.375032496176722, -22.216056800364818 ], [ -47.375058005402416, -22.216114878801228 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 642.71279722099996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371444053347695, -22.211696551872166 ], [ -47.3714439644504, -22.211697123489298 ], [ -47.371440535690766, -22.211715203205173 ], [ -47.37143730208804, -22.211734543765136 ], [ -47.371433467375056, -22.211753771499271 ], [ -47.371429877514359, -22.211773800537234 ], [ -47.371425923210268, -22.211793399272707 ], [ -47.371422175832478, -22.211811880494587 ], [ -47.371418777922017, -22.211830228239052 ], [ -47.371415508526091, -22.211848467056551 ], [ -47.371412448756445, -22.211866769888637 ], [ -47.37140961475901, -22.211886325587074 ], [ -47.371406553531017, -22.211905398197771 ], [ -47.371404373465559, -22.211922610299776 ], [ -47.371402232057939, -22.211941258636514 ], [ -47.371400498785988, -22.21196100193454 ], [ -47.371398395148873, -22.211980952512413 ], [ -47.37139674099047, -22.211999952144808 ], [ -47.371395226889241, -22.212017450252485 ], [ -47.371394405483152, -22.21203418883535 ], [ -47.371393949174703, -22.212052732486288 ], [ -47.371393724511506, -22.212070937529617 ], [ -47.371393769677184, -22.212090494438662 ], [ -47.371394087380779, -22.212113217663774 ], [ -47.371394475196624, -22.212136212152945 ], [ -47.371394363397343, -22.212158529991708 ], [ -47.371395114166667, -22.212179068735324 ], [ -47.371396226254653, -22.21220174985617 ], [ -47.371397278209137, -22.212222929316049 ], [ -47.371399508891045, -22.212242703272278 ], [ -47.37140177733216, -22.212264041263669 ], [ -47.371404576176005, -22.212284374896356 ], [ -47.371407918839772, -22.212307422009431 ], [ -47.371410912231539, -22.212330971084061 ], [ -47.371413954910103, -22.212352831928079 ], [ -47.371416961268274, -22.212376076920567 ], [ -47.371420075889894, -22.212396600067329 ], [ -47.37142379887176, -22.212418914927248 ], [ -47.371427726691934, -22.212441228456733 ], [ -47.371431674948688, -22.212462524872134 ], [ -47.37143591288212, -22.212481633874642 ], [ -47.371441601926911, -22.212502995888471 ], [ -47.371447487693807, -22.212525118538373 ], [ -47.371453372627627, -22.212545972433432 ], [ -47.371459634538461, -22.21256622339104 ], [ -47.371466773617563, -22.212587696312085 ], [ -47.371473686460249, -22.2126081165529 ], [ -47.371481079553483, -22.212627974579625 ], [ -47.371488669586455, -22.212647367138672 ], [ -47.371496686916466, -22.212665200944649 ], [ -47.371505705638896, -22.212683664656431 ], [ -47.371515842118697, -22.212702318371917 ], [ -47.371526540299904, -22.212722022291825 ], [ -47.371537808969585, -22.212741055294082 ], [ -47.37154898630088, -22.212759820774401 ], [ -47.371560369177324, -22.21277741061731 ], [ -47.371572998440683, -22.212796011193255 ], [ -47.371586163257511, -22.21281458908355 ], [ -47.371598686991433, -22.212832239026849 ], [ -47.371612665330971, -22.212850338526309 ], [ -47.371626775026812, -22.212868524940109 ], [ -47.371641000877176, -22.212885933823085 ], [ -47.371655748574298, -22.212903912234083 ], [ -47.371670926033779, -22.212921606622164 ], [ -47.371686182039575, -22.212939186540368 ], [ -47.371701263424221, -22.212956155182109 ], [ -47.371716737249962, -22.212973081347325 ], [ -47.371733693271842, -22.212990959587998 ], [ -47.371749853836434, -22.213009060824731 ], [ -47.371765901325276, -22.213026064355418 ], [ -47.371782426953793, -22.213043221996262 ], [ -47.371799677595568, -22.213061201184477 ], [ -47.371816302368153, -22.213078601095539 ], [ -47.371832581949015, -22.213095281829204 ], [ -47.37184914076974, -22.213111469721522 ], [ -47.371867425287142, -22.213129674842527 ], [ -47.371883367117803, -22.213145690609135 ], [ -47.371900621892991, -22.213161820433214 ], [ -47.371918165480487, -22.213178665998282 ], [ -47.371935126192604, -22.213194637911972 ], [ -47.371952938496207, -22.213211152692303 ], [ -47.371970562246418, -22.21322766099232 ], [ -47.371988753694936, -22.213244381042205 ], [ -47.372006479148325, -22.213260688682421 ], [ -47.372025316124741, -22.213277869534124 ], [ -47.372044040836265, -22.213295852170837 ], [ -47.372062094008655, -22.213312969389683 ], [ -47.372079948847528, -22.213330171386112 ], [ -47.372098022837108, -22.213347572439698 ], [ -47.372115830545617, -22.213364707809024 ], [ -47.372133213643664, -22.213381854584469 ], [ -47.372150786456253, -22.213398248515293 ], [ -47.372168174274606, -22.213415045996342 ], [ -47.372185391522756, -22.213431023542956 ], [ -47.372204462377084, -22.213448257114365 ], [ -47.372223651737833, -22.21346672734796 ], [ -47.372240288747037, -22.213482779790926 ], [ -47.372259063864071, -22.213500809404369 ], [ -47.372276010859181, -22.213517145345651 ], [ -47.372294629083576, -22.213534918382262 ], [ -47.372312331973284, -22.213552804049645 ], [ -47.372329219803092, -22.213569411210148 ], [ -47.372346403284979, -22.213585841056421 ], [ -47.372363076816235, -22.213602466771935 ], [ -47.372380469708887, -22.213618977759424 ], [ -47.372397997217284, -22.213636553463267 ], [ -47.37241538639536, -22.213653189480262 ], [ -47.372433775619776, -22.21367121710594 ], [ -47.372451551083962, -22.213688959026435 ], [ -47.372469346353498, -22.21370678342991 ], [ -47.372484881264711, -22.213722928309878 ], [ -47.372502006466675, -22.213738460401956 ], [ -47.372522018742174, -22.2137579484518 ], [ -47.372540395919486, -22.213776123796148 ], [ -47.372558090773829, -22.213794649056773 ], [ -47.372575636918917, -22.213812493340875 ], [ -47.372593340717941, -22.213830973545409 ], [ -47.372611193155599, -22.213849428327428 ], [ -47.372627884303803, -22.213867865610077 ], [ -47.372645156255366, -22.213885950051367 ], [ -47.372662205259182, -22.213904473381913 ], [ -47.372678424669225, -22.213922151988175 ], [ -47.372694532196334, -22.21393954804844 ], [ -47.372710047447981, -22.213956528522807 ], [ -47.372725559185874, -22.213973547039821 ], [ -47.372741530526973, -22.213991254808278 ], [ -47.372752884063175, -22.21400439914698 ], [ -47.372760174064204, -22.214012716059983 ], [ -47.372766836261277, -22.21402090094702 ], [ -47.372777532312071, -22.214032979354709 ], [ -47.372790296387421, -22.214047867431503 ], [ -47.372804579946262, -22.21406434237981 ], [ -47.372818581810755, -22.214080226999421 ], [ -47.372833038292278, -22.214096567103685 ], [ -47.372848714107533, -22.214114498802623 ], [ -47.372862758630006, -22.214131381877351 ], [ -47.372877133005275, -22.214148129714545 ], [ -47.372890984684403, -22.214164536136181 ], [ -47.372905518586613, -22.214181213406889 ], [ -47.372918817475274, -22.214197316261789 ], [ -47.372932648453542, -22.214212954254105 ], [ -47.372946011132981, -22.214228376038513 ], [ -47.372960072932663, -22.214244000128687 ], [ -47.37297470378563, -22.214260151839518 ], [ -47.37298931497773, -22.214275992771924 ], [ -47.373003732323063, -22.214291969628327 ], [ -47.373018055606536, -22.214307711658957 ], [ -47.373032204110537, -22.214323044337313 ], [ -47.373046721885473, -22.21433870823579 ], [ -47.373060619853241, -22.214353682124926 ], [ -47.373076417298037, -22.214370338668513 ], [ -47.373090241600543, -22.214385788811061 ], [ -47.373104019393978, -22.214400574471597 ], [ -47.373119361306905, -22.214417083067421 ], [ -47.373133902265515, -22.214432640384619 ], [ -47.373148905632675, -22.214448792125438 ], [ -47.373163527040575, -22.214464417523011 ], [ -47.373178058068689, -22.214479445967264 ], [ -47.373193729127578, -22.214495386808697 ], [ -47.373208903210617, -22.214511131419791 ], [ -47.373223037854508, -22.214525642594214 ], [ -47.373238624359999, -22.214540562455927 ], [ -47.373254881361987, -22.214556702321744 ], [ -47.373270949041149, -22.214572576875021 ], [ -47.37328563678858, -22.214587143874002 ], [ -47.373300848698833, -22.214601446414193 ], [ -47.373316552796446, -22.214616151750111 ], [ -47.3733341720624, -22.214632796627274 ], [ -47.373349852522267, -22.214648613163124 ], [ -47.373364654754148, -22.214662651260301 ], [ -47.373378920843379, -22.214675990583082 ], [ -47.37339371264197, -22.214688460152491 ], [ -47.373411091517887, -22.214703149826558 ], [ -47.373427687312009, -22.214717397989663 ], [ -47.37344444669916, -22.214731351079113 ], [ -47.373462182632295, -22.214746413617977 ], [ -47.373480251293934, -22.214762042987186 ], [ -47.373496699594668, -22.214776423051831 ], [ -47.373512390692873, -22.214790105503589 ], [ -47.373528850833068, -22.214803804182345 ], [ -47.373545579843871, -22.214817514246093 ], [ -47.373562524509722, -22.214830925243302 ], [ -47.373580368944403, -22.214844946100463 ], [ -47.373598660432663, -22.214859161910702 ], [ -47.373615888855475, -22.214872667256223 ], [ -47.373632645087781, -22.214885063026884 ], [ -47.373650842381373, -22.21489837691178 ], [ -47.37366931364302, -22.214911846765677 ], [ -47.373687504437513, -22.21492525650941 ], [ -47.373704767204316, -22.214937782686132 ], [ -47.373722992555294, -22.2149504900284 ], [ -47.373741944980829, -22.214963807189275 ], [ -47.37376116277828, -22.214977137490781 ], [ -47.373778759768776, -22.21498963364596 ], [ -47.373795925447581, -22.21500094303174 ], [ -47.373815525924314, -22.215013479633456 ], [ -47.373834083333634, -22.215025510134257 ], [ -47.373853298530229, -22.215037309106521 ], [ -47.373874430357951, -22.215050730864863 ], [ -47.373894255334335, -22.215063707608824 ], [ -47.373914010841986, -22.215076178957087 ], [ -47.373934480114904, -22.215089935869724 ], [ -47.373953557944759, -22.215102768847018 ], [ -47.373971407965534, -22.215114217939888 ], [ -47.373991582070715, -22.215126946326244 ], [ -47.37401101735729, -22.215139551772392 ], [ -47.374030379408104, -22.215151581730947 ], [ -47.374051711334211, -22.215165028561362 ], [ -47.374069785462282, -22.215176853530579 ], [ -47.374089164914508, -22.215188783596442 ], [ -47.374109369460463, -22.215201451452444 ], [ -47.374128181840454, -22.215213347265468 ], [ -47.374146876611867, -22.215224708228252 ], [ -47.374167375438709, -22.215236961361715 ], [ -47.374186515810237, -22.215248530323631 ], [ -47.374208155253775, -22.215261093115469 ], [ -47.374229599598124, -22.215275100776875 ], [ -47.374249649264051, -22.215287892459479 ], [ -47.37426984739519, -22.215301124539501 ], [ -47.374288029293162, -22.215313002872801 ], [ -47.374307857881789, -22.215325278125867 ], [ -47.374329153063769, -22.215338716252223 ], [ -47.374349944595536, -22.2153523406833 ], [ -47.37436957794538, -22.215364657009232 ], [ -47.374390257312598, -22.215378172627787 ], [ -47.374411285175825, -22.21539170657314 ], [ -47.374432145585743, -22.215405579409197 ], [ -47.374452288850264, -22.215419471006033 ], [ -47.374473302092383, -22.215433850506816 ], [ -47.374493892840654, -22.215449453281757 ], [ -47.374512098930218, -22.215462973841948 ], [ -47.3745337027785, -22.215479155337501 ], [ -47.374553575393762, -22.215495707717004 ], [ -47.374573062236387, -22.215512255510035 ], [ -47.374590723295846, -22.215527852264646 ], [ -47.374608824293972, -22.215543627048199 ], [ -47.374625790466382, -22.215559076913937 ], [ -47.374644382964419, -22.215575654839007 ], [ -47.374663518704878, -22.215593897085132 ], [ -47.374680208215828, -22.215611244514172 ], [ -47.37469790024992, -22.215629323758296 ], [ -47.374713506390201, -22.215646390420169 ], [ -47.374729557147795, -22.2156639736675 ], [ -47.374745913345357, -22.215682282972246 ], [ -47.374762161868652, -22.215701653890815 ], [ -47.374776383393737, -22.215718806186867 ], [ -47.374791287286229, -22.215736237803352 ], [ -47.374806149043316, -22.21575426299658 ], [ -47.374820527793972, -22.215771992774837 ], [ -47.374833581312899, -22.215788008970001 ], [ -47.374848786396811, -22.21580611785582 ], [ -47.374862713528877, -22.215823857305189 ], [ -47.374878411209224, -22.215843474426261 ], [ -47.374892953735824, -22.215863263394237 ], [ -47.374903689579476, -22.215878780580173 ], [ -47.374916152076729, -22.215894691673356 ], [ -47.374930244246791, -22.215914241263654 ], [ -47.374943778942566, -22.215933690455451 ], [ -47.37495578120204, -22.215952323724476 ], [ -47.374967240522139, -22.215969574899717 ], [ -47.374978696844664, -22.215987211659453 ], [ -47.37499100754367, -22.216006368475767 ], [ -47.375002432882674, -22.216027189345663 ], [ -47.375011035044054, -22.216044919918698 ], [ -47.375019102239541, -22.216062079216577 ], [ -47.375042942397215, -22.216116357595197 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 644.00417249700001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37143095251475, -22.211686303851639 ], [ -47.371429603953963, -22.211694975206797 ], [ -47.371426188636143, -22.211712984034687 ], [ -47.371422964905186, -22.211732265538469 ], [ -47.371419144698777, -22.211751420524852 ], [ -47.371415557341983, -22.211771435581209 ], [ -47.371411630343154, -22.211790898973508 ], [ -47.371407864019389, -22.211809473592268 ], [ -47.371404439881942, -22.211827962944671 ], [ -47.371401150923596, -22.211846310883491 ], [ -47.371398056192604, -22.211864822834798 ], [ -47.371395216290068, -22.211884419266802 ], [ -47.371392137070899, -22.211903603956916 ], [ -47.371389921372099, -22.21192109737769 ], [ -47.371387752260965, -22.211939986952039 ], [ -47.371386013861233, -22.211959788636054 ], [ -47.371383909743713, -22.211979743750426 ], [ -47.371382245608004, -22.211998857959149 ], [ -47.371380710640437, -22.212016597170493 ], [ -47.371379870149745, -22.212033724622458 ], [ -47.371379408147412, -22.212052499585152 ], [ -47.371379181388583, -22.212070874288958 ], [ -47.371379226935453, -22.212090597139554 ], [ -47.371379545919552, -22.212113412118217 ], [ -47.371379931714017, -22.212136286894655 ], [ -47.371379819290887, -22.212158728804059 ], [ -47.371380582498141, -22.212179607869999 ], [ -47.371381698430746, -22.212202367449763 ], [ -47.371382770415799, -22.212223950296281 ], [ -47.371385040952873, -22.212244077568258 ], [ -47.371387325735824, -22.212265569298957 ], [ -47.371390157459267, -22.212286141817419 ], [ -47.371393490718646, -22.212309124104831 ], [ -47.371396479530617, -22.212332637168803 ], [ -47.371399524112249, -22.212354511701776 ], [ -47.37140254046691, -22.21237783400484 ], [ -47.371405689952255, -22.212398586892508 ], [ -47.371409437579658, -22.212421049486707 ], [ -47.371413385187481, -22.212443475440534 ], [ -47.371417384383896, -22.212465046629887 ], [ -47.371421728398538, -22.212484633965278 ], [ -47.371427486460881, -22.212506255143754 ], [ -47.371433396094467, -22.212528467510317 ], [ -47.371439350323577, -22.212549566967944 ], [ -47.371445699271106, -22.212570099407742 ], [ -47.371452892148518, -22.212591734149562 ], [ -47.371459878180445, -22.212612370594023 ], [ -47.371467376355724, -22.212632510878759 ], [ -47.371475122622279, -22.212652302619755 ], [ -47.371483357238681, -22.21267061976285 ], [ -47.371492592691411, -22.212689527182341 ], [ -47.371502865650378, -22.21270843205745 ], [ -47.371513678901017, -22.212728347917302 ], [ -47.371525082022728, -22.212747608014407 ], [ -47.371536395044849, -22.212766601307003 ], [ -47.371547993319993, -22.212784524005571 ], [ -47.371560781712468, -22.212803358951547 ], [ -47.371574024555485, -22.212822046952709 ], [ -47.371586711827469, -22.212839927380223 ], [ -47.371600867428064, -22.212858256403486 ], [ -47.37161509204833, -22.2128765909486 ], [ -47.371629435348666, -22.212894143562526 ], [ -47.371644286803352, -22.212912248462388 ], [ -47.371659588363876, -22.212930087533067 ], [ -47.371674923845049, -22.212947759034346 ], [ -47.371690123841418, -22.212964861131972 ], [ -47.371705748834927, -22.212981952654481 ], [ -47.371722648663201, -22.212999771646508 ], [ -47.371738797909039, -22.213017860206563 ], [ -47.371755025518532, -22.213035054589945 ], [ -47.371771590914399, -22.213052253520182 ], [ -47.371788822202582, -22.213070212538646 ], [ -47.371805487888615, -22.213087655271927 ], [ -47.371821933696019, -22.213104506329291 ], [ -47.371838564232824, -22.213120764332189 ], [ -47.371856781128699, -22.213138902126421 ], [ -47.371872878721639, -22.213155074378687 ], [ -47.371890249386084, -22.213171312537376 ], [ -47.371907774365837, -22.213188140236007 ], [ -47.371924824619079, -22.21320419647153 ], [ -47.371942650617406, -22.213220723949892 ], [ -47.371960296689018, -22.213237253159424 ], [ -47.371978537192504, -22.213254018297402 ], [ -47.371996279985879, -22.213270341893772 ], [ -47.372015005465677, -22.213287421052414 ], [ -47.372033632004133, -22.213305309407719 ], [ -47.37205167705666, -22.213322418928659 ], [ -47.372069491513777, -22.213339582020847 ], [ -47.372087569004854, -22.213356986447721 ], [ -47.372105316826435, -22.213374064192884 ], [ -47.372122777172379, -22.213391287167042 ], [ -47.372140403487926, -22.213407731012495 ], [ -47.372157804641752, -22.213424541377197 ], [ -47.372175193783008, -22.21344067844089 ], [ -47.372194169324828, -22.213457825883086 ], [ -47.37221319303881, -22.213476136678626 ], [ -47.372229835903845, -22.213492194772581 ], [ -47.372248613432731, -22.21351022670315 ], [ -47.372265575428536, -22.213526577105196 ], [ -47.372284074549441, -22.213544236446143 ], [ -47.372301704312058, -22.2135620482325 ], [ -47.372318729713797, -22.213578790679556 ], [ -47.372335878031599, -22.213595186904929 ], [ -47.37235256939173, -22.213611830399174 ], [ -47.372369948014004, -22.213628327840844 ], [ -47.372387456330721, -22.213645884301286 ], [ -47.372404902721456, -22.21366257505392 ], [ -47.372423185937627, -22.213680498756933 ], [ -47.372440908192637, -22.213698187569751 ], [ -47.372458603852245, -22.213715912201348 ], [ -47.372474379585668, -22.21373230736026 ], [ -47.37249167380638, -22.213747992748647 ], [ -47.372511468566351, -22.213767268981929 ], [ -47.372529665908807, -22.213785266467635 ], [ -47.372547293545871, -22.213803721357724 ], [ -47.372564846860705, -22.21382157293457 ], [ -47.372582511307492, -22.213840012062274 ], [ -47.372600227468325, -22.213858325970737 ], [ -47.372616888833456, -22.213876730355878 ], [ -47.372634200268131, -22.213894856138857 ], [ -47.372651155104727, -22.213913277160316 ], [ -47.372667388480004, -22.213930970989498 ], [ -47.372683486408, -22.213948356684007 ], [ -47.372698965004652, -22.213965297043007 ], [ -47.372714446660943, -22.213982282557605 ], [ -47.372730294572349, -22.213999853478231 ], [ -47.372741584127169, -22.214012923744775 ], [ -47.372748741699482, -22.214021089575024 ], [ -47.372755425963639, -22.214029301573422 ], [ -47.372766238411948, -22.214041511422817 ], [ -47.37277895540511, -22.214056344583902 ], [ -47.372793300979353, -22.214072891063374 ], [ -47.372807348601299, -22.214088827594438 ], [ -47.372821786299752, -22.214105146469549 ], [ -47.37283732423662, -22.214122920449643 ], [ -47.372851328779689, -22.2141397554661 ], [ -47.372865735768016, -22.214156541302728 ], [ -47.372879620945369, -22.214172987402193 ], [ -47.372894105885358, -22.214189608491406 ], [ -47.372907436861354, -22.214205750200346 ], [ -47.372921375699889, -22.214221510146096 ], [ -47.372934777520356, -22.214236977104157 ], [ -47.372948941158185, -22.214252714348071 ], [ -47.372963628770258, -22.214268928719232 ], [ -47.372978231053956, -22.214284759994634 ], [ -47.372992616897569, -22.214300701942975 ], [ -47.373006991973895, -22.214316500897787 ], [ -47.373021183691613, -22.21433188040778 ], [ -47.373035711784411, -22.214347555439812 ], [ -47.373049667328218, -22.214362591368573 ], [ -47.3730653778047, -22.214379156215486 ], [ -47.373079161397321, -22.2143945608615 ], [ -47.373093028291706, -22.214409442141921 ], [ -47.373108377359927, -22.214425958438333 ], [ -47.373122917229217, -22.214441514591169 ], [ -47.373137923305833, -22.214457669249978 ], [ -47.373152639726889, -22.214473396185944 ], [ -47.373167290012894, -22.214488547971445 ], [ -47.373182953134794, -22.214504480740299 ], [ -47.373198104920256, -22.214520202216477 ], [ -47.373212435995981, -22.214534915056394 ], [ -47.373228107214963, -22.214549916009254 ], [ -47.373244285645235, -22.214565977870457 ], [ -47.373260355870229, -22.214581854939929 ], [ -47.373275166844216, -22.214596544153299 ], [ -47.37329052564823, -22.214610984806736 ], [ -47.373306217565244, -22.214625678737523 ], [ -47.373323647269402, -22.214642144537073 ], [ -47.37333931813977, -22.21465795140114 ], [ -47.373354313267079, -22.214672172436735 ], [ -47.373368881153056, -22.214685793951396 ], [ -47.373383944670863, -22.214698492582222 ], [ -47.373401274588325, -22.214713140874302 ], [ -47.373417910649948, -22.214727423609322 ], [ -47.37343469936274, -22.214741401114551 ], [ -47.373452333043531, -22.214756376814563 ], [ -47.373470324682096, -22.214771939559633 ], [ -47.373486751701769, -22.21478630101981 ], [ -47.373502573024027, -22.214800097026032 ], [ -47.373519200525116, -22.214813934988715 ], [ -47.373536065343885, -22.21482775635284 ], [ -47.373553125438399, -22.214841258707551 ], [ -47.373571019715733, -22.214855318727956 ], [ -47.373589317610431, -22.214869539517675 ], [ -47.37360668040138, -22.214883150194751 ], [ -47.373623628886172, -22.214895688188584 ], [ -47.373641866066386, -22.214909031256585 ], [ -47.373660316362091, -22.214922485821823 ], [ -47.373678520900221, -22.214935905697413 ], [ -47.373695938081255, -22.214948543920269 ], [ -47.373714253786829, -22.214961314261227 ], [ -47.373733220580142, -22.214974641518165 ], [ -47.373752408692248, -22.214987951228998 ], [ -47.373770147207878, -22.215000547885751 ], [ -47.373787607694382, -22.215012051502061 ], [ -47.373807253674428, -22.215024617208282 ], [ -47.373825923834758, -22.215036720804179 ], [ -47.373845197122293, -22.215048555447048 ], [ -47.373866150379456, -22.215061863787586 ], [ -47.373885992216344, -22.215074851568112 ], [ -47.373905672627693, -22.215087275509511 ], [ -47.37392596850453, -22.215100915887053 ], [ -47.373945173549139, -22.215113834438984 ], [ -47.373963203733545, -22.215125399089974 ], [ -47.373983346466574, -22.21513810768305 ], [ -47.374002824164577, -22.215150740636862 ], [ -47.374022266660482, -22.215162820577515 ], [ -47.374043453621006, -22.21517617602743 ], [ -47.374061592897426, -22.21518804362006 ], [ -47.374081092927867, -22.215200047914585 ], [ -47.374101222657757, -22.215212668862598 ], [ -47.374120121531057, -22.215224619368996 ], [ -47.374138973811256, -22.215236076051333 ], [ -47.374159487781888, -22.215248338237156 ], [ -47.374178708600304, -22.215259955823544 ], [ -47.374200125932937, -22.215272389668989 ], [ -47.374221313013891, -22.215286229283585 ], [ -47.374241354465639, -22.215299015725822 ], [ -47.374261486578064, -22.215312204556334 ], [ -47.374279825442947, -22.215324185437225 ], [ -47.374299752161747, -22.215336521439816 ], [ -47.374320887865387, -22.215349858929123 ], [ -47.374341695725946, -22.215363494060504 ], [ -47.374361336478195, -22.215375815030352 ], [ -47.374381944745345, -22.215389284179604 ], [ -47.374402923604329, -22.215402786585177 ], [ -47.374423590646209, -22.215416530825657 ], [ -47.37444365458726, -22.215430367718199 ], [ -47.374464400509154, -22.215444564290376 ], [ -47.374484768555334, -22.215459998311825 ], [ -47.374503006917813, -22.2154735428396 ], [ -47.374524290406889, -22.215489484383511 ], [ -47.374543827077161, -22.215505756947007 ], [ -47.374563157275624, -22.215522171722039 ], [ -47.374580750136126, -22.21553770824983 ], [ -47.374598769753568, -22.215553412111944 ], [ -47.374615676568027, -22.215568807925468 ], [ -47.374634148780643, -22.215585278599367 ], [ -47.374652895486769, -22.215603149977149 ], [ -47.374669416758067, -22.215620322535454 ], [ -47.374686985525379, -22.215638275816168 ], [ -47.374702433121804, -22.215655169097847 ], [ -47.374718425699733, -22.215672688619382 ], [ -47.374734589345252, -22.215690782380676 ], [ -47.374750675008045, -22.215709959144284 ], [ -47.374764937815272, -22.215727161231356 ], [ -47.374779829437408, -22.215744578497873 ], [ -47.374794577919658, -22.215762466306408 ], [ -47.374808932229733, -22.215780165949678 ], [ -47.37482205948406, -22.215796272616934 ], [ -47.374837184294073, -22.215814285900041 ], [ -47.374851011835823, -22.215831898499548 ], [ -47.374866574133236, -22.215851346436725 ], [ -47.374880837179774, -22.215870755099886 ], [ -47.374891691379126, -22.215886443354439 ], [ -47.374904234614895, -22.215902457529509 ], [ -47.374918103141546, -22.215921696868925 ], [ -47.374931436618802, -22.215940856914358 ], [ -47.374943360222133, -22.215959368073559 ], [ -47.374954833758409, -22.21597664065234 ], [ -47.374966234749131, -22.215994192232131 ], [ -47.374978278038633, -22.216012932931967 ], [ -47.374989323067055, -22.216033060749226 ], [ -47.374997746348086, -22.21605042262145 ], [ -47.375005708301273, -22.216067358067313 ], [ -47.37502787939156, -22.216117836387799 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 645.29554777299995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371417851683674, -22.211676055829884 ], [ -47.371415243457839, -22.211692826922985 ], [ -47.371411841581839, -22.211710764862886 ], [ -47.37140862772268, -22.211729987310481 ], [ -47.371404822022861, -22.211749069549143 ], [ -47.371401237169962, -22.21176907062388 ], [ -47.371397337476424, -22.211788398672997 ], [ -47.371393552206676, -22.211807066688642 ], [ -47.371390101842209, -22.211825697648973 ], [ -47.37138679332142, -22.211844154709119 ], [ -47.371383663629025, -22.211862875779662 ], [ -47.371380817821375, -22.211882512945216 ], [ -47.371377720611015, -22.211901809714767 ], [ -47.371375469278831, -22.2119195844543 ], [ -47.371373272464119, -22.21193871526625 ], [ -47.371371528936599, -22.211958575336261 ], [ -47.371369424338667, -22.211978534987136 ], [ -47.371367750225637, -22.211997763772178 ], [ -47.371366194391676, -22.212015744087182 ], [ -47.371365334816304, -22.212033260408258 ], [ -47.371364867120036, -22.212052266682711 ], [ -47.371364638265547, -22.212070811046992 ], [ -47.371364684193573, -22.212090699839145 ], [ -47.371365004458156, -22.212113606571357 ], [ -47.371365388231254, -22.212136361635061 ], [ -47.371365275184267, -22.212158927615118 ], [ -47.371366050829373, -22.212180147003377 ], [ -47.371367170606582, -22.212202985042076 ], [ -47.371368262622113, -22.212224971275251 ], [ -47.371370573014289, -22.21224545186297 ], [ -47.371372874139055, -22.212267097332987 ], [ -47.371375738742046, -22.212287908737238 ], [ -47.371379062597043, -22.21231082619898 ], [ -47.371382046829225, -22.212334303252284 ], [ -47.371385093313926, -22.21235619147421 ], [ -47.37138811966507, -22.212379591087871 ], [ -47.371391304014082, -22.212400573716458 ], [ -47.371395076286987, -22.21242318404494 ], [ -47.371399043682452, -22.212445722423116 ], [ -47.371403093818479, -22.212467568386419 ], [ -47.371407543914238, -22.212487634054749 ], [ -47.371413370994084, -22.212509514397873 ], [ -47.371419304494339, -22.212531816481103 ], [ -47.371425328018702, -22.212553161501305 ], [ -47.371431764002871, -22.212573975423318 ], [ -47.371439010678564, -22.212595771985907 ], [ -47.371446069899704, -22.212616624634041 ], [ -47.371453673156992, -22.212637047176809 ], [ -47.371461575657044, -22.212657238099787 ], [ -47.371470027559774, -22.212676038580032 ], [ -47.37147947974276, -22.212695389707296 ], [ -47.371489889180872, -22.212714545742049 ], [ -47.371500817500902, -22.212734673541874 ], [ -47.371512355074607, -22.212754160733837 ], [ -47.371523803787547, -22.21277338183873 ], [ -47.371535617461362, -22.212791637392993 ], [ -47.371548564982909, -22.212810706709011 ], [ -47.371561885852124, -22.212829504821073 ], [ -47.371574736662154, -22.212847615732812 ], [ -47.371589069523786, -22.21286617427992 ], [ -47.371603409068477, -22.212884656956358 ], [ -47.37161786981877, -22.212902353301246 ], [ -47.371632825031028, -22.212920584689989 ], [ -47.371648250692587, -22.212938568443288 ], [ -47.371663665649123, -22.212956331527653 ], [ -47.371678984257223, -22.212973567081207 ], [ -47.371694760418478, -22.212990823961011 ], [ -47.371711604053154, -22.213008583704379 ], [ -47.371727741980237, -22.213026659587772 ], [ -47.371744149710381, -22.213044044823853 ], [ -47.371760754873605, -22.213061285043473 ], [ -47.371777966808203, -22.213079223892212 ], [ -47.371794673407663, -22.213096709447711 ], [ -47.371811285441616, -22.213113730828795 ], [ -47.371827987694509, -22.213130058942298 ], [ -47.371846136968855, -22.213148129409728 ], [ -47.371862390324083, -22.213164458147684 ], [ -47.37187987687777, -22.213180804640988 ], [ -47.371897383249795, -22.213197614473184 ], [ -47.371914523044161, -22.213213755030537 ], [ -47.371932362737212, -22.213230295206944 ], [ -47.371950031130211, -22.213246845325987 ], [ -47.371968320688666, -22.213263655552076 ], [ -47.37198608082204, -22.213279995104603 ], [ -47.372004694805213, -22.213296972570181 ], [ -47.372023223170594, -22.213314766644068 ], [ -47.372041260103252, -22.213331868467058 ], [ -47.372059034178641, -22.213348992655014 ], [ -47.372077115171201, -22.213366400455193 ], [ -47.372094803105853, -22.213383420576172 ], [ -47.372112340699694, -22.213400719749057 ], [ -47.372130020518206, -22.213417213509139 ], [ -47.372147435007498, -22.213434036757494 ], [ -47.372164996041874, -22.213450333338304 ], [ -47.372183876271166, -22.213467394651271 ], [ -47.37220273433838, -22.213485546008716 ], [ -47.372219383059253, -22.213501609753681 ], [ -47.372238162999977, -22.213519644001362 ], [ -47.37225513999649, -22.213536008864182 ], [ -47.37227352001392, -22.213553554509463 ], [ -47.372291076649432, -22.213571292414784 ], [ -47.372308239623102, -22.213588170148387 ], [ -47.372325352776819, -22.213604532752885 ], [ -47.372342061965817, -22.213621194025855 ], [ -47.372359426317715, -22.213637677921692 ], [ -47.372376915442764, -22.213655215138729 ], [ -47.372394419046145, -22.213671960627025 ], [ -47.372412596254073, -22.213689780407346 ], [ -47.372430265299911, -22.213707416112484 ], [ -47.372447861349585, -22.213725040972179 ], [ -47.372463877905219, -22.213741686410085 ], [ -47.372481341144692, -22.213757525094803 ], [ -47.372500918389122, -22.21377658951149 ], [ -47.372518935896728, -22.213794409138519 ], [ -47.372536496316506, -22.213812793658075 ], [ -47.372554056801086, -22.213830652527655 ], [ -47.372571681895622, -22.213849050578538 ], [ -47.372589261779666, -22.213867223613402 ], [ -47.372605893361708, -22.213885595101043 ], [ -47.372623244279488, -22.21390376222574 ], [ -47.372640104948879, -22.213922080938094 ], [ -47.372656352289383, -22.213939789990182 ], [ -47.372672440618274, -22.213957165318938 ], [ -47.372687882559923, -22.21397406556256 ], [ -47.372703334134613, -22.213991018074729 ], [ -47.372719058616333, -22.214008452147532 ], [ -47.372730284189785, -22.214021448341885 ], [ -47.37273730933336, -22.214029463089368 ], [ -47.372744015664608, -22.214037702199139 ], [ -47.372754944510433, -22.214050043490246 ], [ -47.372767614421392, -22.214064821735626 ], [ -47.372782022011052, -22.214081439746273 ], [ -47.37279611539045, -22.214097428188811 ], [ -47.372810534305827, -22.214113725834736 ], [ -47.372825934364315, -22.214131342095971 ], [ -47.372839898927985, -22.214148129054152 ], [ -47.372854338529365, -22.214164952890208 ], [ -47.372868257204942, -22.214181438667541 ], [ -47.372882693182703, -22.214198003575227 ], [ -47.372896056246041, -22.214214184138225 ], [ -47.372910102944836, -22.214230066037427 ], [ -47.372923543906332, -22.214245578169123 ], [ -47.3729378093823, -22.21426142856679 ], [ -47.372952553753485, -22.214277705598299 ], [ -47.372967147128783, -22.214293527216689 ], [ -47.37298150147069, -22.214309434256979 ], [ -47.372995928339847, -22.214325290135967 ], [ -47.373010163271282, -22.214340716477622 ], [ -47.373024701681956, -22.214356402643197 ], [ -47.373038714801794, -22.214371500611588 ], [ -47.373054338309963, -22.214387973761834 ], [ -47.373068081192706, -22.214403332911303 ], [ -47.373082037188027, -22.214418309811617 ], [ -47.373097393411541, -22.214434833808621 ], [ -47.37311193219152, -22.214450388797097 ], [ -47.373126940977578, -22.214466546373874 ], [ -47.37314175241179, -22.214482374848274 ], [ -47.373156521955686, -22.21449764997503 ], [ -47.373172177140603, -22.214513574671308 ], [ -47.373187306628488, -22.214529273012577 ], [ -47.37320183413604, -22.214544187517987 ], [ -47.373217590068521, -22.214559269562006 ], [ -47.373233689927083, -22.214575253418591 ], [ -47.37324976269791, -22.214591133004262 ], [ -47.37326469689846, -22.21460594443203 ], [ -47.373280202596234, -22.214620523198729 ], [ -47.373295882332634, -22.214635205724385 ], [ -47.373313122474997, -22.214651492446311 ], [ -47.373328783755859, -22.214667289638584 ], [ -47.37334397177861, -22.214681693612636 ], [ -47.373358841461354, -22.214695597319203 ], [ -47.373374176698384, -22.214708525011478 ], [ -47.373391457657384, -22.214723131921556 ], [ -47.373408133986501, -22.214737449228501 ], [ -47.373424952024941, -22.214751451149514 ], [ -47.373442483453381, -22.214766340010669 ], [ -47.373460398068872, -22.214781836131575 ], [ -47.373476803807485, -22.214796178987285 ], [ -47.373492755353801, -22.214810088547985 ], [ -47.3735095502158, -22.21482406579463 ], [ -47.373526550842527, -22.214837998459128 ], [ -47.373543726365718, -22.214851592171357 ], [ -47.373561670485707, -22.214865691355016 ], [ -47.37357997478685, -22.214879917124229 ], [ -47.373597471945949, -22.214893633132863 ], [ -47.373614612683241, -22.214906313349914 ], [ -47.37363288975007, -22.214919685600993 ], [ -47.373651319079833, -22.214933124877597 ], [ -47.373669537361607, -22.214946554885007 ], [ -47.373687108956879, -22.214959305154022 ], [ -47.373705515017058, -22.214972138493692 ], [ -47.373724496178156, -22.214985475846699 ], [ -47.373743654604915, -22.214998764966825 ], [ -47.373761534645688, -22.215011462125211 ], [ -47.373779289939918, -22.215023159972059 ], [ -47.373798981423285, -22.215035754782789 ], [ -47.373817764334639, -22.215047931473787 ], [ -47.373837095713121, -22.21505980178727 ], [ -47.373857870399689, -22.215072996709978 ], [ -47.373877729097103, -22.215085995527087 ], [ -47.373897334412135, -22.215098372061604 ], [ -47.373917456892876, -22.215111895904037 ], [ -47.373936789152232, -22.21512490003062 ], [ -47.373954999500306, -22.215136580239733 ], [ -47.373975110861167, -22.215149269039532 ], [ -47.3739946309706, -22.215161929501043 ], [ -47.374014153911617, -22.215174059423774 ], [ -47.374035195906536, -22.215187323493186 ], [ -47.37405340033132, -22.215199233709249 ], [ -47.374073020939989, -22.21521131223243 ], [ -47.3740930758538, -22.215223886272451 ], [ -47.374112061220416, -22.215235891472222 ], [ -47.37413107100943, -22.215247443874127 ], [ -47.374151600123838, -22.21525971511231 ], [ -47.374170901389164, -22.215271381323173 ], [ -47.374192096610869, -22.2152836862222 ], [ -47.374213026428393, -22.215297357789982 ], [ -47.374233059665968, -22.215310138991846 ], [ -47.374253125759672, -22.215323284572836 ], [ -47.374271621591475, -22.215335368001313 ], [ -47.37429164644044, -22.21534776475346 ], [ -47.374312622665755, -22.215361001605707 ], [ -47.374333446855097, -22.215374647437393 ], [ -47.374353095009745, -22.215386973051164 ], [ -47.374373632176841, -22.215400395731113 ], [ -47.374394562031554, -22.215413866596865 ], [ -47.37441503570539, -22.215427482241758 ], [ -47.374435020322956, -22.215441264430016 ], [ -47.37445549892459, -22.215455278073559 ], [ -47.374475644268678, -22.215470543341485 ], [ -47.374493914904072, -22.215484111836847 ], [ -47.374514878033914, -22.215499813429094 ], [ -47.374534078759183, -22.215515806176537 ], [ -47.374553252313476, -22.215532087933557 ], [ -47.374570776975006, -22.215547564234509 ], [ -47.374588715211779, -22.215563197175189 ], [ -47.374605562668286, -22.215578538936466 ], [ -47.374623914595475, -22.215594902359214 ], [ -47.374642272267266, -22.215612402868594 ], [ -47.374658625298899, -22.215629400556114 ], [ -47.374676070799438, -22.215647227873415 ], [ -47.374691359852001, -22.215663947774871 ], [ -47.374707294250278, -22.215681403570613 ], [ -47.374723265343754, -22.215699281788432 ], [ -47.374739188146059, -22.215718264397054 ], [ -47.374753492235421, -22.215735516275146 ], [ -47.374768371587201, -22.215752919191697 ], [ -47.374783006794608, -22.215770669615519 ], [ -47.374797336664123, -22.215788339123812 ], [ -47.37481053765385, -22.215804536263164 ], [ -47.374825582189963, -22.215822453943545 ], [ -47.374839310141397, -22.215839939693172 ], [ -47.374854737055884, -22.215859218446436 ], [ -47.374868720622381, -22.215878246804728 ], [ -47.374879693177434, -22.215894106127923 ], [ -47.374892317151698, -22.215910223384892 ], [ -47.374905962034958, -22.215929152473375 ], [ -47.374919094293737, -22.215948023372444 ], [ -47.374930939240919, -22.21596641242181 ], [ -47.374942426993378, -22.21598370640411 ], [ -47.37495377265229, -22.216001172803974 ], [ -47.374965548532337, -22.216019497387272 ], [ -47.374976213250257, -22.216038932151822 ], [ -47.374984457651003, -22.216055925323207 ], [ -47.374992314361904, -22.21607263691703 ], [ -47.375012816385457, -22.216119315179029 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 646.57624852000004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371404903901407, -22.211665927526671 ], [ -47.371403599139541, -22.211673213418713 ], [ -47.371400882962021, -22.211690678637865 ], [ -47.371397494527862, -22.211708545689792 ], [ -47.371394290540508, -22.211727709081199 ], [ -47.371390499347285, -22.211746718572122 ], [ -47.371386916998304, -22.211766705665234 ], [ -47.371383044610084, -22.2117858983712 ], [ -47.371379240394326, -22.21180465978372 ], [ -47.371375763802803, -22.211823432351988 ], [ -47.371372435719543, -22.21184199853343 ], [ -47.371369271065724, -22.211860928723205 ], [ -47.371366419352945, -22.211880606622323 ], [ -47.371363304151373, -22.21190001547129 ], [ -47.371361017185741, -22.211918071529599 ], [ -47.371358792667408, -22.211937443579146 ], [ -47.371357044012086, -22.211957362035168 ], [ -47.371354938933742, -22.211977326222538 ], [ -47.371353254843363, -22.211996669583886 ], [ -47.371351678142965, -22.212014891002564 ], [ -47.371350799482826, -22.212032796192737 ], [ -47.371350326092575, -22.212052033778971 ], [ -47.371350095142382, -22.212070747803722 ], [ -47.371350141451543, -22.21209080253745 ], [ -47.371350462996574, -22.2121138010232 ], [ -47.371350844748342, -22.212136436374177 ], [ -47.37135073107747, -22.212159126424872 ], [ -47.371351519160363, -22.212180686135468 ], [ -47.371352642782156, -22.212203602633089 ], [ -47.371353754828093, -22.212225992252954 ], [ -47.371356105075293, -22.212246826156417 ], [ -47.371358422541832, -22.212268625365752 ], [ -47.371361320024327, -22.212289675655796 ], [ -47.371364634474965, -22.212312528291871 ], [ -47.371367614127365, -22.212335969334521 ], [ -47.371370662515119, -22.212357871245391 ], [ -47.371373698862747, -22.212381348169639 ], [ -47.37137691807537, -22.212402560539161 ], [ -47.371380714993755, -22.21242531860193 ], [ -47.371384702176833, -22.212447969404465 ], [ -47.37138880325243, -22.21247009014175 ], [ -47.371393359429206, -22.212490634143006 ], [ -47.371399255526519, -22.212512773650825 ], [ -47.371405212893421, -22.212535165450721 ], [ -47.371411305712996, -22.212556756033525 ], [ -47.371417828733755, -22.212577851437754 ], [ -47.371425129207708, -22.21259980982115 ], [ -47.371432261618018, -22.212620878672954 ], [ -47.371439969957272, -22.212641583473793 ], [ -47.371448028690772, -22.212662173578781 ], [ -47.371456697879765, -22.212681457396215 ], [ -47.37146636679293, -22.212701252231277 ], [ -47.371476912710143, -22.212720659425703 ], [ -47.371487956099564, -22.212740999165522 ], [ -47.371499628125243, -22.212760713452376 ], [ -47.371511212528979, -22.212780162369565 ], [ -47.371523241601409, -22.212798750779577 ], [ -47.371536348252029, -22.212818054465682 ], [ -47.371549747147419, -22.212836962688627 ], [ -47.371562761495476, -22.212855304084648 ], [ -47.371577271618143, -22.212874092155605 ], [ -47.371591726087246, -22.212892722963389 ], [ -47.371606304287489, -22.212910563039262 ], [ -47.371621363257312, -22.212928920916891 ], [ -47.371636913019898, -22.212947049352831 ], [ -47.371652407451805, -22.212964904020296 ], [ -47.37166784467162, -22.21298227302977 ], [ -47.371683772000637, -22.212999695266905 ], [ -47.371700559441706, -22.213017395761614 ], [ -47.371716686050028, -22.213035458968321 ], [ -47.371733273900823, -22.21305303505715 ], [ -47.371749918831405, -22.213070316566174 ], [ -47.371767111412417, -22.213088235245166 ], [ -47.371783858925319, -22.213105763622881 ], [ -47.371800637185814, -22.213122955327709 ], [ -47.371817411154794, -22.213139353551814 ], [ -47.371835492807605, -22.213157356692449 ], [ -47.371851901925119, -22.213173841916113 ], [ -47.371869504368064, -22.213190296744052 ], [ -47.371886992132353, -22.213207088709815 ], [ -47.371904221467844, -22.213223313589022 ], [ -47.371922074855611, -22.213239866463471 ], [ -47.371939765570012, -22.213256437492031 ], [ -47.371958104183435, -22.21327329280621 ], [ -47.371975881656809, -22.213289648314895 ], [ -47.371994384143349, -22.21330652408739 ], [ -47.372012814335662, -22.213324223879866 ], [ -47.372030843148444, -22.213341318004922 ], [ -47.372048576842097, -22.213358403288616 ], [ -47.372066661336142, -22.213375814462093 ], [ -47.372084289383864, -22.213392776958898 ], [ -47.372101904225602, -22.213410152330514 ], [ -47.372119637547087, -22.213426696005229 ], [ -47.372137065371845, -22.213443532137251 ], [ -47.372154798299341, -22.213459988235186 ], [ -47.37217358321611, -22.21347696341892 ], [ -47.372192275636557, -22.213494955338241 ], [ -47.372208930213247, -22.213511024734213 ], [ -47.372227712565838, -22.213529061299035 ], [ -47.372244704563045, -22.213545440622621 ], [ -47.372262965476985, -22.213562872572208 ], [ -47.3722804489854, -22.213580536596471 ], [ -47.372297749530993, -22.213597549616651 ], [ -47.37231482752064, -22.21361387860027 ], [ -47.372331554538512, -22.213630557651967 ], [ -47.372348904620026, -22.213647028001969 ], [ -47.372366374553394, -22.213664545975607 ], [ -47.372383935369434, -22.213681346199561 ], [ -47.372402006569111, -22.21369906205717 ], [ -47.372419622405779, -22.213716644654635 ], [ -47.372437118845525, -22.213734169742409 ], [ -47.372453376223362, -22.213751065459352 ], [ -47.372471008481611, -22.213767057440407 ], [ -47.372490368210492, -22.213785910040478 ], [ -47.372508205883243, -22.213803551808819 ], [ -47.372525699085735, -22.213821865957811 ], [ -47.37254326674006, -22.21383973212015 ], [ -47.372560852482366, -22.213858089094188 ], [ -47.372578296089586, -22.213876121255453 ], [ -47.372594897888554, -22.213894459845569 ], [ -47.372612288289446, -22.213912668311984 ], [ -47.372629054791624, -22.213930884715229 ], [ -47.372645316097362, -22.213948608990226 ], [ -47.372661394827141, -22.21396597395324 ], [ -47.372676800113794, -22.213982834081474 ], [ -47.372692221606869, -22.213999753591214 ], [ -47.372707822658903, -22.214017050816153 ], [ -47.372718984251001, -22.214029972938327 ], [ -47.372725876965852, -22.214037836603012 ], [ -47.372732605364199, -22.214046102824167 ], [ -47.372743650607525, -22.214058575557015 ], [ -47.372756273436281, -22.214073298886667 ], [ -47.37277074304135, -22.214089988428494 ], [ -47.372784882178209, -22.214106028782513 ], [ -47.372799282310503, -22.214122305199265 ], [ -47.372814544490616, -22.214139763741613 ], [ -47.372828469074889, -22.214156502641512 ], [ -47.372842941289328, -22.214173364477013 ], [ -47.372856893463123, -22.2141898899322 ], [ -47.372871280478662, -22.214206398658362 ], [ -47.372884675629336, -22.214222618075418 ], [ -47.372898830188376, -22.214238621928075 ], [ -47.372912310290914, -22.214254179233425 ], [ -47.37292667760503, -22.214270142784859 ], [ -47.372941478735306, -22.214286482476716 ], [ -47.372956063202217, -22.214302294438095 ], [ -47.372970386042404, -22.214318166570337 ], [ -47.372984864704399, -22.214334079373515 ], [ -47.372999142849551, -22.214349552546832 ], [ -47.373013691578088, -22.214365249845962 ], [ -47.373027762273964, -22.214380409853984 ], [ -47.373043298813826, -22.214396791307536 ], [ -47.373057000986677, -22.214412104960452 ], [ -47.373071046082948, -22.214427177480683 ], [ -47.373086409461763, -22.214443709178283 ], [ -47.373100947152409, -22.214459263002393 ], [ -47.373115958647929, -22.214475423497149 ], [ -47.373130865095298, -22.21449135350997 ], [ -47.373145753897077, -22.214506751978007 ], [ -47.373161401145012, -22.214522668601699 ], [ -47.373176508335327, -22.214538343808048 ], [ -47.373191232274692, -22.214553459979005 ], [ -47.373207072920671, -22.2145686231142 ], [ -47.373223094207525, -22.214584528966153 ], [ -47.37323916952419, -22.21460041106802 ], [ -47.373254226951296, -22.214615344710207 ], [ -47.373269879542839, -22.214630061590189 ], [ -47.373285547098625, -22.21464473271071 ], [ -47.373302597679192, -22.214660840354963 ], [ -47.373318249370548, -22.214676627875463 ], [ -47.373333630288741, -22.21469121478799 ], [ -47.373348801768252, -22.214705400686491 ], [ -47.37336440872452, -22.214718557440246 ], [ -47.373381640725057, -22.214733122968326 ], [ -47.373398357321683, -22.214747474847201 ], [ -47.373415204685763, -22.214761501184004 ], [ -47.37343263386186, -22.214776303206278 ], [ -47.373450471454255, -22.214791732703027 ], [ -47.373466855911815, -22.214806056954259 ], [ -47.373482937682198, -22.214820080069458 ], [ -47.373499899905106, -22.214834196600069 ], [ -47.373517036339805, -22.214848240564979 ], [ -47.373534327291672, -22.214861925634729 ], [ -47.37355232125433, -22.214876063981656 ], [ -47.373570631961911, -22.214890294730349 ], [ -47.373588263489168, -22.214904116070556 ], [ -47.373605596478974, -22.214916938510822 ], [ -47.373623913432432, -22.21493033994501 ], [ -47.373642321796247, -22.214943763932972 ], [ -47.373660553821658, -22.214957204072224 ], [ -47.373678279831189, -22.214970066387409 ], [ -47.373696776245978, -22.214982962725795 ], [ -47.373715771774862, -22.214996310174865 ], [ -47.373734900516276, -22.215009578704304 ], [ -47.373752922082197, -22.215022376364313 ], [ -47.37377097218419, -22.215034268441734 ], [ -47.373790709170876, -22.21504689235698 ], [ -47.373809604833269, -22.21505914214308 ], [ -47.373828994302706, -22.215071048127193 ], [ -47.373849590418665, -22.215084129632075 ], [ -47.373869465976597, -22.215097139485735 ], [ -47.373888996195305, -22.21510946861337 ], [ -47.373908945279929, -22.215122875920692 ], [ -47.373928404754061, -22.215135965621933 ], [ -47.373946795265816, -22.215147761389179 ], [ -47.373966875254517, -22.215160430395681 ], [ -47.373986437775386, -22.215173118364891 ], [ -47.374006041161508, -22.215185298269727 ], [ -47.374026938190816, -22.215198470958612 ], [ -47.374045207763956, -22.215210423798123 ], [ -47.37406494895086, -22.215222576549969 ], [ -47.3740849290486, -22.215235103682016 ], [ -47.374104000908538, -22.215247163575143 ], [ -47.374123168206381, -22.215258811696625 ], [ -47.374143712464573, -22.21527109198718 ], [ -47.374163094176815, -22.215282806822522 ], [ -47.374184067287565, -22.215294982775102 ], [ -47.374204739841637, -22.215308486296053 ], [ -47.374224764865026, -22.21532126225754 ], [ -47.374244764940009, -22.215334364589019 ], [ -47.374263417738753, -22.215346550565116 ], [ -47.374283540717911, -22.215359008066798 ], [ -47.374304357464851, -22.215372144281947 ], [ -47.374325197982984, -22.215385800813987 ], [ -47.374344853540038, -22.215398131071648 ], [ -47.374365319607058, -22.215411507282294 ], [ -47.374386200457522, -22.215424946608234 ], [ -47.374406480763284, -22.215438433657525 ], [ -47.374426386057351, -22.215452161141474 ], [ -47.374446597338704, -22.215465991856355 ], [ -47.374466519980686, -22.215481088370751 ], [ -47.374484822888988, -22.2154946808337 ], [ -47.374505465659581, -22.215510142474226 ], [ -47.374524330439826, -22.215525855405588 ], [ -47.374543347349949, -22.215542004144574 ], [ -47.374560803812514, -22.215557420218691 ], [ -47.374578660668604, -22.215572982237916 ], [ -47.374595448767153, -22.215588269946952 ], [ -47.374613680408899, -22.215604526118515 ], [ -47.37463164904635, -22.215621655759456 ], [ -47.374647833838317, -22.215638478576189 ], [ -47.374665156072084, -22.21565617993005 ], [ -47.374680286580798, -22.215672726451263 ], [ -47.374696162799417, -22.215690118521206 ], [ -47.374711941340856, -22.215707781195512 ], [ -47.374727701282687, -22.215726569649121 ], [ -47.374742046654177, -22.215743871318249 ], [ -47.374756913735609, -22.215761259884818 ], [ -47.374771435668187, -22.21577887292392 ], [ -47.374785741097121, -22.215796512297221 ], [ -47.374799015822241, -22.215812799908679 ], [ -47.374813980084461, -22.215830621986342 ], [ -47.374827608445599, -22.215847980886078 ], [ -47.374842899977168, -22.215867090455394 ], [ -47.374856604063652, -22.215885738508788 ], [ -47.374867694974377, -22.215901768900629 ], [ -47.374880399687143, -22.215917989239518 ], [ -47.374893820927042, -22.21593660807704 ], [ -47.374906751967352, -22.215955189829685 ], [ -47.374918518258404, -22.215973456769206 ], [ -47.37493002022704, -22.215990772155038 ], [ -47.374941310554156, -22.21600815337494 ], [ -47.374952819024777, -22.216026061841674 ], [ -47.374963103432286, -22.216044803553459 ], [ -47.37497116895279, -22.21606142802397 ], [ -47.374978920421441, -22.216077915765737 ], [ -47.374997753378899, -22.216120793968891 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 647.855856421, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371391971789727, -22.211655811479037 ], [ -47.371389228684507, -22.211671129184356 ], [ -47.37138652246653, -22.211688530351442 ], [ -47.371383147474219, -22.211706326515376 ], [ -47.371379953358684, -22.21172543085061 ], [ -47.371376176672079, -22.211744367593809 ], [ -47.371372596827001, -22.211764340705301 ], [ -47.371368751744122, -22.2117833980681 ], [ -47.371364928582331, -22.211802252877487 ], [ -47.371361425763737, -22.211821167053682 ], [ -47.371358078118, -22.211839842356447 ], [ -47.371354878502693, -22.211858981665454 ], [ -47.371352020884792, -22.211878700298112 ], [ -47.371348887691973, -22.211898221226509 ], [ -47.371346565092836, -22.211916558603559 ], [ -47.371344312870832, -22.211936171890745 ], [ -47.371342559087694, -22.211956148732742 ], [ -47.371340453528937, -22.211976117456619 ], [ -47.371338759461182, -22.21199557539429 ], [ -47.371337161894289, -22.212014037916632 ], [ -47.371336264149321, -22.212032331975923 ], [ -47.371335785065028, -22.212051800873923 ], [ -47.371335552019104, -22.212070684559151 ], [ -47.371335598709358, -22.212090905234437 ], [ -47.371335921534836, -22.212113995473757 ], [ -47.371336301265281, -22.212136511111993 ], [ -47.371336186970495, -22.21215932523334 ], [ -47.371336987491119, -22.212181225266278 ], [ -47.371338114957474, -22.212204220222826 ], [ -47.371339247033724, -22.212227013229359 ], [ -47.371341637135885, -22.212248200448602 ], [ -47.371343970944174, -22.212270153397274 ], [ -47.371346901306126, -22.212291442573122 ], [ -47.37135020635241, -22.212314230383509 ], [ -47.371353181425036, -22.212337635415505 ], [ -47.371356231715858, -22.212359551015329 ], [ -47.371359278059927, -22.212383105250169 ], [ -47.371362532136132, -22.212404547360627 ], [ -47.371366353699969, -22.212427453157702 ], [ -47.371370360670639, -22.212450216384585 ], [ -47.371374512685748, -22.212472611895869 ], [ -47.371379174943456, -22.212493634230103 ], [ -47.37138514005818, -22.212516032902599 ], [ -47.371391121291722, -22.21253851441919 ], [ -47.371397283406459, -22.212560350564594 ], [ -47.371403893463771, -22.212581727451067 ], [ -47.371411247735956, -22.212603847655256 ], [ -47.371418453335394, -22.212625132710766 ], [ -47.371426266756572, -22.212646119769687 ], [ -47.371434481723455, -22.212667109056724 ], [ -47.371443368198634, -22.212686876211386 ], [ -47.371453253841928, -22.212707114754291 ], [ -47.371463936238221, -22.212726773108407 ], [ -47.37147509469699, -22.212747324788243 ], [ -47.37148690117462, -22.212767266170015 ], [ -47.371498621269119, -22.212786942899545 ], [ -47.371510865740156, -22.212805864165304 ], [ -47.37152413151982, -22.212825402221533 ], [ -47.371537608441379, -22.212844420555385 ], [ -47.37155078632744, -22.212862992435699 ], [ -47.371565473711136, -22.212882010030548 ], [ -47.371580043104643, -22.21290078896968 ], [ -47.37159473875483, -22.212918772776558 ], [ -47.371609901482202, -22.2129372571431 ], [ -47.371625575345824, -22.212955530261695 ], [ -47.371641149253094, -22.212973476512271 ], [ -47.371656705084625, -22.212990978977682 ], [ -47.371672783581396, -22.213008566572167 ], [ -47.371689514828851, -22.21302620781821 ], [ -47.371705630118427, -22.213044258348251 ], [ -47.371722398089865, -22.21306202528984 ], [ -47.371739082787798, -22.213079348088264 ], [ -47.371756256015225, -22.213097246597503 ], [ -47.371773044441568, -22.21311481779745 ], [ -47.371789988928604, -22.213132179826029 ], [ -47.371806834613672, -22.213148648160768 ], [ -47.371824848644955, -22.213166583974591 ], [ -47.371841413524756, -22.213183225683977 ], [ -47.371859131856965, -22.213199788846563 ], [ -47.371876601013511, -22.213216562945906 ], [ -47.37189391989012, -22.213232872146946 ], [ -47.371911786972611, -22.213249437719448 ], [ -47.37192950000842, -22.213266029657518 ], [ -47.371947887676818, -22.213282930059826 ], [ -47.371965682490178, -22.213299301524671 ], [ -47.371984073480093, -22.213316075604059 ], [ -47.372002405499323, -22.213333681115099 ], [ -47.372020426192243, -22.213350767542227 ], [ -47.372038119504147, -22.213367813921668 ], [ -47.372056207499682, -22.21338522846845 ], [ -47.372073775660482, -22.213402133341049 ], [ -47.37209146775011, -22.213419584911417 ], [ -47.372109254574561, -22.213436178500771 ], [ -47.372126695734792, -22.213453027516461 ], [ -47.372144600555401, -22.213469643131535 ], [ -47.372163290159655, -22.213486532186025 ], [ -47.372181816933335, -22.213504364667216 ], [ -47.372198477365849, -22.213520439714191 ], [ -47.372217262130292, -22.213538478596142 ], [ -47.372234269128199, -22.213554872380492 ], [ -47.37225241093865, -22.213572190634366 ], [ -47.372269821319968, -22.213589780777586 ], [ -47.372287259437492, -22.213606929084357 ], [ -47.372304302263061, -22.213623224447073 ], [ -47.3723210471098, -22.213639921277519 ], [ -47.37233838292093, -22.21365637808168 ], [ -47.372355833662631, -22.213673876811921 ], [ -47.372373451691324, -22.213690731771532 ], [ -47.372391416882749, -22.213708343706429 ], [ -47.372408979510254, -22.2137258731962 ], [ -47.372426376340066, -22.213743298512053 ], [ -47.372442874540113, -22.213760444508033 ], [ -47.372460675817123, -22.213776589785471 ], [ -47.372479818030456, -22.213795230568895 ], [ -47.372497475868357, -22.21381269447852 ], [ -47.372514901853563, -22.213830938256944 ], [ -47.372532476677627, -22.213848811712033 ], [ -47.372550023067696, -22.213867127609237 ], [ -47.372567330398113, -22.213885018896875 ], [ -47.372583902414, -22.213903324589467 ], [ -47.372601332298011, -22.213921574397606 ], [ -47.372618004632969, -22.213939688491717 ], [ -47.372634279903949, -22.21395742798963 ], [ -47.372650349034608, -22.213974782586888 ], [ -47.372665717666266, -22.213991602599741 ], [ -47.372681109077739, -22.214008489107048 ], [ -47.372696586700094, -22.214025649484132 ], [ -47.372707684310818, -22.214038497534094 ], [ -47.372714444596951, -22.214046210115967 ], [ -47.372721195062383, -22.214054503448505 ], [ -47.372732356703224, -22.214067107623105 ], [ -47.372744932449777, -22.214081776037027 ], [ -47.372759464070256, -22.214098537110051 ], [ -47.372773648964568, -22.214114629375548 ], [ -47.372788030313792, -22.214130884563115 ], [ -47.372803154615532, -22.214148185386581 ], [ -47.372817039220401, -22.214164876228182 ], [ -47.372831544047898, -22.214181776063111 ], [ -47.37284552971991, -22.214198341196177 ], [ -47.372859867773229, -22.214214793740794 ], [ -47.372873295011239, -22.214231052011939 ], [ -47.372887557430531, -22.214247177818066 ], [ -47.372901076674097, -22.214262780297066 ], [ -47.372915545826352, -22.214278857002288 ], [ -47.372930403715735, -22.214295259354504 ], [ -47.372944979274244, -22.214311061658876 ], [ -47.372959270612718, -22.214326898883048 ], [ -47.372973801067552, -22.214342868610427 ], [ -47.37298812242642, -22.214358388615402 ], [ -47.373002681472826, -22.214374097048072 ], [ -47.373016809744726, -22.214389319095744 ], [ -47.37303225931629, -22.214405608852609 ], [ -47.373045920779262, -22.214420877008962 ], [ -47.373060054976463, -22.214436045149117 ], [ -47.373075425510571, -22.21445258454731 ], [ -47.373089962111898, -22.214468137207053 ], [ -47.373104976316867, -22.214484300619791 ], [ -47.373119977777399, -22.214500332171053 ], [ -47.373134985837062, -22.214515853980394 ], [ -47.373150625148014, -22.214531762531493 ], [ -47.373165710040752, -22.214547414602936 ], [ -47.373180630411952, -22.214562732439436 ], [ -47.373196555771422, -22.214577976665815 ], [ -47.373212498486573, -22.214593804513129 ], [ -47.373228576349057, -22.214609689131201 ], [ -47.373243757002733, -22.214624744987802 ], [ -47.373259556488051, -22.214639599981112 ], [ -47.373275211863223, -22.214654259696488 ], [ -47.373292072881988, -22.21467018826306 ], [ -47.373307714983838, -22.214685966111769 ], [ -47.373323288797479, -22.214700735962797 ], [ -47.373338762073764, -22.214715204053277 ], [ -47.373354640749277, -22.21472858986855 ], [ -47.373371823791352, -22.214743114014624 ], [ -47.37338858065548, -22.214757500465414 ], [ -47.373405457345207, -22.214771551218014 ], [ -47.373422784268953, -22.214786266401415 ], [ -47.37344054483826, -22.214801629273982 ], [ -47.373456908014759, -22.214815934920757 ], [ -47.373473120009209, -22.214830071590455 ], [ -47.373490249593047, -22.214844327405057 ], [ -47.37350752183572, -22.214858482670376 ], [ -47.373524928216277, -22.214872259097671 ], [ -47.373542972021596, -22.214886436607848 ], [ -47.373561289135615, -22.21490067233605 ], [ -47.373579055031044, -22.214914599007837 ], [ -47.373596580273379, -22.214927563671342 ], [ -47.373614937113466, -22.214940994288643 ], [ -47.373633324511324, -22.214954402987956 ], [ -47.37365157028038, -22.214967853259061 ], [ -47.373669450704178, -22.214980827620412 ], [ -47.373688037473599, -22.214993786957528 ], [ -47.373707047370267, -22.21500714450266 ], [ -47.373726146426321, -22.215020392441403 ], [ -47.373744309517413, -22.215033290603049 ], [ -47.373762654427196, -22.215045376911078 ], [ -47.373782436917203, -22.215058029930834 ], [ -47.373801445330656, -22.215070352812063 ], [ -47.373820892891047, -22.2150822944668 ], [ -47.373841310436376, -22.215095262553824 ], [ -47.373861202854833, -22.215108283444078 ], [ -47.37388065797721, -22.21512056516481 ], [ -47.373900433665696, -22.215133855936998 ], [ -47.373920020354618, -22.215147031212908 ], [ -47.373938591030061, -22.215158942538316 ], [ -47.373958639646602, -22.215171591751538 ], [ -47.373978244578907, -22.215184307228427 ], [ -47.373997928410155, -22.215196537115375 ], [ -47.374018680473839, -22.215209618423728 ], [ -47.374037015195334, -22.215221613886683 ], [ -47.374056876960502, -22.215233840867221 ], [ -47.374076782242142, -22.21524632109125 ], [ -47.374095940595417, -22.215258435677761 ], [ -47.374115265402111, -22.215270179518843 ], [ -47.374135824804085, -22.215282468861762 ], [ -47.374155286963244, -22.215294232321593 ], [ -47.374176037963025, -22.215306279327727 ], [ -47.374196453253617, -22.21531961480181 ], [ -47.374216470062827, -22.215332385522917 ], [ -47.374236404119067, -22.215345444604864 ], [ -47.374255213884766, -22.215357733128581 ], [ -47.374275434994118, -22.215370251379827 ], [ -47.374296092262689, -22.215383286957881 ], [ -47.374316949109613, -22.215396954190243 ], [ -47.374336612069072, -22.215409289091824 ], [ -47.374357007036018, -22.215422618833145 ], [ -47.374377838882211, -22.215436026619276 ], [ -47.374397925819892, -22.21544938507294 ], [ -47.374417751790453, -22.215463057852574 ], [ -47.374437695751503, -22.215476705638775 ], [ -47.374457395691351, -22.215491633399601 ], [ -47.374475730872575, -22.215505249830134 ], [ -47.374496053283885, -22.215520471518929 ], [ -47.374514582119097, -22.215535904634159 ], [ -47.37453344238503, -22.215551920355111 ], [ -47.37455083064863, -22.215567276202371 ], [ -47.374568606124036, -22.215582767300134 ], [ -47.374585334864619, -22.215598000956927 ], [ -47.374603446220931, -22.215614149877283 ], [ -47.374621025824034, -22.215630908649722 ], [ -47.374637042376335, -22.215647556595645 ], [ -47.374654241343336, -22.215665131986061 ], [ -47.374669213308202, -22.215681505127009 ], [ -47.374685031347155, -22.215698833471134 ], [ -47.374700617336565, -22.215716280601914 ], [ -47.374716214417923, -22.215734874900484 ], [ -47.374730601071555, -22.215752226360657 ], [ -47.374745455882618, -22.215769600577254 ], [ -47.37475986454038, -22.215787076231607 ], [ -47.37477414552874, -22.215804685469923 ], [ -47.37478749398926, -22.215821063553502 ], [ -47.374802377977588, -22.215838790028432 ], [ -47.374815906748431, -22.215856022078242 ], [ -47.374831062897087, -22.215874962463591 ], [ -47.374844487503573, -22.215893230212039 ], [ -47.374855696769977, -22.215909431672557 ], [ -47.374868482221224, -22.21592575509337 ], [ -47.37488167981779, -22.215944063679899 ], [ -47.374894409639651, -22.215962356286095 ], [ -47.374906097274597, -22.215980501115762 ], [ -47.374917613459395, -22.215997837905142 ], [ -47.374928848454729, -22.216015133945071 ], [ -47.374940089515967, -22.216032626295188 ], [ -47.374949993613136, -22.216050674954129 ], [ -47.37495788025344, -22.216066930723738 ], [ -47.374965526479883, -22.216083194613415 ], [ -47.37498269037188, -22.216122272757374 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 649.15751032900005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37137872995455, -22.211645453149789 ], [ -47.371377831967109, -22.211652439385855 ], [ -47.371374858229771, -22.211669044948678 ], [ -47.371372161971337, -22.211686382063711 ], [ -47.371368800420896, -22.211704107339656 ], [ -47.371365616177194, -22.211723152618703 ], [ -47.371361853997222, -22.211742016614163 ], [ -47.371358276656061, -22.211761975744039 ], [ -47.37135445887855, -22.211780897763695 ], [ -47.371350616770712, -22.21179984596996 ], [ -47.371347087725013, -22.211818901754082 ], [ -47.371343720516762, -22.211837686178161 ], [ -47.371340485939925, -22.211857034606382 ], [ -47.371337622416895, -22.2118767939726 ], [ -47.371334471232807, -22.21189642698042 ], [ -47.371332113000108, -22.211915045676228 ], [ -47.371329833074384, -22.211934900201022 ], [ -47.371328074163422, -22.211954935429006 ], [ -47.371325968124246, -22.211974908689374 ], [ -47.371324264079107, -22.21199448120338 ], [ -47.37132264564567, -22.212013184829384 ], [ -47.371321728815772, -22.212031867757787 ], [ -47.371321244037404, -22.212051567967578 ], [ -47.371321008895706, -22.212070621313288 ], [ -47.371321055967023, -22.212091007930134 ], [ -47.371321380072914, -22.212114189923007 ], [ -47.371321757782084, -22.212136585848505 ], [ -47.371321642863364, -22.212159524040512 ], [ -47.371322455821627, -22.21218176439579 ], [ -47.371323587132537, -22.212204837811267 ], [ -47.371324739239022, -22.212228034204497 ], [ -47.371327169196064, -22.212249574739538 ], [ -47.371329519346077, -22.212271681427527 ], [ -47.371332482587434, -22.212293209489189 ], [ -47.37133577822938, -22.212315932473917 ], [ -47.371338748722238, -22.212339301495234 ], [ -47.371341800916113, -22.212361230784019 ], [ -47.371344857256631, -22.212384862329451 ], [ -47.371348146196361, -22.21240653418085 ], [ -47.371351992405621, -22.212429587712233 ], [ -47.371356019163862, -22.21245246336348 ], [ -47.371360222118419, -22.212475133648763 ], [ -47.371364990456989, -22.212496634316 ], [ -47.371371024589074, -22.212519292153207 ], [ -47.371377029689235, -22.212541863386473 ], [ -47.371383261099098, -22.212563945094516 ], [ -47.371389958192907, -22.212585603463257 ], [ -47.371397366263288, -22.212607885488264 ], [ -47.371404645051825, -22.21262938674748 ], [ -47.371412563554877, -22.212650656064501 ], [ -47.371420934755086, -22.212672044533619 ], [ -47.371430038516387, -22.212692295025573 ], [ -47.371440140889746, -22.212712977276343 ], [ -47.371450959765092, -22.212732886790178 ], [ -47.371462233293194, -22.212753650410043 ], [ -47.371474174222747, -22.21277381888676 ], [ -47.371486030007986, -22.21279372342865 ], [ -47.371498489877595, -22.212812977550222 ], [ -47.371511914786275, -22.21283274997657 ], [ -47.371525469734003, -22.212851878421343 ], [ -47.371538811158061, -22.212870680785969 ], [ -47.371553675802758, -22.212889927904733 ], [ -47.371568360120669, -22.212908854975257 ], [ -47.371583173220785, -22.212926982513153 ], [ -47.371598439705707, -22.212945593368602 ], [ -47.371614237670343, -22.212964011169866 ], [ -47.371629891052983, -22.212982049003585 ], [ -47.371645565496223, -22.212999684924945 ], [ -47.371661795160747, -22.2130174378768 ], [ -47.371678470214604, -22.213035019874166 ], [ -47.371694574185419, -22.213053057727535 ], [ -47.371711522277501, -22.213071015521894 ], [ -47.371728246742784, -22.213088379609744 ], [ -47.371745400616632, -22.213106257949228 ], [ -47.37176222995641, -22.213123871971401 ], [ -47.371779340669995, -22.213141404323778 ], [ -47.37179625807115, -22.21315794276914 ], [ -47.371814204480899, -22.213175811256143 ], [ -47.371830925122985, -22.213192609451276 ], [ -47.371848759344459, -22.213209280948526 ], [ -47.371866209893263, -22.213226037181432 ], [ -47.371883618311017, -22.213242430704341 ], [ -47.371901499088224, -22.213259008974873 ], [ -47.371919234445429, -22.213275621822483 ], [ -47.371937671168794, -22.213292567312898 ], [ -47.371955483322161, -22.213308954733908 ], [ -47.371973762815429, -22.213325627120184 ], [ -47.371991996661585, -22.213343138349778 ], [ -47.372010009234643, -22.213360217078979 ], [ -47.372027662164797, -22.213377224554154 ], [ -47.372045753661823, -22.213394642474235 ], [ -47.372063261935679, -22.213411489722624 ], [ -47.372081031273218, -22.213429017491759 ], [ -47.372098871600635, -22.21344566099576 ], [ -47.372116326096339, -22.213462522895117 ], [ -47.372134402810083, -22.213479298027359 ], [ -47.3721529971018, -22.21349610095259 ], [ -47.372171358228705, -22.213513773995633 ], [ -47.372188024517051, -22.213529854693608 ], [ -47.372206811693346, -22.213547895892685 ], [ -47.372223833691947, -22.213564304137801 ], [ -47.372241856398915, -22.213581508695967 ], [ -47.372259193653129, -22.213599024958121 ], [ -47.372276769342591, -22.213616308551501 ], [ -47.372293777004074, -22.213632570293321 ], [ -47.372310539679681, -22.213649284902498 ], [ -47.372327861220434, -22.21366572816083 ], [ -47.372345292770454, -22.213683207647652 ], [ -47.372362968011814, -22.213700117342935 ], [ -47.372380827194981, -22.213717625355113 ], [ -47.372398336613323, -22.213735101737186 ], [ -47.372415633833192, -22.213752427281094 ], [ -47.37243237285545, -22.213769823556156 ], [ -47.372450343151236, -22.213786122129985 ], [ -47.37246926784902, -22.213804551096739 ], [ -47.372486745852065, -22.213821837147627 ], [ -47.372504104619978, -22.213840010555483 ], [ -47.372521686613801, -22.213857891303309 ], [ -47.372539193651626, -22.213876166123661 ], [ -47.372556364705233, -22.213893916537671 ], [ -47.372572906938039, -22.213912189332738 ], [ -47.372590376305162, -22.213930480482595 ], [ -47.372606954472914, -22.213948492267569 ], [ -47.372623243709128, -22.213966246988399 ], [ -47.372639303240668, -22.213983591219915 ], [ -47.372654635217337, -22.214000371117368 ], [ -47.372669996547202, -22.214017224622232 ], [ -47.372685350739879, -22.214034248151428 ], [ -47.372696384369249, -22.21404702212919 ], [ -47.372703012226665, -22.21405458362824 ], [ -47.372709784759181, -22.214062904072133 ], [ -47.372721062797524, -22.214075639688517 ], [ -47.372733591461888, -22.214090253186708 ], [ -47.372748185097763, -22.214107085790928 ], [ -47.37276241574952, -22.214123229967917 ], [ -47.372776778315675, -22.214139463926305 ], [ -47.372791764739056, -22.214156607030844 ], [ -47.372805609364526, -22.214173249814159 ], [ -47.372820146805068, -22.214190187648544 ], [ -47.372834165975306, -22.214206792459461 ], [ -47.372848455066411, -22.214223188822547 ], [ -47.372861914391748, -22.214239485947751 ], [ -47.372876284671285, -22.214255733707382 ], [ -47.37288984305588, -22.214271381360046 ], [ -47.372904414046282, -22.214287571219053 ], [ -47.372919328694756, -22.214304036231649 ], [ -47.372933895344879, -22.214319828878999 ], [ -47.372948155181639, -22.214335631195105 ], [ -47.372962737429305, -22.214351657846699 ], [ -47.372977102001883, -22.21436722468334 ], [ -47.372991671366165, -22.214382944249568 ], [ -47.373005857214096, -22.214398228336883 ], [ -47.373021219817339, -22.214414426397038 ], [ -47.373034840570433, -22.214429649056832 ], [ -47.373049063868578, -22.214444912816912 ], [ -47.373064441557979, -22.214461459915711 ], [ -47.373078977069994, -22.214477011411102 ], [ -47.373093993984405, -22.214493177741808 ], [ -47.373109090458094, -22.214509310831517 ], [ -47.373124217775647, -22.214524955982178 ], [ -47.373139849149617, -22.214540856460694 ], [ -47.373154911744777, -22.214556485397221 ], [ -47.373170028547804, -22.214572004899292 ], [ -47.37318603862078, -22.214587330216872 ], [ -47.373201902764208, -22.214603080059529 ], [ -47.37321798317253, -22.2146189671938 ], [ -47.373233287052763, -22.214634145264849 ], [ -47.373249233431856, -22.214649138371481 ], [ -47.373264876626429, -22.214663786681729 ], [ -47.373281548083384, -22.214679536170582 ], [ -47.373297180595721, -22.214695304347504 ], [ -47.373312947304811, -22.21471025713705 ], [ -47.373328722377877, -22.214725007419563 ], [ -47.373344872772662, -22.21473862229637 ], [ -47.373362006856269, -22.214753105060431 ], [ -47.373378803987904, -22.214767526083158 ], [ -47.37339571000328, -22.214781601251556 ], [ -47.373412934674661, -22.214796229596057 ], [ -47.37343061822088, -22.21481152584445 ], [ -47.373446960116311, -22.214825812886733 ], [ -47.373463302334841, -22.214840063110969 ], [ -47.373480599279603, -22.214854458209583 ], [ -47.373498007330276, -22.214868724775336 ], [ -47.373515529139524, -22.214882592560176 ], [ -47.373533622787512, -22.214896809233618 ], [ -47.37355194630797, -22.21491104994131 ], [ -47.373569846571577, -22.214925081944717 ], [ -47.373587564066455, -22.214938188831461 ], [ -47.373605960793178, -22.214951648631892 ], [ -47.373624327225087, -22.214965042042547 ], [ -47.373642586737787, -22.214978502445494 ], [ -47.373660621575858, -22.214991588853064 ], [ -47.373679298699905, -22.215004611188899 ], [ -47.373698322964366, -22.215017978830087 ], [ -47.37371739233506, -22.215031206178153 ], [ -47.373735696951343, -22.215044204841451 ], [ -47.373754336668938, -22.21505648538011 ], [ -47.373774164662272, -22.215069167504378 ], [ -47.373793285826785, -22.215081563480748 ], [ -47.373812791478137, -22.215093540806119 ], [ -47.373833030452829, -22.21510639547526 ], [ -47.373852939731805, -22.215119427402101 ], [ -47.373872319757837, -22.215131661715926 ], [ -47.373891922050191, -22.215144835952952 ], [ -47.373911635953895, -22.215158096803542 ], [ -47.373930386793063, -22.215170123687141 ], [ -47.37395040403743, -22.215182753107072 ], [ -47.373970051381178, -22.215195496091649 ], [ -47.373989815657559, -22.215207775960714 ], [ -47.374010422755589, -22.215220765888525 ], [ -47.374028822625469, -22.215232803974914 ], [ -47.374048804968893, -22.215245105184163 ], [ -47.37406863543444, -22.215257538500175 ], [ -47.374087880281067, -22.215269707780081 ], [ -47.374107362596618, -22.215281547340791 ], [ -47.374127937142383, -22.215293845736067 ], [ -47.374147479748473, -22.215305657820387 ], [ -47.374168008637248, -22.215317575880047 ], [ -47.374188166664325, -22.215330743307238 ], [ -47.374208175259355, -22.215343508787974 ], [ -47.374228043296867, -22.215356524620397 ], [ -47.374247010029535, -22.215368915691752 ], [ -47.374267329269102, -22.215381494692558 ], [ -47.374287827059263, -22.215394429633502 ], [ -47.374308700234984, -22.215408107566187 ], [ -47.374328370596849, -22.215420447111672 ], [ -47.374348694463713, -22.215433730383687 ], [ -47.374369477305628, -22.215447106629988 ], [ -47.374389370875207, -22.215460336488 ], [ -47.374409117522255, -22.215473954563329 ], [ -47.374428794162981, -22.215487419420818 ], [ -47.374448271400688, -22.215502178428057 ], [ -47.37446663885482, -22.215515818826191 ], [ -47.374486640906831, -22.21553080056319 ], [ -47.374504833796991, -22.215545953862268 ], [ -47.374523537418732, -22.215561836565147 ], [ -47.374540857483353, -22.215577132185548 ], [ -47.374558551578076, -22.215592552361844 ], [ -47.374575220960701, -22.215607731966376 ], [ -47.37459321203157, -22.215623773635514 ], [ -47.374610402600311, -22.215640161539422 ], [ -47.374626250912954, -22.215656634614497 ], [ -47.374643326613189, -22.215674084041442 ], [ -47.374658140034192, -22.215690283802115 ], [ -47.374673899893509, -22.215707548420422 ], [ -47.374689293330881, -22.21572478000763 ], [ -47.374704727551766, -22.215743180151144 ], [ -47.374719155487526, -22.215760581402368 ], [ -47.374733998028248, -22.215777941268986 ], [ -47.37474829341118, -22.215795279538586 ], [ -47.37476254995898, -22.215812858641893 ], [ -47.374775972154886, -22.215829327197604 ], [ -47.374790775869329, -22.215846958069783 ], [ -47.374804205049884, -22.215864063269681 ], [ -47.374819225815635, -22.215882834471042 ], [ -47.374832370942165, -22.215900721914505 ], [ -47.37484369856422, -22.215917094443707 ], [ -47.374856564753948, -22.215933520946461 ], [ -47.374869538707188, -22.215951519281969 ], [ -47.374882067310644, -22.21596952274168 ], [ -47.374893676289474, -22.215987545461459 ], [ -47.374905206690443, -22.21600490365438 ], [ -47.374916386354002, -22.216022114514342 ], [ -47.374927360005898, -22.2160391907478 ], [ -47.374936883792813, -22.216056546353837 ], [ -47.374944591552975, -22.216072433422493 ], [ -47.374952132537224, -22.216088473460079 ], [ -47.374967627364398, -22.216123751544501 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 650.46391348099996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371365421398984, -22.211635042626209 ], [ -47.371363431974366, -22.211650520102403 ], [ -47.371360487775341, -22.211666960711703 ], [ -47.371357801476464, -22.211684233774672 ], [ -47.371354453367907, -22.211701888162636 ], [ -47.371351278996038, -22.211720874385492 ], [ -47.371347531322712, -22.211739665633235 ], [ -47.371343956485468, -22.211759610781495 ], [ -47.371340166013361, -22.211778397457984 ], [ -47.371336304959456, -22.211797439061122 ], [ -47.371332749686616, -22.211816636453165 ], [ -47.371329362915837, -22.211835529998549 ], [ -47.371326093377441, -22.211855087546006 ], [ -47.371323223949254, -22.211874887645759 ], [ -47.371320054773882, -22.211894632733014 ], [ -47.371317660907565, -22.21191353274758 ], [ -47.371315353278078, -22.211933628509978 ], [ -47.371313589239257, -22.211953722123972 ], [ -47.371311482719676, -22.21197369992084 ], [ -47.371309768697117, -22.211993387011155 ], [ -47.371308129397086, -22.212012331740826 ], [ -47.371307193482188, -22.212031403538358 ], [ -47.371306703009694, -22.212051335059908 ], [ -47.371306465772186, -22.21207055806611 ], [ -47.371306513224539, -22.212091110624538 ], [ -47.371306838610828, -22.212114384370967 ], [ -47.371307214298724, -22.212136660583717 ], [ -47.371307098756049, -22.212159722846373 ], [ -47.371307924151886, -22.212182303524024 ], [ -47.371309059307336, -22.212205455398422 ], [ -47.371310231443971, -22.212229055178359 ], [ -47.371312701255839, -22.212250949029201 ], [ -47.371315067747531, -22.212273209456534 ], [ -47.371318063868252, -22.212294976404017 ], [ -47.37132135010588, -22.212317634563057 ], [ -47.371324316018971, -22.212340967573724 ], [ -47.371327370115907, -22.212362910551445 ], [ -47.371330436452837, -22.212386619407482 ], [ -47.371333760256057, -22.212408520999848 ], [ -47.371337631110713, -22.212431722265535 ], [ -47.371341677656503, -22.212454710341152 ], [ -47.371345931550465, -22.212477655400452 ], [ -47.371350805969797, -22.212499634400714 ], [ -47.371356909119193, -22.212522551402639 ], [ -47.371362938085966, -22.212545212352605 ], [ -47.371369238790905, -22.212567539623283 ], [ -47.371376022921162, -22.212589479474307 ], [ -47.371383484789725, -22.212611923320136 ], [ -47.371390836767326, -22.212633640783089 ], [ -47.371398860352208, -22.212655192358241 ], [ -47.37140738778568, -22.212676980009462 ], [ -47.371416708833024, -22.212697713838732 ], [ -47.371427027936399, -22.212718839797439 ], [ -47.371437983290754, -22.212739000471 ], [ -47.371449371888161, -22.212759976030927 ], [ -47.371461447269617, -22.212780371602598 ], [ -47.371473438745575, -22.212800503956867 ], [ -47.37148611401372, -22.212820090934287 ], [ -47.371499698051416, -22.212840097730798 ], [ -47.371513331025291, -22.212859336286503 ], [ -47.371526835987325, -22.212878369135481 ], [ -47.371541877893009, -22.212897845778176 ], [ -47.37155667713531, -22.212916920980096 ], [ -47.371571607685361, -22.212935192249031 ], [ -47.371586977927826, -22.212953929593425 ], [ -47.371602899993484, -22.21297249207737 ], [ -47.371618632851472, -22.212990621494225 ], [ -47.371634425906429, -22.213008390871572 ], [ -47.3716508067387, -22.213026309180812 ], [ -47.371667425598943, -22.213043831929483 ], [ -47.371683518251018, -22.213061857106187 ], [ -47.371700646463736, -22.213080005753358 ], [ -47.37171741069637, -22.213097411130594 ], [ -47.371734545216633, -22.213115269300335 ], [ -47.371751415469845, -22.213132926144763 ], [ -47.371768692409987, -22.213150628820944 ], [ -47.371785681527214, -22.213167237376947 ], [ -47.371803560315442, -22.213185038537112 ], [ -47.371820436719823, -22.213201993218018 ], [ -47.371838386830554, -22.213218773049935 ], [ -47.371855818771621, -22.213235511416404 ], [ -47.3718733167305, -22.213251989261199 ], [ -47.371891211202431, -22.21326858022978 ], [ -47.37190896888103, -22.2132852139869 ], [ -47.371927454659385, -22.213302204565451 ], [ -47.371945284152744, -22.213318607942625 ], [ -47.37196345214938, -22.213335178635777 ], [ -47.371981587822454, -22.213352595583899 ], [ -47.371999592275628, -22.213369666615169 ], [ -47.372017204824047, -22.21338663518609 ], [ -47.372035299822571, -22.213404056479458 ], [ -47.372052748209491, -22.213420846103652 ], [ -47.372070594794927, -22.213438450071557 ], [ -47.372088488625309, -22.213455143490204 ], [ -47.372105956456487, -22.213472018273233 ], [ -47.372124205063358, -22.213488952922656 ], [ -47.372142704042545, -22.213505669718622 ], [ -47.372160899522676, -22.213523183323488 ], [ -47.372177571666846, -22.213539269672463 ], [ -47.372196361254993, -22.213557313188673 ], [ -47.372213398254296, -22.21357373589456 ], [ -47.372231301857774, -22.213590826756988 ], [ -47.372248565984883, -22.21360826913806 ], [ -47.372266279246276, -22.21362568801808 ], [ -47.372283251743688, -22.213641916138993 ], [ -47.37230003224817, -22.213658648526909 ], [ -47.372317339518531, -22.213675078239405 ], [ -47.372334751876878, -22.213692538482825 ], [ -47.372352484330904, -22.213709502913776 ], [ -47.372370237505812, -22.21372690700321 ], [ -47.372387693714977, -22.213744330277585 ], [ -47.372404891324926, -22.213761556049533 ], [ -47.372421871169387, -22.213779202603732 ], [ -47.372440010483949, -22.213795654473955 ], [ -47.372458717666191, -22.213813871624012 ], [ -47.372476015834366, -22.213830979816134 ], [ -47.372493307385, -22.213849082853397 ], [ -47.372510896548562, -22.213866970893974 ], [ -47.372528364234149, -22.213885204637489 ], [ -47.372545399010953, -22.213902814177835 ], [ -47.372561911460679, -22.213921054075378 ], [ -47.37257942031092, -22.213939386566977 ], [ -47.37259590431146, -22.213957296042789 ], [ -47.372612207512901, -22.213975065986542 ], [ -47.372628257445335, -22.213992399852291 ], [ -47.372643552767002, -22.214009139634346 ], [ -47.372658884015273, -22.214025960136773 ], [ -47.372674114778263, -22.214042846818067 ], [ -47.37268508442628, -22.214055546723614 ], [ -47.372691579854994, -22.214062957139802 ], [ -47.372698374454586, -22.214071304695096 ], [ -47.372709768890431, -22.21408417175326 ], [ -47.372722250472599, -22.214098730335714 ], [ -47.372736906123876, -22.214115634471145 ], [ -47.372751182533094, -22.214131830559634 ], [ -47.372765526316165, -22.214148043288834 ], [ -47.372780374861186, -22.214165028674429 ], [ -47.372794179507267, -22.21418162339943 ], [ -47.372808749560853, -22.214198599233281 ], [ -47.372822802229308, -22.214215243722073 ], [ -47.372837042358199, -22.214231583903612 ], [ -47.372850533770873, -22.214247919882887 ], [ -47.372865011910648, -22.214264289596027 ], [ -47.37287860943627, -22.214279982422354 ], [ -47.372893282264805, -22.214296285435182 ], [ -47.372908253672378, -22.214312813108148 ], [ -47.372922811414107, -22.214328596098483 ], [ -47.372937039749154, -22.21434436350653 ], [ -47.372951673789657, -22.214360447082321 ], [ -47.372966081575953, -22.214376060750645 ], [ -47.372980661258097, -22.214391791450421 ], [ -47.372994904682052, -22.214407137577396 ], [ -47.373010180317003, -22.214423243940832 ], [ -47.373023760360212, -22.214438421104056 ], [ -47.373038072759293, -22.214453780484089 ], [ -47.373053457603987, -22.214470335283472 ], [ -47.373067992026677, -22.214485885614497 ], [ -47.37308301165055, -22.214502054863186 ], [ -47.373098203137388, -22.214518289491373 ], [ -47.373113449712832, -22.214534057983368 ], [ -47.373129073149812, -22.214549950389291 ], [ -47.373144113447395, -22.21456555619088 ], [ -47.373159426682243, -22.21458127735858 ], [ -47.373175521468731, -22.214596683767347 ], [ -47.373191307040443, -22.21461235560535 ], [ -47.373207389994604, -22.214628245255824 ], [ -47.373222817101393, -22.214643545541339 ], [ -47.373238910374269, -22.21465867676131 ], [ -47.373254541388221, -22.214673313666417 ], [ -47.373271023283372, -22.214688884077542 ], [ -47.373286646206196, -22.214704642582678 ], [ -47.37330260581075, -22.214719778310766 ], [ -47.373318682680605, -22.21473481078533 ], [ -47.373335104794663, -22.214748654723714 ], [ -47.3733521899198, -22.214763096105752 ], [ -47.373369027318951, -22.214777551700426 ], [ -47.373385962659974, -22.214791651284621 ], [ -47.373403085078984, -22.214806192790213 ], [ -47.373420691602107, -22.214821422414413 ], [ -47.373437012216478, -22.214835690852222 ], [ -47.373453484659088, -22.214850054630997 ], [ -47.373470948964794, -22.214864589013633 ], [ -47.373488492823469, -22.214878966879834 ], [ -47.373506130061415, -22.214892926022245 ], [ -47.373524273552064, -22.214907181858973 ], [ -47.373542603478967, -22.214921427546152 ], [ -47.373560638110767, -22.214935564881156 ], [ -47.373578547858202, -22.21494881399121 ], [ -47.373596984471554, -22.214962302974751 ], [ -47.373615329937515, -22.214975681096753 ], [ -47.373633603193859, -22.214989151631531 ], [ -47.373651792446225, -22.215002350085317 ], [ -47.373670559924911, -22.215015435419904 ], [ -47.373689598557156, -22.215028813157165 ], [ -47.373708638242498, -22.215042019914517 ], [ -47.373727084383965, -22.215055119079484 ], [ -47.373746018909415, -22.215067593848811 ], [ -47.373765892406084, -22.215080305077606 ], [ -47.373785126321664, -22.21509277414911 ], [ -47.373804690063999, -22.215104787145123 ], [ -47.373824750468017, -22.215117528396384 ], [ -47.373844676607519, -22.215130571359786 ], [ -47.373863981537205, -22.215142758266715 ], [ -47.373883410433393, -22.215155815968579 ], [ -47.373903251551909, -22.215169162393867 ], [ -47.373922182554807, -22.215181304835639 ], [ -47.373942168427007, -22.215193914462272 ], [ -47.373961858182199, -22.215206684954559 ], [ -47.373981702903713, -22.215219014805754 ], [ -47.374002165036089, -22.215231913352987 ], [ -47.374020630054346, -22.215243994062853 ], [ -47.374040732976056, -22.215256369500793 ], [ -47.374060488625496, -22.215268755908806 ], [ -47.374079819965473, -22.215280979882106 ], [ -47.374099459789903, -22.215292915162429 ], [ -47.374120049479458, -22.21530522261007 ], [ -47.374139672532486, -22.21531708331889 ], [ -47.374159979310228, -22.21532887243206 ], [ -47.374179880073775, -22.215341871812349 ], [ -47.374199880454626, -22.215354632052712 ], [ -47.374219682473388, -22.215367604635581 ], [ -47.374238806173047, -22.215380098254585 ], [ -47.374259223542822, -22.215392738004979 ], [ -47.374279561854578, -22.2154055723088 ], [ -47.374300451359105, -22.215419260941811 ], [ -47.374320129123369, -22.215431605131222 ], [ -47.374340381890136, -22.215444841933891 ], [ -47.37436111572778, -22.215458186640376 ], [ -47.374380815929229, -22.215471287902723 ], [ -47.374400483252764, -22.215484851273711 ], [ -47.374419892573137, -22.215498133202466 ], [ -47.374439147108681, -22.215512723456111 ], [ -47.374457546835735, -22.215526387821814 ], [ -47.374477228528427, -22.215541129607011 ], [ -47.374495085473498, -22.215556003089901 ], [ -47.374513632451048, -22.215571752774697 ], [ -47.374530884316698, -22.21558698816823 ], [ -47.37454849703073, -22.215602337423039 ], [ -47.374565107055389, -22.215617462975313 ], [ -47.374582977840802, -22.215633397393226 ], [ -47.374599779375188, -22.21564941442854 ], [ -47.374615459448165, -22.215665712632759 ], [ -47.374632411881628, -22.215683036096209 ], [ -47.37464706675879, -22.215699062476578 ], [ -47.374662768438448, -22.215716263369057 ], [ -47.374677969323805, -22.215733279412685 ], [ -47.37469324068423, -22.215751485401114 ], [ -47.374707709902125, -22.215768936443393 ], [ -47.374722540172485, -22.215786281960035 ], [ -47.374736722280609, -22.215803482844834 ], [ -47.374750954387835, -22.215821031813167 ], [ -47.37476445031912, -22.215837590841012 ], [ -47.374779173759691, -22.21585512611043 ], [ -47.374792503349958, -22.215872104460377 ], [ -47.374807388732826, -22.21589070647774 ], [ -47.374820254379422, -22.215908213616174 ], [ -47.374831700357106, -22.215924757214086 ], [ -47.374844647285315, -22.215941286798795 ], [ -47.374857397595257, -22.215958974883225 ], [ -47.374869724980314, -22.215976689196438 ], [ -47.374881255303052, -22.215994589806325 ], [ -47.37489279992019, -22.216011969402793 ], [ -47.374903924251974, -22.216029095082764 ], [ -47.374914630494573, -22.216045755199509 ], [ -47.374923773971318, -22.216062417752571 ], [ -47.37493130285138, -22.216077936120257 ], [ -47.374938738593471, -22.216093752305721 ], [ -47.37495256435647, -22.216125230330256 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 85.238769388999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374682892030329, -22.21559373924002 ], [ -47.374870279484171, -22.21574080276427 ], [ -47.375064542955656, -22.215893262069212 ], [ -47.375258806840691, -22.216045721102308 ], [ -47.375314803874872, -22.216089667676179 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 74.112218095000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374745320687239, -22.215660443930119 ], [ -47.374860906653346, -22.21575115687553 ], [ -47.375055170131233, -22.215903616191138 ], [ -47.375249434022678, -22.216056075234892 ], [ -47.375294746799376, -22.216091636789287 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 65.299857688000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374790593339483, -22.215713684351897 ], [ -47.374851533821165, -22.215761510986365 ], [ -47.375045797305461, -22.215913970312627 ], [ -47.375240061203314, -22.216066429367054 ], [ -47.375274689723071, -22.216093605899957 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 56.941827985000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374832497881513, -22.215764281408383 ], [ -47.374842160987626, -22.215771865096755 ], [ -47.375036424478331, -22.215924324433686 ], [ -47.375230688382587, -22.216076783498778 ], [ -47.375254632645962, -22.2160955750082 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 48.838004544, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374872517915044, -22.215813399449832 ], [ -47.375027051649845, -22.215934678554323 ], [ -47.375221315560509, -22.216087137630073 ], [ -47.375234575568044, -22.216097544114024 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 41.56075644, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374906410218777, -22.215857708369875 ], [ -47.375017678820008, -22.215945032674515 ], [ -47.375211942737074, -22.216097491760937 ], [ -47.375214518489308, -22.216099513217419 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 34.704208834, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374937183709392, -22.215899569598367 ], [ -47.375008305988814, -22.215955386794288 ], [ -47.37519446140977, -22.21610148231839 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 28.457078931000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374963439339439, -22.215937885160038 ], [ -47.374998933156263, -22.215965740913628 ], [ -47.375174404329428, -22.216103451416931 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 22.527506451000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374987340791655, -22.215974353132463 ], [ -47.374989560322355, -22.215976095032534 ], [ -47.375154347248269, -22.216105420513045 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 16.943757043000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.375008678517474, -22.216008809064359 ], [ -47.375134290166301, -22.21610738960673 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 12.193366572, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.375023838193968, -22.216038416421455 ], [ -47.375114233083529, -22.216109358697992 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 7.766596367, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37503659873579, -22.216066140919555 ], [ -47.375094175999948, -22.216111327786823 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 51.002754953999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373399230993705, -22.214674845270949 ], [ -47.373463582373631, -22.214725350199057 ], [ -47.373657842981721, -22.214877811459623 ], [ -47.373777330874702, -22.21497158866654 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 83.188534015000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373288647279729, -22.214570345467738 ], [ -47.373472955254705, -22.214714996164165 ], [ -47.373667215856393, -22.214867457414069 ], [ -47.373861476871781, -22.215019918392287 ], [ -47.373905350702479, -22.215054351606259 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 111.68316336, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373205711036526, -22.214487544135281 ], [ -47.373288067952593, -22.214552180617773 ], [ -47.373482328134429, -22.214704642128847 ], [ -47.373676588729708, -22.214857103368093 ], [ -47.373870849738701, -22.215009564335642 ], [ -47.374033654426803, -22.215137337125299 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 135.98965362199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373139033034704, -22.214417502721506 ], [ -47.373297440837369, -22.214541826592679 ], [ -47.373491701012796, -22.214694288093103 ], [ -47.373685961601673, -22.214846749321673 ], [ -47.373880222604257, -22.21499921027856 ], [ -47.374074484020397, -22.21515167096366 ], [ -47.37414716841603, -22.215208715142527 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 157.915104587, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373079267120261, -22.214352886080771 ], [ -47.373112553965505, -22.214379010805757 ], [ -47.373306813720781, -22.21453147256717 ], [ -47.373501073889813, -22.214683934056914 ], [ -47.373695334472288, -22.214836395274833 ], [ -47.373889595468462, -22.214988856221055 ], [ -47.374083856878201, -22.215141316895483 ], [ -47.374249943093474, -22.215271664577806 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 182.56382742400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373019239167164, -22.214288063711344 ], [ -47.373121926853969, -22.214368656790473 ], [ -47.373316186602842, -22.214521118541214 ], [ -47.373510446765465, -22.2146735800203 ], [ -47.373704707341538, -22.214826041227553 ], [ -47.373898968331318, -22.214978502163113 ], [ -47.374093229734648, -22.215130962826873 ], [ -47.374287491551669, -22.215283423218917 ], [ -47.374372644411729, -22.215350252625271 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 319.92533371500002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372963138566639, -22.214226323608699 ], [ -47.373131299741075, -22.214358302774755 ], [ -47.373325559483547, -22.214510764514841 ], [ -47.373519819639768, -22.214663225983251 ], [ -47.373714080209439, -22.214815687179847 ], [ -47.373908341192809, -22.214968148104735 ], [ -47.374102602589737, -22.215120608757843 ], [ -47.37429686440035, -22.215273069139215 ], [ -47.374491126624484, -22.215425529248758 ], [ -47.374685389262282, -22.215577989086576 ], [ -47.374879652313638, -22.215730448652582 ], [ -47.375073915778714, -22.215882907946845 ], [ -47.37526817965734, -22.216035366969283 ], [ -47.37533486094955, -22.216087698560646 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 329.03883723199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372915634635739, -22.214171330449393 ], [ -47.372946413304284, -22.214195486757419 ], [ -47.373140672626832, -22.214347948758608 ], [ -47.373334932362901, -22.214500410488025 ], [ -47.373529192512713, -22.214652871945781 ], [ -47.373723453075982, -22.214805333131707 ], [ -47.373917714052943, -22.214957794045937 ], [ -47.374111975443469, -22.215110254688376 ], [ -47.374306237247687, -22.21526271505908 ], [ -47.374500499465405, -22.215415175157965 ], [ -47.374694762096802, -22.21556763498511 ], [ -47.374889025141748, -22.215720094540451 ], [ -47.375083288600422, -22.215872553824056 ], [ -47.375277552472646, -22.216025012835829 ], [ -47.375354918023433, -22.216085729442693 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 337.95480148899998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372869595151819, -22.214117486600028 ], [ -47.372955786195078, -22.214185132751499 ], [ -47.373150045511231, -22.214337594742023 ], [ -47.373344305240892, -22.214490056460775 ], [ -47.373538565384308, -22.214642517907873 ], [ -47.373732825941168, -22.21479497908313 ], [ -47.373927086911728, -22.214947439986695 ], [ -47.374121348295851, -22.215099900618469 ], [ -47.374315610093653, -22.215252360978521 ], [ -47.374509872304976, -22.215404821066734 ], [ -47.374704134929964, -22.215557280883214 ], [ -47.374898397968508, -22.215709740427901 ], [ -47.375092661420773, -22.215862199700844 ], [ -47.375286925286595, -22.216014658701944 ], [ -47.375374975096506, -22.216083760322316 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 347.21133369199998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372821030988035, -22.214061661233142 ], [ -47.372965159084529, -22.214174778745157 ], [ -47.373159418394273, -22.214327240725012 ], [ -47.373353678117539, -22.214479702433103 ], [ -47.373547938254539, -22.214632163869521 ], [ -47.373742198805004, -22.214784625034135 ], [ -47.373936459769162, -22.214937085927026 ], [ -47.374130721146877, -22.215089546548146 ], [ -47.374324982938269, -22.215242006897522 ], [ -47.37451924514319, -22.215394466975074 ], [ -47.374713507761776, -22.215546926780895 ], [ -47.374907770793918, -22.21569938631491 ], [ -47.375102034239774, -22.215851845577188 ], [ -47.375296298099187, -22.216004304567633 ], [ -47.375395032168761, -22.216081791199503 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 356.33525387499998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372773449949094, -22.214006607414987 ], [ -47.37278027308286, -22.214011962497434 ], [ -47.372974531972616, -22.214164424738364 ], [ -47.373168791275965, -22.214316886707568 ], [ -47.373363050992822, -22.214469348404993 ], [ -47.37355731112342, -22.214621809830753 ], [ -47.373751571667484, -22.214774270984694 ], [ -47.373945832625232, -22.214926731866932 ], [ -47.374140093996544, -22.215079192477379 ], [ -47.374334355781542, -22.215231652816094 ], [ -47.374528617980047, -22.215384112882987 ], [ -47.374722880592223, -22.21553657267814 ], [ -47.374917143617964, -22.215689032201489 ], [ -47.37511140705741, -22.215841491453101 ], [ -47.375305670910414, -22.215993950432882 ], [ -47.375415089240207, -22.216079822074267 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 366.05095849899999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372721367359333, -22.213948020538719 ], [ -47.372789645975999, -22.214001608500883 ], [ -47.37298390485936, -22.214154070731158 ], [ -47.3731781641563, -22.214306532689694 ], [ -47.373372423866755, -22.214458994376464 ], [ -47.373566683990944, -22.214611455791559 ], [ -47.373760944528605, -22.214763916934828 ], [ -47.373955205479945, -22.214916377806404 ], [ -47.374149466844855, -22.215068838406186 ], [ -47.374343728623444, -22.215221298734235 ], [ -47.374537990815554, -22.215373758790463 ], [ -47.374732253421328, -22.215526218574954 ], [ -47.374926516440659, -22.215678678087645 ], [ -47.375120779873704, -22.215831137328593 ], [ -47.375315043720299, -22.215983596297704 ], [ -47.375435031759579, -22.216077763046755 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 376.51958168900001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372662912793857, -22.213884432599663 ], [ -47.372799018867788, -22.21399125450391 ], [ -47.37299327774474, -22.214143716723509 ], [ -47.373187537035271, -22.214296178671393 ], [ -47.373381796739331, -22.214448640347488 ], [ -47.373576056857118, -22.214601101751921 ], [ -47.37377031738837, -22.214753562884535 ], [ -47.373964578333307, -22.214906023745439 ], [ -47.374158839691816, -22.215058484334563 ], [ -47.374353101463996, -22.215210944651947 ], [ -47.374547363649697, -22.215363404697506 ], [ -47.374741626249062, -22.215515864471346 ], [ -47.374935889261991, -22.215668323973361 ], [ -47.375130152688634, -22.21582078320365 ], [ -47.375324416528827, -22.2159732421621 ], [ -47.375454183796954, -22.216075083647222 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 387.71274295400002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372599087114907, -22.213816629099878 ], [ -47.372614133301241, -22.2138284380258 ], [ -47.372808391758213, -22.213980900506495 ], [ -47.373002650628763, -22.214133362715444 ], [ -47.373196909912892, -22.214285824652652 ], [ -47.373391169610549, -22.214438286318085 ], [ -47.373585429721935, -22.214590747711853 ], [ -47.373779690246785, -22.214743208833802 ], [ -47.37397395118532, -22.214895669684047 ], [ -47.37416821253742, -22.215048130262506 ], [ -47.374362474303197, -22.215200590569225 ], [ -47.374556736482489, -22.215353050604129 ], [ -47.374750999075452, -22.215505510367294 ], [ -47.37494526208198, -22.215657969858647 ], [ -47.375139525502206, -22.215810429078267 ], [ -47.375333789335997, -22.215962888026056 ], [ -47.375473335833377, -22.216072404245494 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 400.63664346399997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372522431142961, -22.213738755710168 ], [ -47.372623506196717, -22.213818084038625 ], [ -47.372817764647287, -22.213970546508648 ], [ -47.373012023511428, -22.214123008706935 ], [ -47.373206282789162, -22.214275470633474 ], [ -47.373400542480411, -22.21442793228826 ], [ -47.373594802585387, -22.214580393671351 ], [ -47.373789063103843, -22.214732854782639 ], [ -47.373983324035969, -22.214885315622222 ], [ -47.374177585381666, -22.215037776190012 ], [ -47.374371847141035, -22.21519023648607 ], [ -47.374566109313925, -22.215342696510312 ], [ -47.374760371900486, -22.215495156262808 ], [ -47.374954634900604, -22.215647615743507 ], [ -47.375148898314428, -22.215800074952462 ], [ -47.37534316214181, -22.215952533889581 ], [ -47.375492487868833, -22.216069724841574 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 415.24106799499998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37243331717179, -22.213651104573366 ], [ -47.372438621060326, -22.213655267319961 ], [ -47.372632879090844, -22.213807730051016 ], [ -47.372827137535005, -22.21396019251037 ], [ -47.373021396392751, -22.214112654697992 ], [ -47.373215655664069, -22.21426511661387 ], [ -47.373409915348923, -22.214417578257986 ], [ -47.373604175447497, -22.214570039630427 ], [ -47.373798435959543, -22.214722500731053 ], [ -47.373992696885267, -22.214874961559968 ], [ -47.374186958224563, -22.2150274221171 ], [ -47.374381219977522, -22.215179882402484 ], [ -47.374575482144017, -22.215332342416058 ], [ -47.374769744724162, -22.215484802157903 ], [ -47.374964007717871, -22.215637261627933 ], [ -47.375158271125287, -22.215789720826223 ], [ -47.375352534946266, -22.215942179752684 ], [ -47.375511639903351, -22.216067045435448 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 430.53433665799997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372339096769075, -22.213559445508576 ], [ -47.37244799395949, -22.213644913342591 ], [ -47.372642251983606, -22.213797376062963 ], [ -47.372836510421365, -22.213949838511667 ], [ -47.37303076927271, -22.214102300688626 ], [ -47.373225028537632, -22.214254762593843 ], [ -47.373419288216077, -22.214407224227291 ], [ -47.373613548308242, -22.214559685589062 ], [ -47.373807808813886, -22.214712146679023 ], [ -47.374002069733216, -22.21486460749728 ], [ -47.374196331066102, -22.215017068043746 ], [ -47.374390592812659, -22.215169528318473 ], [ -47.374584854972738, -22.215321988321389 ], [ -47.374779117546481, -22.215474448052557 ], [ -47.374973380533795, -22.215626907511925 ], [ -47.375167643934802, -22.21577936669955 ], [ -47.375361907749372, -22.215931825615343 ], [ -47.375530791936917, -22.21606436602714 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 445.76721550299999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372245324171033, -22.213468137740925 ], [ -47.372263109253112, -22.213482096383313 ], [ -47.372457366857304, -22.213634559364777 ], [ -47.372651624875012, -22.213787022074499 ], [ -47.372845883306375, -22.213939484512526 ], [ -47.373040142151311, -22.214091946678824 ], [ -47.373234401409832, -22.214244408573375 ], [ -47.373428661081874, -22.214396870196168 ], [ -47.373622921167637, -22.214549331547271 ], [ -47.37381718166688, -22.214701792626574 ], [ -47.374011442579793, -22.214854253434158 ], [ -47.374205703906277, -22.215006713969956 ], [ -47.374399965646433, -22.215159174234024 ], [ -47.374594227800117, -22.215311634226271 ], [ -47.37478849036745, -22.215464093946771 ], [ -47.374982753348355, -22.215616553395481 ], [ -47.375177016742953, -22.215769012572437 ], [ -47.375371280551121, -22.215921471477568 ], [ -47.375549943969524, -22.216061686616641 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 463.266447433, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372134750795404, -22.213363643670423 ], [ -47.372272482155978, -22.213471742415731 ], [ -47.372466739753762, -22.21362420538653 ], [ -47.372660997765067, -22.213776668085586 ], [ -47.372855256190022, -22.213929130512959 ], [ -47.373049515028562, -22.214081592668585 ], [ -47.373243774280674, -22.214234054552477 ], [ -47.373438033946321, -22.214386516164605 ], [ -47.373632294025683, -22.21453897750504 ], [ -47.373826554518523, -22.214691438573684 ], [ -47.374020815425027, -22.214843899370599 ], [ -47.374215076745102, -22.214996359895746 ], [ -47.374409338478848, -22.215148820149139 ], [ -47.374603600626131, -22.215301280130721 ], [ -47.374797863187062, -22.215453739840573 ], [ -47.374992126161558, -22.215606199278611 ], [ -47.375186389549754, -22.215758658444905 ], [ -47.375380653351513, -22.215911117339367 ], [ -47.375569096001179, -22.216059007203928 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 479.41479009400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.372034191965149, -22.213267009345767 ], [ -47.372087597879691, -22.213308925215873 ], [ -47.37228185505748, -22.213461388447715 ], [ -47.372476112648862, -22.213613851407853 ], [ -47.372670370653772, -22.213766314096247 ], [ -47.372864629072325, -22.213918776512958 ], [ -47.373058887904456, -22.214071238657922 ], [ -47.373253147150166, -22.214223700531154 ], [ -47.373447406809412, -22.214376162132613 ], [ -47.373641666882357, -22.214528623462389 ], [ -47.373835927368795, -22.214681084520358 ], [ -47.374030188268897, -22.214833545306611 ], [ -47.374224449582577, -22.214986005821093 ], [ -47.374418711309914, -22.215138466063834 ], [ -47.374612973450795, -22.215290926034754 ], [ -47.374807236005317, -22.215443385733931 ], [ -47.375001498973411, -22.21559584516131 ], [ -47.375195762355197, -22.215748304316939 ], [ -47.375390026150555, -22.215900763200743 ], [ -47.375584290359569, -22.216053221812764 ], [ -47.375588248031889, -22.216056327789044 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 498.40288584199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37191258170855, -22.213153852483 ], [ -47.372096970786245, -22.213298571258093 ], [ -47.372291227957632, -22.213451034479277 ], [ -47.372485485542612, -22.213603497428753 ], [ -47.37267974354112, -22.213755960106482 ], [ -47.372874001953264, -22.213908422512521 ], [ -47.373068260778993, -22.214060884646827 ], [ -47.373262520018301, -22.214213346509386 ], [ -47.373456779671137, -22.214365808100187 ], [ -47.373651039737688, -22.214518269419301 ], [ -47.373845300217724, -22.214670730466612 ], [ -47.374039561111424, -22.2148231912422 ], [ -47.374233822418695, -22.214975651746009 ], [ -47.37442808413963, -22.215128111978089 ], [ -47.374622346274094, -22.215280571938344 ], [ -47.374816608822215, -22.215433031626855 ], [ -47.375010871783907, -22.215585491043576 ], [ -47.375205135159291, -22.21573795018854 ], [ -47.375399398948232, -22.215890409061679 ], [ -47.375593663150845, -22.216042867663038 ], [ -47.375607400061647, -22.216053648371954 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 512.76382704399998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37182527347008, -22.213067617594405 ], [ -47.371912086940029, -22.213135753817657 ], [ -47.372106343691435, -22.213288217299883 ], [ -47.37230060085642, -22.213440680510399 ], [ -47.372494858434997, -22.213593143449209 ], [ -47.372689116427104, -22.213745606116273 ], [ -47.372883374832853, -22.213898068511654 ], [ -47.37307763365218, -22.214050530635294 ], [ -47.373271892885079, -22.214202992487195 ], [ -47.373466152531513, -22.214355454067331 ], [ -47.373660412591661, -22.214507915375776 ], [ -47.373854673065296, -22.214660376412425 ], [ -47.374048933952587, -22.214812837177355 ], [ -47.374243195253449, -22.214965297670506 ], [ -47.374437456967989, -22.21511775789191 ], [ -47.374631719096044, -22.215270217841503 ], [ -47.374825981637763, -22.215422677519353 ], [ -47.375020244593046, -22.215575136925406 ], [ -47.375214507962013, -22.215727596059704 ], [ -47.37540877174456, -22.215880054922177 ], [ -47.37560303594077, -22.216032513512875 ], [ -47.375626552090438, -22.216050968952665 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 524.38001641300002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371758312599042, -22.212997352394201 ], [ -47.37192145985027, -22.213125399869671 ], [ -47.372115716595275, -22.213277863341236 ], [ -47.372309973753858, -22.213430326541094 ], [ -47.37250423132604, -22.213582789469235 ], [ -47.372698489311738, -22.213735252125641 ], [ -47.372892747711084, -22.213887714510363 ], [ -47.373087006524003, -22.214040176623332 ], [ -47.373281265750506, -22.214192638464567 ], [ -47.373475525390539, -22.214345100034048 ], [ -47.373669785444278, -22.214497561331825 ], [ -47.37386404591151, -22.214650022357819 ], [ -47.374058306792399, -22.214802483112077 ], [ -47.37425256808686, -22.214954943594563 ], [ -47.374446829794984, -22.215107403805302 ], [ -47.374641091916644, -22.215259863744237 ], [ -47.374835354451953, -22.215412323411424 ], [ -47.375029617400834, -22.215564782806815 ], [ -47.3752238807634, -22.215717241930452 ], [ -47.375418144539537, -22.21586970078226 ], [ -47.375612408729332, -22.216022159362293 ], [ -47.375645704118277, -22.216048289531198 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 534.67869851, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371701118669094, -22.212934752795174 ], [ -47.371736576434138, -22.212962582188677 ], [ -47.371930832759155, -22.213115045921256 ], [ -47.372125089497764, -22.213267509382163 ], [ -47.372319346649938, -22.213419972571359 ], [ -47.372513604215719, -22.213572435488842 ], [ -47.372707862195021, -22.213724898134583 ], [ -47.372902120587959, -22.213877360508633 ], [ -47.373096379394475, -22.214029822610946 ], [ -47.373290638614577, -22.214182284441517 ], [ -47.373484898248208, -22.214334746000326 ], [ -47.373679158295545, -22.214487207287444 ], [ -47.373873418756368, -22.21463966830277 ], [ -47.374067679630855, -22.214792129046373 ], [ -47.374261940918906, -22.214944589518186 ], [ -47.374456202620628, -22.21509704971827 ], [ -47.374650464735886, -22.215249509646537 ], [ -47.374844727264787, -22.215401969303059 ], [ -47.375038990207258, -22.215554428687781 ], [ -47.375233253563422, -22.215706887800756 ], [ -47.375427517333151, -22.215859346641903 ], [ -47.375621781516536, -22.216011805211267 ], [ -47.375664856145178, -22.216045610107528 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 543.43526637800005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371655356701019, -22.212881125637978 ], [ -47.371745949348067, -22.212952228250508 ], [ -47.371940205666689, -22.213104691972426 ], [ -47.372134462398897, -22.213257155422664 ], [ -47.372328719544669, -22.213409618601187 ], [ -47.37252297710404, -22.213562081508009 ], [ -47.372717235076948, -22.21371454414308 ], [ -47.372911493463484, -22.213867006506472 ], [ -47.373105752263598, -22.214019468598124 ], [ -47.373300011477291, -22.214171930418033 ], [ -47.373494271104519, -22.214324391966173 ], [ -47.373688531145447, -22.214476853242633 ], [ -47.373882791599868, -22.214629314247293 ], [ -47.374077052467953, -22.214781774980228 ], [ -47.374271313749603, -22.21493423544139 ], [ -47.374465575444916, -22.215086695630802 ], [ -47.374659837553764, -22.215239155548403 ], [ -47.37485410007627, -22.21539161519426 ], [ -47.375048363012333, -22.215544074568328 ], [ -47.375242626362088, -22.215696533670627 ], [ -47.375436890125414, -22.215848992501112 ], [ -47.375631154302397, -22.216001451059814 ], [ -47.375684008171127, -22.21604293068167 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 551.04649401799998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371618085332713, -22.21283416238769 ], [ -47.37175532226064, -22.212941874311891 ], [ -47.37194957857286, -22.213094338023144 ], [ -47.372143835298665, -22.213246801462727 ], [ -47.372338092438042, -22.213399264630588 ], [ -47.372532349991012, -22.213551727526742 ], [ -47.372726607957517, -22.213704190151159 ], [ -47.372920866337644, -22.213856652503893 ], [ -47.373115125131363, -22.214009114584869 ], [ -47.373309384338654, -22.214161576394112 ], [ -47.373503643959481, -22.214314037931604 ], [ -47.373697903994, -22.214466499197382 ], [ -47.373892164442019, -22.214618960191387 ], [ -47.374086425303702, -22.214771420913653 ], [ -47.374280686578942, -22.21492388136415 ], [ -47.374474948267846, -22.2150763415429 ], [ -47.374669210370293, -22.215228801449836 ], [ -47.374863472886389, -22.215381261085035 ], [ -47.37505773581605, -22.215533720448434 ], [ -47.375251999159403, -22.215686179540068 ], [ -47.375446262916313, -22.215838638359894 ], [ -47.375640527086894, -22.215991096907928 ], [ -47.375703160196117, -22.216040251253606 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 557.63541232299997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371588392505814, -22.212793147221731 ], [ -47.371764695171869, -22.212931520372845 ], [ -47.37195895147768, -22.213083984073439 ], [ -47.372153208197091, -22.213236447502354 ], [ -47.372347465330058, -22.21338891065956 ], [ -47.372541722876626, -22.213541373545045 ], [ -47.37273598083673, -22.213693836158804 ], [ -47.372930239210461, -22.213846298500865 ], [ -47.373124497997765, -22.21399876057118 ], [ -47.373318757198653, -22.214151222369768 ], [ -47.373513016813078, -22.214303683896585 ], [ -47.373707276841195, -22.214456145151708 ], [ -47.373901537282819, -22.214608606135048 ], [ -47.374095798138086, -22.214761066846659 ], [ -47.374290059406931, -22.21491352728648 ], [ -47.374484321089433, -22.215065987454569 ], [ -47.374678583185464, -22.21521844735085 ], [ -47.374872845695158, -22.21537090697538 ], [ -47.37506710861841, -22.21552336632811 ], [ -47.375261371955354, -22.21567582540909 ], [ -47.375455635705862, -22.215828284218244 ], [ -47.375649899870034, -22.215980742755612 ], [ -47.375722312220148, -22.216037571823353 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 563.596541925, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371563353576654, -22.212755784708136 ], [ -47.371579812195833, -22.21276870247171 ], [ -47.371774068081734, -22.212921166433368 ], [ -47.371968324381143, -22.213073630123297 ], [ -47.372162581094152, -22.213226093541557 ], [ -47.372356838220725, -22.213378556688092 ], [ -47.37255109576089, -22.213531019562925 ], [ -47.372745353714585, -22.213683482166012 ], [ -47.372939612081915, -22.213835944497408 ], [ -47.373133870862816, -22.213988406557068 ], [ -47.373328130057303, -22.214140868344987 ], [ -47.373522389665325, -22.214293329861146 ], [ -47.373716649687033, -22.214445791105604 ], [ -47.373910910122255, -22.214598252078275 ], [ -47.37410517097112, -22.214750712779221 ], [ -47.374299432233556, -22.214903173208388 ], [ -47.374493693909656, -22.215055633365811 ], [ -47.374687955999292, -22.21520809325142 ], [ -47.37488221850257, -22.215360552865285 ], [ -47.375076481419427, -22.21551301220736 ], [ -47.375270744749955, -22.215665471277664 ], [ -47.375465008494068, -22.215817930076156 ], [ -47.375659272651824, -22.215970388602866 ], [ -47.375741464243234, -22.216034892390923 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 568.87710959900005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371543359754185, -22.212722381899798 ], [ -47.37158918511075, -22.212758348542465 ], [ -47.371783440990242, -22.212910812493469 ], [ -47.371977697283256, -22.213063276172736 ], [ -47.372171953989863, -22.213215739580324 ], [ -47.372366211110034, -22.213368202716197 ], [ -47.37256046864379, -22.213520665580361 ], [ -47.37275472659109, -22.213673128172793 ], [ -47.372948984952011, -22.213825590493528 ], [ -47.37314324372651, -22.213978052542515 ], [ -47.373337502914602, -22.214130514319766 ], [ -47.373531762516215, -22.214282975825267 ], [ -47.373726022531528, -22.214435437059063 ], [ -47.373920282960341, -22.214587898021076 ], [ -47.374114543802797, -22.214740358711349 ], [ -47.374308805058831, -22.214892819129851 ], [ -47.374503066728522, -22.215045279276612 ], [ -47.374697328811749, -22.215197739151556 ], [ -47.374891591308632, -22.215350198754763 ], [ -47.375085854219073, -22.215502658086173 ], [ -47.375280117543205, -22.215655117145811 ], [ -47.375474381280902, -22.215807575933646 ], [ -47.375668645432256, -22.21596003444969 ], [ -47.375760616265367, -22.216032212956282 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 573.79868568100005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371526027191614, -22.212691067807572 ], [ -47.371598558024303, -22.212747994612783 ], [ -47.3717928138974, -22.212900458553126 ], [ -47.371987070184012, -22.213052922221731 ], [ -47.372181326884217, -22.213205385618657 ], [ -47.372375583997979, -22.213357848743872 ], [ -47.37256984152534, -22.213510311597364 ], [ -47.372764099466238, -22.213662774179141 ], [ -47.372958357820757, -22.213815236489211 ], [ -47.373152616588854, -22.213967698527529 ], [ -47.373346875770537, -22.214120160294119 ], [ -47.373541135365755, -22.214272621788957 ], [ -47.373735395374652, -22.214425083012085 ], [ -47.373929655797063, -22.214577543963433 ], [ -47.374123916633124, -22.214730004643055 ], [ -47.374318177882749, -22.214882465050884 ], [ -47.374512439546038, -22.215034925186981 ], [ -47.374706701622856, -22.215187385051269 ], [ -47.37490096411333, -22.215339844643808 ], [ -47.375095227017376, -22.215492303964549 ], [ -47.375289490335092, -22.215644763013536 ], [ -47.375483754066387, -22.215797221790702 ], [ -47.375678018211339, -22.215949680296074 ], [ -47.375779768286549, -22.216029533519446 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 578.43410159400003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371510815977963, -22.212661418677698 ], [ -47.371607930936506, -22.212737640682686 ], [ -47.371802186803208, -22.212890104612356 ], [ -47.371996443083411, -22.213042568270296 ], [ -47.372190699777214, -22.213195031656568 ], [ -47.372384956884581, -22.21334749477111 ], [ -47.372579214405533, -22.213499957613951 ], [ -47.372773472340029, -22.213652420185049 ], [ -47.372967730688146, -22.213804882484453 ], [ -47.373161989449841, -22.213957344512124 ], [ -47.373356248625122, -22.214109806268048 ], [ -47.373550508213931, -22.214262267752222 ], [ -47.373744768216433, -22.214414728964677 ], [ -47.373939028632435, -22.21456718990537 ], [ -47.374133289462087, -22.21471965057432 ], [ -47.37432755070531, -22.214872110971495 ], [ -47.374521812362197, -22.215024571096919 ], [ -47.374716074432612, -22.215177030950546 ], [ -47.374910336916678, -22.215329490532419 ], [ -47.375104599814314, -22.215481949842509 ], [ -47.375298863125629, -22.21563440888082 ], [ -47.375493126850515, -22.215786867647317 ], [ -47.375687390989057, -22.215939326142042 ], [ -47.375798920306778, -22.216026854080422 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 582.59467507900001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.3714991248359, -22.212634532320571 ], [ -47.371617303847358, -22.212727286752145 ], [ -47.371811559707652, -22.21287975067116 ], [ -47.37200581598146, -22.213032214318439 ], [ -47.372200072668861, -22.213184677694038 ], [ -47.372394329769818, -22.213337140797915 ], [ -47.372588587284376, -22.213489603630091 ], [ -47.372782845212463, -22.21364206619053 ], [ -47.372977103554177, -22.213794528479269 ], [ -47.373171362309478, -22.213946990496275 ], [ -47.373365621478349, -22.214099452241534 ], [ -47.373559881060757, -22.214251913715046 ], [ -47.37375414105685, -22.21440437491685 ], [ -47.373948401466457, -22.214556835846874 ], [ -47.3741426622897, -22.214709296505152 ], [ -47.374336923526528, -22.214861756891665 ], [ -47.374531185176998, -22.215014217006438 ], [ -47.374725447241012, -22.215166676849389 ], [ -47.374919709718675, -22.215319136420611 ], [ -47.375113972609903, -22.215471595720022 ], [ -47.375308235914808, -22.215624054747675 ], [ -47.375502499633292, -22.21577651350351 ], [ -47.375696763765418, -22.215928971987566 ], [ -47.375818072326048, -22.216024174639202 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 586.47516182300001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371489510015316, -22.212609275590449 ], [ -47.371626676756854, -22.21271693282117 ], [ -47.371820932610746, -22.21286939672952 ], [ -47.372015188878144, -22.213021860366133 ], [ -47.372209445559143, -22.213174323731071 ], [ -47.372403702653706, -22.2133267868243 ], [ -47.372597960161862, -22.2134792496458 ], [ -47.372792218083553, -22.213631712195582 ], [ -47.372986476418859, -22.213784174473663 ], [ -47.37318073516775, -22.213936636479993 ], [ -47.37337499433022, -22.214089098214593 ], [ -47.373569253906226, -22.21424155967744 ], [ -47.373763513895916, -22.214394020868582 ], [ -47.373957774299122, -22.214546481787941 ], [ -47.374152035115962, -22.214698942435568 ], [ -47.374346296346374, -22.214851402811409 ], [ -47.374540557990443, -22.215003862915513 ], [ -47.374734820048054, -22.215156322747813 ], [ -47.374929082519309, -22.215308782308359 ], [ -47.375123345404134, -22.215461241597115 ], [ -47.37531760870263, -22.215613700614096 ], [ -47.375511872414705, -22.215766159359276 ], [ -47.375706136540437, -22.215918617832653 ], [ -47.37583722434438, -22.21602149519579 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 590.19363967200002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371481096189676, -22.212584961475617 ], [ -47.371636049664993, -22.212706578889772 ], [ -47.371830305512475, -22.212859042787453 ], [ -47.372024561773486, -22.213011506413405 ], [ -47.372218818448083, -22.213163969767685 ], [ -47.372413075536237, -22.213316432850242 ], [ -47.37260733303799, -22.213468895661084 ], [ -47.372801590953273, -22.2136213582002 ], [ -47.372995849282184, -22.213773820467615 ], [ -47.373190108024673, -22.213926282463284 ], [ -47.373384367180741, -22.21407874418723 ], [ -47.373578626750344, -22.214231205639411 ], [ -47.373772886733626, -22.214383666819877 ], [ -47.373967147130429, -22.214536127728582 ], [ -47.374161407940868, -22.214688588365537 ], [ -47.374355669164878, -22.21484104873073 ], [ -47.374549930802537, -22.214993508824154 ], [ -47.37474419285374, -22.215145968645793 ], [ -47.374938455318592, -22.215298428195673 ], [ -47.375132718197015, -22.215450887473768 ], [ -47.375326981489103, -22.215603346480094 ], [ -47.375521245194768, -22.215755805214599 ], [ -47.375715509314084, -22.215908263677317 ], [ -47.37585637636176, -22.216018815750171 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 593.84767747499995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371473160068895, -22.212561022291535 ], [ -47.371645422571767, -22.212696224957938 ], [ -47.371839678412861, -22.212848688844961 ], [ -47.372033934667463, -22.213001152460251 ], [ -47.372228191335658, -22.213153615803861 ], [ -47.372422448417417, -22.213306078875753 ], [ -47.372616705912762, -22.213458541675937 ], [ -47.372810963821649, -22.213611004204395 ], [ -47.373005222144151, -22.213763466461135 ], [ -47.373199480880238, -22.213915928446156 ], [ -47.373393740029904, -22.214068390159426 ], [ -47.373587999593106, -22.214220851600942 ], [ -47.373782259569985, -22.21437331277075 ], [ -47.373976519960372, -22.21452577366879 ], [ -47.374170780764409, -22.214678234295082 ], [ -47.374365041982017, -22.214830694649603 ], [ -47.374559303613275, -22.214983154732373 ], [ -47.374753565658068, -22.215135614543339 ], [ -47.374947828116518, -22.215288074082558 ], [ -47.375142090988533, -22.215440533349991 ], [ -47.375336354274218, -22.215592992345648 ], [ -47.375530617973482, -22.215745451069491 ], [ -47.375724882086388, -22.215897909521555 ], [ -47.375875528378167, -22.216016136302375 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 597.38444366800002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371466093299119, -22.212537765428202 ], [ -47.371654795477198, -22.212685871025673 ], [ -47.371849051311884, -22.212838334902035 ], [ -47.372043307560091, -22.212990798506659 ], [ -47.372237564221876, -22.213143261839605 ], [ -47.372431821297234, -22.213295724900831 ], [ -47.372626078786183, -22.213448187690357 ], [ -47.372820336688662, -22.213600650208143 ], [ -47.373014595004769, -22.213753112454235 ], [ -47.373208853734447, -22.213905574428576 ], [ -47.37340311287771, -22.214058036131192 ], [ -47.37359737243451, -22.214210497562053 ], [ -47.373791632404981, -22.214362958721189 ], [ -47.373985892788973, -22.214515419608563 ], [ -47.3741801535866, -22.214667880224194 ], [ -47.374374414797799, -22.21482034056805 ], [ -47.374568676422655, -22.214972800640162 ], [ -47.374762938461046, -22.215125260440466 ], [ -47.374957200913087, -22.215277719969023 ], [ -47.3751514637787, -22.215430179225788 ], [ -47.375345727057976, -22.215582638210776 ], [ -47.375539990750831, -22.215735096923961 ], [ -47.375734254857335, -22.215887555365352 ], [ -47.375894680393642, -22.21601345685238 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 600.81533725500003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37145981137769, -22.212515124562945 ], [ -47.371469912966596, -22.212523052955621 ], [ -47.371664168381272, -22.212675517092979 ], [ -47.371858424209549, -22.212827980958672 ], [ -47.372052680451354, -22.212980444552635 ], [ -47.372246937106745, -22.213132907874922 ], [ -47.3724411941757, -22.213285370925487 ], [ -47.372635451658248, -22.21343783370434 ], [ -47.372829709554331, -22.213590296211468 ], [ -47.373023967864029, -22.213742758446891 ], [ -47.373218226587305, -22.213895220410578 ], [ -47.37341248572416, -22.214047682102521 ], [ -47.373606745274557, -22.214200143522721 ], [ -47.373801005238626, -22.214352604671198 ], [ -47.373995265616216, -22.214505065547915 ], [ -47.374189526407442, -22.214657526152877 ], [ -47.374383787612231, -22.214809986486074 ], [ -47.374578049230678, -22.214962446547514 ], [ -47.374772311262667, -22.215114906337149 ], [ -47.374966573708306, -22.215267365855045 ], [ -47.37516083656751, -22.215419825101147 ], [ -47.375355099840384, -22.215572284075481 ], [ -47.375549363526829, -22.215724742777994 ], [ -47.375743627626925, -22.21587720120872 ], [ -47.375913832408152, -22.216010777400193 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 604.20251022000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371453853564489, -22.212492738076957 ], [ -47.371479285875708, -22.212512699033155 ], [ -47.371673541283982, -22.212665163159855 ], [ -47.371867797105871, -22.212817627014878 ], [ -47.372062053341267, -22.212970090598176 ], [ -47.372256309990263, -22.213122553909802 ], [ -47.372450567052816, -22.213275016949709 ], [ -47.372644824528955, -22.213427479717904 ], [ -47.372839082418629, -22.213579942214366 ], [ -47.373033340721932, -22.213732404439124 ], [ -47.373227599438799, -22.213884866392142 ], [ -47.373421858569259, -22.214037328073431 ], [ -47.373616118113254, -22.214189789482955 ], [ -47.373810378070914, -22.214342250620771 ], [ -47.374004638442102, -22.214494711486822 ], [ -47.374198899226919, -22.214647172081122 ], [ -47.374393160425313, -22.214799632403654 ], [ -47.374587422037351, -22.214952092454432 ], [ -47.374781684062938, -22.215104552233409 ], [ -47.374975946502168, -22.215257011740636 ], [ -47.375170209354962, -22.215409470976077 ], [ -47.375364472621428, -22.215561929939739 ], [ -47.375558736301471, -22.215714388631589 ], [ -47.375753000395157, -22.215866847051654 ], [ -47.375932984421716, -22.216008097945799 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 607.53010005199997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37144833744987, -22.212470698263164 ], [ -47.371488658783477, -22.21250234511027 ], [ -47.371682914185342, -22.212654809226287 ], [ -47.371877170000829, -22.212807273070663 ], [ -47.37207142622983, -22.212959736643299 ], [ -47.372265682872424, -22.213112199944256 ], [ -47.372459939928568, -22.213264662973494 ], [ -47.372654197398305, -22.213417125731024 ], [ -47.372848455281591, -22.213569588216824 ], [ -47.373042713578478, -22.213722050430924 ], [ -47.37323697228895, -22.21387451237328 ], [ -47.373431231413001, -22.2140269740439 ], [ -47.373625490950594, -22.21417943544277 ], [ -47.373819750901845, -22.214331896569913 ], [ -47.374014011266638, -22.214484357425306 ], [ -47.374208272045045, -22.214636818008941 ], [ -47.374402533237031, -22.214789278320804 ], [ -47.374596794842667, -22.214941738360913 ], [ -47.374791056861845, -22.215094198129236 ], [ -47.374985319294673, -22.215246657625801 ], [ -47.375179582141065, -22.215399116850573 ], [ -47.375373845401121, -22.21555157580357 ], [ -47.375568109074756, -22.215704034484766 ], [ -47.37576237316204, -22.215856492894165 ], [ -47.375952136434336, -22.216005418489228 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 610.69336140300004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371444039522281, -22.212449614561663 ], [ -47.371498031689882, -22.212491991186937 ], [ -47.371692287085352, -22.212644455292306 ], [ -47.37188654289443, -22.21279691912601 ], [ -47.372080799117036, -22.212949382687981 ], [ -47.372275055753221, -22.213101845978279 ], [ -47.37246931280297, -22.213254308996859 ], [ -47.372663570266305, -22.21340677174372 ], [ -47.372857828143182, -22.213559234218852 ], [ -47.373052086433674, -22.21371169642229 ], [ -47.373246345137744, -22.213864158353978 ], [ -47.373440604255386, -22.214016620013936 ], [ -47.373634863786577, -22.214169081402144 ], [ -47.373829123731426, -22.214321542518633 ], [ -47.37402338408981, -22.21447400336335 ], [ -47.374217644861815, -22.214626463936323 ], [ -47.374411906047399, -22.214778924237532 ], [ -47.374606167646625, -22.214931384266972 ], [ -47.374800429659402, -22.21508384402463 ], [ -47.374994692085821, -22.215236303510526 ], [ -47.375188954925811, -22.215388762724636 ], [ -47.375383218179451, -22.215541221666975 ], [ -47.37557748184669, -22.215693680337502 ], [ -47.375771745927565, -22.215846138736236 ], [ -47.37596601042199, -22.215998596863159 ], [ -47.375971288445989, -22.216002739030458 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 613.78039839300004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371440306655714, -22.212428974356243 ], [ -47.371507404594936, -22.212481637263171 ], [ -47.371701659984005, -22.212634101357882 ], [ -47.371895915786681, -22.21278656518092 ], [ -47.372090172002885, -22.212939028732229 ], [ -47.372284428632668, -22.21309149201187 ], [ -47.372478685676015, -22.213243955019781 ], [ -47.372672943132947, -22.213396417755987 ], [ -47.372867201003423, -22.213548880220461 ], [ -47.373061459287513, -22.213701342413227 ], [ -47.373255717985174, -22.213853804334263 ], [ -47.373449977096421, -22.214006265983546 ], [ -47.37364423662121, -22.214158727361085 ], [ -47.37383849655965, -22.214311188466908 ], [ -47.374032756911632, -22.214463649300964 ], [ -47.374227017677235, -22.214616109863279 ], [ -47.37442127885641, -22.214768570153822 ], [ -47.374615540449227, -22.214921030172601 ], [ -47.374809802455601, -22.215073489919586 ], [ -47.375004064875611, -22.215225949394821 ], [ -47.375198327709199, -22.215378408598276 ], [ -47.375392590956437, -22.215530867529949 ], [ -47.375586854617261, -22.215683326189804 ], [ -47.375781118691734, -22.21583578457788 ], [ -47.375975383179757, -22.215988242694138 ], [ -47.375990440456697, -22.216000059569492 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 616.83992753899997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371436777709086, -22.212408494199551 ], [ -47.371516777498627, -22.212471283338989 ], [ -47.371711032881301, -22.212623747423024 ], [ -47.371905288677581, -22.212776211235408 ], [ -47.372099544887377, -22.212928674776052 ], [ -47.372293801510757, -22.21308113804502 ], [ -47.372488058547709, -22.213233601042273 ], [ -47.37268231599824, -22.21338606376781 ], [ -47.372876573862307, -22.213538526221623 ], [ -47.373070832139987, -22.21369098840373 ], [ -47.373265090831254, -22.213843450314094 ], [ -47.373459349936091, -22.213995911952722 ], [ -47.373653609454472, -22.214148373319603 ], [ -47.373847869386516, -22.214300834414757 ], [ -47.374042129732096, -22.214453295238158 ], [ -47.374236390491291, -22.214605755789798 ], [ -47.374430651664071, -22.214758216069676 ], [ -47.374624913250486, -22.214910676077796 ], [ -47.374819175250444, -22.215063135814127 ], [ -47.375013437664052, -22.2152155952787 ], [ -47.375207700491238, -22.215368054471483 ], [ -47.375401963732067, -22.215520513392491 ], [ -47.375596227386488, -22.215672972041691 ], [ -47.375790491454545, -22.215825430419091 ], [ -47.375984755936159, -22.215977888524694 ], [ -47.376009592466445, -22.21599738010633 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 619.86705925700005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371433488929355, -22.21238820254068 ], [ -47.371526150400975, -22.212460929414359 ], [ -47.371720405777239, -22.212613393487747 ], [ -47.371914661567118, -22.212765857289455 ], [ -47.372108917770511, -22.212918320819437 ], [ -47.372303174387497, -22.213070784077747 ], [ -47.372497431418047, -22.213223247064331 ], [ -47.372691688862169, -22.213375709779207 ], [ -47.372885946719833, -22.21352817222235 ], [ -47.373080204991119, -22.2136806343938 ], [ -47.373274463675983, -22.213833096293499 ], [ -47.373468722774412, -22.213985557921465 ], [ -47.373662982286397, -22.21413801927768 ], [ -47.373857242212033, -22.21429048036217 ], [ -47.374051502551204, -22.214442941174912 ], [ -47.374245763303996, -22.214595401715894 ], [ -47.374440024470367, -22.21474786198511 ], [ -47.374634286050373, -22.214900321982558 ], [ -47.374828548043936, -22.215052781708227 ], [ -47.375022810451135, -22.215205241162135 ], [ -47.375217073271912, -22.215357700344256 ], [ -47.375411336506339, -22.215510159254595 ], [ -47.375605600154351, -22.215662617893138 ], [ -47.375799864215999, -22.215815076259876 ], [ -47.375994128691211, -22.215967534354807 ], [ -47.376028744475256, -22.215994700640977 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 622.84118906499998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371430593059529, -22.212368219262782 ], [ -47.371535523301958, -22.212450575489299 ], [ -47.371729778671828, -22.212603039552022 ], [ -47.371924034455304, -22.212755503343068 ], [ -47.372118290652296, -22.212907966862389 ], [ -47.372312547262879, -22.21306043011004 ], [ -47.372506804287021, -22.213212893085959 ], [ -47.372701061724747, -22.21336535579017 ], [ -47.372895319576017, -22.213517818222662 ], [ -47.373089577840894, -22.21367028038344 ], [ -47.373283836519342, -22.213822742272473 ], [ -47.373478095611382, -22.213975203889778 ], [ -47.373672355116959, -22.214127665235338 ], [ -47.373866615036192, -22.214280126309163 ], [ -47.374060875368961, -22.21443258711124 ], [ -47.374255136115345, -22.214585047641553 ], [ -47.374449397275313, -22.2147375079001 ], [ -47.37464365884891, -22.214889967886894 ], [ -47.374837920836072, -22.21504242760189 ], [ -47.375032183236868, -22.215194887045136 ], [ -47.375226446051236, -22.215347346216596 ], [ -47.375420709279254, -22.215499805116274 ], [ -47.375614972920857, -22.215652263744147 ], [ -47.375809236976103, -22.215804722100224 ], [ -47.376003501444913, -22.215957180184493 ], [ -47.376047896483108, -22.215992021173431 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 625.77251709300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371428014484813, -22.212348485018452 ], [ -47.371544896201584, -22.212440221563821 ], [ -47.371739151565059, -22.212592685615867 ], [ -47.371933407342134, -22.212745149396259 ], [ -47.372127663532723, -22.212897612904918 ], [ -47.372321920136912, -22.213050076141897 ], [ -47.372516177154651, -22.213202539107158 ], [ -47.372710434585969, -22.213355001800711 ], [ -47.372904692430836, -22.213507464222531 ], [ -47.373098950689311, -22.213659926372653 ], [ -47.373293209361357, -22.213812388251025 ], [ -47.373487468446996, -22.213964849857664 ], [ -47.37368172794617, -22.214117311192553 ], [ -47.373875987858987, -22.214269772255715 ], [ -47.374070248185362, -22.214422233047131 ], [ -47.374264508925343, -22.214574693566778 ], [ -47.374458770078903, -22.214727153814664 ], [ -47.374653031646098, -22.214879613790792 ], [ -47.37484729362685, -22.215032073495124 ], [ -47.375041556021237, -22.215184532927715 ], [ -47.375235818829204, -22.215336992088506 ], [ -47.375430082050819, -22.215489450977518 ], [ -47.37562434568602, -22.215641909594734 ], [ -47.37581860973485, -22.215794367940138 ], [ -47.376012874197258, -22.215946826013752 ], [ -47.376067048490007, -22.215989341703693 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 628.72803449000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371425256592829, -22.212328610032877 ], [ -47.371554269099867, -22.212429867637898 ], [ -47.371748524456933, -22.212582331679293 ], [ -47.371942780227606, -22.212734795449013 ], [ -47.3721370364118, -22.21288725894701 ], [ -47.37233129300958, -22.213039722173335 ], [ -47.372525550020917, -22.21319218512793 ], [ -47.37271980744584, -22.213344647810811 ], [ -47.372914065284299, -22.213497110221976 ], [ -47.373108323536371, -22.213649572361426 ], [ -47.373302582202015, -22.213802034229136 ], [ -47.373496841281245, -22.21395449582511 ], [ -47.373691100774018, -22.21410695714934 ], [ -47.37388536068044, -22.214259418201834 ], [ -47.374079621000405, -22.214411878982585 ], [ -47.374273881733977, -22.214564339491581 ], [ -47.374468142881135, -22.214716799728802 ], [ -47.374662404441928, -22.214869259694257 ], [ -47.374856666416271, -22.215021719387938 ], [ -47.375050928804257, -22.215174178809853 ], [ -47.375245191605821, -22.215326637959983 ], [ -47.37543945482102, -22.215479096838333 ], [ -47.375633718449819, -22.21563155544488 ], [ -47.375827982492247, -22.215784013779626 ], [ -47.376022246948239, -22.215936471842571 ], [ -47.376086200495955, -22.215986662231757 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 631.64885935200004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371422755881156, -22.212308936898843 ], [ -47.371563641996786, -22.212419513711552 ], [ -47.371757897347457, -22.212571977742275 ], [ -47.371952153111728, -22.212724441501337 ], [ -47.372146409289513, -22.212876904988669 ], [ -47.372340665880898, -22.213029368204324 ], [ -47.372534922885833, -22.213181831148262 ], [ -47.372729180304347, -22.213334293820481 ], [ -47.372923438136411, -22.213486756220981 ], [ -47.373117696382081, -22.213639218349766 ], [ -47.373311955041324, -22.213791680206814 ], [ -47.373506214114144, -22.213944141792126 ], [ -47.373700473600515, -22.214096603105702 ], [ -47.373894733500535, -22.214249064147523 ], [ -47.374088993814091, -22.214401524917619 ], [ -47.374283254541261, -22.21455398541594 ], [ -47.374477515682017, -22.214706445642502 ], [ -47.374671777236401, -22.214858905597296 ], [ -47.374866039204349, -22.215011365280311 ], [ -47.375060301585918, -22.215163824691565 ], [ -47.375254564381073, -22.215316283831033 ], [ -47.375448827589871, -22.215468742698711 ], [ -47.375643091212261, -22.215621201294596 ], [ -47.375837355248287, -22.215773659618684 ], [ -47.376031619697869, -22.215926117670964 ], [ -47.376105352500943, -22.215983982757624 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 634.61458254499996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371419922334681, -22.212289002532536 ], [ -47.371573014892356, -22.212409159784762 ], [ -47.371767270236617, -22.212561623804831 ], [ -47.371961525994486, -22.212714087553231 ], [ -47.372155782165876, -22.212866551029897 ], [ -47.372350038750859, -22.213019014234888 ], [ -47.372544295749393, -22.21317147716816 ], [ -47.372738553161504, -22.213323939829728 ], [ -47.372932810987166, -22.213476402219555 ], [ -47.373127069226427, -22.213628864337679 ], [ -47.373321327879275, -22.213781326184069 ], [ -47.373515586945693, -22.213933787758716 ], [ -47.373709846425655, -22.214086249061623 ], [ -47.373904106319266, -22.21423871009279 ], [ -47.374098366626427, -22.214391170852213 ], [ -47.374292627347188, -22.214543631339872 ], [ -47.374486888481542, -22.214696091555769 ], [ -47.374681150029524, -22.214848551499902 ], [ -47.374875411991056, -22.215001011172248 ], [ -47.37506967436623, -22.215153470572837 ], [ -47.375263937154983, -22.215305929701646 ], [ -47.375458200357365, -22.21545838855867 ], [ -47.375652463973353, -22.215610847143878 ], [ -47.375846728002969, -22.215763305457298 ], [ -47.37604099244615, -22.21591576349892 ], [ -47.376124504504993, -22.215981303281303 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 637.57389328, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371417136325455, -22.212269105475698 ], [ -47.37158238778656, -22.212398805857557 ], [ -47.371776643124434, -22.21255126986696 ], [ -47.371970898875901, -22.212703733604698 ], [ -47.372165155040889, -22.212856197070696 ], [ -47.372359411619463, -22.213008660265036 ], [ -47.372553668611594, -22.213161123187639 ], [ -47.372747926017311, -22.213313585838531 ], [ -47.372942183836564, -22.213466048217708 ], [ -47.373136442069431, -22.213618510325169 ], [ -47.373330700715861, -22.213770972160884 ], [ -47.373524959775878, -22.213923433724872 ], [ -47.373719219249445, -22.21407589501711 ], [ -47.373913479136654, -22.214228356037619 ], [ -47.374107739437406, -22.214380816786374 ], [ -47.374302000151772, -22.214533277263378 ], [ -47.37449626127971, -22.21468573746861 ], [ -47.374690522821282, -22.214838197402077 ], [ -47.374884784776413, -22.214990657063762 ], [ -47.375079047145185, -22.215143116453689 ], [ -47.375273309927522, -22.21529557557183 ], [ -47.375467573123508, -22.215448034418181 ], [ -47.375661836733087, -22.215600492992738 ], [ -47.375856100756288, -22.215752951295489 ], [ -47.376050365193073, -22.215905409326442 ], [ -47.376143656508084, -22.215978623802783 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 640.46488817399995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37141485674924, -22.212249605901054 ], [ -47.371591760679422, -22.212388451929911 ], [ -47.371786016010887, -22.212540915928649 ], [ -47.371980271755952, -22.212693379655722 ], [ -47.372174527914538, -22.212845843111062 ], [ -47.372368784486717, -22.212998306294732 ], [ -47.372563041472439, -22.213150769206678 ], [ -47.372757298871754, -22.213303231846908 ], [ -47.372951556684612, -22.213455694215419 ], [ -47.373145814911069, -22.213608156312212 ], [ -47.373340073551105, -22.213760618137268 ], [ -47.373534332604713, -22.213913079690595 ], [ -47.373728592071878, -22.214065540972175 ], [ -47.373922851952678, -22.214218001982012 ], [ -47.374117112247028, -22.214370462720115 ], [ -47.374311372954985, -22.214522923186443 ], [ -47.37450563407652, -22.21467538338101 ], [ -47.374699895611691, -22.214827843303812 ], [ -47.374894157560419, -22.214980302954835 ], [ -47.375088419922776, -22.2151327623341 ], [ -47.375282682698717, -22.215285221441583 ], [ -47.375476945888288, -22.215437680277265 ], [ -47.375671209491465, -22.215590138841158 ], [ -47.375865473508263, -22.215742597133247 ], [ -47.376059737938633, -22.215895055153545 ], [ -47.376162808510216, -22.215975944322079 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 643.33610475399996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371412723792467, -22.212230221402525 ], [ -47.37160113357092, -22.212378098001828 ], [ -47.371795388895983, -22.212530561989904 ], [ -47.371989644634652, -22.212683025706315 ], [ -47.372183900786837, -22.212835489150997 ], [ -47.372378157352614, -22.212987952323999 ], [ -47.372572414331934, -22.213140415225283 ], [ -47.37276667172484, -22.213292877854851 ], [ -47.372960929531295, -22.213445340212701 ], [ -47.373155187751358, -22.213597802298828 ], [ -47.373349446384985, -22.213750264113223 ], [ -47.373543705432198, -22.213902725655881 ], [ -47.373737964892953, -22.214055186926799 ], [ -47.373932224767351, -22.214207647925974 ], [ -47.374126485055299, -22.214360108653409 ], [ -47.374320745756847, -22.214512569109075 ], [ -47.374515006871981, -22.214665029292988 ], [ -47.374709268400743, -22.214817489205121 ], [ -47.374903530343069, -22.214969948845479 ], [ -47.375097792699023, -22.215122408214082 ], [ -47.375292055468549, -22.2152748673109 ], [ -47.375486318651717, -22.21542732613592 ], [ -47.375680582248485, -22.215579784689147 ], [ -47.375874846258881, -22.215732242970581 ], [ -47.376069110682849, -22.215884700980208 ], [ -47.37618196051141, -22.215973264839175 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 646.11674717200003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371411262271366, -22.212211363891942 ], [ -47.371416251555928, -22.212215279824211 ], [ -47.371610506461067, -22.212367744073326 ], [ -47.371804761779728, -22.212520208050741 ], [ -47.371999017511996, -22.21267267175649 ], [ -47.372193273657771, -22.212825135190506 ], [ -47.372387530217154, -22.212977598352847 ], [ -47.372581787190079, -22.213130061243465 ], [ -47.372776044576582, -22.213282523862368 ], [ -47.372970302376629, -22.213434986209553 ], [ -47.373164560590283, -22.213587448285018 ], [ -47.373358819217515, -22.213739910088748 ], [ -47.373553078258318, -22.213892371620744 ], [ -47.373747337712679, -22.214044832881001 ], [ -47.373941597580661, -22.21419729386951 ], [ -47.374135857862214, -22.214349754586287 ], [ -47.374330118557353, -22.214502215031288 ], [ -47.374524379666084, -22.214654675204528 ], [ -47.374718641188437, -22.21480713510601 ], [ -47.374912903124361, -22.214959594735703 ], [ -47.375107165473906, -22.215112054093638 ], [ -47.375301428237037, -22.215264513179793 ], [ -47.375495691413796, -22.215416971994152 ], [ -47.375689955004148, -22.215569430536714 ], [ -47.375884219008135, -22.215721888807472 ], [ -47.376078483425701, -22.215874346806448 ], [ -47.376201112511637, -22.215970585354075 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 651.52134732100001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371409500749138, -22.212174560509808 ], [ -47.371434997344949, -22.212194571987219 ], [ -47.371629252237291, -22.212347036215007 ], [ -47.371823507543155, -22.212499500171099 ], [ -47.372017763262619, -22.212651963855521 ], [ -47.37221201939559, -22.212804427268207 ], [ -47.372406275942168, -22.21295689040922 ], [ -47.37260053290229, -22.213109353278515 ], [ -47.372794790275989, -22.213261815876091 ], [ -47.372989048063239, -22.213414278201952 ], [ -47.373183306264082, -22.213566740256095 ], [ -47.373377564878503, -22.213719202038497 ], [ -47.373571823906502, -22.213871663549167 ], [ -47.373766083348059, -22.214024124788097 ], [ -47.37396034320323, -22.214176585755279 ], [ -47.374154603471972, -22.214329046450729 ], [ -47.374348864154307, -22.214481506874403 ], [ -47.37454312525022, -22.21463396702632 ], [ -47.374737386759769, -22.214786426906468 ], [ -47.374931648682882, -22.214938886514833 ], [ -47.375125911019616, -22.215091345851445 ], [ -47.375320173769936, -22.215243804916273 ], [ -47.375514436933877, -22.215396263709302 ], [ -47.375708700511424, -22.215548722230537 ], [ -47.375902964502593, -22.215701180479968 ], [ -47.376097228907341, -22.215853638457613 ], [ -47.37623941650925, -22.215965226377296 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 654.18355234299997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371408917217025, -22.212156392103893 ], [ -47.371444370237427, -22.212184218068071 ], [ -47.371638625123374, -22.212336682285216 ], [ -47.371832880422836, -22.212489146230638 ], [ -47.372027136135891, -22.212641609904399 ], [ -47.372221392262475, -22.212794073306426 ], [ -47.372415648802644, -22.212946536436775 ], [ -47.372609905756363, -22.213098999295408 ], [ -47.372804163123654, -22.213251461882319 ], [ -47.372998420904509, -22.213403924197515 ], [ -47.373192679098949, -22.213556386240995 ], [ -47.373386937706968, -22.213708848012736 ], [ -47.373581196728558, -22.21386130951274 ], [ -47.373775456163713, -22.214013770741005 ], [ -47.373969716012482, -22.214166231697522 ], [ -47.374163976274815, -22.21431869238231 ], [ -47.374358236950748, -22.214471152795319 ], [ -47.374552498040259, -22.214623612936574 ], [ -47.374746759543406, -22.21477607280606 ], [ -47.374941021460103, -22.214928532403764 ], [ -47.375135283790435, -22.215080991729707 ], [ -47.375329546534353, -22.21523345078387 ], [ -47.375523809691892, -22.215385909566237 ], [ -47.37571807326303, -22.215538368076807 ], [ -47.375912337247783, -22.215690826315569 ], [ -47.376106601646136, -22.21584328428256 ], [ -47.376258568506621, -22.215962546885621 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 656.75512023600004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371409005586514, -22.212138751052397 ], [ -47.371453743128555, -22.2121738641485 ], [ -47.371647998008093, -22.212326328354973 ], [ -47.37184225330116, -22.212478792289737 ], [ -47.37203650900782, -22.212631255952832 ], [ -47.372230765127995, -22.212783719344195 ], [ -47.372425021661769, -22.212936182463888 ], [ -47.372619278609079, -22.213088645311853 ], [ -47.372813535969975, -22.213241107888109 ], [ -47.373007793744414, -22.21339357019264 ], [ -47.373202051932459, -22.213546032225452 ], [ -47.373396310534069, -22.213698493986534 ], [ -47.373590569549265, -22.213850955475877 ], [ -47.37378482897801, -22.214003416693476 ], [ -47.373979088820377, -22.214155877639332 ], [ -47.374173349076315, -22.214308338313455 ], [ -47.374367609745839, -22.214460798715805 ], [ -47.374561870828941, -22.214613258846391 ], [ -47.374756132325672, -22.214765718705213 ], [ -47.374950394235981, -22.214918178292258 ], [ -47.375144656559904, -22.215070637607532 ], [ -47.375338919297413, -22.21522309665103 ], [ -47.375533182448535, -22.215375555422732 ], [ -47.375727446013272, -22.215528013922643 ], [ -47.37592170999163, -22.215680472150748 ], [ -47.376115974383566, -22.215832930107066 ], [ -47.376277720503055, -22.215959867391742 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 659.37162685700002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371408760821396, -22.21212084853364 ], [ -47.371463116018319, -22.2121635102285 ], [ -47.371657370891462, -22.212315974424307 ], [ -47.371851626178128, -22.212468438348406 ], [ -47.372045881878385, -22.21262090200084 ], [ -47.372240137992165, -22.21277336538154 ], [ -47.37243439451953, -22.212925828490565 ], [ -47.372628651460438, -22.213078291327871 ], [ -47.372822908814932, -22.213230753893463 ], [ -47.373017166582976, -22.213383216187328 ], [ -47.373211424764612, -22.213535678209482 ], [ -47.37340568335982, -22.213688139959896 ], [ -47.373599942368614, -22.213840601438577 ], [ -47.373794201790957, -22.213993062645525 ], [ -47.373988461626922, -22.214145523580704 ], [ -47.374182721876451, -22.214297984244173 ], [ -47.374376982539566, -22.214450444635848 ], [ -47.374571243616273, -22.214602904755775 ], [ -47.374765505106595, -22.214755364603931 ], [ -47.374959767010495, -22.214907824180308 ], [ -47.375154029328009, -22.215060283484927 ], [ -47.375348292059115, -22.21521274251776 ], [ -47.375542555203836, -22.2153652012788 ], [ -47.375736818762164, -22.215517659768047 ], [ -47.375931082734112, -22.215670117985489 ], [ -47.376125347119647, -22.215822575931153 ], [ -47.376296872498514, -22.215957187895668 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 661.99196743799996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371408487635101, -22.21210292370769 ], [ -47.371472488906733, -22.212153156308066 ], [ -47.371666743773481, -22.212305620493215 ], [ -47.371860999053744, -22.212458084406652 ], [ -47.3720552547476, -22.212610548048421 ], [ -47.372249510854971, -22.212763011418456 ], [ -47.372443767375941, -22.212915474516823 ], [ -47.372638024310454, -22.21306793734346 ], [ -47.372832281658539, -22.213220399898379 ], [ -47.373026539420174, -22.213372862181593 ], [ -47.373220797595415, -22.213525324193085 ], [ -47.373415056184221, -22.213677785932823 ], [ -47.373609315186606, -22.213830247400843 ], [ -47.37380357460254, -22.213982708597126 ], [ -47.373997834432103, -22.214135169521647 ], [ -47.37419209467523, -22.214287630174454 ], [ -47.374386355331943, -22.214440090555478 ], [ -47.374580616402248, -22.214592550664737 ], [ -47.374774877886168, -22.21474501050222 ], [ -47.374969139783659, -22.214897470067942 ], [ -47.375163402094771, -22.215049929361896 ], [ -47.375357664819461, -22.215202388384068 ], [ -47.37555192795778, -22.215354847134435 ], [ -47.375746191509698, -22.215507305613023 ], [ -47.375940455475238, -22.215659763819787 ], [ -47.376134719854363, -22.215812221754788 ], [ -47.376316024493036, -22.215954508397409 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 664.60075145099995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371408300118944, -22.212085066121332 ], [ -47.371481861793789, -22.212142802387195 ], [ -47.371676116654143, -22.212295266561679 ], [ -47.371870371928004, -22.212447730464458 ], [ -47.372064627615458, -22.212600194095561 ], [ -47.372258883716427, -22.212752657454939 ], [ -47.372453140230995, -22.21290512054264 ], [ -47.372647397159099, -22.213057583358619 ], [ -47.372841654500789, -22.21321004590288 ], [ -47.373035912256029, -22.213362508175422 ], [ -47.373230170424861, -22.213514970176249 ], [ -47.373424429007258, -22.213667431905336 ], [ -47.373618688003241, -22.21381989336269 ], [ -47.37381294741278, -22.2139723545483 ], [ -47.374007207235934, -22.214124815462167 ], [ -47.374201467472659, -22.214277276104301 ], [ -47.374395728122963, -22.214429736474656 ], [ -47.374589989186866, -22.214582196573254 ], [ -47.374784250664369, -22.214734656400083 ], [ -47.374978512555465, -22.214887115955136 ], [ -47.375172774860168, -22.215039575238428 ], [ -47.375367037578457, -22.215192034249927 ], [ -47.375561300710366, -22.21534449298964 ], [ -47.375755564255876, -22.215496951457556 ], [ -47.375949828215013, -22.215649409653661 ], [ -47.376144092587737, -22.215801867578001 ], [ -47.376335176486613, -22.215951828896959 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 667.18257050199998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371408312496655, -22.212067365425323 ], [ -47.371491234679496, -22.212132448465891 ], [ -47.371685489533448, -22.21228491262972 ], [ -47.371879744800907, -22.212437376521827 ], [ -47.372074000481959, -22.212589840142268 ], [ -47.372268256576533, -22.212742303490984 ], [ -47.372462513084699, -22.212894766568024 ], [ -47.372656770006401, -22.213047229373338 ], [ -47.372851027341682, -22.213199691906937 ], [ -47.373045285090527, -22.213352154168817 ], [ -47.373239543252943, -22.213504616158982 ], [ -47.373433801828945, -22.213657077877404 ], [ -47.373628060818525, -22.213809539324092 ], [ -47.373822320221656, -22.213962000499052 ], [ -47.374016580038408, -22.214114461402247 ], [ -47.374210840268731, -22.214266922033723 ], [ -47.374405100912632, -22.214419382393409 ], [ -47.37459936197012, -22.214571842481341 ], [ -47.374793623441228, -22.214724302297508 ], [ -47.374987885325908, -22.214876761841897 ], [ -47.375182147624209, -22.215029221114516 ], [ -47.375376410336095, -22.215181680115371 ], [ -47.375570673461596, -22.215334138844408 ], [ -47.37576493700071, -22.21548659730167 ], [ -47.375959200953432, -22.215639055487113 ], [ -47.376153465319746, -22.215791513400784 ], [ -47.376354328479223, -22.215949149394302 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 669.73176135100005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371408566750226, -22.212049854570132 ], [ -47.371500607563846, -22.21212209454416 ], [ -47.371694862411395, -22.212274558697324 ], [ -47.37188911767246, -22.21242702257878 ], [ -47.372083373347103, -22.212579486188552 ], [ -47.372277629435274, -22.212731949526599 ], [ -47.372471885937038, -22.212884412592985 ], [ -47.372666142852346, -22.213036875387637 ], [ -47.372860400181224, -22.213189337910563 ], [ -47.37305465792366, -22.213341800161789 ], [ -47.373248916079682, -22.213494262141282 ], [ -47.373443174649275, -22.213646723849038 ], [ -47.373637433632453, -22.213799185285065 ], [ -47.373831693029182, -22.213951646449363 ], [ -47.374025952839524, -22.214104107341885 ], [ -47.374220213063452, -22.2142565679627 ], [ -47.374414473700938, -22.214409028311735 ], [ -47.37460873475203, -22.214561488389005 ], [ -47.374802996216729, -22.2147139481945 ], [ -47.374997258095007, -22.214866407728227 ], [ -47.375191520386899, -22.215018866990185 ], [ -47.375385783092383, -22.215171325980375 ], [ -47.375580046211475, -22.21532378469875 ], [ -47.375774309744173, -22.215476243145343 ], [ -47.375968573690493, -22.215628701320124 ], [ -47.376162838050405, -22.21578115922313 ], [ -47.376373480470889, -22.21594646988946 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 672.25066913800003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371409045494858, -22.212032519911027 ], [ -47.371509980446838, -22.212111740621996 ], [ -47.371704235287986, -22.212264204764502 ], [ -47.371898490542655, -22.212416668635292 ], [ -47.372092746210903, -22.212569132234407 ], [ -47.372287002292666, -22.212721595561792 ], [ -47.372481258788028, -22.212874058617505 ], [ -47.372675515696933, -22.213026521401492 ], [ -47.37286977301941, -22.213178983913767 ], [ -47.373064030755444, -22.213331446154321 ], [ -47.373258288905063, -22.213483908123155 ], [ -47.373452547468254, -22.21363636982025 ], [ -47.373646806445031, -22.213788831245616 ], [ -47.37384106583535, -22.213941292399237 ], [ -47.374035325639291, -22.214093753281105 ], [ -47.37422958585681, -22.214246213891254 ], [ -47.3744238464879, -22.214398674229621 ], [ -47.374618107532577, -22.214551134296229 ], [ -47.374812368990874, -22.214703594091063 ], [ -47.375006630862742, -22.214856053614131 ], [ -47.375200893148232, -22.215008512865428 ], [ -47.375395155847308, -22.215160971844945 ], [ -47.375589418959997, -22.215313430552666 ], [ -47.375783682486286, -22.215465888988593 ], [ -47.375977946426204, -22.215618347152702 ], [ -47.376172210779707, -22.215770805045057 ], [ -47.376392632461595, -22.215943790382426 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 674.70784495600003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371409981863813, -22.212015544427363 ], [ -47.371519353328473, -22.212101386699405 ], [ -47.371713608163226, -22.212253850831242 ], [ -47.371907863411494, -22.212406314691368 ], [ -47.372102119073332, -22.212558778279824 ], [ -47.3722963751487, -22.212711241596541 ], [ -47.37249063163766, -22.212863704641595 ], [ -47.372684888540164, -22.213016167414917 ], [ -47.372879145856238, -22.213168629916527 ], [ -47.37307340358587, -22.213321092146426 ], [ -47.373267661729088, -22.213473554104596 ], [ -47.373461920285877, -22.213626015791025 ], [ -47.373656179256244, -22.213778477205725 ], [ -47.373850438640169, -22.213930938348692 ], [ -47.3740446984377, -22.214083399219895 ], [ -47.37423895864881, -22.214235859819386 ], [ -47.374433219273499, -22.214388320147076 ], [ -47.374627480311773, -22.21454078020302 ], [ -47.374821741763668, -22.214693239987199 ], [ -47.375016003629135, -22.214845699499595 ], [ -47.375210265908215, -22.214998158740233 ], [ -47.375404528600882, -22.215150617709092 ], [ -47.375598791707162, -22.215303076406141 ], [ -47.375793055227049, -22.215455534831403 ], [ -47.375987319160551, -22.215607992984854 ], [ -47.376181583507652, -22.21576045086654 ], [ -47.376411784451356, -22.215941110873196 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 677.09761520200004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371411417915802, -22.211998961129904 ], [ -47.371528726208759, -22.212091032776375 ], [ -47.371722981037109, -22.212243496897553 ], [ -47.371917236278968, -22.21239596074702 ], [ -47.372111491934419, -22.212548424324801 ], [ -47.372305748003384, -22.212700887630856 ], [ -47.372500004485943, -22.212853350665256 ], [ -47.372694261382037, -22.213005813427923 ], [ -47.372888518691717, -22.213158275918861 ], [ -47.37308277641494, -22.213310738138095 ], [ -47.373277034551755, -22.213463200085599 ], [ -47.373471293102142, -22.213615661761366 ], [ -47.373665552066107, -22.213768123165405 ], [ -47.37385981144363, -22.213920584297707 ], [ -47.374054071234752, -22.214073045158248 ], [ -47.374248331439468, -22.214225505747077 ], [ -47.37444259205774, -22.214377966064117 ], [ -47.374636853089612, -22.214530426109395 ], [ -47.374831114535098, -22.214682885882901 ], [ -47.375025376394156, -22.214835345384632 ], [ -47.375219638666834, -22.214987804614605 ], [ -47.375413901353099, -22.215140263572799 ], [ -47.375608164452977, -22.215292722259186 ], [ -47.375802427966455, -22.215445180673786 ], [ -47.375996691893555, -22.215597638816583 ], [ -47.376190956234247, -22.215750096687593 ], [ -47.376430936440165, -22.21593843136176 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 679.48691800100005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371412857432873, -22.211982380552186 ], [ -47.371538099087687, -22.212080678852914 ], [ -47.371732353909643, -22.212233142963434 ], [ -47.371926609145099, -22.212385606802236 ], [ -47.372120864794148, -22.212538070369362 ], [ -47.372315120856712, -22.212690533664759 ], [ -47.372509377332868, -22.212842996688487 ], [ -47.372703634222567, -22.212995459440481 ], [ -47.372897891525831, -22.213147921920754 ], [ -47.373092149242659, -22.21330038412933 ], [ -47.373286407373065, -22.213452846066179 ], [ -47.37348066591705, -22.213605307731282 ], [ -47.373674924874614, -22.213757769124655 ], [ -47.373869184245734, -22.213910230246302 ], [ -47.374063444030448, -22.214062691096171 ], [ -47.374257704228761, -22.214215151674342 ], [ -47.374451964840638, -22.214367611980709 ], [ -47.374646225866101, -22.214520072015326 ], [ -47.374840487305178, -22.214672531778167 ], [ -47.375034749157834, -22.214824991269239 ], [ -47.375229011424111, -22.214977450488551 ], [ -47.375423274103966, -22.215129909436079 ], [ -47.375617537197428, -22.215282368111797 ], [ -47.375811800704504, -22.215434826515743 ], [ -47.376006064625187, -22.215587284647864 ], [ -47.376200328959484, -22.215739742508223 ], [ -47.376450088428015, -22.215935751848143 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 681.83775140700004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371414582126526, -22.211966023801146 ], [ -47.371547471965258, -22.21207032492903 ], [ -47.371741726780819, -22.212222789028885 ], [ -47.371935982009873, -22.212375252857019 ], [ -47.37213023765252, -22.212527716413486 ], [ -47.372324493708682, -22.212680179698218 ], [ -47.372518750178436, -22.212832642711277 ], [ -47.372713007061726, -22.212985105452614 ], [ -47.372907264358595, -22.213137567922235 ], [ -47.373101522069021, -22.213290030120145 ], [ -47.373295780193025, -22.213442492046322 ], [ -47.373490038730608, -22.213594953700767 ], [ -47.373684297681763, -22.213747415083475 ], [ -47.373878557046474, -22.213899876194453 ], [ -47.374072816824793, -22.214052337033664 ], [ -47.374267077016697, -22.214204797601163 ], [ -47.374461337622172, -22.214357257896868 ], [ -47.374655598641233, -22.214509717920823 ], [ -47.374849860073901, -22.214662177673002 ], [ -47.375044121920155, -22.214814637153417 ], [ -47.375238384180015, -22.214967096362059 ], [ -47.375432646853469, -22.21511955529893 ], [ -47.375626909940529, -22.21527201396399 ], [ -47.375821173441203, -22.215424472357263 ], [ -47.376015437355477, -22.215576930478719 ], [ -47.376209701683358, -22.215729388328413 ], [ -47.376469240414913, -22.215933072332334 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 684.21653839199996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371416099597852, -22.211949504407627 ], [ -47.371556844841479, -22.212059971004706 ], [ -47.371751099650638, -22.2122124350939 ], [ -47.371945354873297, -22.212364898911378 ], [ -47.372139610509535, -22.21251736245717 ], [ -47.372333866559295, -22.212669825731243 ], [ -47.372528123022647, -22.212822288733651 ], [ -47.372722379899542, -22.212974751464326 ], [ -47.372916637190002, -22.213127213923272 ], [ -47.373110894894026, -22.213279676110517 ], [ -47.373305153011628, -22.213432138026032 ], [ -47.373499411542809, -22.213584599669812 ], [ -47.373693670487562, -22.213737061041861 ], [ -47.373887929845871, -22.213889522142175 ], [ -47.374082189617781, -22.214041982970727 ], [ -47.374276449803283, -22.21419444352756 ], [ -47.374470710402349, -22.214346903812604 ], [ -47.374664971415001, -22.214499363825897 ], [ -47.374859232841274, -22.214651823567415 ], [ -47.375053494681119, -22.214804283037154 ], [ -47.375247756934577, -22.214956742235135 ], [ -47.375442019601621, -22.215109201161347 ], [ -47.375636282682272, -22.215261659815738 ], [ -47.375830546176537, -22.215414118198346 ], [ -47.376024810084409, -22.215566576309136 ], [ -47.376219074405888, -22.215719034148179 ], [ -47.376488392400859, -22.215930392814329 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 686.57170483799996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371417792169936, -22.2119331224456 ], [ -47.371566217716342, -22.212049617079948 ], [ -47.371760472519099, -22.212202081158491 ], [ -47.371954727735357, -22.212354544965297 ], [ -47.3721489833652, -22.212507008500442 ], [ -47.372343239408558, -22.212659471763843 ], [ -47.372537495865508, -22.212811934755582 ], [ -47.372731752735994, -22.212964397475591 ], [ -47.372926010020059, -22.213116859923879 ], [ -47.373120267717674, -22.213269322100462 ], [ -47.373314525828874, -22.21342178400532 ], [ -47.373508784353646, -22.213574245638434 ], [ -47.373703043292004, -22.213726706999815 ], [ -47.373897302643911, -22.21387916808947 ], [ -47.374091562409419, -22.214031628907353 ], [ -47.374285822588512, -22.214184089453532 ], [ -47.374480083181169, -22.214336549727911 ], [ -47.374674344187426, -22.214489009730539 ], [ -47.374868605607283, -22.214641469461391 ], [ -47.375062867440725, -22.214793928920475 ], [ -47.375257129687782, -22.214946388107791 ], [ -47.375451392348424, -22.215098847023334 ], [ -47.375645655422666, -22.215251305667053 ], [ -47.375839918910515, -22.21540376403901 ], [ -47.376034182811985, -22.215556222139138 ], [ -47.376228447127062, -22.215708679967502 ], [ -47.376507544385859, -22.215927713294118 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 688.89301788399996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371419735699718, -22.211916937453005 ], [ -47.371575590589849, -22.212039263154768 ], [ -47.371769845386211, -22.212191727222645 ], [ -47.37196410059606, -22.21234419101879 ], [ -47.372158356219508, -22.212496654543266 ], [ -47.372352612256464, -22.212649117796012 ], [ -47.372546868707012, -22.212801580777086 ], [ -47.372741125571103, -22.21295404348643 ], [ -47.372935382848759, -22.213106505924067 ], [ -47.373129640539979, -22.213258968089981 ], [ -47.373323898644777, -22.21341142998417 ], [ -47.37351815716314, -22.213563891606626 ], [ -47.373712416095088, -22.213716352957345 ], [ -47.373906675440594, -22.213868814036331 ], [ -47.374100935199692, -22.214021274843546 ], [ -47.37429519537239, -22.214173735379063 ], [ -47.374489455958638, -22.21432619564278 ], [ -47.374683716958494, -22.214478655634743 ], [ -47.374877978371941, -22.21463111535493 ], [ -47.375072240198982, -22.214783574803349 ], [ -47.375266502439629, -22.214936033980003 ], [ -47.375460765093862, -22.215088492884885 ], [ -47.375655028161702, -22.215240951517938 ], [ -47.375849291643149, -22.21539340987923 ], [ -47.376043555538203, -22.215545867968693 ], [ -47.376237819846871, -22.215698325786398 ], [ -47.376526696369915, -22.215925033771725 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 691.17546603899996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371421967337682, -22.211900978588208 ], [ -47.371584963462006, -22.212028909229147 ], [ -47.371779218251966, -22.212181373286363 ], [ -47.371973473455419, -22.212333837071853 ], [ -47.372167729072451, -22.212486300585663 ], [ -47.372361985103012, -22.212638763827741 ], [ -47.372556241547159, -22.21279122679816 ], [ -47.372750498404848, -22.212943689496846 ], [ -47.372944755676102, -22.213096151923811 ], [ -47.37313901336092, -22.213248614079063 ], [ -47.373333271459309, -22.21340107596259 ], [ -47.37352752997127, -22.213553537574381 ], [ -47.373721788896816, -22.213705998914438 ], [ -47.37391604823592, -22.213858459982763 ], [ -47.374110307988616, -22.214010920779316 ], [ -47.374304568154905, -22.214163381304175 ], [ -47.374498828734751, -22.214315841557216 ], [ -47.374693089728197, -22.214468301538524 ], [ -47.374887351135243, -22.214620761248032 ], [ -47.375081612955874, -22.214773220685789 ], [ -47.37527587519012, -22.214925679851781 ], [ -47.375470137837951, -22.215078138745998 ], [ -47.375664400899382, -22.2152305973684 ], [ -47.37585866437442, -22.21538305571902 ], [ -47.376052928263071, -22.215535513797821 ], [ -47.376247192565337, -22.215687971604872 ], [ -47.376545848352997, -22.215922354247141 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 693.42402963300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371424450164156, -22.211885216874137 ], [ -47.371594336332805, -22.2120185553031 ], [ -47.371788591116363, -22.21217101934965 ], [ -47.371982846313422, -22.212323483124479 ], [ -47.372177101924052, -22.212475946627624 ], [ -47.372371357948204, -22.212628409859043 ], [ -47.372565614385955, -22.212780872818801 ], [ -47.372759871237236, -22.212933335506818 ], [ -47.372954128502087, -22.213085797923121 ], [ -47.373148386180503, -22.213238260067715 ], [ -47.373342644272498, -22.213390721940581 ], [ -47.373536902778056, -22.213543183541706 ], [ -47.373731161697194, -22.213695644871095 ], [ -47.373925421029895, -22.213848105928761 ], [ -47.374119680776182, -22.214000566714653 ], [ -47.374313940936069, -22.214153027228839 ], [ -47.374508201509514, -22.214305487471226 ], [ -47.37470246249655, -22.214457947441861 ], [ -47.374896723897194, -22.214610407140722 ], [ -47.375090985711424, -22.214762866567821 ], [ -47.375285247939253, -22.214915325723151 ], [ -47.375479510580682, -22.215067784606699 ], [ -47.375673773635704, -22.215220243218432 ], [ -47.37586803710434, -22.215372701558394 ], [ -47.376062300986582, -22.215525159626516 ], [ -47.376256565282432, -22.215677617422902 ], [ -47.376565000335141, -22.215919674720354 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 695.69824163700002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371426742856642, -22.211869305929749 ], [ -47.37160370920224, -22.212008201376619 ], [ -47.371797963979404, -22.212160665412515 ], [ -47.37199221917006, -22.212313129176678 ], [ -47.372186474774296, -22.212465592669165 ], [ -47.372380730792045, -22.212618055889919 ], [ -47.372574987223388, -22.212770518839005 ], [ -47.372769244068273, -22.21292298151636 ], [ -47.372963501326723, -22.213075443922008 ], [ -47.373157758998737, -22.213227906055934 ], [ -47.373352017084322, -22.213380367918134 ], [ -47.373546275583479, -22.213532829508594 ], [ -47.373740534496214, -22.213685290827321 ], [ -47.373934793822514, -22.213837751874323 ], [ -47.374129053562392, -22.213990212649552 ], [ -47.374323313715884, -22.214142673153074 ], [ -47.374517574282919, -22.214295133384798 ], [ -47.374711835263547, -22.214447593344776 ], [ -47.374906096657782, -22.214600053032967 ], [ -47.375100358465609, -22.214752512449405 ], [ -47.375294620687036, -22.214904971594063 ], [ -47.375488883322056, -22.215057430466956 ], [ -47.375683146370669, -22.215209889068021 ], [ -47.375877409832896, -22.215362347397321 ], [ -47.376071673708736, -22.215514805454795 ], [ -47.376265937998184, -22.215667263240519 ], [ -47.376584152316319, -22.215916995191375 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 697.928663519, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37142936016825, -22.211853649769672 ], [ -47.371613082070333, -22.211997847449716 ], [ -47.371807336841094, -22.212150311474939 ], [ -47.372001592025349, -22.212302775228444 ], [ -47.372195847623182, -22.212455238710263 ], [ -47.372390103634537, -22.212607701920355 ], [ -47.372584360059477, -22.212760164858782 ], [ -47.372778616897953, -22.212912627525476 ], [ -47.372972874150001, -22.213065089920448 ], [ -47.373167131815613, -22.213217552043719 ], [ -47.373361389894789, -22.213370013895251 ], [ -47.373555648387551, -22.213522475475056 ], [ -47.373749907293877, -22.213674936783121 ], [ -47.373944166613782, -22.213827397819465 ], [ -47.374138426347251, -22.213979858584018 ], [ -47.374332686494334, -22.214132319076892 ], [ -47.374526947054967, -22.214284779297948 ], [ -47.374721208029193, -22.214437239247257 ], [ -47.374915469417019, -22.214589698924787 ], [ -47.375109731218444, -22.214742158330555 ], [ -47.375303993433462, -22.214894617464552 ], [ -47.375498256062073, -22.21504707632678 ], [ -47.375692519104284, -22.21519953491719 ], [ -47.375886782560109, -22.215351993235817 ], [ -47.376081046429533, -22.215504451282627 ], [ -47.376275310712572, -22.215656909057685 ], [ -47.376603304296559, -22.215914315660207 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 700.14104287099997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371432111230064, -22.211838098586529 ], [ -47.371622454937061, -22.211987493522372 ], [ -47.371816709701434, -22.212139957536934 ], [ -47.37201096487928, -22.212292421279777 ], [ -47.372205220470711, -22.212444884750926 ], [ -47.372399476475657, -22.212597347950354 ], [ -47.372593732894202, -22.212749810878126 ], [ -47.372787989726277, -22.212902273534155 ], [ -47.372982246971922, -22.213054735918465 ], [ -47.373176504631132, -22.213207198031075 ], [ -47.373370762703914, -22.213359659871951 ], [ -47.373565021190259, -22.213512121441081 ], [ -47.373759280090191, -22.213664582738485 ], [ -47.373953539403686, -22.213817043764166 ], [ -47.374147799130753, -22.213969504518058 ], [ -47.374342059271434, -22.214121965000263 ], [ -47.374536319825658, -22.214274425210668 ], [ -47.374730580793482, -22.214426885149312 ], [ -47.374924842174906, -22.214579344816169 ], [ -47.375119103969922, -22.214731804211283 ], [ -47.375313366178531, -22.214884263334611 ], [ -47.37550762880074, -22.215036722186184 ], [ -47.375701891836542, -22.215189180765922 ], [ -47.375896155285965, -22.215341639073891 ], [ -47.376090419148973, -22.215494097110032 ], [ -47.376284683425617, -22.215646554874425 ], [ -47.376622456275847, -22.215911636126844 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 702.34215760100005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371434945796906, -22.211822612944371 ], [ -47.371631827802446, -22.211977139594595 ], [ -47.371826082560403, -22.212129603598502 ], [ -47.372020337731861, -22.212282067330673 ], [ -47.372214593316883, -22.212434530791171 ], [ -47.372408849315434, -22.212586993979937 ], [ -47.372603105727578, -22.212739456897033 ], [ -47.37279736255325, -22.212891919542404 ], [ -47.372991619792487, -22.213044381916049 ], [ -47.373185877445295, -22.213196844017997 ], [ -47.373380135511674, -22.213349305848212 ], [ -47.373574393991618, -22.213501767406676 ], [ -47.37376865288514, -22.213654228693414 ], [ -47.373962912192233, -22.213806689708434 ], [ -47.374157171912898, -22.213959150451672 ], [ -47.374351432047177, -22.214111610923204 ], [ -47.374545692594999, -22.214264071122944 ], [ -47.374739953556414, -22.214416531050922 ], [ -47.374934214931429, -22.214568990707129 ], [ -47.375128476720043, -22.214721450091574 ], [ -47.37532273892225, -22.214873909204243 ], [ -47.37551700153805, -22.215026368045141 ], [ -47.375711264567443, -22.21517882661422 ], [ -47.375905528010456, -22.215331284911525 ], [ -47.376099791867063, -22.215483742937 ], [ -47.376294056137297, -22.215636200690739 ], [ -47.376641608254175, -22.215908956591282 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 704.52475591999996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371437917626793, -22.211807235036328 ], [ -47.37164120066646, -22.211966785666384 ], [ -47.371835455418029, -22.212119249659629 ], [ -47.372029710583078, -22.212271713381146 ], [ -47.372223966161705, -22.212424176830975 ], [ -47.372418222153854, -22.212576640009082 ], [ -47.372612478559596, -22.212729102915521 ], [ -47.372806735378866, -22.212881565550219 ], [ -47.373000992611708, -22.213034027913213 ], [ -47.373195250258107, -22.213186490004492 ], [ -47.373389508318077, -22.213338951824031 ], [ -47.373583766791619, -22.213491413371848 ], [ -47.373778025678746, -22.213643874647929 ], [ -47.37397228497943, -22.21379633565228 ], [ -47.374166544693693, -22.213948796384845 ], [ -47.374360804821563, -22.214101256845723 ], [ -47.374555065362983, -22.21425371703479 ], [ -47.374749326317996, -22.214406176952117 ], [ -47.374943587686609, -22.214558636597651 ], [ -47.3751378494688, -22.214711095971431 ], [ -47.375332111664612, -22.214863555073439 ], [ -47.37552637427401, -22.215016013903682 ], [ -47.375720637296993, -22.215168472462086 ], [ -47.375914900733598, -22.215320930748728 ], [ -47.376109164583802, -22.215473388763549 ], [ -47.376303428847628, -22.215625846506615 ], [ -47.376660760231552, -22.215906277053531 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 706.690789946, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371441012248475, -22.211791953504367 ], [ -47.371650573529131, -22.211956431737743 ], [ -47.371844828274298, -22.212108895720327 ], [ -47.372039083432945, -22.212261359431182 ], [ -47.372233339005177, -22.212413822870346 ], [ -47.372427594990924, -22.212566286037788 ], [ -47.372621851390257, -22.212718748933568 ], [ -47.372816108203125, -22.212871211557612 ], [ -47.373010365429565, -22.21302367390993 ], [ -47.373204623069562, -22.213176135990548 ], [ -47.37339888112313, -22.213328597799428 ], [ -47.37359313959027, -22.21348105933658 ], [ -47.373787398470988, -22.213633520601995 ], [ -47.373981657765277, -22.213785981595688 ], [ -47.374175917473124, -22.213938442317588 ], [ -47.374370177594599, -22.214090902767801 ], [ -47.374564438129603, -22.21424336294621 ], [ -47.374758699078221, -22.214395822852868 ], [ -47.374952960440417, -22.21454828248774 ], [ -47.375147222216214, -22.214700741850866 ], [ -47.375341484405617, -22.214853200942201 ], [ -47.375535747008612, -22.215005659761779 ], [ -47.37573001002518, -22.215158118309528 ], [ -47.375924273455382, -22.215310576585498 ], [ -47.376118537299178, -22.215463034589657 ], [ -47.376312801556601, -22.215615492322065 ], [ -47.376679912207976, -22.215903597513581 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 708.85814826000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371444097052617, -22.211776664267287 ], [ -47.371659946390444, -22.211946077808673 ], [ -47.371854201129217, -22.212098541780602 ], [ -47.372048456281455, -22.212251005480788 ], [ -47.372242711847285, -22.212403468909297 ], [ -47.372436967826623, -22.212555932066074 ], [ -47.372631224219568, -22.212708394951186 ], [ -47.372825481026034, -22.212860857564564 ], [ -47.373019738246064, -22.213013319906224 ], [ -47.373213995879667, -22.213165781976183 ], [ -47.373408253926833, -22.213318243774406 ], [ -47.373602512387563, -22.213470705300878 ], [ -47.37379677126188, -22.213623166555628 ], [ -47.37399103054976, -22.213775627538659 ], [ -47.374185290251205, -22.213928088249897 ], [ -47.374379550366278, -22.214080548689463 ], [ -47.37457381089488, -22.2142330088572 ], [ -47.374768071837089, -22.214385468753193 ], [ -47.374962333192883, -22.214537928377396 ], [ -47.37515659496227, -22.214690387729856 ], [ -47.375350857145264, -22.214842846810541 ], [ -47.375545119741851, -22.214995305619446 ], [ -47.375739382752023, -22.21514776415653 ], [ -47.37593364617581, -22.215300222421849 ], [ -47.376127910013203, -22.215452680415332 ], [ -47.376322174264217, -22.215605138137079 ], [ -47.376699064183455, -22.215900917971446 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 711.06491510599994, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371446889718037, -22.211761145739299 ], [ -47.371669319250401, -22.211935723879172 ], [ -47.371863573982772, -22.212088187840436 ], [ -47.372057829128622, -22.212240651529967 ], [ -47.372252084688043, -22.212393114947805 ], [ -47.372446340660979, -22.21254557809392 ], [ -47.372640597047514, -22.212698040968373 ], [ -47.372834853847579, -22.212850503571087 ], [ -47.373029111061214, -22.213002965902085 ], [ -47.373223368688414, -22.213155427961379 ], [ -47.373417626729172, -22.213307889748933 ], [ -47.3736118851835, -22.213460351264757 ], [ -47.373806144051414, -22.213612812508842 ], [ -47.374000403332886, -22.213765273481211 ], [ -47.374194663027929, -22.213917734181788 ], [ -47.3743889231366, -22.214070194610674 ], [ -47.3745831836588, -22.214222654767749 ], [ -47.374777444594599, -22.214375114653087 ], [ -47.374971705943992, -22.214527574266629 ], [ -47.375165967706977, -22.214680033608417 ], [ -47.375360229883562, -22.214832492678436 ], [ -47.375554492473739, -22.214984951476691 ], [ -47.375748755477503, -22.215137410003102 ], [ -47.375943018894887, -22.215289868257756 ], [ -47.376137282725864, -22.215442326240574 ], [ -47.376331546970476, -22.215594783951651 ], [ -47.376718216157975, -22.215898238427108 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 713.24826007000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.37144985601104, -22.211745763486952 ], [ -47.371678692109001, -22.211925369949238 ], [ -47.371872946834976, -22.212077833899841 ], [ -47.372067201974417, -22.212230297578706 ], [ -47.372261457527443, -22.212382760985882 ], [ -47.372455713493984, -22.212535224121339 ], [ -47.372649969874118, -22.212687686985131 ], [ -47.372844226667773, -22.212840149577183 ], [ -47.373038483875007, -22.212992611897512 ], [ -47.373232741495798, -22.213145073946151 ], [ -47.373426999530153, -22.213297535723033 ], [ -47.37362125797808, -22.213449997228192 ], [ -47.373815516839592, -22.213602458461619 ], [ -47.374009776114669, -22.213754919423323 ], [ -47.374204035803309, -22.213907380113234 ], [ -47.374398295905564, -22.214059840531462 ], [ -47.374592556421355, -22.214212300677879 ], [ -47.374786817350753, -22.214364760552545 ], [ -47.374981078693736, -22.214517220155425 ], [ -47.375175340450326, -22.214669679486555 ], [ -47.375369602620502, -22.214822138545905 ], [ -47.375563865204278, -22.214974597333494 ], [ -47.375758128201632, -22.215127055849251 ], [ -47.375952391612614, -22.215279514093229 ], [ -47.376146655437175, -22.215431972065396 ], [ -47.376340919675386, -22.215584429765816 ], [ -47.376737368131543, -22.215895558880582 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 715.44426741699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371452728436452, -22.21173030756098 ], [ -47.37168806496625, -22.211915016018882 ], [ -47.371882319685824, -22.212067479958812 ], [ -47.37207657481887, -22.212219943627016 ], [ -47.372270830365487, -22.212372407023533 ], [ -47.372465086325626, -22.212524870148322 ], [ -47.372659342699357, -22.212677333001448 ], [ -47.372853599486618, -22.212829795582842 ], [ -47.373047856687442, -22.212982257892506 ], [ -47.373242114301831, -22.213134719930483 ], [ -47.373436372329785, -22.21328718169671 ], [ -47.373630630771316, -22.213439643191204 ], [ -47.373824889626412, -22.213592104413966 ], [ -47.374019148895094, -22.213744565365008 ], [ -47.374213408577319, -22.213897026044251 ], [ -47.374407668673179, -22.21404948645182 ], [ -47.374601929182568, -22.214201946587568 ], [ -47.374796190105556, -22.214354406451569 ], [ -47.37499045144213, -22.214506866043788 ], [ -47.375184713192311, -22.214659325364256 ], [ -47.375378975356085, -22.214811784412948 ], [ -47.375573237933452, -22.214964243189865 ], [ -47.375767500924404, -22.215116701694956 ], [ -47.375961764328977, -22.215269159928287 ], [ -47.376156028147136, -22.215421617889774 ], [ -47.37635029237893, -22.215574075579532 ], [ -47.376756520104159, -22.215892879331864 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 717.66734970799996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371455400152989, -22.211714694104685 ], [ -47.371697437822142, -22.211904662088084 ], [ -47.371891692535314, -22.212057126017363 ], [ -47.372085947661958, -22.212209589674902 ], [ -47.37228020320218, -22.212362053060755 ], [ -47.372474459155917, -22.212514516174885 ], [ -47.37266871552324, -22.212666979017346 ], [ -47.372862972304098, -22.212819441588067 ], [ -47.373057229498521, -22.212971903887077 ], [ -47.373251487106515, -22.213124365914382 ], [ -47.373445745128059, -22.213276827669947 ], [ -47.373640003563182, -22.213429289153776 ], [ -47.37383426241189, -22.213581750365869 ], [ -47.374028521674155, -22.213734211306257 ], [ -47.374222781349978, -22.21388667197483 ], [ -47.374417041439436, -22.214039132371735 ], [ -47.374611301942416, -22.214191592496821 ], [ -47.374805562859002, -22.214344052350171 ], [ -47.374999824189167, -22.214496511931717 ], [ -47.375194085932947, -22.214648971241523 ], [ -47.375388348090318, -22.21480143027955 ], [ -47.375582610661283, -22.214953889045812 ], [ -47.375776873645819, -22.215106347540235 ], [ -47.375971137043983, -22.215258805762897 ], [ -47.37616540085574, -22.215411263713726 ], [ -47.376359665081132, -22.215563721392829 ], [ -47.376775672075823, -22.215890199780944 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 156.997489637, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.375650082347612, -22.214971421385432 ], [ -47.375795619084577, -22.215085639229503 ], [ -47.375989882469938, -22.215238097430841 ], [ -47.376184146268876, -22.21539055536034 ], [ -47.37637841048145, -22.215543013018102 ], [ -47.376813976016301, -22.21588484067253 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 367.74087890499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.374068617496377, -22.213747969628745 ], [ -47.374232154121287, -22.21387631790499 ], [ -47.374426414204336, -22.21402877829123 ], [ -47.374620674700914, -22.214181238405661 ], [ -47.374814935611091, -22.214333698248332 ], [ -47.375009196934862, -22.214486157819223 ], [ -47.375203458672225, -22.214638617118361 ], [ -47.375397720823187, -22.214791076145723 ], [ -47.375591983387743, -22.214943534901323 ], [ -47.375786246365877, -22.215095993385077 ], [ -47.375980509757639, -22.215248451597081 ], [ -47.376174773562987, -22.215400909537244 ], [ -47.37636903778197, -22.215553367205683 ], [ -47.376794824046534, -22.215887520227831 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 51.002754910999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373399230993883, -22.214674845271098 ], [ -47.373463582373546, -22.214725350199014 ], [ -47.373657842981679, -22.214877811459612 ], [ -47.37377733087456, -22.21497158866644 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 111.683163349, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373205711036597, -22.214487544135341 ], [ -47.373288067952579, -22.214552180617773 ], [ -47.373482328134351, -22.214704642128805 ], [ -47.37367658872968, -22.214857103368075 ], [ -47.373870849738665, -22.215009564335617 ], [ -47.374033654426796, -22.215137337125281 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 157.91510457000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.373079267120303, -22.214352886080832 ], [ -47.373112553965449, -22.214379010805743 ], [ -47.373306813720767, -22.21453147256716 ], [ -47.373501073889734, -22.214683934056865 ], [ -47.373695334472252, -22.214836395274808 ], [ -47.373889595468441, -22.21498885622103 ], [ -47.374083856878173, -22.215141316895444 ], [ -47.374249943093382, -22.215271664577752 ] ] } }, -{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 648.82288131300004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.371410352366006, -22.212192939326691 ], [ -47.371425624451113, -22.21220492590593 ], [ -47.371619879349858, -22.212357390144387 ], [ -47.371814134662117, -22.21250985411114 ], [ -47.372008390387983, -22.21266231780622 ], [ -47.372202646527363, -22.212814781229568 ], [ -47.372396903080336, -22.212967244381247 ], [ -47.372591160046859, -22.213119707261207 ], [ -47.372785417426961, -22.213272169869445 ], [ -47.372979675220613, -22.213424632205967 ], [ -47.373173933427857, -22.213577094270772 ], [ -47.373368192048687, -22.213729556063839 ], [ -47.373562451083089, -22.213882017585174 ], [ -47.37375671053104, -22.214034478834765 ], [ -47.373950970392627, -22.21418693981261 ], [ -47.374145230667772, -22.214339400518721 ], [ -47.374339491356508, -22.214491860953061 ], [ -47.374533752458838, -22.214644321115642 ], [ -47.374728013974782, -22.214796781006456 ], [ -47.374922275904296, -22.214949240625486 ], [ -47.37511653824744, -22.215101699972756 ], [ -47.375310801004161, -22.21525415904825 ], [ -47.375505064174511, -22.21540661785194 ], [ -47.375699327758461, -22.21555907638384 ], [ -47.375893591756046, -22.21571153464394 ], [ -47.376087856167203, -22.215863992632244 ], [ -47.376220263789165, -22.215967905300356 ] ] } } +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 364.122430372, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197742857262668, -22.077492813772391 ], [ -47.19768293088881, -22.077480527130401 ], [ -47.197595430905658, -22.077462587055873 ], [ -47.197507930940425, -22.077444646932662 ], [ -47.197420430993091, -22.077426706760701 ], [ -47.19733293106367, -22.077408766540014 ], [ -47.197245431152162, -22.077390826270602 ], [ -47.197157931258587, -22.077372885952467 ], [ -47.197070431382897, -22.077354945585615 ], [ -47.19698293152512, -22.077337005170033 ], [ -47.196895431685277, -22.07731906470573 ], [ -47.19680793186334, -22.077301124192708 ], [ -47.196720432059315, -22.077283183630975 ], [ -47.196632932273204, -22.077265243020502 ], [ -47.196545432505005, -22.077247302361311 ], [ -47.196457932754718, -22.077229361653394 ], [ -47.196370433022352, -22.077211420896752 ], [ -47.196282933307891, -22.077193480091395 ], [ -47.196195433611365, -22.077175539237324 ], [ -47.196107933932723, -22.077157598334523 ], [ -47.196020434272008, -22.077139657383004 ], [ -47.195932934629226, -22.077121716382738 ], [ -47.195845435004337, -22.077103775333782 ], [ -47.195757935397367, -22.07708583423609 ], [ -47.195670435808317, -22.077067893089676 ], [ -47.195582936237187, -22.077049951894537 ], [ -47.19549543668397, -22.077032010650683 ], [ -47.195407937148687, -22.077014069358103 ], [ -47.195320437631295, -22.07699612801682 ], [ -47.195232938131824, -22.076978186626807 ], [ -47.195145438650272, -22.076960245188069 ], [ -47.19505793918664, -22.076942303700609 ], [ -47.194970439740928, -22.076924362164426 ], [ -47.194882940313128, -22.076906420579526 ], [ -47.194795440903249, -22.076888478945907 ], [ -47.19470794151129, -22.076870537263577 ], [ -47.194620442137243, -22.076852595532525 ], [ -47.19453294278113, -22.076834653752726 ], [ -47.194445443442923, -22.076816711924245 ], [ -47.194357944122629, -22.076798770047027 ], [ -47.194297953119452, -22.076786468764478 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 75.697829761999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.194563879522981, -22.075468162677385 ], [ -47.194492032636639, -22.075453430214619 ], [ -47.194404534169657, -22.075435488291177 ], [ -47.194317035720601, -22.07541754631902 ], [ -47.194229537289473, -22.075399604298145 ], [ -47.194142038876244, -22.075381662228558 ], [ -47.194054540480948, -22.075363720110253 ], [ -47.193967042103566, -22.075345777943241 ], [ -47.193879543744082, -22.075327835727499 ], [ -47.193847724552185, -22.075321310942972 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 113.630869061, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.194819176924888, -22.075534379055092 ], [ -47.194751406100444, -22.075520482524805 ], [ -47.194663907571652, -22.075502540746513 ], [ -47.194576409060758, -22.075484598919505 ], [ -47.194488910567799, -22.075466657043776 ], [ -47.194401412092745, -22.075448715119329 ], [ -47.194313913635611, -22.075430773146159 ], [ -47.194226415196418, -22.075412831124279 ], [ -47.19413891677511, -22.075394889053683 ], [ -47.194051418371735, -22.075376946934366 ], [ -47.193963919986281, -22.075359004766341 ], [ -47.193876421618718, -22.07534106254959 ], [ -47.193788923269118, -22.075323120284121 ], [ -47.193744148294122, -22.07531393878304 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 622.28402033899999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199446830662843, -22.076497080367407 ], [ -47.199385732143341, -22.076484553943359 ], [ -47.199298232657156, -22.076466614746209 ], [ -47.199210733188885, -22.076448675500341 ], [ -47.199123233738518, -22.076430736205754 ], [ -47.199035734306065, -22.076412796862439 ], [ -47.198948234891525, -22.07639485747039 ], [ -47.198860735494875, -22.076376918029649 ], [ -47.198773236116139, -22.076358978540163 ], [ -47.198685736755323, -22.076341039001957 ], [ -47.198598237412384, -22.076323099415028 ], [ -47.198510738087386, -22.076305159779373 ], [ -47.198423238780272, -22.076287220095001 ], [ -47.198335739491071, -22.076269280361906 ], [ -47.198248240219783, -22.07625134058009 ], [ -47.198160740966401, -22.076233400749555 ], [ -47.198073241730924, -22.076215460870294 ], [ -47.19798574251336, -22.076197520942316 ], [ -47.197898243313716, -22.076179580965611 ], [ -47.197810744131985, -22.076161640940189 ], [ -47.197723244968131, -22.076143700866041 ], [ -47.197635745822204, -22.076125760743185 ], [ -47.19754824669419, -22.076107820571597 ], [ -47.197460747584081, -22.076089880351297 ], [ -47.197373248491886, -22.076071940082272 ], [ -47.197285749417595, -22.076053999764518 ], [ -47.197198250361232, -22.076036059398053 ], [ -47.197110751322768, -22.076018118982862 ], [ -47.197023252302223, -22.076000178518946 ], [ -47.196935753299577, -22.075982238006318 ], [ -47.196848254314851, -22.07596429744498 ], [ -47.196760755348031, -22.075946356834912 ], [ -47.19667325639913, -22.075928416176122 ], [ -47.196585757468142, -22.075910475468611 ], [ -47.19649825855506, -22.075892534712374 ], [ -47.196410759659891, -22.075874593907429 ], [ -47.196323260782634, -22.075856653053769 ], [ -47.196235761923298, -22.075838712151377 ], [ -47.196148263081859, -22.075820771200281 ], [ -47.196060764258341, -22.075802830200459 ], [ -47.19597326545275, -22.075784889151922 ], [ -47.195885766665072, -22.075766948054664 ], [ -47.195798267895285, -22.075749006908694 ], [ -47.195710769143425, -22.075731065713995 ], [ -47.195623270409477, -22.075713124470582 ], [ -47.195535771693443, -22.075695183178443 ], [ -47.195448272995328, -22.075677241837592 ], [ -47.195360774315127, -22.075659300448013 ], [ -47.195273275652845, -22.075641359009737 ], [ -47.195185777008476, -22.075623417522735 ], [ -47.195098278382019, -22.075605475987015 ], [ -47.195010779773476, -22.075587534402572 ], [ -47.194923281182859, -22.075569592769412 ], [ -47.194835782610149, -22.075551651087537 ], [ -47.194748284055358, -22.075533709356961 ], [ -47.194660785518494, -22.075515767577649 ], [ -47.194573286999528, -22.075497825749633 ], [ -47.19448578849849, -22.075479883872887 ], [ -47.194398290015364, -22.075461941947424 ], [ -47.194310791550166, -22.075443999973256 ], [ -47.194223293102873, -22.075426057950363 ], [ -47.1941357946735, -22.075408115878762 ], [ -47.194048296262061, -22.075390173758429 ], [ -47.193960797868506, -22.075372231589387 ], [ -47.193873299492886, -22.075354289371635 ], [ -47.193785801135213, -22.075336347105178 ], [ -47.193698302795426, -22.075318404789986 ], [ -47.193610804473579, -22.075300462426082 ], [ -47.19355955119665, -22.075289952429372 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 623.10134512900004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199436802278072, -22.076508891227807 ], [ -47.199382610525866, -22.076497780828937 ], [ -47.199295111031603, -22.076479841630778 ], [ -47.199207611555259, -22.076461902383901 ], [ -47.199120112096814, -22.076443963088309 ], [ -47.199032612656275, -22.076426023743966 ], [ -47.198945113233663, -22.076408084350927 ], [ -47.198857613828928, -22.076390144909176 ], [ -47.198770114442119, -22.076372205418682 ], [ -47.198682615073231, -22.07635426587947 ], [ -47.198595115722213, -22.076336326291532 ], [ -47.198507616389136, -22.076318386654872 ], [ -47.198420117073944, -22.076300446969491 ], [ -47.198332617776664, -22.076282507235383 ], [ -47.198245118497304, -22.076264567452558 ], [ -47.19815761923585, -22.076246627621021 ], [ -47.198070119992288, -22.076228687740752 ], [ -47.197982620766645, -22.076210747811743 ], [ -47.197895121558929, -22.076192807834047 ], [ -47.197807622369119, -22.07617486780762 ], [ -47.197720123197193, -22.076156927732466 ], [ -47.197632624043187, -22.076138987608601 ], [ -47.197545124907094, -22.076121047435986 ], [ -47.197457625788914, -22.076103107214692 ], [ -47.197370126688632, -22.076085166944658 ], [ -47.19728262760627, -22.076067226625895 ], [ -47.197195128541829, -22.076049286258421 ], [ -47.197107629495285, -22.076031345842221 ], [ -47.197020130466662, -22.076013405377303 ], [ -47.196932631455944, -22.075995464863663 ], [ -47.196845132463139, -22.075977524301322 ], [ -47.196757633488239, -22.075959583690224 ], [ -47.196670134531267, -22.075941643030443 ], [ -47.1965826355922, -22.075923702321926 ], [ -47.196495136671032, -22.075905761564663 ], [ -47.196407637767798, -22.075887820758723 ], [ -47.196320138882463, -22.075869879904051 ], [ -47.196232640015047, -22.075851939000657 ], [ -47.196145141165537, -22.075833998048548 ], [ -47.19605764233394, -22.0758160570477 ], [ -47.19597014352027, -22.075798115998179 ], [ -47.195882644724513, -22.075780174899904 ], [ -47.195795145946661, -22.075762233752926 ], [ -47.195707647186723, -22.075744292557221 ], [ -47.195620148444689, -22.075726351312777 ], [ -47.195532649720583, -22.075708410019651 ], [ -47.195445151014383, -22.075690468677774 ], [ -47.195357652326116, -22.0756725272872 ], [ -47.195270153655756, -22.075654585847911 ], [ -47.195182655003308, -22.075636644359907 ], [ -47.195095156368772, -22.075618702823157 ], [ -47.195007657752164, -22.075600761237723 ], [ -47.194920159153469, -22.075582819603554 ], [ -47.194832660572672, -22.075564877920669 ], [ -47.194745162009816, -22.075546936189085 ], [ -47.194657663464874, -22.075528994408749 ], [ -47.194570164937829, -22.075511052579731 ], [ -47.194482666428712, -22.075493110701967 ], [ -47.194395167937515, -22.075475168775515 ], [ -47.194307669464237, -22.075457226800328 ], [ -47.194220171008865, -22.075439284776412 ], [ -47.194132672571428, -22.075421342703823 ], [ -47.194045174151903, -22.075403400582463 ], [ -47.193957675750276, -22.075385458412427 ], [ -47.193870177366577, -22.075367516193662 ], [ -47.193782679000826, -22.075349573926179 ], [ -47.193695180652973, -22.075331631609998 ], [ -47.193607682323041, -22.075313689245068 ], [ -47.193541789903044, -22.07530017734295 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 623.91866991899997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199426773891666, -22.076520702087713 ], [ -47.199379488907923, -22.076511007714476 ], [ -47.19929198940558, -22.076493068515301 ], [ -47.199204489921144, -22.076475129267415 ], [ -47.199116990454641, -22.076457189970803 ], [ -47.199029491006023, -22.07643925062548 ], [ -47.198941991575317, -22.076421311231432 ], [ -47.198854492162525, -22.076403371788654 ], [ -47.198766992767645, -22.076385432297155 ], [ -47.198679493390649, -22.076367492756933 ], [ -47.198591994031567, -22.07634955316799 ], [ -47.198504494690411, -22.076331613530321 ], [ -47.198416995367147, -22.076313673843931 ], [ -47.198329496061788, -22.076295734108822 ], [ -47.19824199677435, -22.076277794324991 ], [ -47.198154497504802, -22.076259854492442 ], [ -47.198066998253189, -22.07624191461117 ], [ -47.197979499019475, -22.07622397468117 ], [ -47.197891999803666, -22.076206034702444 ], [ -47.19780450060577, -22.076188094675004 ], [ -47.197717001425772, -22.076170154598842 ], [ -47.197629502263709, -22.076152214473957 ], [ -47.19754200311953, -22.076134274300365 ], [ -47.197454503993271, -22.076116334078037 ], [ -47.197367004884924, -22.076098393807001 ], [ -47.197279505794484, -22.076080453487229 ], [ -47.197192006721956, -22.076062513118746 ], [ -47.197104507667348, -22.076044572701541 ], [ -47.197017008630631, -22.076026632235624 ], [ -47.196929509611842, -22.076008691720972 ], [ -47.196842010610972, -22.075990751157605 ], [ -47.196754511627994, -22.075972810545522 ], [ -47.196667012662928, -22.075954869884718 ], [ -47.196579513715783, -22.075936929175192 ], [ -47.196492014786543, -22.075918988416952 ], [ -47.19640451587523, -22.075901047609985 ], [ -47.196317016981808, -22.075883106754286 ], [ -47.196229518106335, -22.075865165849887 ], [ -47.196142019248761, -22.075847224896766 ], [ -47.196054520409078, -22.075829283894919 ], [ -47.195967021587322, -22.075811342844371 ], [ -47.195879522783478, -22.075793401745099 ], [ -47.195792023997555, -22.0757754605971 ], [ -47.195704525229544, -22.075757519400387 ], [ -47.195617026479439, -22.075739578154948 ], [ -47.195529527747262, -22.075721636860816 ], [ -47.195442029032982, -22.075703695517937 ], [ -47.195354530336644, -22.07568575412634 ], [ -47.195267031658197, -22.075667812686046 ], [ -47.195179532997678, -22.075649871197029 ], [ -47.195092034355049, -22.075631929659284 ], [ -47.195004535730384, -22.075613988072831 ], [ -47.194917037123602, -22.075596046437649 ], [ -47.194829538534741, -22.075578104753752 ], [ -47.194742039963806, -22.075560163021159 ], [ -47.19465454141077, -22.075542221239832 ], [ -47.194567042875669, -22.07552427940978 ], [ -47.194479544358472, -22.075506337531024 ], [ -47.194392045859196, -22.07548839560355 ], [ -47.19430454737784, -22.075470453627357 ], [ -47.194217048914396, -22.075452511602446 ], [ -47.19412955046888, -22.075434569528827 ], [ -47.194042052041269, -22.075416627406486 ], [ -47.193954553631585, -22.075398685235434 ], [ -47.193867055239814, -22.075380743015653 ], [ -47.193779556865977, -22.075362800747154 ], [ -47.193692058510045, -22.075344858429951 ], [ -47.193604560172041, -22.075326916064046 ], [ -47.193524028606753, -22.0753104022548 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 624.73599471700004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199416745503633, -22.076532512947097 ], [ -47.199376367289503, -22.076524234599969 ], [ -47.199288867779082, -22.076506295399806 ], [ -47.199201368286573, -22.076488356150893 ], [ -47.199113868811992, -22.076470416853294 ], [ -47.199026369355295, -22.076452477506962 ], [ -47.198938869916518, -22.076434538111904 ], [ -47.198851370495639, -22.0764165986681 ], [ -47.19876387109268, -22.076398659175617 ], [ -47.198676371707613, -22.076380719634379 ], [ -47.198588872340459, -22.07636278004443 ], [ -47.198501372991224, -22.076344840405753 ], [ -47.198413873659874, -22.076326900718353 ], [ -47.198326374346443, -22.076308960982246 ], [ -47.198238875050926, -22.076291021197402 ], [ -47.198151375773307, -22.076273081363844 ], [ -47.198063876513608, -22.076255141481539 ], [ -47.197976377271821, -22.076237201550555 ], [ -47.197888878047927, -22.076219261570827 ], [ -47.197801378841959, -22.076201321542374 ], [ -47.19771387965389, -22.076183381465203 ], [ -47.197626380483747, -22.076165441339292 ], [ -47.197538881331496, -22.076147501164705 ], [ -47.197451382197151, -22.076129560941371 ], [ -47.197363883080726, -22.076111620669327 ], [ -47.197276383982214, -22.076093680348549 ], [ -47.197188884901614, -22.076075739979057 ], [ -47.197101385838927, -22.076057799560839 ], [ -47.197013886794132, -22.076039859093907 ], [ -47.196926387767256, -22.076021918578238 ], [ -47.196838888758315, -22.07600397801388 ], [ -47.196751389767265, -22.075986037400792 ], [ -47.19666389079412, -22.075968096738976 ], [ -47.196576391838896, -22.075950156028441 ], [ -47.196488892901591, -22.075932215269194 ], [ -47.1964013939822, -22.075914274461201 ], [ -47.196313895080699, -22.075896333604518 ], [ -47.196226396197147, -22.075878392699099 ], [ -47.196138897331487, -22.075860451744969 ], [ -47.196051398483739, -22.075842510742117 ], [ -47.195963899653897, -22.075824569690564 ], [ -47.195876400841982, -22.075806628590275 ], [ -47.19578890204798, -22.075788687441271 ], [ -47.19570140327189, -22.075770746243546 ], [ -47.195613904513714, -22.075752804997098 ], [ -47.195526405773457, -22.075734863701957 ], [ -47.195438907051098, -22.075716922358058 ], [ -47.195351408346696, -22.075698980965463 ], [ -47.195263909660163, -22.075681039524163 ], [ -47.195176410991571, -22.075663098034131 ], [ -47.195088912340871, -22.075645156495384 ], [ -47.195001413708127, -22.075627214907904 ], [ -47.19491391509326, -22.075609273271731 ], [ -47.194826416496319, -22.075591331586828 ], [ -47.19473891791732, -22.075573389853218 ], [ -47.194651419356205, -22.075555448070869 ], [ -47.194563920813025, -22.075537506239804 ], [ -47.19447642228775, -22.075519564360057 ], [ -47.194388923780394, -22.075501622431574 ], [ -47.194301425290966, -22.075483680454369 ], [ -47.194213926819451, -22.075465738428449 ], [ -47.194126428365855, -22.075447796353824 ], [ -47.194038929930173, -22.075429854230467 ], [ -47.193951431512417, -22.075411912058414 ], [ -47.19386393311256, -22.075393969837606 ], [ -47.193776434730651, -22.075376027568112 ], [ -47.193688936366648, -22.075358085249896 ], [ -47.193601438020565, -22.075340142882983 ], [ -47.19351393969238, -22.075322200467323 ], [ -47.193506267307725, -22.075320627164949 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 625.5533195, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199406717113966, -22.076544323806004 ], [ -47.199373245670614, -22.076537461485444 ], [ -47.199285746152107, -22.076519522284265 ], [ -47.199198246651534, -22.076501583034364 ], [ -47.199110747168881, -22.076483643735735 ], [ -47.199023247704098, -22.076465704388387 ], [ -47.198935748257242, -22.076447764992324 ], [ -47.198848248828298, -22.076429825547525 ], [ -47.198760749417232, -22.076411886054021 ], [ -47.1986732500241, -22.076393946511786 ], [ -47.198585750648888, -22.076376006920821 ], [ -47.198498251291547, -22.076358067281138 ], [ -47.198410751952139, -22.076340127592729 ], [ -47.198323252630637, -22.076322187855606 ], [ -47.198235753327033, -22.076304248069771 ], [ -47.198148254041335, -22.076286308235201 ], [ -47.198060754773564, -22.076268368351904 ], [ -47.197973255523685, -22.07625042841989 ], [ -47.197885756291733, -22.076232488439153 ], [ -47.197798257077686, -22.076214548409691 ], [ -47.197710757881531, -22.076196608331514 ], [ -47.197623258703302, -22.076178668204623 ], [ -47.197535759542987, -22.076160728028999 ], [ -47.19744826040057, -22.076142787804649 ], [ -47.197360761276066, -22.076124847531592 ], [ -47.197273262169468, -22.076106907209819 ], [ -47.197185763080782, -22.076088966839315 ], [ -47.197098264010016, -22.076071026420095 ], [ -47.197010764957156, -22.07605308595215 ], [ -47.196923265922216, -22.07603514543548 ], [ -47.196835766905181, -22.076017204870105 ], [ -47.196748267906052, -22.075999264255998 ], [ -47.196660768924836, -22.075981323593187 ], [ -47.196573269961547, -22.075963382881639 ], [ -47.196485771016157, -22.075945442121377 ], [ -47.196398272088679, -22.075927501312396 ], [ -47.196310773179135, -22.075909560454697 ], [ -47.196223274287476, -22.075891619548276 ], [ -47.196135775413737, -22.075873678593123 ], [ -47.196048276557903, -22.075855737589276 ], [ -47.195960777720011, -22.075837796536696 ], [ -47.195873278900002, -22.075819855435405 ], [ -47.195785780097935, -22.075801914285389 ], [ -47.195698281313767, -22.075783973086654 ], [ -47.195610782547512, -22.075766031839223 ], [ -47.195523283799183, -22.075748090543048 ], [ -47.195435785068774, -22.075730149198151 ], [ -47.19534828635625, -22.075712207804543 ], [ -47.19526078766166, -22.07569426636223 ], [ -47.195173288984982, -22.075676324871189 ], [ -47.195085790326225, -22.075658383331426 ], [ -47.19499829168538, -22.075640441742955 ], [ -47.194910793062455, -22.075622500105766 ], [ -47.194823294457436, -22.075604558419851 ], [ -47.194735795870358, -22.075586616685214 ], [ -47.194648297301157, -22.075568674901891 ], [ -47.194560798749905, -22.075550733069825 ], [ -47.194473300216558, -22.075532791189033 ], [ -47.194385801701138, -22.075514849259541 ], [ -47.194298303203624, -22.07549690728133 ], [ -47.19421080472403, -22.075478965254405 ], [ -47.19412330626237, -22.075461023178772 ], [ -47.194035807818608, -22.075443081054409 ], [ -47.193948309392759, -22.075425138881329 ], [ -47.193860810984823, -22.07540719665953 ], [ -47.19377331259485, -22.07538925438903 ], [ -47.193685814222775, -22.075371312069795 ], [ -47.193598315868599, -22.075353369701869 ], [ -47.193510817532363, -22.075335427285218 ], [ -47.19348850600619, -22.075330852073279 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 626.37064429199995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199396688722665, -22.076556134664393 ], [ -47.199370124051256, -22.076550688370876 ], [ -47.19928262452467, -22.076532749168706 ], [ -47.199195125016018, -22.0765148099178 ], [ -47.199107625525286, -22.076496870618161 ], [ -47.199020126052432, -22.076478931269804 ], [ -47.198932626597497, -22.076460991872732 ], [ -47.198845127160475, -22.076443052426914 ], [ -47.198757627741337, -22.076425112932416 ], [ -47.198670128340126, -22.076407173389168 ], [ -47.198582628956835, -22.076389233797201 ], [ -47.198495129591414, -22.076371294156509 ], [ -47.198407630243928, -22.076353354467091 ], [ -47.198320130914347, -22.076335414728955 ], [ -47.198232631602664, -22.076317474942115 ], [ -47.198145132308895, -22.076299535106536 ], [ -47.198057633033045, -22.076281595222234 ], [ -47.197970133775087, -22.07626365528921 ], [ -47.197882634535056, -22.076245715307465 ], [ -47.19779513531293, -22.076227775276998 ], [ -47.197707636108703, -22.076209835197812 ], [ -47.197620136922403, -22.076191895069911 ], [ -47.197532637754001, -22.07617395489326 ], [ -47.197445138603513, -22.076156014667916 ], [ -47.197357639470937, -22.076138074393857 ], [ -47.19727014035626, -22.076120134071072 ], [ -47.197182641259495, -22.076102193699562 ], [ -47.19709514218065, -22.076084253279337 ], [ -47.197007643119711, -22.076066312810365 ], [ -47.196920144076692, -22.0760483722927 ], [ -47.196832645051586, -22.076030431726313 ], [ -47.196745146044378, -22.0760124911112 ], [ -47.19665764705509, -22.075994550447376 ], [ -47.196570148083715, -22.075976609734823 ], [ -47.196482649130246, -22.075958668973552 ], [ -47.196395150194697, -22.075940728163545 ], [ -47.196307651277081, -22.075922787304858 ], [ -47.196220152377343, -22.07590484639741 ], [ -47.196132653495525, -22.075886905441269 ], [ -47.196045154631619, -22.07586896443641 ], [ -47.195957655785648, -22.075851023382821 ], [ -47.195870156957561, -22.075833082280521 ], [ -47.195782658147422, -22.075815141129478 ], [ -47.195695159355175, -22.075797199929752 ], [ -47.195607660580848, -22.075779258681308 ], [ -47.195520161824433, -22.075761317384114 ], [ -47.195432663085953, -22.075743376038222 ], [ -47.195345164365349, -22.075725434643591 ], [ -47.195257665662687, -22.07570749320028 ], [ -47.195170166977931, -22.075689551708233 ], [ -47.195082668311095, -22.075671610167447 ], [ -47.194995169662185, -22.075653668577978 ], [ -47.194907671031174, -22.075635726939783 ], [ -47.194820172418076, -22.075617785252845 ], [ -47.194732673822919, -22.075599843517217 ], [ -47.194645175245654, -22.075581901732878 ], [ -47.194557676686323, -22.075563959899785 ], [ -47.194470178144897, -22.075546018018006 ], [ -47.194382679621398, -22.075528076087501 ], [ -47.19429518111582, -22.075510134108278 ], [ -47.194207682628139, -22.07549219208035 ], [ -47.1941201841584, -22.075474250003701 ], [ -47.19403268570656, -22.075456307878312 ], [ -47.193945187272647, -22.075438365704244 ], [ -47.193857688856632, -22.075420423481436 ], [ -47.193770190458579, -22.075402481209899 ], [ -47.193682692078433, -22.075384538889679 ], [ -47.193595193716185, -22.075366596520745 ], [ -47.193507695371871, -22.075348654103081 ], [ -47.193470744701884, -22.075341076979932 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.04040438699997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199385264245407, -22.07656765929692 ], [ -47.199367002431401, -22.076563915256287 ], [ -47.199279502896772, -22.076545976053101 ], [ -47.199192003380034, -22.076528036801196 ], [ -47.199104503881209, -22.076510097500559 ], [ -47.199017004400304, -22.076492158151183 ], [ -47.198929504937269, -22.076474218753095 ], [ -47.198842005492175, -22.076456279306285 ], [ -47.198754506064972, -22.076438339810753 ], [ -47.198667006655675, -22.076420400266493 ], [ -47.198579507264292, -22.076402460673531 ], [ -47.19849200789082, -22.076384521031827 ], [ -47.198404508535248, -22.076366581341418 ], [ -47.198317009197581, -22.076348641602277 ], [ -47.198229509877834, -22.07633070181441 ], [ -47.198142010575992, -22.076312761977817 ], [ -47.19805451129205, -22.076294822092514 ], [ -47.197967012026027, -22.076276882158481 ], [ -47.197879512777909, -22.076258942175727 ], [ -47.197792013547705, -22.076241002144258 ], [ -47.197704514335406, -22.076223062064056 ], [ -47.19761701514102, -22.07620512193515 ], [ -47.197529515964547, -22.076187181757515 ], [ -47.197442016805979, -22.076169241531147 ], [ -47.197354517665325, -22.076151301256075 ], [ -47.197267018542583, -22.076133360932278 ], [ -47.197179519437739, -22.076115420559756 ], [ -47.197092020350816, -22.076097480138518 ], [ -47.197004521281805, -22.076079539668555 ], [ -47.196917022230707, -22.076061599149874 ], [ -47.196829523197508, -22.076043658582485 ], [ -47.196742024182235, -22.076025717966363 ], [ -47.196654525184869, -22.076007777301513 ], [ -47.196567026205422, -22.075989836587965 ], [ -47.196479527243881, -22.075971895825681 ], [ -47.196392028300259, -22.075953955014676 ], [ -47.196304529374537, -22.075936014154962 ], [ -47.196217030466734, -22.07591807324652 ], [ -47.196129531576851, -22.07590013228937 ], [ -47.196042032704867, -22.075882191283501 ], [ -47.195954533850816, -22.075864250228904 ], [ -47.195867035014665, -22.075846309125588 ], [ -47.195779536196433, -22.075828367973553 ], [ -47.195692037396114, -22.075810426772801 ], [ -47.195604538613701, -22.075792485523337 ], [ -47.195517039849229, -22.075774544225151 ], [ -47.195429541102648, -22.075756602878247 ], [ -47.19534204237398, -22.075738661482632 ], [ -47.195254543663232, -22.075720720038287 ], [ -47.195167044970411, -22.075702778545224 ], [ -47.19507954629551, -22.075684837003447 ], [ -47.1949920476385, -22.075666895412954 ], [ -47.194904548999425, -22.075648953773744 ], [ -47.194817050378255, -22.075631012085818 ], [ -47.194729551775012, -22.075613070349171 ], [ -47.194642053189675, -22.075595128563798 ], [ -47.194554554622265, -22.075577186729713 ], [ -47.194467056072767, -22.075559244846914 ], [ -47.194379557541197, -22.075541302915401 ], [ -47.194292059027532, -22.075523360935168 ], [ -47.194204560531787, -22.075505418906236 ], [ -47.194117062053976, -22.075487476828577 ], [ -47.194029563594057, -22.075469534702204 ], [ -47.193942065152051, -22.075451592527116 ], [ -47.193854566727964, -22.075433650303292 ], [ -47.193767068321847, -22.075415708030764 ], [ -47.1936795699336, -22.075397765709511 ], [ -47.193592071563288, -22.075379823339556 ], [ -47.193504573210902, -22.075361880920884 ], [ -47.193452983394941, -22.075351301884826 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.053393078, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199367626163941, -22.076577910014791 ], [ -47.199363880811106, -22.076577142141669 ], [ -47.19927638126839, -22.076559202937474 ], [ -47.199188881743581, -22.076541263684568 ], [ -47.199101382236677, -22.076523324382901 ], [ -47.199013882747693, -22.07650538503254 ], [ -47.198926383276586, -22.076487445633443 ], [ -47.198838883823406, -22.076469506185621 ], [ -47.198751384388125, -22.076451566689066 ], [ -47.198663884970756, -22.076433627143818 ], [ -47.198576385571293, -22.07641568754984 ], [ -47.198488886189743, -22.076397747907137 ], [ -47.198401386826092, -22.076379808215712 ], [ -47.198313887480353, -22.076361868475569 ], [ -47.198226388152527, -22.076343928686676 ], [ -47.1981388888426, -22.076325988849096 ], [ -47.198051389550592, -22.076308048962776 ], [ -47.197963890276483, -22.076290109027717 ], [ -47.197876391020294, -22.076272169043975 ], [ -47.197788891782011, -22.076254229011479 ], [ -47.19770139256164, -22.076236288930293 ], [ -47.197613893359176, -22.076218348800374 ], [ -47.197526394174616, -22.076200408621727 ], [ -47.197438895007977, -22.076182468394361 ], [ -47.197351395859243, -22.076164528118277 ], [ -47.197263896728423, -22.07614658779347 ], [ -47.197176397615515, -22.076128647419925 ], [ -47.197088898520512, -22.076110706997689 ], [ -47.197001399443423, -22.07609276652672 ], [ -47.196913900384246, -22.07607482600703 ], [ -47.196826401342975, -22.076056885438636 ], [ -47.196738902319623, -22.076038944821505 ], [ -47.196651403314178, -22.076021004155628 ], [ -47.196563904326652, -22.076003063441078 ], [ -47.196476405357039, -22.075985122677789 ], [ -47.196388906405332, -22.075967181865785 ], [ -47.196301407471545, -22.075949241005059 ], [ -47.196213908555663, -22.075931300095611 ], [ -47.196126409657694, -22.075913359137452 ], [ -47.196038910777645, -22.075895418130571 ], [ -47.195951411915509, -22.075877477074965 ], [ -47.195863913071285, -22.075859535970622 ], [ -47.195776414244968, -22.075841594817597 ], [ -47.195688915436577, -22.075823653615835 ], [ -47.195601416646085, -22.075805712365355 ], [ -47.195513917873534, -22.075787771066171 ], [ -47.195426419118881, -22.075769829718233 ], [ -47.195338920382142, -22.075751888321626 ], [ -47.195251421663315, -22.075733946876259 ], [ -47.195163922962422, -22.075716005382205 ], [ -47.195076424279442, -22.075698063839418 ], [ -47.194988925614354, -22.07568012224791 ], [ -47.194901426967199, -22.075662180607694 ], [ -47.194813928337958, -22.075644238918763 ], [ -47.194726429726636, -22.075626297181088 ], [ -47.19463893113322, -22.075608355394721 ], [ -47.194551432557745, -22.075590413559631 ], [ -47.194463934000169, -22.075572471675823 ], [ -47.194376435460512, -22.075554529743293 ], [ -47.194288936938776, -22.075536587762056 ], [ -47.194201438434959, -22.075518645732114 ], [ -47.194113939949062, -22.075500703653443 ], [ -47.194026441481071, -22.075482761526061 ], [ -47.193938943031, -22.075464819349964 ], [ -47.193851444598828, -22.075446877125113 ], [ -47.193763946184632, -22.075428934851576 ], [ -47.19367644778832, -22.075410992529331 ], [ -47.193588949409929, -22.075393050158368 ], [ -47.193501451049464, -22.075375107738669 ], [ -47.193435222085299, -22.075361526788001 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.06638176900003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199349988079859, -22.076588160730935 ], [ -47.19927325963954, -22.076572429821809 ], [ -47.199185760106651, -22.076554490567872 ], [ -47.199098260591661, -22.076536551265217 ], [ -47.199010761094591, -22.076518611913844 ], [ -47.198923261615427, -22.076500672513742 ], [ -47.198835762154168, -22.076482733064907 ], [ -47.198748262710808, -22.076464793567364 ], [ -47.198660763285361, -22.076446854021096 ], [ -47.198573263877819, -22.076428914426099 ], [ -47.198485764488176, -22.076410974782391 ], [ -47.198398265116481, -22.076393035089964 ], [ -47.198310765762663, -22.076375095348791 ], [ -47.198223266426744, -22.076357155558924 ], [ -47.198135767108752, -22.076339215720321 ], [ -47.198048267808659, -22.076321275832985 ], [ -47.197960768526478, -22.076303335896945 ], [ -47.19787326926221, -22.076285395912176 ], [ -47.197785770015855, -22.076267455878686 ], [ -47.197698270787399, -22.076249515796476 ], [ -47.197610771576855, -22.076231575665542 ], [ -47.197523272384217, -22.076213635485907 ], [ -47.197435773209499, -22.076195695257528 ], [ -47.197348274052693, -22.076177754980421 ], [ -47.197260774913801, -22.076159814654613 ], [ -47.197173275792814, -22.076141874280072 ], [ -47.197085776689725, -22.076123933856817 ], [ -47.196998277604564, -22.076105993384836 ], [ -47.196910778537315, -22.076088052864137 ], [ -47.196823279487973, -22.076070112294715 ], [ -47.196735780456528, -22.076052171676587 ], [ -47.196648281443025, -22.076034231009732 ], [ -47.19656078244742, -22.076016290294152 ], [ -47.196473283469707, -22.075998349529854 ], [ -47.196385784509935, -22.075980408716838 ], [ -47.196298285568062, -22.075962467855099 ], [ -47.196210786644116, -22.075944526944664 ], [ -47.196123287738068, -22.075926585985485 ], [ -47.196035788849947, -22.075908644977584 ], [ -47.195948289979725, -22.075890703920972 ], [ -47.195860791127423, -22.075872762815646 ], [ -47.195773292293048, -22.075854821661583 ], [ -47.195685793476564, -22.075836880458823 ], [ -47.195598294678021, -22.075818939207331 ], [ -47.195510795897377, -22.07580099790713 ], [ -47.195423297134646, -22.075783056558208 ], [ -47.195335798389834, -22.075765115160568 ], [ -47.195248299662936, -22.075747173714216 ], [ -47.19516080095395, -22.075729232219139 ], [ -47.195073302262898, -22.075711290675336 ], [ -47.194985803589738, -22.075693349082822 ], [ -47.194898304934497, -22.07567540744159 ], [ -47.194810806297198, -22.07565746575164 ], [ -47.194723307677791, -22.075639524012999 ], [ -47.194635809076324, -22.075621582225608 ], [ -47.194548310492728, -22.07560364038951 ], [ -47.194460811927094, -22.075585698504693 ], [ -47.194373313379373, -22.075567756571161 ], [ -47.19428581484955, -22.075549814588911 ], [ -47.194198316337648, -22.075531872557942 ], [ -47.194110817843679, -22.075513930478259 ], [ -47.194023319367624, -22.075495988349871 ], [ -47.193935820909488, -22.075478046172755 ], [ -47.193848322469215, -22.075460103946916 ], [ -47.193760824046947, -22.07544216167237 ], [ -47.193673325642557, -22.075424219349099 ], [ -47.193585827256086, -22.075406276977141 ], [ -47.19349832888755, -22.075388334556436 ], [ -47.193417460773013, -22.075371751689431 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.07937046100005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199332349993078, -22.076598411445396 ], [ -47.19927013801022, -22.076585656706118 ], [ -47.199182638469253, -22.07656771745118 ], [ -47.199095138946191, -22.07654977814752 ], [ -47.199007639441042, -22.076531838795137 ], [ -47.198920139953799, -22.076513899394008 ], [ -47.198832640484461, -22.076495959944186 ], [ -47.198745141033022, -22.076478020445634 ], [ -47.198657641599496, -22.076460080898354 ], [ -47.198570142183875, -22.076442141302351 ], [ -47.198482642786161, -22.076424201657638 ], [ -47.198395143406387, -22.076406261964177 ], [ -47.19830764404449, -22.076388322222023 ], [ -47.198220144700493, -22.076370382431143 ], [ -47.198132645374422, -22.076352442591514 ], [ -47.198045146066256, -22.07633450270319 ], [ -47.197957646775997, -22.076316562766142 ], [ -47.19787014750365, -22.076298622780364 ], [ -47.197782648249216, -22.07628068274586 ], [ -47.197695149012681, -22.076262742662642 ], [ -47.197607649794072, -22.076244802530706 ], [ -47.197520150593355, -22.076226862350058 ], [ -47.197432651410551, -22.076208922120657 ], [ -47.197345152245674, -22.076190981842558 ], [ -47.197257653098703, -22.076173041515741 ], [ -47.197170153969637, -22.076155101140177 ], [ -47.197082654858477, -22.076137160715927 ], [ -47.196995155765237, -22.076119220242937 ], [ -47.196907656689916, -22.076101279721236 ], [ -47.196820157632487, -22.076083339150802 ], [ -47.196732658592971, -22.076065398531661 ], [ -47.196645159571396, -22.076047457863805 ], [ -47.196557660567706, -22.076029517147198 ], [ -47.196470161581928, -22.076011576381905 ], [ -47.19638266261407, -22.075993635567876 ], [ -47.196295163664118, -22.075975694705129 ], [ -47.1962076647321, -22.075957753793681 ], [ -47.196120165817966, -22.075939812833486 ], [ -47.196032666921781, -22.075921871824594 ], [ -47.19594516804348, -22.07590393076697 ], [ -47.195857669183106, -22.07588598966063 ], [ -47.195770170340644, -22.075868048505548 ], [ -47.195682671516089, -22.075850107301793 ], [ -47.195595172709474, -22.075832166049295 ], [ -47.195507673920744, -22.075814224748079 ], [ -47.195420175149941, -22.075796283398152 ], [ -47.195332676397044, -22.075778341999499 ], [ -47.19524517766208, -22.075760400552142 ], [ -47.195157678945016, -22.075742459056052 ], [ -47.195070180245892, -22.075724517511247 ], [ -47.194982681564646, -22.075706575917717 ], [ -47.194895182901334, -22.07568863427548 ], [ -47.194807684255956, -22.07567069258452 ], [ -47.194720185628469, -22.07565275084486 ], [ -47.194632687018924, -22.075634809056453 ], [ -47.194545188427263, -22.07561686721936 ], [ -47.19445768985355, -22.07559892533353 ], [ -47.19437019129775, -22.075580983398993 ], [ -47.194282692759849, -22.07556304141572 ], [ -47.194195194239882, -22.075545099383756 ], [ -47.194107695737827, -22.075527157303064 ], [ -47.1940201972537, -22.075509215173664 ], [ -47.193932698787485, -22.075491272995542 ], [ -47.193845200339133, -22.075473330768673 ], [ -47.193757701908794, -22.075455388493133 ], [ -47.193670203496332, -22.075437446168859 ], [ -47.19358270510179, -22.075419503795889 ], [ -47.193495206725167, -22.075401561374157 ], [ -47.193407708366465, -22.075383618903743 ], [ -47.193399699458006, -22.075381976589156 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.09235915299996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199314711903661, -22.076608662158133 ], [ -47.199267016380425, -22.076598883590385 ], [ -47.199179516831386, -22.076580944334435 ], [ -47.199092017300238, -22.076563005029769 ], [ -47.199004517787003, -22.076545065676378 ], [ -47.198917018291688, -22.076527126274257 ], [ -47.198829518814271, -22.076509186823419 ], [ -47.198742019354775, -22.076491247323862 ], [ -47.19865451991317, -22.076473307775576 ], [ -47.198567020489463, -22.076455368178564 ], [ -47.198479521083677, -22.076437428532831 ], [ -47.19839202169581, -22.076419488838376 ], [ -47.198304522325834, -22.076401549095202 ], [ -47.198217022973779, -22.076383609303317 ], [ -47.198129523639622, -22.076365669462696 ], [ -47.198042024323378, -22.076347729573353 ], [ -47.19795452502504, -22.076329789635288 ], [ -47.197867025744621, -22.076311849648501 ], [ -47.197779526482108, -22.076293909612993 ], [ -47.197692027237508, -22.076275969528758 ], [ -47.1976045280108, -22.076258029395813 ], [ -47.197517028802025, -22.076240089214153 ], [ -47.197429529611142, -22.07622214898376 ], [ -47.197342030438193, -22.076204208704645 ], [ -47.197254531283136, -22.076186268376809 ], [ -47.197167032145984, -22.076168328000261 ], [ -47.197079533026766, -22.076150387574987 ], [ -47.196992033925433, -22.076132447100992 ], [ -47.196904534842034, -22.076114506578271 ], [ -47.196817035776533, -22.076096566006839 ], [ -47.196729536728945, -22.076078625386689 ], [ -47.196642037699284, -22.076060684717813 ], [ -47.196554538687515, -22.076042744000222 ], [ -47.196467039693665, -22.076024803233906 ], [ -47.196379540717736, -22.076006862418872 ], [ -47.196292041759719, -22.075988921555126 ], [ -47.196204542819615, -22.075970980642648 ], [ -47.196117043897409, -22.075953039681451 ], [ -47.196029544993124, -22.075935098671554 ], [ -47.195942046106758, -22.075917157612924 ], [ -47.195854547238305, -22.075899216505572 ], [ -47.195767048387772, -22.075881275349502 ], [ -47.195679549555145, -22.075863334144714 ], [ -47.195592050740451, -22.075845392891207 ], [ -47.195504551943642, -22.075827451588982 ], [ -47.195417053164761, -22.075809510238042 ], [ -47.195329554403799, -22.07579156883838 ], [ -47.195242055660742, -22.07577362739001 ], [ -47.195154556935606, -22.075755685892911 ], [ -47.195067058228403, -22.075737744347094 ], [ -47.194979559539092, -22.075719802752563 ], [ -47.194892060867701, -22.075701861109319 ], [ -47.194804562214237, -22.075683919417351 ], [ -47.194717063578672, -22.075665977676667 ], [ -47.194629564961055, -22.075648035887266 ], [ -47.194542066361329, -22.075630094049163 ], [ -47.194454567779523, -22.075612152162332 ], [ -47.194367069215645, -22.075594210226779 ], [ -47.194279570669693, -22.075576268242507 ], [ -47.194192072141632, -22.075558326209524 ], [ -47.194104573631499, -22.075540384127819 ], [ -47.194017075139293, -22.0755224419974 ], [ -47.193929576664999, -22.075504499818273 ], [ -47.193842078208583, -22.07548655759042 ], [ -47.193754579770165, -22.075468615313856 ], [ -47.193667081349631, -22.075450672988566 ], [ -47.193579582947017, -22.075432730614569 ], [ -47.193492084562308, -22.075414788191861 ], [ -47.193404586195541, -22.075396845720441 ], [ -47.193381938140355, -22.075392201487123 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.10534784399999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199297073811572, -22.076618912869179 ], [ -47.199263894750167, -22.076612110474638 ], [ -47.199176395193042, -22.076594171217678 ], [ -47.199088895653823, -22.076576231912004 ], [ -47.199001396132509, -22.076558292557603 ], [ -47.198913896629122, -22.076540353154481 ], [ -47.19882639714362, -22.07652241370263 ], [ -47.198738897676044, -22.076504474202071 ], [ -47.19865139822636, -22.076486534652773 ], [ -47.198563898794582, -22.076468595054756 ], [ -47.198476399380716, -22.07645065540801 ], [ -47.198388899984771, -22.076432715712546 ], [ -47.198301400606724, -22.076414775968363 ], [ -47.198213901246582, -22.076396836175469 ], [ -47.198126401904354, -22.076378896333825 ], [ -47.198038902580031, -22.076360956443494 ], [ -47.197951403273613, -22.076343016504413 ], [ -47.197863903985123, -22.076325076516607 ], [ -47.197776404714531, -22.076307136480107 ], [ -47.197688905461845, -22.076289196394871 ], [ -47.197601406227065, -22.076271256260906 ], [ -47.197513907010219, -22.076253316078237 ], [ -47.197426407811257, -22.076235375846839 ], [ -47.197338908630236, -22.076217435566715 ], [ -47.197251409467093, -22.076199495237873 ], [ -47.197163910321876, -22.07618155486032 ], [ -47.19707641119458, -22.076163614434034 ], [ -47.196988912085168, -22.076145673959029 ], [ -47.196901412993682, -22.076127733435307 ], [ -47.19681391392011, -22.076109792862855 ], [ -47.19672641486445, -22.076091852241706 ], [ -47.196638915826703, -22.076073911571818 ], [ -47.196551416806862, -22.076055970853218 ], [ -47.196463917804934, -22.076038030085876 ], [ -47.196376418820925, -22.07602008926985 ], [ -47.196288919854837, -22.076002148405095 ], [ -47.196201420906647, -22.075984207491594 ], [ -47.196113921976377, -22.075966266529406 ], [ -47.196026423064012, -22.075948325518496 ], [ -47.195938924169575, -22.075930384458857 ], [ -47.195851425293036, -22.075912443350486 ], [ -47.195763926434431, -22.075894502193421 ], [ -47.195676427593725, -22.075876560987624 ], [ -47.195588928770945, -22.075858619733108 ], [ -47.195501429966072, -22.075840678429874 ], [ -47.195413931179104, -22.075822737077917 ], [ -47.19532643241007, -22.07580479567725 ], [ -47.195238933658949, -22.075786854227871 ], [ -47.195151434925734, -22.075768912729764 ], [ -47.195063936210452, -22.075750971182941 ], [ -47.194976437513063, -22.075733029587393 ], [ -47.1948889388336, -22.075715087943145 ], [ -47.194801440172057, -22.075697146250167 ], [ -47.194713941528413, -22.075679204508475 ], [ -47.194626442902717, -22.075661262718064 ], [ -47.194538944294926, -22.07564332087895 ], [ -47.194451445705035, -22.075625378991091 ], [ -47.194363947133084, -22.075607437054547 ], [ -47.194276448579046, -22.075589495069266 ], [ -47.194188950042907, -22.075571553035257 ], [ -47.194101451524709, -22.075553610952561 ], [ -47.194013953024417, -22.075535668821132 ], [ -47.193926454542051, -22.075517726640996 ], [ -47.193838956077563, -22.075499784412131 ], [ -47.193751457631066, -22.075481842134543 ], [ -47.19366395920246, -22.075463899808263 ], [ -47.193576460791768, -22.075445957433249 ], [ -47.193488962398987, -22.075428015009535 ], [ -47.193401464024141, -22.075410072537103 ], [ -47.193364176820026, -22.07540242638337 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.11833653799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199279435716861, -22.076629163578495 ], [ -47.199260773119441, -22.076625337358841 ], [ -47.19917327355423, -22.076607398100876 ], [ -47.199085774006932, -22.076589458794203 ], [ -47.198998274477546, -22.07657151943879 ], [ -47.19891077496608, -22.076553580034659 ], [ -47.198823275472499, -22.076535640581806 ], [ -47.198735775996845, -22.076517701080231 ], [ -47.198648276539089, -22.076499761529924 ], [ -47.198560777099232, -22.076481821930894 ], [ -47.198473277677294, -22.07646388228315 ], [ -47.19838577827327, -22.076445942586687 ], [ -47.198298278887144, -22.076428002841496 ], [ -47.198210779518924, -22.076410063047579 ], [ -47.198123280168616, -22.076392123204943 ], [ -47.198035780836221, -22.076374183313586 ], [ -47.197948281521739, -22.07635624337351 ], [ -47.197860782225149, -22.076338303384709 ], [ -47.197773282946486, -22.076320363347179 ], [ -47.197685783685721, -22.076302423260934 ], [ -47.197598284442869, -22.076284483125978 ], [ -47.197510785217936, -22.076266542942285 ], [ -47.19742328601091, -22.076248602709882 ], [ -47.197335786821789, -22.076230662428753 ], [ -47.197248287650588, -22.076212722098902 ], [ -47.197160788497278, -22.076194781720336 ], [ -47.197073289361896, -22.076176841293041 ], [ -47.196985790244419, -22.076158900817028 ], [ -47.196898291144869, -22.076140960292292 ], [ -47.196810792063218, -22.076123019718842 ], [ -47.196723292999479, -22.076105079096671 ], [ -47.196635793953661, -22.07608713842578 ], [ -47.196548294925734, -22.076069197706168 ], [ -47.196460795915741, -22.076051256937834 ], [ -47.196373296923653, -22.076033316120778 ], [ -47.196285797949471, -22.076015375255015 ], [ -47.19619829899321, -22.075997434340522 ], [ -47.196110800054868, -22.075979493377307 ], [ -47.196023301134424, -22.075961552365388 ], [ -47.195935802231901, -22.075943611304744 ], [ -47.195848303347304, -22.075925670195378 ], [ -47.195760804480607, -22.07590772903729 ], [ -47.195673305631836, -22.075889787830487 ], [ -47.195585806800977, -22.075871846574962 ], [ -47.195498307988025, -22.075853905270719 ], [ -47.195410809192992, -22.075835963917768 ], [ -47.195323310415866, -22.075818022516088 ], [ -47.195235811656673, -22.075800081065694 ], [ -47.195148312915386, -22.075782139566577 ], [ -47.195060814192018, -22.075764198018742 ], [ -47.194973315486557, -22.075746256422189 ], [ -47.194885816799022, -22.075728314776921 ], [ -47.194798318129394, -22.075710373082952 ], [ -47.194710819477692, -22.07569243134024 ], [ -47.19462332084391, -22.075674489548827 ], [ -47.194535822228033, -22.075656547708689 ], [ -47.194448323630077, -22.075638605819847 ], [ -47.19436082505004, -22.075620663882273 ], [ -47.194273326487938, -22.075602721895983 ], [ -47.19418582794372, -22.075584779860986 ], [ -47.194098329417436, -22.075566837777263 ], [ -47.194010830909086, -22.075548895644822 ], [ -47.193923332418642, -22.075530953463669 ], [ -47.193835833946068, -22.075513011233792 ], [ -47.193748335491506, -22.075495068955213 ], [ -47.193660837054814, -22.075477126627916 ], [ -47.193573338636043, -22.075459184251898 ], [ -47.193485840235191, -22.075441241827161 ], [ -47.193398341852266, -22.075423299353719 ], [ -47.193346415497032, -22.075412651277883 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.13132522900003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19926179761945, -22.07663941428612 ], [ -47.199257651488232, -22.07663856424303 ], [ -47.199170151914949, -22.076620624984056 ], [ -47.199082652359571, -22.076602685676374 ], [ -47.198995152822114, -22.076584746319956 ], [ -47.19890765330257, -22.076566806914812 ], [ -47.198820153800909, -22.076548867460961 ], [ -47.198732654317176, -22.076530927958352 ], [ -47.198645154851341, -22.07651298840705 ], [ -47.198557655403405, -22.076495048807018 ], [ -47.198470155973396, -22.076477109158269 ], [ -47.198382656561293, -22.076459169460797 ], [ -47.198295157167088, -22.076441229714575 ], [ -47.198207657790789, -22.076423289919671 ], [ -47.198120158432403, -22.076405350076023 ], [ -47.198032659091929, -22.076387410183656 ], [ -47.197945159769375, -22.076369470242575 ], [ -47.197857660464706, -22.076351530252765 ], [ -47.197770161177964, -22.076333590214215 ], [ -47.19768266190912, -22.076315650126975 ], [ -47.197595162658196, -22.07629770999101 ], [ -47.197507663425185, -22.076279769806316 ], [ -47.197420164210079, -22.076261829572893 ], [ -47.19733266501288, -22.076243889290758 ], [ -47.1972451658336, -22.076225948959898 ], [ -47.197157666672226, -22.076208008580323 ], [ -47.197070167528764, -22.076190068152009 ], [ -47.196982668403216, -22.076172127675004 ], [ -47.19689516929558, -22.076154187149264 ], [ -47.19680767020585, -22.076136246574798 ], [ -47.196720171134039, -22.076118305951624 ], [ -47.196632672080142, -22.076100365279718 ], [ -47.196545173044136, -22.076082424559097 ], [ -47.196457674026064, -22.076064483789754 ], [ -47.196370175025898, -22.076046542971692 ], [ -47.196282676043651, -22.076028602104923 ], [ -47.196195177079304, -22.076010661189404 ], [ -47.19610767813289, -22.075992720225198 ], [ -47.196020179204375, -22.075974779212267 ], [ -47.195932680293772, -22.075956838150617 ], [ -47.195845181401097, -22.075938897040224 ], [ -47.19575768252632, -22.075920955881145 ], [ -47.195670183669471, -22.075903014673315 ], [ -47.195582684830541, -22.075885073416796 ], [ -47.195495186009516, -22.075867132111547 ], [ -47.195407687206398, -22.075849190757587 ], [ -47.195320188421192, -22.075831249354895 ], [ -47.195232689653928, -22.07581330790347 ], [ -47.195145190904569, -22.075795366403369 ], [ -47.195057692173123, -22.075777424854522 ], [ -47.194970193459582, -22.075759483256959 ], [ -47.194882694763976, -22.075741541610682 ], [ -47.194795196086275, -22.075723599915705 ], [ -47.194707697426495, -22.075705658171962 ], [ -47.194620198784634, -22.075687716379559 ], [ -47.194532700160678, -22.075669774538415 ], [ -47.19444520155465, -22.075651832648557 ], [ -47.194357702966535, -22.075633890709963 ], [ -47.194270204396354, -22.075615948722678 ], [ -47.194182705844064, -22.075598006686665 ], [ -47.194095207309708, -22.075580064601944 ], [ -47.194007708793272, -22.075562122468494 ], [ -47.193920210294756, -22.075544180286311 ], [ -47.193832711814103, -22.075526238055442 ], [ -47.193745213351463, -22.075508295775837 ], [ -47.193657714906699, -22.075490353447542 ], [ -47.193570216479849, -22.0754724110705 ], [ -47.193482718070932, -22.075454468644772 ], [ -47.193395219679928, -22.075436526170321 ], [ -47.193328654171346, -22.075422876170663 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.14431391999995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199244159519402, -22.076649664992036 ], [ -47.199167030275191, -22.076633851867197 ], [ -47.199079530711757, -22.076615912558491 ], [ -47.198992031166213, -22.076597973201064 ], [ -47.198904531638561, -22.076580033794919 ], [ -47.198817032128844, -22.076562094340048 ], [ -47.198729532637039, -22.076544154836469 ], [ -47.198642033163118, -22.07652621528414 ], [ -47.198554533707124, -22.076508275683103 ], [ -47.198467034269015, -22.076490336033338 ], [ -47.198379534848833, -22.07647239633485 ], [ -47.198292035446556, -22.076454456587641 ], [ -47.198204536062178, -22.076436516791716 ], [ -47.198117036695727, -22.076418576947059 ], [ -47.198029537347175, -22.076400637053684 ], [ -47.197942038016528, -22.07638269711159 ], [ -47.197854538703794, -22.076364757120771 ], [ -47.197767039408987, -22.076346817081244 ], [ -47.197679540132057, -22.076328876992974 ], [ -47.197592040873062, -22.076310936855986 ], [ -47.197504541631965, -22.076292996670286 ], [ -47.197417042408787, -22.076275056435865 ], [ -47.197329543203509, -22.076257116152718 ], [ -47.19724204401615, -22.076239175820849 ], [ -47.197154544846704, -22.076221235440261 ], [ -47.197067045695157, -22.076203295010966 ], [ -47.196979546561536, -22.076185354532932 ], [ -47.196892047445814, -22.076167414006189 ], [ -47.196804548348027, -22.076149473430714 ], [ -47.196717049268123, -22.076131532806521 ], [ -47.19662955020614, -22.076113592133613 ], [ -47.196542051162062, -22.076095651411986 ], [ -47.196454552135918, -22.076077710641645 ], [ -47.19636705312768, -22.076059769822571 ], [ -47.196279554137348, -22.076041828954782 ], [ -47.196192055164936, -22.076023888038268 ], [ -47.196104556210436, -22.076005947073028 ], [ -47.196017057273842, -22.075988006059088 ], [ -47.195929558355175, -22.075970064996429 ], [ -47.195842059454414, -22.075952123885052 ], [ -47.195754560571572, -22.07593418272495 ], [ -47.195667061706651, -22.075916241516126 ], [ -47.195579562859628, -22.07589830025859 ], [ -47.195492064030525, -22.075880358952329 ], [ -47.195404565219334, -22.075862417597353 ], [ -47.195317066426064, -22.075844476193655 ], [ -47.195229567650721, -22.075826534741239 ], [ -47.195142068893269, -22.075808593240101 ], [ -47.195054570153751, -22.075790651690255 ], [ -47.194967071432139, -22.075772710091684 ], [ -47.194879572728453, -22.075754768444398 ], [ -47.194792074042681, -22.075736826748408 ], [ -47.194704575374821, -22.075718885003688 ], [ -47.194617076724889, -22.075700943210247 ], [ -47.194529578092862, -22.075683001368088 ], [ -47.194442079478755, -22.075665059477217 ], [ -47.19435458088256, -22.075647117537631 ], [ -47.194267082304286, -22.075629175549324 ], [ -47.194179583743932, -22.075611233512305 ], [ -47.194092085201504, -22.075593291426575 ], [ -47.194004586676989, -22.075575349292116 ], [ -47.193917088170394, -22.075557407108949 ], [ -47.193829589681677, -22.075539464877046 ], [ -47.19374209121095, -22.075521522596443 ], [ -47.193654592758108, -22.075503580267121 ], [ -47.193567094323186, -22.075485637889091 ], [ -47.193479595906197, -22.07546769546234 ], [ -47.193392097507108, -22.07544975298687 ], [ -47.19331089284303, -22.075433101061694 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.15730261099998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199226521416684, -22.076659915696251 ], [ -47.199163908634965, -22.076647078750312 ], [ -47.199076409063451, -22.076629139440584 ], [ -47.198988909509843, -22.076611200082166 ], [ -47.198901409974113, -22.076593260675018 ], [ -47.198813910456316, -22.076575321219117 ], [ -47.198726410956425, -22.076557381714547 ], [ -47.198638911474426, -22.076539442161199 ], [ -47.198551412010353, -22.07652150255916 ], [ -47.198463912564172, -22.076503562908368 ], [ -47.198376413135911, -22.076485623208892 ], [ -47.198288913725555, -22.076467683460681 ], [ -47.198201414333106, -22.076449743663744 ], [ -47.198113914958569, -22.076431803818082 ], [ -47.198026415601952, -22.076413863923694 ], [ -47.197938916263226, -22.076395923980595 ], [ -47.197851416942413, -22.076377983988767 ], [ -47.19776391763952, -22.076360043948231 ], [ -47.197676418354511, -22.076342103858952 ], [ -47.197588919087444, -22.076324163720944 ], [ -47.197501419838268, -22.076306223534246 ], [ -47.197413920607019, -22.076288283298819 ], [ -47.197326421393662, -22.076270343014663 ], [ -47.197238922198224, -22.076252402681789 ], [ -47.197151423020706, -22.076234462300189 ], [ -47.197063923861087, -22.076216521869885 ], [ -47.196976424719381, -22.076198581390823 ], [ -47.196888925595587, -22.076180640863086 ], [ -47.196801426489721, -22.076162700286613 ], [ -47.196713927401738, -22.076144759661414 ], [ -47.196626428331683, -22.076126818987486 ], [ -47.196538929279527, -22.076108878264851 ], [ -47.196451430245304, -22.0760909374935 ], [ -47.196363931228987, -22.0760729966734 ], [ -47.196276432230576, -22.076055055804623 ], [ -47.196188933250092, -22.076037114887086 ], [ -47.196101434287513, -22.076019173920855 ], [ -47.196013935342854, -22.076001232905906 ], [ -47.195926436416102, -22.075983291842238 ], [ -47.195838937507268, -22.075965350729849 ], [ -47.195751438616348, -22.075947409568741 ], [ -47.195663939743341, -22.075929468358908 ], [ -47.195576440888253, -22.075911527100359 ], [ -47.195488942051064, -22.075893585793093 ], [ -47.195401443231802, -22.075875644437104 ], [ -47.195313944430453, -22.07585770303238 ], [ -47.195226445647023, -22.075839761578976 ], [ -47.195138946881507, -22.075821820076829 ], [ -47.195051448133917, -22.075803878525964 ], [ -47.194963949404226, -22.075785936926394 ], [ -47.194876450692455, -22.075767995278095 ], [ -47.194788951998611, -22.075750053581096 ], [ -47.194701453322672, -22.07573211183535 ], [ -47.194613954664661, -22.075714170040918 ], [ -47.194526456024555, -22.075696228197749 ], [ -47.194438957402369, -22.075678286305852 ], [ -47.19435145879811, -22.075660344365268 ], [ -47.194263960211757, -22.075642402375955 ], [ -47.194176461643337, -22.075624460337931 ], [ -47.194088963092824, -22.075606518251185 ], [ -47.194001464560237, -22.07558857611572 ], [ -47.193913966045564, -22.075570633931534 ], [ -47.19382646754876, -22.075552691698618 ], [ -47.193738969069969, -22.075534749417013 ], [ -47.193651470609048, -22.075516807086672 ], [ -47.193563972166054, -22.075498864707651 ], [ -47.193476473740994, -22.075480922279887 ], [ -47.193388975333818, -22.075462979803394 ], [ -47.193301476944598, -22.075445037278214 ], [ -47.193293131512, -22.07544332595101 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.17029130399999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199208883311329, -22.076670166398742 ], [ -47.19916078699427, -22.076660305633375 ], [ -47.199073287414663, -22.076642366322663 ], [ -47.198985787852969, -22.076624426963228 ], [ -47.198898288309181, -22.076606487555058 ], [ -47.198810788783312, -22.076588548098172 ], [ -47.198723289275328, -22.076570608592554 ], [ -47.198635789785278, -22.076552669038225 ], [ -47.198548290313106, -22.076534729435178 ], [ -47.198460790858846, -22.076516789783394 ], [ -47.198373291422527, -22.076498850082888 ], [ -47.198285792004086, -22.076480910333661 ], [ -47.198198292603557, -22.076462970535726 ], [ -47.198110793220955, -22.076445030689051 ], [ -47.198023293856252, -22.076427090793661 ], [ -47.197935794509441, -22.07640915084955 ], [ -47.197848295180549, -22.076391210856716 ], [ -47.197760795869577, -22.076373270815171 ], [ -47.197673296576511, -22.076355330724894 ], [ -47.197585797301358, -22.076337390585895 ], [ -47.197498298044103, -22.07631945039817 ], [ -47.197410798804775, -22.076301510161727 ], [ -47.197323299583346, -22.076283569876558 ], [ -47.197235800379829, -22.076265629542668 ], [ -47.197148301194218, -22.07624768916007 ], [ -47.197060802026527, -22.076229748728743 ], [ -47.196973302876749, -22.076211808248711 ], [ -47.196885803744877, -22.07619386771994 ], [ -47.196798304630931, -22.076175927142451 ], [ -47.196710805534885, -22.076157986516247 ], [ -47.196623306456743, -22.076140045841328 ], [ -47.196535807396522, -22.07612210511768 ], [ -47.196448308354221, -22.076104164345303 ], [ -47.196360809329825, -22.076086223524225 ], [ -47.196273310323342, -22.076068282654415 ], [ -47.196185811334779, -22.076050341735886 ], [ -47.196098312364121, -22.07603240076865 ], [ -47.196010813411377, -22.076014459752681 ], [ -47.195923314476566, -22.075996518687997 ], [ -47.195835815559633, -22.075978577574592 ], [ -47.195748316660641, -22.075960636412468 ], [ -47.195660817779554, -22.075942695201626 ], [ -47.195573318916402, -22.075924753942083 ], [ -47.195485820071148, -22.075906812633804 ], [ -47.195398321243793, -22.075888871276799 ], [ -47.195310822434372, -22.075870929871083 ], [ -47.195223323642864, -22.075852988416653 ], [ -47.195135824869269, -22.075835046913504 ], [ -47.1950483261136, -22.075817105361633 ], [ -47.194960827375837, -22.075799163761051 ], [ -47.194873328655994, -22.075781222111754 ], [ -47.194785829954071, -22.075763280413739 ], [ -47.194698331270054, -22.075745338666998 ], [ -47.194610832603978, -22.075727396871539 ], [ -47.194523333955793, -22.075709455027365 ], [ -47.194435835325535, -22.075691513134458 ], [ -47.19434833671319, -22.075673571192866 ], [ -47.194260838118765, -22.075655629202537 ], [ -47.19417333954226, -22.075637687163496 ], [ -47.194085840983675, -22.075619745075755 ], [ -47.193998342443003, -22.075601802939275 ], [ -47.193910843920264, -22.075583860754087 ], [ -47.193823345415382, -22.075565918520169 ], [ -47.193735846928519, -22.075547976237541 ], [ -47.193648348459533, -22.075530033906194 ], [ -47.193560850008446, -22.075512091526154 ], [ -47.1934733515753, -22.075494149097388 ], [ -47.193385853160059, -22.0754762066199 ], [ -47.193298354762753, -22.075458264093694 ], [ -47.193275370178327, -22.075453550838581 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.18327999600001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199191245203295, -22.076680417099531 ], [ -47.199157665353098, -22.07667353251643 ], [ -47.199070165765427, -22.076655593204709 ], [ -47.198982666195654, -22.076637653844269 ], [ -47.198895166643787, -22.076619714435093 ], [ -47.19880766710984, -22.076601774977192 ], [ -47.198720167593777, -22.076583835470558 ], [ -47.198632668095648, -22.076565895915227 ], [ -47.198545168615397, -22.076547956311174 ], [ -47.198457669153058, -22.076530016658364 ], [ -47.198370169708667, -22.07651207695687 ], [ -47.198282670282147, -22.076494137206634 ], [ -47.198195170873539, -22.076476197407686 ], [ -47.198107671482859, -22.076458257560009 ], [ -47.198020172110077, -22.076440317663611 ], [ -47.197932672755194, -22.076422377718487 ], [ -47.197845173418223, -22.076404437724644 ], [ -47.197757674099172, -22.076386497682101 ], [ -47.197670174798027, -22.076368557590794 ], [ -47.197582675514795, -22.0763506174508 ], [ -47.197495176249461, -22.076332677262052 ], [ -47.197407677002062, -22.076314737024617 ], [ -47.197320177772554, -22.076296796738443 ], [ -47.197232678560958, -22.076278856403544 ], [ -47.197145179367268, -22.076260916019933 ], [ -47.197057680191513, -22.076242975587601 ], [ -47.196970181033656, -22.076225035106557 ], [ -47.196882681893705, -22.07620709457678 ], [ -47.19679518277168, -22.076189153998286 ], [ -47.196707683667555, -22.076171213371065 ], [ -47.196620184581342, -22.076153272695141 ], [ -47.196532685513041, -22.07613533197047 ], [ -47.196445186462661, -22.076117391197098 ], [ -47.196357687430194, -22.076099450375015 ], [ -47.196270188415632, -22.076081509504196 ], [ -47.196182689418997, -22.07606356858464 ], [ -47.196095190440261, -22.076045627616409 ], [ -47.196007691479437, -22.076027686599435 ], [ -47.195920192536548, -22.076009745533742 ], [ -47.195832693611543, -22.075991804419324 ], [ -47.195745194704472, -22.075973863256191 ], [ -47.195657695815306, -22.075955922044344 ], [ -47.195570196944082, -22.075937980783792 ], [ -47.195482698090743, -22.075920039474486 ], [ -47.195395199255323, -22.075902098116487 ], [ -47.195307700437816, -22.075884156709762 ], [ -47.195220201638229, -22.075866215254322 ], [ -47.195132702856569, -22.075848273750164 ], [ -47.195045204092821, -22.075830332197288 ], [ -47.19495770534698, -22.07581239059569 ], [ -47.194870206619058, -22.075794448945388 ], [ -47.194782707909063, -22.075776507246363 ], [ -47.194695209216967, -22.07575856549861 ], [ -47.194607710542812, -22.075740623702146 ], [ -47.194520211886548, -22.075722681856959 ], [ -47.194432713248212, -22.075704739963033 ], [ -47.194345214627802, -22.075686798020442 ], [ -47.194257716025305, -22.075668856029104 ], [ -47.194170217440714, -22.075650913989055 ], [ -47.194082718874057, -22.075632971900305 ], [ -47.193995220325313, -22.075615029762815 ], [ -47.193907721794488, -22.075597087576615 ], [ -47.193820223281527, -22.075579145341688 ], [ -47.193732724786592, -22.07556120305804 ], [ -47.193645226309528, -22.075543260725695 ], [ -47.193557727850376, -22.075525318344642 ], [ -47.193470229409144, -22.075507375914849 ], [ -47.193382730985832, -22.075489433436374 ], [ -47.193295232580446, -22.075471490909155 ], [ -47.193257608841954, -22.075463775724426 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.19626868600005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199173607092597, -22.076690667798633 ], [ -47.199154543711465, -22.076686759399454 ], [ -47.199067044115708, -22.076668820086716 ], [ -47.198979544537863, -22.076650880725257 ], [ -47.198892044977917, -22.076632941315072 ], [ -47.198804545435877, -22.076615001856162 ], [ -47.198717045911749, -22.076597062348537 ], [ -47.198629546405535, -22.076579122792186 ], [ -47.198542046917225, -22.07656118318712 ], [ -47.198454547446822, -22.07654324353333 ], [ -47.198367047994317, -22.076525303830813 ], [ -47.198279548559725, -22.076507364079571 ], [ -47.19819204914306, -22.076489424279604 ], [ -47.198104549744286, -22.076471484430922 ], [ -47.198017050363426, -22.076453544533511 ], [ -47.197929551000485, -22.076435604587385 ], [ -47.197842051655428, -22.07641766459253 ], [ -47.197754552328298, -22.076399724548978 ], [ -47.197667053019089, -22.076381784456679 ], [ -47.19757955372777, -22.076363844315658 ], [ -47.197492054454379, -22.076345904125919 ], [ -47.197404555198872, -22.076327963887461 ], [ -47.197317055961292, -22.076310023600278 ], [ -47.197229556741632, -22.076292083264374 ], [ -47.197142057539864, -22.07627414287975 ], [ -47.197054558356022, -22.076256202446402 ], [ -47.196967059190087, -22.076238261964342 ], [ -47.196879560042071, -22.076220321433574 ], [ -47.196792060911953, -22.076202380854067 ], [ -47.196704561799756, -22.076184440225841 ], [ -47.196617062705471, -22.076166499548897 ], [ -47.196529563629092, -22.076148558823228 ], [ -47.196442064570633, -22.076130618048847 ], [ -47.196354565530093, -22.076112677225741 ], [ -47.196267066507453, -22.07609473635392 ], [ -47.196179567502718, -22.07607679543338 ], [ -47.196092068515917, -22.076058854464122 ], [ -47.196004569547028, -22.076040913446139 ], [ -47.195917070596053, -22.076022972379437 ], [ -47.195829571662983, -22.07600503126401 ], [ -47.195742072747834, -22.075987090099868 ], [ -47.195654573850589, -22.075969148887008 ], [ -47.195567074971265, -22.075951207625433 ], [ -47.195479576109861, -22.075933266315136 ], [ -47.195392077266384, -22.075915324956128 ], [ -47.195304578440798, -22.075897383548401 ], [ -47.195217079633132, -22.075879442091953 ], [ -47.195129580843385, -22.075861500586779 ], [ -47.195042082071559, -22.07584355903289 ], [ -47.194954583317646, -22.075825617430283 ], [ -47.194867084581652, -22.075807675778972 ], [ -47.194779585863571, -22.075789734078935 ], [ -47.194692087163403, -22.075771792330183 ], [ -47.194604588481177, -22.075753850532703 ], [ -47.194517089816827, -22.0757359086865 ], [ -47.194429591170426, -22.075717966791601 ], [ -47.19434209254193, -22.075700024847972 ], [ -47.194254593931369, -22.075682082855625 ], [ -47.194167095338699, -22.075664140814563 ], [ -47.194079596763963, -22.075646198724797 ], [ -47.193992098207147, -22.075628256586302 ], [ -47.193904599668244, -22.075610314399096 ], [ -47.193817101147218, -22.075592372163154 ], [ -47.193729602644204, -22.075574429878518 ], [ -47.193642104159061, -22.07555648754516 ], [ -47.19355460569183, -22.075538545163077 ], [ -47.19346710724254, -22.075520602732297 ], [ -47.193379608811128, -22.075502660252791 ], [ -47.193292110397671, -22.075484717724574 ], [ -47.19323984750293, -22.075474000608533 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.20925738000005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199155968979269, -22.076700918496002 ], [ -47.199151422069349, -22.076699986282428 ], [ -47.199063922465527, -22.076682046968699 ], [ -47.198976422879589, -22.076664107606213 ], [ -47.198888923311586, -22.07664616819504 ], [ -47.198801423761452, -22.0766282287351 ], [ -47.19871392422926, -22.07661028922649 ], [ -47.198626424714966, -22.076592349669127 ], [ -47.198538925218578, -22.076574410063056 ], [ -47.198451425740089, -22.076556470408253 ], [ -47.198363926279519, -22.076538530704735 ], [ -47.198276426836841, -22.076520590952484 ], [ -47.198188927412104, -22.076502651151511 ], [ -47.198101428005245, -22.076484711301813 ], [ -47.198013928616312, -22.076466771403396 ], [ -47.197926429245285, -22.076448831456258 ], [ -47.197838929892157, -22.076430891460397 ], [ -47.197751430556949, -22.076412951415833 ], [ -47.197663931239667, -22.076395011322532 ], [ -47.197576431940263, -22.076377071180506 ], [ -47.1974889326588, -22.076359130989736 ], [ -47.197401433395221, -22.076341190750288 ], [ -47.197313934149562, -22.076323250462096 ], [ -47.197226434921824, -22.076305310125182 ], [ -47.197138935711976, -22.07628736973955 ], [ -47.197051436520056, -22.076269429305199 ], [ -47.196963937346048, -22.076251488822127 ], [ -47.19687643818996, -22.076233548290347 ], [ -47.196788939051764, -22.076215607709837 ], [ -47.196701439931488, -22.076197667080603 ], [ -47.196613940829124, -22.076179726402643 ], [ -47.196526441744673, -22.076161785675971 ], [ -47.196438942678135, -22.076143844900574 ], [ -47.19635144362951, -22.076125904076463 ], [ -47.196263944598797, -22.076107963203629 ], [ -47.196176445585991, -22.076090022282084 ], [ -47.196088946591111, -22.076072081311821 ], [ -47.196001447614137, -22.076054140292833 ], [ -47.19591394865509, -22.076036199225115 ], [ -47.195826449713941, -22.076018258108686 ], [ -47.195738950790727, -22.076000316943535 ], [ -47.195651451885404, -22.075982375729662 ], [ -47.195563952998, -22.075964434467075 ], [ -47.195476454128517, -22.075946493155772 ], [ -47.195388955276961, -22.075928551795759 ], [ -47.195301456443303, -22.07591061038702 ], [ -47.195213957627558, -22.075892668929558 ], [ -47.195126458829733, -22.075874727423379 ], [ -47.195038960049835, -22.075856785868481 ], [ -47.194951461287843, -22.075838844264862 ], [ -47.194863962543778, -22.075820902612538 ], [ -47.194776463817618, -22.075802960911474 ], [ -47.194688965109371, -22.075785019161732 ], [ -47.194601466419073, -22.075767077363249 ], [ -47.194513967746644, -22.075749135516034 ], [ -47.194426469092171, -22.075731193620122 ], [ -47.194338970455597, -22.075713251675488 ], [ -47.194251471836957, -22.075695309682132 ], [ -47.194163973236215, -22.075677367640061 ], [ -47.1940764746534, -22.075659425549279 ], [ -47.193988976088505, -22.075641483409779 ], [ -47.19390147754153, -22.075623541221564 ], [ -47.193813979012425, -22.075605598984595 ], [ -47.193726480501333, -22.075587656698968 ], [ -47.193638982008117, -22.07556971436458 ], [ -47.193551483532815, -22.075551771981512 ], [ -47.193463985075439, -22.075533829549716 ], [ -47.193376486635962, -22.075515887069198 ], [ -47.19328898821442, -22.075497944539972 ], [ -47.193222086161214, -22.075484225490918 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.22224607199996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199138330863271, -22.076711169191658 ], [ -47.199060800814877, -22.076695273850625 ], [ -47.198973301220875, -22.076677334487158 ], [ -47.198885801644757, -22.076659395074959 ], [ -47.198798302086573, -22.076641455614038 ], [ -47.198710802546294, -22.076623516104394 ], [ -47.198623303023908, -22.076605576546022 ], [ -47.198535803519441, -22.076587636938932 ], [ -47.198448304032894, -22.076569697283126 ], [ -47.198360804564238, -22.076551757578592 ], [ -47.198273305113489, -22.076533817825332 ], [ -47.198185805680659, -22.076515878023354 ], [ -47.198098306265742, -22.076497938172661 ], [ -47.198010806868716, -22.076479998273236 ], [ -47.197923307489624, -22.076462058325085 ], [ -47.197835808128431, -22.076444118328215 ], [ -47.197748308785137, -22.076426178282624 ], [ -47.197660809459762, -22.076408238188314 ], [ -47.197573310152308, -22.07639029804529 ], [ -47.197485810862744, -22.076372357853536 ], [ -47.197398311591087, -22.076354417613064 ], [ -47.197310812337363, -22.076336477323867 ], [ -47.197223313101539, -22.076318536985955 ], [ -47.197135813883627, -22.076300596599314 ], [ -47.197048314683634, -22.076282656163944 ], [ -47.196960815501534, -22.076264715679862 ], [ -47.196873316337353, -22.076246775147062 ], [ -47.196785817191106, -22.076228834565544 ], [ -47.196698318062744, -22.076210893935311 ], [ -47.196610818952308, -22.076192953256349 ], [ -47.196523319859772, -22.076175012528665 ], [ -47.196435820785155, -22.07615707175227 ], [ -47.196348321728458, -22.076139130927146 ], [ -47.196260822689673, -22.0761211900533 ], [ -47.196173323668795, -22.076103249130746 ], [ -47.196085824665836, -22.07608530815947 ], [ -47.19599832568079, -22.076067367139469 ], [ -47.19591082671365, -22.076049426070753 ], [ -47.195823327764437, -22.076031484953312 ], [ -47.195735828833129, -22.076013543787148 ], [ -47.195648329919742, -22.075995602572267 ], [ -47.195560831024267, -22.07597766130867 ], [ -47.195473332146712, -22.075959719996352 ], [ -47.195385833287055, -22.07594177863534 ], [ -47.19529833444534, -22.075923837225584 ], [ -47.195210835621523, -22.075905895767114 ], [ -47.195123336815627, -22.07588795425993 ], [ -47.195035838027636, -22.075870012704023 ], [ -47.194948339257579, -22.075852071099398 ], [ -47.194860840505427, -22.075834129446054 ], [ -47.194773341771182, -22.075816187743996 ], [ -47.194685843054877, -22.075798245993226 ], [ -47.194598344356486, -22.075780304193739 ], [ -47.194510845676007, -22.075762362345532 ], [ -47.194423347013441, -22.075744420448601 ], [ -47.194335848368794, -22.075726478502954 ], [ -47.194248349742068, -22.075708536508589 ], [ -47.194160851133262, -22.075690594465506 ], [ -47.194073352542361, -22.075672652373715 ], [ -47.193985853969394, -22.075654710233206 ], [ -47.193898355414333, -22.075636768043985 ], [ -47.193810856877157, -22.075618825806014 ], [ -47.193723358357985, -22.075600883519357 ], [ -47.193635859856691, -22.075582941183985 ], [ -47.193548361373324, -22.075564998799898 ], [ -47.193460862907862, -22.075547056367085 ], [ -47.193373364460321, -22.075529113885562 ], [ -47.193285866030706, -22.07551117135532 ], [ -47.193204324816854, -22.075494450371554 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 627.16116784200005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.1991206927446, -22.076721419885629 ], [ -47.199057679163744, -22.076708500732543 ], [ -47.19897017956167, -22.076690561368071 ], [ -47.19888267997748, -22.076672621954863 ], [ -47.198795180411217, -22.076654682492933 ], [ -47.19870768086286, -22.076636742982281 ], [ -47.198620181332394, -22.076618803422903 ], [ -47.198532681819849, -22.076600863814807 ], [ -47.198445182325223, -22.076582924157993 ], [ -47.198357682848481, -22.076564984452428 ], [ -47.198270183389667, -22.076547044698184 ], [ -47.198182683948758, -22.07652910489518 ], [ -47.198095184525762, -22.076511165043492 ], [ -47.198007685120658, -22.076493225143057 ], [ -47.197920185733487, -22.076475285193901 ], [ -47.197832686364222, -22.076457345196022 ], [ -47.197745187012849, -22.076439405149419 ], [ -47.197657687679396, -22.076421465054096 ], [ -47.197570188363862, -22.076403524910067 ], [ -47.19748268906622, -22.076385584717293 ], [ -47.197395189786491, -22.07636764447583 ], [ -47.197307690524688, -22.07634970418562 ], [ -47.197220191280785, -22.076331763846703 ], [ -47.197132692054801, -22.076313823459035 ], [ -47.197045192846723, -22.076295883022674 ], [ -47.19695769365655, -22.076277942537583 ], [ -47.196870194484298, -22.076260002003774 ], [ -47.196782695329972, -22.076242061421254 ], [ -47.196695196193531, -22.076224120790009 ], [ -47.196607697075017, -22.07620618011002 ], [ -47.196520197974408, -22.076188239381345 ], [ -47.196432698891712, -22.076170298603934 ], [ -47.196345199826936, -22.076152357777804 ], [ -47.196257700780073, -22.076134416902935 ], [ -47.196170201751123, -22.076116475979394 ], [ -47.196082702740085, -22.076098535007102 ], [ -47.195995203746961, -22.076080593986095 ], [ -47.195907704771749, -22.07606265291637 ], [ -47.195820205814449, -22.076044711797906 ], [ -47.195732706875077, -22.076026770630751 ], [ -47.195645207953611, -22.076008829414857 ], [ -47.195557709050064, -22.075990888150251 ], [ -47.195470210164423, -22.075972946836927 ], [ -47.195382711296695, -22.075955005474899 ], [ -47.195295212446908, -22.075937064064142 ], [ -47.195207713615005, -22.075919122604663 ], [ -47.19512021480103, -22.075901181096462 ], [ -47.195032716004974, -22.075883239539547 ], [ -47.194945217226838, -22.075865297933909 ], [ -47.194857718466608, -22.075847356279564 ], [ -47.19477021972429, -22.0758294145765 ], [ -47.194682720999907, -22.075811472824707 ], [ -47.194595222293437, -22.075793531024221 ], [ -47.194507723604879, -22.075775589175002 ], [ -47.194420224934234, -22.075757647277062 ], [ -47.194332726281516, -22.075739705330388 ], [ -47.194245227646711, -22.075721763335032 ], [ -47.194157729029826, -22.07570382129094 ], [ -47.194070230430867, -22.07568587919814 ], [ -47.193982731849808, -22.075667937056604 ], [ -47.193895233286682, -22.075649994866389 ], [ -47.193807734741426, -22.075632052627387 ], [ -47.193720236214176, -22.075614110339743 ], [ -47.193632737704803, -22.075596168003361 ], [ -47.193545239213364, -22.075578225618262 ], [ -47.193457740739824, -22.075560283184441 ], [ -47.19337024228421, -22.075542340701908 ], [ -47.193282743846517, -22.075524398170639 ], [ -47.19319524542675, -22.075506455590691 ], [ -47.193187264195167, -22.075504818942669 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 626.41101899199998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199103054623301, -22.076731670577878 ], [ -47.199054557512135, -22.076721727614405 ], [ -47.198967057901974, -22.076703788248921 ], [ -47.19887955830972, -22.076685848834721 ], [ -47.198792058735371, -22.076667909371782 ], [ -47.198704559178935, -22.076649969860121 ], [ -47.198617059640412, -22.076632030299734 ], [ -47.198529560119781, -22.076614090690629 ], [ -47.198442060617076, -22.076596151032799 ], [ -47.19835456113227, -22.076578211326243 ], [ -47.198267061665369, -22.076560271570976 ], [ -47.198179562216389, -22.076542331766991 ], [ -47.198092062785314, -22.076524391914276 ], [ -47.198004563372137, -22.076506452012829 ], [ -47.197917063976888, -22.076488512062664 ], [ -47.19782956459953, -22.076470572063791 ], [ -47.197742065240092, -22.076452632016178 ], [ -47.197654565898553, -22.07643469191985 ], [ -47.19756706657494, -22.076416751774797 ], [ -47.197479567269234, -22.076398811581029 ], [ -47.197392067981426, -22.076380871338543 ], [ -47.197304568711552, -22.076362931047328 ], [ -47.197217069459562, -22.076344990707394 ], [ -47.197129570225506, -22.076327050318739 ], [ -47.197042071009356, -22.076309109881354 ], [ -47.196954571811098, -22.076291169395258 ], [ -47.196867072630774, -22.076273228860437 ], [ -47.196779573468362, -22.076255288276904 ], [ -47.196692074323849, -22.076237347644646 ], [ -47.196604575197249, -22.076219406963677 ], [ -47.196517076088568, -22.076201466233975 ], [ -47.196429576997808, -22.076183525455551 ], [ -47.196342077924946, -22.076165584628416 ], [ -47.196254578870011, -22.07614764375257 ], [ -47.196167079832982, -22.076129702827977 ], [ -47.196079580813866, -22.076111761854683 ], [ -47.195992081812662, -22.076093820832668 ], [ -47.195904582829378, -22.076075879761927 ], [ -47.195817083864, -22.076057938642471 ], [ -47.195729584916542, -22.076039997474297 ], [ -47.195642085987004, -22.076022056257408 ], [ -47.195554587075378, -22.076004114991793 ], [ -47.195467088181665, -22.07598617367746 ], [ -47.195379589305865, -22.075968232314409 ], [ -47.195292090447985, -22.075950290902639 ], [ -47.195204591608025, -22.075932349442159 ], [ -47.195117092785978, -22.075914407932952 ], [ -47.195029593981843, -22.075896466375024 ], [ -47.194942095195614, -22.075878524768385 ], [ -47.194854596427319, -22.07586058311302 ], [ -47.194767097676937, -22.075842641408943 ], [ -47.194679598944468, -22.07582469965616 ], [ -47.194592100229919, -22.07580675785464 ], [ -47.194504601533289, -22.075788816004412 ], [ -47.194417102854572, -22.075770874105469 ], [ -47.194329604193761, -22.075752932157808 ], [ -47.194242105550892, -22.075734990161425 ], [ -47.194154606925935, -22.075717048116331 ], [ -47.194067108318876, -22.075699106022522 ], [ -47.193979609729773, -22.075681163879981 ], [ -47.193892111158561, -22.075663221688739 ], [ -47.193804612605206, -22.07564527944875 ], [ -47.193717114069891, -22.075627337160093 ], [ -47.193629615552453, -22.075609394822685 ], [ -47.193542117052921, -22.075591452436566 ], [ -47.193454618571316, -22.075573510001743 ], [ -47.193367120107624, -22.075555567518194 ], [ -47.193279621661851, -22.075537624985948 ], [ -47.193192123234013, -22.07551968240497 ], [ -47.193176722665804, -22.075516524332038 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 625.66087014100003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199085416499308, -22.076741921268436 ], [ -47.199051435860063, -22.076734954496256 ], [ -47.198963936241825, -22.07671701512977 ], [ -47.198876436641498, -22.076699075714554 ], [ -47.198788937059064, -22.076681136250613 ], [ -47.198701437494549, -22.076663196737947 ], [ -47.198613937947954, -22.076645257176551 ], [ -47.198526438419243, -22.076627317566437 ], [ -47.198438938908467, -22.076609377907602 ], [ -47.198351439415582, -22.07659143820004 ], [ -47.19826393994061, -22.076573498443761 ], [ -47.198176440483543, -22.07655555863877 ], [ -47.198088941044396, -22.076537618785043 ], [ -47.198001441623141, -22.07651967888259 ], [ -47.197913942219813, -22.076501738931416 ], [ -47.197826442834376, -22.07648379893153 ], [ -47.197738943466859, -22.076465858882898 ], [ -47.197651444117248, -22.076447918785576 ], [ -47.19756394478555, -22.076429978639499 ], [ -47.197476445471771, -22.076412038444737 ], [ -47.197388946175892, -22.076394098201245 ], [ -47.197301446897939, -22.076376157909017 ], [ -47.19721394763787, -22.076358217568078 ], [ -47.197126448395728, -22.07634027717841 ], [ -47.197038949171507, -22.076322336740024 ], [ -47.196951449965177, -22.076304396252915 ], [ -47.196863950776773, -22.076286455717089 ], [ -47.19677645160629, -22.076268515132544 ], [ -47.196688952453698, -22.076250574499259 ], [ -47.196601453319026, -22.076232633817298 ], [ -47.196513954202267, -22.076214693086587 ], [ -47.196426455103428, -22.076196752307158 ], [ -47.196338956022487, -22.076178811479014 ], [ -47.196251456959473, -22.076160870602155 ], [ -47.196163957914365, -22.076142929676539 ], [ -47.196076458887177, -22.076124988702258 ], [ -47.195988959877894, -22.076107047679209 ], [ -47.195901460886532, -22.076089106607483 ], [ -47.195813961913082, -22.076071165487015 ], [ -47.195726462957545, -22.076053224317832 ], [ -47.195638964019935, -22.076035283099934 ], [ -47.19555146510023, -22.07601734183331 ], [ -47.195463966198439, -22.075999400517972 ], [ -47.19537646731456, -22.075981459153887 ], [ -47.195288968448608, -22.075963517741126 ], [ -47.195201469600569, -22.07594557627964 ], [ -47.195113970770443, -22.075927634769421 ], [ -47.195026471958229, -22.075909693210487 ], [ -47.194938973163929, -22.075891751602835 ], [ -47.194851474387555, -22.075873809946465 ], [ -47.194763975629101, -22.075855868241376 ], [ -47.19467647688856, -22.075837926487587 ], [ -47.194588978165925, -22.075819984685037 ], [ -47.194501479461223, -22.075802042833814 ], [ -47.194413980774428, -22.075784100933866 ], [ -47.194326482105545, -22.075766158985186 ], [ -47.194238983454589, -22.075748216987805 ], [ -47.19415148482156, -22.075730274941701 ], [ -47.194063986206437, -22.075712332846884 ], [ -47.193976487609241, -22.075694390703315 ], [ -47.193888989029958, -22.075676448511082 ], [ -47.193801490468523, -22.075658506270063 ], [ -47.193713991925136, -22.075640563980414 ], [ -47.193626493399613, -22.075622621641983 ], [ -47.193538994892009, -22.075604679254869 ], [ -47.193451496402325, -22.075586736819034 ], [ -47.193363997930575, -22.075568794334476 ], [ -47.193276499476724, -22.075550851801221 ], [ -47.193189001040807, -22.07553290921922 ], [ -47.193166181134742, -22.075528229720842 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 624.91072128999997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199067778372672, -22.076752171957278 ], [ -47.199048314207523, -22.076748181378083 ], [ -47.198960814581213, -22.076730242010566 ], [ -47.198873314972801, -22.076712302594338 ], [ -47.198785815382301, -22.076694363129388 ], [ -47.198698315809708, -22.076676423615719 ], [ -47.198610816255027, -22.076658484053322 ], [ -47.198523316718244, -22.076640544442196 ], [ -47.198435817199375, -22.076622604782358 ], [ -47.198348317698432, -22.076604665073788 ], [ -47.19826081821536, -22.07658672531651 ], [ -47.198173318750229, -22.076568785510496 ], [ -47.198085819302996, -22.076550845655753 ], [ -47.197998319873676, -22.076532905752305 ], [ -47.197910820462262, -22.076514965800115 ], [ -47.197823321068746, -22.076497025799217 ], [ -47.197735821693172, -22.076479085749593 ], [ -47.197648322335475, -22.076461145651255 ], [ -47.197560822995698, -22.076443205504187 ], [ -47.197473323673833, -22.076425265308398 ], [ -47.197385824369874, -22.07640732506389 ], [ -47.19729832508385, -22.076389384770664 ], [ -47.197210825815709, -22.076371444428709 ], [ -47.197123326565489, -22.076353504038039 ], [ -47.197035827333181, -22.076335563598651 ], [ -47.196948328118793, -22.076317623110537 ], [ -47.196860828922297, -22.076299682573698 ], [ -47.196773329743742, -22.07628174198814 ], [ -47.196685830583078, -22.076263801353853 ], [ -47.196598331440335, -22.076245860670873 ], [ -47.196510832315496, -22.076227919939157 ], [ -47.196423333208564, -22.076209979158723 ], [ -47.196335834119566, -22.076192038329562 ], [ -47.196248335048466, -22.076174097451684 ], [ -47.196160835995286, -22.076156156525087 ], [ -47.196073336960012, -22.076138215549761 ], [ -47.195985837942665, -22.076120274525739 ], [ -47.195898338943223, -22.076102333452987 ], [ -47.195810839961709, -22.076084392331513 ], [ -47.195723340998079, -22.076066451161314 ], [ -47.195635842052383, -22.0760485099424 ], [ -47.195548343124607, -22.076030568674771 ], [ -47.195460844214743, -22.07601262735842 ], [ -47.195373345322778, -22.075994685993351 ], [ -47.195285846448748, -22.075976744579577 ], [ -47.195198347592637, -22.075958803117068 ], [ -47.195110848754446, -22.075940861605844 ], [ -47.195023349934132, -22.075922920045901 ], [ -47.194935851131767, -22.07590497843724 ], [ -47.194848352347321, -22.075887036779861 ], [ -47.194760853580789, -22.075869095073759 ], [ -47.194673354832169, -22.075851153318954 ], [ -47.194585856101462, -22.075833211515423 ], [ -47.194498357388674, -22.075815269663178 ], [ -47.1944108586938, -22.075797327762217 ], [ -47.194323360016853, -22.075779385812531 ], [ -47.194235861357818, -22.075761443814137 ], [ -47.19414836271671, -22.075743501767018 ], [ -47.194060864093522, -22.075725559671184 ], [ -47.193973365488247, -22.075707617526636 ], [ -47.193885866900878, -22.075689675333365 ], [ -47.193798368331386, -22.075671733091362 ], [ -47.19371086977992, -22.075653790800668 ], [ -47.193623371246318, -22.075635848461271 ], [ -47.193535872730642, -22.075617906073138 ], [ -47.193448374232872, -22.075599963636279 ], [ -47.193360875753044, -22.075582021150719 ], [ -47.193273377291121, -22.075564078616441 ], [ -47.193185878847132, -22.075546136033442 ], [ -47.193155639601976, -22.075539935109095 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 624.16057243800003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199050140243365, -22.076762422644421 ], [ -47.199045192554514, -22.076761408259877 ], [ -47.198957692920118, -22.076743468891337 ], [ -47.198870193303634, -22.076725529474114 ], [ -47.198782693705056, -22.076707590008148 ], [ -47.198695194124383, -22.076689650493478 ], [ -47.198607694561623, -22.076671710930068 ], [ -47.198520195016762, -22.07665377131794 ], [ -47.198432695489821, -22.076635831657097 ], [ -47.198345195980792, -22.076617891947503 ], [ -47.198257696489655, -22.076599952189227 ], [ -47.198170197016438, -22.07658201238219 ], [ -47.198082697561141, -22.076564072526452 ], [ -47.197995198123735, -22.076546132621999 ], [ -47.197907698704242, -22.076528192668789 ], [ -47.197820199302654, -22.076510252666896 ], [ -47.197732699919001, -22.076492312616264 ], [ -47.197645200553225, -22.076474372516916 ], [ -47.197557701205369, -22.07645643236884 ], [ -47.197470201875426, -22.076438492172024 ], [ -47.197382702563395, -22.076420551926528 ], [ -47.197295203269292, -22.07640261163229 ], [ -47.197207703993072, -22.076384671289329 ], [ -47.197120204734773, -22.076366730897647 ], [ -47.197032705494394, -22.076348790457249 ], [ -47.19694520627192, -22.076330849968112 ], [ -47.196857707067352, -22.076312909430285 ], [ -47.196770207880725, -22.076294968843701 ], [ -47.196682708711975, -22.07627702820842 ], [ -47.19659520956116, -22.076259087524431 ], [ -47.196507710428243, -22.076241146791705 ], [ -47.196420211313246, -22.076223206010269 ], [ -47.196332712216162, -22.0762052651801 ], [ -47.19624521313699, -22.076187324301213 ], [ -47.196157714075724, -22.076169383373589 ], [ -47.196070215032385, -22.076151442397265 ], [ -47.195982716006952, -22.076133501372237 ], [ -47.195895216999439, -22.076115560298472 ], [ -47.195807718009839, -22.076097619175989 ], [ -47.195720219038144, -22.076079678004785 ], [ -47.195632720084362, -22.076061736784862 ], [ -47.195545221148514, -22.076043795516224 ], [ -47.195457722230572, -22.076025854198864 ], [ -47.195370223330535, -22.076007912832786 ], [ -47.195282724448433, -22.075989971418 ], [ -47.195195225584236, -22.075972029954485 ], [ -47.195107726737966, -22.075954088442252 ], [ -47.195020227909588, -22.075936146881304 ], [ -47.194932729099143, -22.075918205271631 ], [ -47.194845230306612, -22.075900263613239 ], [ -47.194757731532, -22.075882321906132 ], [ -47.194670232775309, -22.075864380150318 ], [ -47.19458273403653, -22.075846438345774 ], [ -47.194495235315664, -22.075828496492523 ], [ -47.19440773661271, -22.075810554590543 ], [ -47.194320237927691, -22.075792612639852 ], [ -47.194232739260578, -22.075774670640453 ], [ -47.194145240611391, -22.075756728592328 ], [ -47.194057741980131, -22.07573878649546 ], [ -47.193970243366778, -22.07572084434992 ], [ -47.193882744771344, -22.075702902155644 ], [ -47.193795246193773, -22.075684959912614 ], [ -47.193707747634221, -22.075667017620923 ], [ -47.193620249092547, -22.075649075280516 ], [ -47.193532750568792, -22.075631132891374 ], [ -47.193445252062943, -22.075613190453488 ], [ -47.19335775357505, -22.075595247966938 ], [ -47.193270255105041, -22.075577305431629 ], [ -47.19318275665298, -22.075559362847645 ], [ -47.193145098067475, -22.075551640496801 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 623.41042358899995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199032502111436, -22.076772673329835 ], [ -47.198954571258554, -22.076756695772087 ], [ -47.198867071633998, -22.076738756353851 ], [ -47.198779572027334, -22.076720816886883 ], [ -47.198692072438583, -22.07670287737119 ], [ -47.198604572867751, -22.076684937806778 ], [ -47.198517073314818, -22.076666998193634 ], [ -47.198429573779798, -22.076649058531771 ], [ -47.198342074262683, -22.076631118821208 ], [ -47.198254574763482, -22.076613179061891 ], [ -47.198167075282186, -22.076595239253862 ], [ -47.198079575818795, -22.076577299397115 ], [ -47.197992076373318, -22.07655935949164 ], [ -47.197904576945746, -22.076541419537445 ], [ -47.197817077536094, -22.076523479534526 ], [ -47.197729578144347, -22.076505539482895 ], [ -47.1976420787705, -22.076487599382538 ], [ -47.197554579414586, -22.07646965923345 ], [ -47.197467080076542, -22.076451719035649 ], [ -47.197379580756447, -22.076433778789109 ], [ -47.19729208145425, -22.076415838493869 ], [ -47.197204582169967, -22.076397898149903 ], [ -47.197117082903596, -22.076379957757215 ], [ -47.197029583655137, -22.076362017315798 ], [ -47.19694208442457, -22.07634407682567 ], [ -47.196854585211945, -22.07632613628682 ], [ -47.196767086017218, -22.076308195699248 ], [ -47.196679586840403, -22.076290255062951 ], [ -47.196592087681509, -22.076272314377942 ], [ -47.19650458854052, -22.076254373644211 ], [ -47.196417089417437, -22.076236432861762 ], [ -47.196329590312274, -22.076218492030584 ], [ -47.196242091225031, -22.076200551150677 ], [ -47.196154592155686, -22.076182610222077 ], [ -47.196067093104276, -22.076164669244736 ], [ -47.195979594070764, -22.076146728218681 ], [ -47.195892095055164, -22.076128787143915 ], [ -47.195804596057492, -22.07611084602042 ], [ -47.195717097077726, -22.076092904848228 ], [ -47.1956295981159, -22.076074963627288 ], [ -47.195542099171945, -22.076057022357642 ], [ -47.195454600245938, -22.076039081039273 ], [ -47.195367101337823, -22.076021139672175 ], [ -47.195279602447634, -22.076003198256377 ], [ -47.195192103575359, -22.075985256791856 ], [ -47.19510460472101, -22.075967315278614 ], [ -47.195017105884581, -22.075949373716654 ], [ -47.194929607066037, -22.075931432105971 ], [ -47.194842108265441, -22.075913490446574 ], [ -47.194754609482757, -22.075895548738476 ], [ -47.194667110717972, -22.075877606981638 ], [ -47.194579611971129, -22.075859665176079 ], [ -47.194492113242177, -22.075841723321812 ], [ -47.194404614531166, -22.075823781418823 ], [ -47.194317115838054, -22.075805839467126 ], [ -47.194229617162875, -22.075787897466718 ], [ -47.194142118505603, -22.075769955417581 ], [ -47.194054619866272, -22.075752013319725 ], [ -47.193967121244825, -22.075734071173166 ], [ -47.193879622641319, -22.075716128977874 ], [ -47.193792124055676, -22.07569818673386 ], [ -47.193704625488067, -22.075680244441141 ], [ -47.193617126938307, -22.075662302099698 ], [ -47.19352962840648, -22.075644359709557 ], [ -47.19344212989256, -22.075626417270694 ], [ -47.193354631396566, -22.075608474783113 ], [ -47.193267132918507, -22.07559053224681 ], [ -47.193179634458346, -22.075572589661796 ], [ -47.193134556531277, -22.07556334588395 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 622.660274738, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199014863976814, -22.076782924013568 ], [ -47.198951449596521, -22.076769922652808 ], [ -47.198863949963886, -22.076751983233567 ], [ -47.19877645034915, -22.076734043765587 ], [ -47.19868895075232, -22.076716104248884 ], [ -47.198601451173403, -22.076698164683467 ], [ -47.198513951612398, -22.076680225069321 ], [ -47.198426452069306, -22.076662285406446 ], [ -47.198338952544113, -22.07664434569487 ], [ -47.198251453036825, -22.07662640593453 ], [ -47.198163953547457, -22.07660846612551 ], [ -47.198076454075988, -22.076590526267758 ], [ -47.197988954622431, -22.076572586361255 ], [ -47.197901455186788, -22.076554646406066 ], [ -47.197813955769057, -22.076536706402145 ], [ -47.197726456369239, -22.076518766349501 ], [ -47.197638956987312, -22.076500826248139 ], [ -47.197551457623319, -22.07648288609802 ], [ -47.197463958277204, -22.076464945899229 ], [ -47.197376458949023, -22.076447005651666 ], [ -47.197288959638747, -22.076429065355434 ], [ -47.197201460346392, -22.076411125010456 ], [ -47.197113961071942, -22.076393184616759 ], [ -47.197026461815398, -22.076375244174336 ], [ -47.196938962576766, -22.076357303683203 ], [ -47.196851463356062, -22.07633936314334 ], [ -47.196763964153256, -22.076321422554759 ], [ -47.19667646496837, -22.076303481917456 ], [ -47.196588965801389, -22.076285541231439 ], [ -47.196501466652329, -22.076267600496696 ], [ -47.196413967521174, -22.076249659713241 ], [ -47.196326468407925, -22.07623171888104 ], [ -47.19623896931261, -22.076213778000142 ], [ -47.196151470235193, -22.076195837070536 ], [ -47.196063971175697, -22.076177896092165 ], [ -47.195976472134113, -22.076159955065119 ], [ -47.195888973110435, -22.076142013989337 ], [ -47.195801474104684, -22.076124072864836 ], [ -47.195713975116853, -22.076106131691635 ], [ -47.195626476146934, -22.076088190469669 ], [ -47.195538977194914, -22.076070249199034 ], [ -47.195451478260829, -22.076052307879635 ], [ -47.195363979344634, -22.07603436651155 ], [ -47.195276480446374, -22.076016425094739 ], [ -47.195188981566019, -22.07599848362921 ], [ -47.195101482703592, -22.075980542114955 ], [ -47.195013983859084, -22.075962600551982 ], [ -47.194926485032468, -22.075944658940298 ], [ -47.194838986223793, -22.075926717279891 ], [ -47.194751487433038, -22.075908775570777 ], [ -47.194663988660167, -22.07589083381292 ], [ -47.194576489905259, -22.075872892006366 ], [ -47.194488991168228, -22.07585495015109 ], [ -47.194401492449138, -22.075837008247095 ], [ -47.194313993747954, -22.075819066294386 ], [ -47.19422649506469, -22.075801124292969 ], [ -47.194138996399346, -22.075783182242823 ], [ -47.194051497751936, -22.075765240143937 ], [ -47.193963999122424, -22.075747297996386 ], [ -47.193876500510839, -22.075729355800085 ], [ -47.193789001917111, -22.075711413555041 ], [ -47.19370150334143, -22.075693471261317 ], [ -47.193614004783591, -22.075675528918882 ], [ -47.193526506243693, -22.075657586527726 ], [ -47.193439007721693, -22.075639644087861 ], [ -47.193351509217621, -22.075621701599268 ], [ -47.19326401073149, -22.075603759061956 ], [ -47.19317651226325, -22.075585816475929 ], [ -47.193124014993366, -22.075575051270548 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 621.91012588800004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198997225839562, -22.076793174695567 ], [ -47.198948327934019, -22.07678314953348 ], [ -47.198860828293292, -22.076765210113233 ], [ -47.198773328670491, -22.076747270644248 ], [ -47.198685829065589, -22.076729331126526 ], [ -47.198598329478592, -22.076711391560096 ], [ -47.198510829909516, -22.076693451944951 ], [ -47.198423330358331, -22.076675512281081 ], [ -47.198335830825066, -22.076657572568489 ], [ -47.198248331309706, -22.076639632807161 ], [ -47.198160831812267, -22.076621692997115 ], [ -47.198073332332712, -22.076603753138343 ], [ -47.197985832871083, -22.07658581323086 ], [ -47.197898333427361, -22.076567873274644 ], [ -47.197810834001537, -22.07654993326971 ], [ -47.197723334593633, -22.076531993216054 ], [ -47.197635835203641, -22.076514053113673 ], [ -47.197548335831577, -22.076496112962587 ], [ -47.19746083647739, -22.076478172762755 ], [ -47.197373337141137, -22.076460232514201 ], [ -47.197285837822776, -22.076442292216935 ], [ -47.197198338522341, -22.076424351870962 ], [ -47.197110839239819, -22.076406411476256 ], [ -47.197023339975203, -22.076388471032832 ], [ -47.196935840728486, -22.076370530540679 ], [ -47.196848341499702, -22.076352589999825 ], [ -47.196760842288811, -22.076334649410228 ], [ -47.19667334309586, -22.076316708771916 ], [ -47.196585843920801, -22.076298768084889 ], [ -47.196498344763661, -22.076280827349134 ], [ -47.196410845624428, -22.07626288656466 ], [ -47.196323346503114, -22.076244945731467 ], [ -47.196235847399713, -22.076227004849564 ], [ -47.196148348314225, -22.076209063918935 ], [ -47.196060849246642, -22.076191122939584 ], [ -47.195973350196986, -22.076173181911511 ], [ -47.195885851165237, -22.076155240834716 ], [ -47.195798352151414, -22.076137299709206 ], [ -47.195710853155497, -22.076119358534978 ], [ -47.195623354177492, -22.076101417312032 ], [ -47.1955358552174, -22.07608347604036 ], [ -47.195448356275236, -22.076065534719969 ], [ -47.19536085735097, -22.076047593350882 ], [ -47.195273358444645, -22.076029651933045 ], [ -47.195185859556211, -22.07601171046651 ], [ -47.195098360685698, -22.075993768951257 ], [ -47.195010861833104, -22.075975827387278 ], [ -47.194923362998438, -22.075957885774574 ], [ -47.19483586418167, -22.075939944113159 ], [ -47.194748365382836, -22.075922002403022 ], [ -47.194660866601907, -22.075904060644188 ], [ -47.194573367838899, -22.075886118836618 ], [ -47.194485869093803, -22.075868176980329 ], [ -47.194398370366635, -22.075850235075325 ], [ -47.194310871657372, -22.0758322931216 ], [ -47.194223372966036, -22.07581435111916 ], [ -47.19413587429262, -22.075796409068008 ], [ -47.194048375637117, -22.075778466968142 ], [ -47.19396087699954, -22.07576052481955 ], [ -47.19387337837987, -22.07574258262224 ], [ -47.193785879778076, -22.075724640376205 ], [ -47.193698381194302, -22.075706698081468 ], [ -47.193610882628406, -22.075688755738035 ], [ -47.193523384080414, -22.075670813345852 ], [ -47.193435885550358, -22.075652870904975 ], [ -47.193348387038213, -22.075634928415372 ], [ -47.193260888543996, -22.075616985877051 ], [ -47.193173390067685, -22.075599043290012 ], [ -47.193113473453757, -22.07558675665658 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 621.15997703599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198979587699625, -22.076803425375875 ], [ -47.198945206271041, -22.076796376414137 ], [ -47.198857706622249, -22.076778436992882 ], [ -47.198770206991355, -22.076760497522873 ], [ -47.198682707378381, -22.076742558004163 ], [ -47.198595207783313, -22.076724618436721 ], [ -47.198507708206151, -22.076706678820567 ], [ -47.198420208646894, -22.076688739155692 ], [ -47.19833270910555, -22.076670799442091 ], [ -47.198245209582112, -22.076652859679761 ], [ -47.198157710076593, -22.076634919868685 ], [ -47.198070210588966, -22.076616980008914 ], [ -47.197982711119259, -22.076599040100426 ], [ -47.197895211667458, -22.076581100143205 ], [ -47.197807712233555, -22.076563160137244 ], [ -47.197720212817579, -22.076545220082597 ], [ -47.197632713419509, -22.07652727997921 ], [ -47.197545214039366, -22.076509339827115 ], [ -47.197457714677107, -22.07649139962626 ], [ -47.197370215332768, -22.076473459376714 ], [ -47.197282716006328, -22.076455519078436 ], [ -47.197195216697821, -22.076437578731461 ], [ -47.197107717407221, -22.076419638335729 ], [ -47.197020218134526, -22.076401697891306 ], [ -47.196932718879737, -22.076383757398148 ], [ -47.196845219642874, -22.076365816856281 ], [ -47.196757720423911, -22.076347876265686 ], [ -47.196670221222881, -22.07632993562634 ], [ -47.196582722039743, -22.076311994938315 ], [ -47.196495222874518, -22.076294054201551 ], [ -47.196407723727219, -22.076276113416078 ], [ -47.196320224597827, -22.076258172581873 ], [ -47.196232725486354, -22.076240231698964 ], [ -47.19614522639278, -22.076222290767305 ], [ -47.196057727317132, -22.076204349786966 ], [ -47.195970228259391, -22.076186408757881 ], [ -47.195882729219569, -22.07616846768008 ], [ -47.19579523019766, -22.076150526553544 ], [ -47.195707731193671, -22.076132585378321 ], [ -47.195620232207588, -22.076114644154362 ], [ -47.195532733239425, -22.076096702881689 ], [ -47.195445234289181, -22.076078761560289 ], [ -47.195357735356843, -22.07606082019019 ], [ -47.195270236442433, -22.076042878771329 ], [ -47.195182737545927, -22.076024937303799 ], [ -47.195095238667335, -22.076006995787537 ], [ -47.19500773980667, -22.075989054222532 ], [ -47.194920240963931, -22.075971112608833 ], [ -47.194832742139077, -22.075953170946409 ], [ -47.194745243332164, -22.07593522923527 ], [ -47.194657744543164, -22.075917287475423 ], [ -47.19457024577207, -22.075899345666823 ], [ -47.19448274701891, -22.075881403809543 ], [ -47.194395248283662, -22.075863461903531 ], [ -47.194307749566327, -22.075845519948796 ], [ -47.194220250866913, -22.075827577945347 ], [ -47.194132752185418, -22.075809635893179 ], [ -47.194045253521843, -22.075791693792315 ], [ -47.19395775487618, -22.075773751642714 ], [ -47.193870256248445, -22.075755809444395 ], [ -47.193782757638566, -22.075737867197329 ], [ -47.19369525904672, -22.075719924901602 ], [ -47.193607760472752, -22.075701982557153 ], [ -47.193520261916674, -22.075684040163946 ], [ -47.193432763378546, -22.07566609772207 ], [ -47.193345264858323, -22.075648155231463 ], [ -47.193257766356034, -22.075630212692136 ], [ -47.193170267871643, -22.07561227010407 ], [ -47.193102931912414, -22.075598462042063 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 620.40982818600003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198961949557045, -22.076813676054467 ], [ -47.198942084607602, -22.076809603294755 ], [ -47.19885458495073, -22.076791663872484 ], [ -47.198767085311765, -22.076773724401484 ], [ -47.198679585690698, -22.076755784881748 ], [ -47.198592086087551, -22.076737845313307 ], [ -47.198504586502317, -22.076719905696137 ], [ -47.198417086934988, -22.076701966030242 ], [ -47.198329587385565, -22.076684026315636 ], [ -47.198242087854055, -22.076666086552301 ], [ -47.198154588340444, -22.076648146740233 ], [ -47.198067088844745, -22.076630206879447 ], [ -47.197979589366952, -22.076612266969946 ], [ -47.197892089907079, -22.076594327011716 ], [ -47.197804590465111, -22.076576387004767 ], [ -47.197717091041056, -22.076558446949093 ], [ -47.197629591634907, -22.076540506844704 ], [ -47.197542092246678, -22.076522566691587 ], [ -47.197454592876348, -22.076504626489758 ], [ -47.19736709352393, -22.076486686239193 ], [ -47.197279594189418, -22.076468745939909 ], [ -47.197192094872833, -22.076450805591904 ], [ -47.197104595574153, -22.076432865195176 ], [ -47.197017096293379, -22.076414924749734 ], [ -47.196929597030525, -22.076396984255567 ], [ -47.19684209778557, -22.076379043712695 ], [ -47.196754598558542, -22.076361103121087 ], [ -47.196667099349419, -22.076343162480754 ], [ -47.196579600158216, -22.076325221791699 ], [ -47.196492100984912, -22.076307281053932 ], [ -47.196404601829535, -22.07628934026744 ], [ -47.196317102692063, -22.07627139943223 ], [ -47.196229603572512, -22.076253458548297 ], [ -47.196142104470866, -22.076235517615661 ], [ -47.196054605387147, -22.076217576634289 ], [ -47.195967106321319, -22.076199635604201 ], [ -47.195879607273426, -22.076181694525395 ], [ -47.195792108243438, -22.076163753397864 ], [ -47.19570460923137, -22.076145812221615 ], [ -47.195617110237215, -22.07612787099665 ], [ -47.195529611260973, -22.076109929722964 ], [ -47.195442112302636, -22.07609198840056 ], [ -47.195354613362234, -22.076074047029433 ], [ -47.195267114439751, -22.076056105609588 ], [ -47.19517961553516, -22.076038164141043 ], [ -47.195092116648517, -22.076020222623768 ], [ -47.195004617779759, -22.076002281057772 ], [ -47.194917118928934, -22.075984339443046 ], [ -47.194829620096016, -22.075966397779609 ], [ -47.194742121281017, -22.075948456067461 ], [ -47.194654622483945, -22.075930514306602 ], [ -47.194567123704793, -22.075912572497018 ], [ -47.194479624943547, -22.075894630638707 ], [ -47.194392126200214, -22.07587668873169 ], [ -47.194304627474807, -22.075858746775946 ], [ -47.194217128767335, -22.075840804771492 ], [ -47.19412963007774, -22.075822862718322 ], [ -47.194042131406093, -22.075804920616427 ], [ -47.193954632752359, -22.075786978465814 ], [ -47.193867134116559, -22.0757690362665 ], [ -47.193779635498586, -22.075751094018436 ], [ -47.193692136898676, -22.075733151721693 ], [ -47.193604638316614, -22.075715209376217 ], [ -47.19351713975248, -22.075697266982033 ], [ -47.193429641206279, -22.075679324539124 ], [ -47.19334214267797, -22.075661382047493 ], [ -47.193254644167595, -22.075643439507168 ], [ -47.193167145675133, -22.075625496918111 ], [ -47.193092390369365, -22.075610167427005 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 619.65967933499996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198944311411793, -22.076823926731368 ], [ -47.198938962943679, -22.076822830175352 ], [ -47.198851463278729, -22.076804890752072 ], [ -47.198763963631684, -22.076786951280049 ], [ -47.198676464002553, -22.076769011759318 ], [ -47.198588964391327, -22.076751072189872 ], [ -47.198501464798007, -22.076733132571693 ], [ -47.198413965222606, -22.076715192904786 ], [ -47.198326465665104, -22.076697253189174 ], [ -47.198238966125523, -22.076679313424833 ], [ -47.198151466603825, -22.076661373611735 ], [ -47.198063967100055, -22.076643433749961 ], [ -47.19797646761419, -22.076625493839451 ], [ -47.197888968146238, -22.076607553880212 ], [ -47.197801468696191, -22.076589613872251 ], [ -47.197713969264065, -22.076571673815568 ], [ -47.197626469849837, -22.076553733710178 ], [ -47.197538970453529, -22.076535793556037 ], [ -47.197451471075112, -22.076517853353209 ], [ -47.197363971714623, -22.076499913101642 ], [ -47.197276472372039, -22.076481972801346 ], [ -47.197188973047375, -22.076464032452336 ], [ -47.197101473740616, -22.076446092054599 ], [ -47.197013974451764, -22.076428151608145 ], [ -47.196926475180831, -22.076410211112968 ], [ -47.196838975927804, -22.076392270569091 ], [ -47.19675147669269, -22.076374329976453 ], [ -47.196663977475495, -22.076356389335135 ], [ -47.196576478276207, -22.076338448645071 ], [ -47.196488979094831, -22.076320507906292 ], [ -47.196401479931382, -22.076302567118791 ], [ -47.196313980785831, -22.076284626282572 ], [ -47.196226481658208, -22.076266685397631 ], [ -47.196138982548483, -22.076248744463989 ], [ -47.196051483456685, -22.076230803481607 ], [ -47.195963984382779, -22.07621286245049 ], [ -47.195876485326814, -22.076194921370696 ], [ -47.195788986288747, -22.076176980242156 ], [ -47.1957014872686, -22.076159039064898 ], [ -47.195613988266366, -22.076141097838924 ], [ -47.195526489282052, -22.076123156564222 ], [ -47.195438990315637, -22.076105215240808 ], [ -47.195351491367155, -22.07608727386868 ], [ -47.195263992436594, -22.076069332447826 ], [ -47.195176493523938, -22.076051390978272 ], [ -47.195088994629209, -22.076033449459988 ], [ -47.195001495752379, -22.076015507892965 ], [ -47.194913996893476, -22.075997566277241 ], [ -47.194826498052485, -22.075979624612799 ], [ -47.194738999229408, -22.075961682899639 ], [ -47.194651500424257, -22.07594374113777 ], [ -47.194564001637026, -22.07592579932718 ], [ -47.194476502867701, -22.075907857467843 ], [ -47.194389004116303, -22.075889915559831 ], [ -47.194301505382818, -22.075871973603078 ], [ -47.194214006667259, -22.075854031597615 ], [ -47.1941265079696, -22.07583608954344 ], [ -47.194039009289874, -22.075818147440515 ], [ -47.193951510628054, -22.075800205288907 ], [ -47.193864011984189, -22.075782263088591 ], [ -47.193776513358138, -22.075764320839497 ], [ -47.193689014750156, -22.075746378541758 ], [ -47.193601516160015, -22.075728436195273 ], [ -47.193514017587802, -22.075710493800081 ], [ -47.19342651903353, -22.075692551356145 ], [ -47.193339020497142, -22.075674608863519 ], [ -47.193251521978688, -22.075656666322175 ], [ -47.193164023478154, -22.075638723732116 ], [ -47.193081848824598, -22.075621872811389 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 618.90953048300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198926673263884, -22.076834177406557 ], [ -47.198848341606272, -22.076818117631611 ], [ -47.198760841951163, -22.076800178158592 ], [ -47.198673342313938, -22.076782238636852 ], [ -47.198585842694627, -22.076764299066387 ], [ -47.198498343093235, -22.076746359447199 ], [ -47.198410843509748, -22.076728419779286 ], [ -47.198323343944175, -22.076710480062651 ], [ -47.1982358443965, -22.076692540297298 ], [ -47.198148344866738, -22.076674600483237 ], [ -47.19806084535491, -22.076656660620422 ], [ -47.197973345860952, -22.0766387207089 ], [ -47.197885846384921, -22.076620780748662 ], [ -47.197798346926788, -22.076602840739692 ], [ -47.19771084748659, -22.076584900682001 ], [ -47.197623348064283, -22.076566960575594 ], [ -47.197535848659889, -22.076549020420462 ], [ -47.197448349273408, -22.076531080216618 ], [ -47.19736084990484, -22.076513139964039 ], [ -47.197273350554184, -22.076495199662741 ], [ -47.197185851221427, -22.076477259312718 ], [ -47.197098351906604, -22.076459318913976 ], [ -47.197010852609687, -22.076441378466509 ], [ -47.196923353330668, -22.076423437970323 ], [ -47.196835854069569, -22.076405497425419 ], [ -47.196748354826376, -22.076387556831804 ], [ -47.196660855601102, -22.076369616189464 ], [ -47.196573356393749, -22.076351675498397 ], [ -47.196485857204294, -22.076333734758602 ], [ -47.196398358032759, -22.076315793970107 ], [ -47.196310858879137, -22.076297853132878 ], [ -47.196223359743428, -22.076279912246921 ], [ -47.196135860625638, -22.076261971312253 ], [ -47.196048361525762, -22.07624403032888 ], [ -47.195960862443783, -22.076226089296778 ], [ -47.195873363379725, -22.076208148215947 ], [ -47.195785864333587, -22.076190207086398 ], [ -47.195698365305361, -22.076172265908138 ], [ -47.195610866295041, -22.076154324681156 ], [ -47.195523367302663, -22.076136383405444 ], [ -47.195435868328197, -22.076118442081018 ], [ -47.195348369371622, -22.07610050070787 ], [ -47.195260870432975, -22.076082559286032 ], [ -47.19517337151224, -22.076064617815451 ], [ -47.195085872609425, -22.076046676296141 ], [ -47.19499837372453, -22.076028734728126 ], [ -47.194910874857563, -22.076010793111394 ], [ -47.194823376008472, -22.075992851445939 ], [ -47.19473587717733, -22.075974909731769 ], [ -47.194648378364093, -22.075956967968878 ], [ -47.19456087956879, -22.07593902615729 ], [ -47.194473380791393, -22.075921084296972 ], [ -47.194385882031924, -22.075903142387926 ], [ -47.194298383290366, -22.075885200430164 ], [ -47.194210884566722, -22.075867258423688 ], [ -47.194123385860991, -22.075849316368494 ], [ -47.194035887173179, -22.075831374264581 ], [ -47.193948388503301, -22.075813432111957 ], [ -47.193860889851329, -22.075795489910625 ], [ -47.193773391217228, -22.075777547660543 ], [ -47.19368589260116, -22.075759605361778 ], [ -47.193598394002947, -22.075741663014284 ], [ -47.193510895422669, -22.075723720618072 ], [ -47.19342339686029, -22.075705778173141 ], [ -47.193335898315837, -22.075687835679499 ], [ -47.193248399789312, -22.07566989313715 ], [ -47.19316090128072, -22.075651950546071 ], [ -47.193073402790027, -22.075634007906292 ], [ -47.193071307278132, -22.075633578195209 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 618.15938163199996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19890903511331, -22.07684442808004 ], [ -47.198845219933332, -22.076831344511138 ], [ -47.198757720270144, -22.076813405037107 ], [ -47.198670220624841, -22.076795465514362 ], [ -47.198582720997457, -22.076777525942887 ], [ -47.198495221387986, -22.076759586322691 ], [ -47.198407721796421, -22.076741646653769 ], [ -47.198320222222769, -22.076723706936129 ], [ -47.198232722667022, -22.076705767169763 ], [ -47.198145223129188, -22.076687827354693 ], [ -47.198057723609267, -22.076669887490858 ], [ -47.197970224107245, -22.076651947578341 ], [ -47.197882724623128, -22.076634007617095 ], [ -47.197795225156923, -22.076616067607119 ], [ -47.197707725708646, -22.076598127548419 ], [ -47.197620226278268, -22.076580187441003 ], [ -47.197532726865795, -22.076562247284862 ], [ -47.197445227471235, -22.076544307080006 ], [ -47.197357728094595, -22.076526366826407 ], [ -47.19727022873586, -22.076508426524114 ], [ -47.197182729395024, -22.076490486173086 ], [ -47.197095230072129, -22.076472545773331 ], [ -47.197007730767126, -22.076454605324859 ], [ -47.196920231480028, -22.076436664827668 ], [ -47.196832732210851, -22.076418724281748 ], [ -47.196745232959586, -22.076400783687131 ], [ -47.196657733726234, -22.076382843043778 ], [ -47.196570234510801, -22.076364902351685 ], [ -47.196482735313268, -22.076346961610902 ], [ -47.196395236133661, -22.076329020821397 ], [ -47.19630773697196, -22.076311079983139 ], [ -47.196220237828186, -22.076293139096187 ], [ -47.19613273870231, -22.076275198160513 ], [ -47.196045239594362, -22.076257257176131 ], [ -47.195957740504298, -22.076239316142999 ], [ -47.195870241432175, -22.076221375061184 ], [ -47.195782742377951, -22.076203433930626 ], [ -47.195695243341653, -22.07618549275136 ], [ -47.195607744323262, -22.076167551523358 ], [ -47.195520245322797, -22.076149610246631 ], [ -47.195432746340252, -22.076131668921207 ], [ -47.195345247375613, -22.076113727547053 ], [ -47.19525774842888, -22.076095786124203 ], [ -47.195170249500073, -22.076077844652595 ], [ -47.195082750589187, -22.076059903132293 ], [ -47.194995251696213, -22.076041961563252 ], [ -47.194907752821159, -22.076024019945528 ], [ -47.194820253964004, -22.076006078279068 ], [ -47.194732755124782, -22.07598813656389 ], [ -47.194645256303467, -22.075970194799986 ], [ -47.194557757500085, -22.075952252987388 ], [ -47.19447025871461, -22.075934311126051 ], [ -47.194382759947068, -22.075916369216007 ], [ -47.194295261197432, -22.075898427257236 ], [ -47.194207762465716, -22.075880485249751 ], [ -47.194120263751905, -22.075862543193544 ], [ -47.194032765056015, -22.075844601088622 ], [ -47.193945266378059, -22.075826658934989 ], [ -47.193857767718022, -22.075808716732649 ], [ -47.193770269075827, -22.07579077448154 ], [ -47.193682770451694, -22.075772832181784 ], [ -47.193595271845403, -22.075754889833259 ], [ -47.193507773257053, -22.075736947436056 ], [ -47.193420274686595, -22.075719004990102 ], [ -47.193332776134064, -22.075701062495462 ], [ -47.193245277599466, -22.075683119952103 ], [ -47.193157779082789, -22.075665177360019 ], [ -47.193070280584038, -22.075647234719231 ], [ -47.193060765729946, -22.075645283578488 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 617.409232782, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198891396960114, -22.076854678751801 ], [ -47.198842098259931, -22.076844571390605 ], [ -47.19875459858865, -22.076826631915576 ], [ -47.198667098935275, -22.076808692391825 ], [ -47.198579599299833, -22.076790752819349 ], [ -47.198492099682277, -22.076772813198136 ], [ -47.198404600082632, -22.076754873528206 ], [ -47.198317100500894, -22.076736933809556 ], [ -47.198229600937076, -22.076718994042185 ], [ -47.198142101391156, -22.076701054226092 ], [ -47.198054601863156, -22.076683114361277 ], [ -47.197967102353061, -22.076665174447747 ], [ -47.197879602860873, -22.076647234485481 ], [ -47.19779210338659, -22.076629294474497 ], [ -47.197704603930234, -22.076611354414787 ], [ -47.197617104491769, -22.076593414306359 ], [ -47.197529605071225, -22.076575474149202 ], [ -47.197442105668593, -22.076557533943337 ], [ -47.197354606283881, -22.07653959368875 ], [ -47.197267106917053, -22.076521653385434 ], [ -47.197179607568152, -22.076503713033404 ], [ -47.197092108237158, -22.076485772632644 ], [ -47.197004608924104, -22.07646783218317 ], [ -47.196917109628934, -22.076449891684955 ], [ -47.196829610351678, -22.076431951138051 ], [ -47.196742111092341, -22.0764140105424 ], [ -47.19665461185091, -22.076396069898042 ], [ -47.196567112627385, -22.076378129204961 ], [ -47.196479613421779, -22.076360188463156 ], [ -47.196392114234094, -22.076342247672617 ], [ -47.1963046150643, -22.076324306833371 ], [ -47.196217115912447, -22.076306365945413 ], [ -47.196129616778499, -22.076288425008727 ], [ -47.196042117662472, -22.076270484023329 ], [ -47.19595461856435, -22.076252542989202 ], [ -47.195867119484134, -22.076234601906368 ], [ -47.195779620421852, -22.076216660774801 ], [ -47.195692121377469, -22.076198719594519 ], [ -47.195604622351013, -22.076180778365515 ], [ -47.195517123342455, -22.076162837087796 ], [ -47.195429624351831, -22.076144895761356 ], [ -47.195342125379113, -22.076126954386197 ], [ -47.195254626424308, -22.076109012962323 ], [ -47.19516712748743, -22.076091071489728 ], [ -47.195079628568465, -22.076073129968407 ], [ -47.194992129667412, -22.076055188398371 ], [ -47.194904630784279, -22.076037246779617 ], [ -47.194817131919066, -22.076019305112148 ], [ -47.194729633071759, -22.076001363395953 ], [ -47.194642134242379, -22.075983421631051 ], [ -47.194554635430912, -22.075965479817427 ], [ -47.194467136637371, -22.075947537955095 ], [ -47.194379637861729, -22.075929596044038 ], [ -47.194292139104014, -22.075911654084258 ], [ -47.194204640364227, -22.075893712075764 ], [ -47.194117141642359, -22.075875770018548 ], [ -47.194029642938396, -22.075857827912618 ], [ -47.193942144252361, -22.075839885757979 ], [ -47.193854645584246, -22.075821943554622 ], [ -47.193767146933972, -22.075804001302515 ], [ -47.19367964830176, -22.075786059001736 ], [ -47.193592149687397, -22.075768116652235 ], [ -47.193504651090954, -22.075750174253997 ], [ -47.193417152512431, -22.075732231807045 ], [ -47.193329653951842, -22.075714289311385 ], [ -47.193242155409152, -22.075696346767007 ], [ -47.193154656884381, -22.075678404173914 ], [ -47.193067158377552, -22.075660461532102 ], [ -47.193050224180055, -22.075656988961196 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 616.65908392999995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198873758804226, -22.07686492942187 ], [ -47.198838976586053, -22.076857798270062 ], [ -47.198751476906686, -22.076839858794024 ], [ -47.198663977245246, -22.076821919269268 ], [ -47.198576477601719, -22.076803979695764 ], [ -47.198488977976083, -22.076786040073561 ], [ -47.198401478368368, -22.076768100402624 ], [ -47.19831397877855, -22.07675016068297 ], [ -47.198226479206653, -22.07673222091459 ], [ -47.198138979652661, -22.07671428109748 ], [ -47.198051480116582, -22.076696341231667 ], [ -47.197963980598409, -22.076678401317125 ], [ -47.197876481098142, -22.076660461353853 ], [ -47.19778898161578, -22.076642521341856 ], [ -47.197701482151352, -22.076624581281145 ], [ -47.197613982704809, -22.076606641171704 ], [ -47.197526483276192, -22.076588701013545 ], [ -47.197438983865482, -22.076570760806668 ], [ -47.197351484472684, -22.076552820551051 ], [ -47.197263985097791, -22.07653488024674 ], [ -47.197176485740812, -22.0765169398937 ], [ -47.197088986401738, -22.076498999491939 ], [ -47.197001487080605, -22.076481059041438 ], [ -47.196913987777357, -22.076463118542236 ], [ -47.196826488492029, -22.076445177994323 ], [ -47.196738989224606, -22.076427237397645 ], [ -47.196651489975103, -22.076409296752292 ], [ -47.196563990743499, -22.076391356058203 ], [ -47.196476491529815, -22.076373415315373 ], [ -47.19638899233405, -22.076355474523844 ], [ -47.196301493156184, -22.076337533683589 ], [ -47.196213993996253, -22.076319592794622 ], [ -47.196126494854234, -22.076301651856927 ], [ -47.196038995730127, -22.076283710870516 ], [ -47.195951496623927, -22.076265769835366 ], [ -47.195863997535639, -22.076247828751541 ], [ -47.195776498465278, -22.076229887618965 ], [ -47.195688999412816, -22.076211946437667 ], [ -47.195601500378281, -22.076194005207661 ], [ -47.195514001361651, -22.076176063928937 ], [ -47.195426502362949, -22.076158122601488 ], [ -47.195339003382152, -22.076140181225298 ], [ -47.195251504419275, -22.076122239800434 ], [ -47.195164005474318, -22.076104298326822 ], [ -47.195076506547274, -22.076086356804485 ], [ -47.194989007638149, -22.076068415233454 ], [ -47.194901508746938, -22.076050473613691 ], [ -47.194814009873653, -22.076032531945206 ], [ -47.194726511018267, -22.076014590228009 ], [ -47.194639012180808, -22.075996648462102 ], [ -47.194551513361262, -22.075978706647447 ], [ -47.194464014559649, -22.075960764784121 ], [ -47.194376515775936, -22.075942822872051 ], [ -47.194289017010135, -22.075924880911263 ], [ -47.194201518262275, -22.075906938901756 ], [ -47.194114019532329, -22.075888996843535 ], [ -47.194026520820294, -22.075871054736599 ], [ -47.19393902212618, -22.075853112580944 ], [ -47.193851523449986, -22.075835170376582 ], [ -47.193764024791633, -22.075817228123448 ], [ -47.19367652615135, -22.075799285821677 ], [ -47.193589027528915, -22.07578134347116 ], [ -47.193501528924394, -22.075763401071921 ], [ -47.193414030337792, -22.075745458623938 ], [ -47.193326531769131, -22.075727516127291 ], [ -47.193239033218362, -22.075709573581904 ], [ -47.193151534685519, -22.075691630987794 ], [ -47.193064036170611, -22.075673688344978 ], [ -47.193039682628438, -22.075668694343371 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 615.90893508099998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198856120645715, -22.076875180090216 ], [ -47.198835854911692, -22.076871025149472 ], [ -47.198748355224268, -22.076853085672422 ], [ -47.198660855554756, -22.076835146146657 ], [ -47.198573355903136, -22.076817206572159 ], [ -47.198485856269436, -22.076799266948942 ], [ -47.198398356653634, -22.076781327277001 ], [ -47.198310857055759, -22.076763387556333 ], [ -47.198223357475761, -22.076745447786951 ], [ -47.198135857913691, -22.07672750796884 ], [ -47.198048358369533, -22.076709568102 ], [ -47.197960858843274, -22.076691628186456 ], [ -47.197873359334935, -22.076673688222176 ], [ -47.197785859844515, -22.076655748209173 ], [ -47.197698360371994, -22.076637808147449 ], [ -47.197610860917372, -22.076619868037003 ], [ -47.197523361480677, -22.076601927877832 ], [ -47.197435862061909, -22.076583987669942 ], [ -47.197348362661018, -22.07656604741334 ], [ -47.197260863278046, -22.076548107108007 ], [ -47.197173363912988, -22.076530166753958 ], [ -47.197085864565842, -22.076512226351181 ], [ -47.196998365236617, -22.076494285899695 ], [ -47.196910865925297, -22.076476345399485 ], [ -47.196823366631897, -22.076458404850534 ], [ -47.196735867356395, -22.076440464252865 ], [ -47.196648368098813, -22.076422523606496 ], [ -47.196560868859137, -22.076404582911394 ], [ -47.196473369637388, -22.076386642167574 ], [ -47.196385870433545, -22.076368701375031 ], [ -47.196298371247615, -22.076350760533757 ], [ -47.196210872079597, -22.076332819643781 ], [ -47.196123372929492, -22.076314878705077 ], [ -47.196035873797307, -22.076296937717661 ], [ -47.195948374683034, -22.076278996681513 ], [ -47.195860875586675, -22.07626105559665 ], [ -47.195773376508235, -22.076243114463082 ], [ -47.195685877447687, -22.076225173280772 ], [ -47.195598378405094, -22.076207232049754 ], [ -47.195510879380386, -22.07618929077001 ], [ -47.195423380373605, -22.076171349441552 ], [ -47.195335881384729, -22.076153408064375 ], [ -47.19524838241378, -22.076135466638473 ], [ -47.195160883460737, -22.076117525163856 ], [ -47.195073384525614, -22.076099583640534 ], [ -47.194985885608403, -22.07608164206848 ], [ -47.19489838670912, -22.076063700447715 ], [ -47.194810887827749, -22.076045758778225 ], [ -47.194723388964299, -22.076027817060023 ], [ -47.194635890118768, -22.076009875293092 ], [ -47.19454839129115, -22.075991933477457 ], [ -47.194460892481445, -22.075973991613083 ], [ -47.194373393689659, -22.075956049700018 ], [ -47.194285894915794, -22.075938107738217 ], [ -47.194198396159841, -22.075920165727705 ], [ -47.194110897421815, -22.075902223668479 ], [ -47.194023398701702, -22.07588428156053 ], [ -47.193935899999516, -22.075866339403859 ], [ -47.193848401315243, -22.07584839719847 ], [ -47.193760902648826, -22.075830454944356 ], [ -47.193673404000457, -22.075812512641555 ], [ -47.193585905369943, -22.075794570290025 ], [ -47.193498406757357, -22.075776627889777 ], [ -47.193410908162676, -22.075758685440825 ], [ -47.193323409585943, -22.075740742943136 ], [ -47.193235911027102, -22.075722800396743 ], [ -47.193148412486188, -22.075704857801629 ], [ -47.193060913963208, -22.075686915157796 ], [ -47.193029141075129, -22.075680399724973 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 615.15878622900004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198838482484504, -22.076885430756867 ], [ -47.19883273323687, -22.076884252028865 ], [ -47.198745233541366, -22.076866312550809 ], [ -47.198657733863783, -22.076848373024035 ], [ -47.198570234204077, -22.076830433448517 ], [ -47.198482734562305, -22.076812493824303 ], [ -47.198395234938424, -22.076794554151352 ], [ -47.19830773533247, -22.076776614429679 ], [ -47.198220235744408, -22.076758674659292 ], [ -47.198132736174252, -22.076740734840151 ], [ -47.198045236622015, -22.076722794972326 ], [ -47.197957737087684, -22.07670485505577 ], [ -47.197870237571259, -22.076686915090484 ], [ -47.19778273807276, -22.076668975076473 ], [ -47.197695238592168, -22.076651035013739 ], [ -47.197607739129474, -22.076633094902288 ], [ -47.197520239684707, -22.076615154742107 ], [ -47.197432740257845, -22.076597214533205 ], [ -47.197345240848882, -22.076579274275602 ], [ -47.197257741457832, -22.076561333969234 ], [ -47.197170242084702, -22.076543393614198 ], [ -47.197082742729485, -22.076525453210412 ], [ -47.196995243392173, -22.076507512757914 ], [ -47.196907744072774, -22.076489572256691 ], [ -47.196820244771295, -22.07647163170672 ], [ -47.196732745487722, -22.076453691108057 ], [ -47.196645246222062, -22.076435750460682 ], [ -47.196557746974314, -22.076417809764557 ], [ -47.196470247744479, -22.076399869019745 ], [ -47.196382748532564, -22.07638192822618 ], [ -47.196295249338547, -22.07636398738391 ], [ -47.196207750162472, -22.076346046492926 ], [ -47.196120251004281, -22.076328105553213 ], [ -47.196032751864017, -22.076310164564784 ], [ -47.195945252741673, -22.076292223527616 ], [ -47.195857753637235, -22.076274282441759 ], [ -47.195770254550723, -22.076256341307175 ], [ -47.195682755482089, -22.076238400123867 ], [ -47.195595256431425, -22.076220458891832 ], [ -47.195507757398637, -22.076202517611083 ], [ -47.195420258383784, -22.076184576281616 ], [ -47.195332759386822, -22.076166634903426 ], [ -47.195245260407802, -22.076148693476519 ], [ -47.19515776144668, -22.076130752000893 ], [ -47.195070262503478, -22.076112810476555 ], [ -47.194982763578203, -22.076094868903496 ], [ -47.194895264670841, -22.076076927281726 ], [ -47.194807765781391, -22.076058985611223 ], [ -47.194720266909862, -22.076041043892015 ], [ -47.194632768056252, -22.076023102124058 ], [ -47.194545269220555, -22.076005160307432 ], [ -47.194457770402778, -22.075987218442034 ], [ -47.194370271602921, -22.075969276527967 ], [ -47.194282772820976, -22.075951334565165 ], [ -47.194195274056945, -22.07593339255364 ], [ -47.194107775310847, -22.075915450493405 ], [ -47.194020276582663, -22.075897508384429 ], [ -47.193932777872398, -22.07587956622676 ], [ -47.193845279180039, -22.075861624020366 ], [ -47.19375778050555, -22.075843681765246 ], [ -47.193670281849109, -22.075825739461429 ], [ -47.193582783210516, -22.075807797108887 ], [ -47.193495284589851, -22.075789854707633 ], [ -47.193407785987105, -22.075771912257672 ], [ -47.193320287402273, -22.075753969758953 ], [ -47.193232788835367, -22.075736027211569 ], [ -47.193145290286381, -22.075718084615445 ], [ -47.193057791755315, -22.075700141970589 ], [ -47.193018599520094, -22.075692105106043 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 614.40863737899997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198820844320664, -22.076895681421803 ], [ -47.198742111858003, -22.07687953942915 ], [ -47.198654612172319, -22.076861599901367 ], [ -47.198567112504549, -22.076843660324858 ], [ -47.19847961285469, -22.07682572069962 ], [ -47.198392113222738, -22.076807781025668 ], [ -47.198304613608705, -22.076789841302983 ], [ -47.198217114012571, -22.076771901531576 ], [ -47.198129614434336, -22.076753961711447 ], [ -47.198042114874028, -22.076736021842603 ], [ -47.197954615331618, -22.076718081925026 ], [ -47.197867115807128, -22.076700141958742 ], [ -47.197779616300544, -22.076682201943729 ], [ -47.197692116811872, -22.076664261879987 ], [ -47.197604617341106, -22.07664632176752 ], [ -47.197517117888246, -22.07662838160633 ], [ -47.197429618453306, -22.076610441396422 ], [ -47.197342119036279, -22.076592501137803 ], [ -47.197254619637157, -22.076574560830451 ], [ -47.197167120255941, -22.076556620474385 ], [ -47.197079620892644, -22.076538680069596 ], [ -47.196992121547254, -22.076520739616079 ], [ -47.196904622219783, -22.076502799113843 ], [ -47.196817122910225, -22.076484858562885 ], [ -47.196729623618573, -22.076466917963224 ], [ -47.196642124344827, -22.076448977314826 ], [ -47.196554625089014, -22.076431036617695 ], [ -47.196467125851107, -22.076413095871864 ], [ -47.196379626631114, -22.076395155077304 ], [ -47.196292127429032, -22.076377214234025 ], [ -47.196204628244843, -22.076359273342025 ], [ -47.196117129078594, -22.076341332401299 ], [ -47.196029629930251, -22.076323391411872 ], [ -47.195942130799828, -22.076305450373713 ], [ -47.195854631687318, -22.076287509286821 ], [ -47.195767132592714, -22.076269568151222 ], [ -47.195679633516036, -22.076251626966908 ], [ -47.195592134457264, -22.076233685733868 ], [ -47.19550463541642, -22.076215744452107 ], [ -47.195417136393466, -22.076197803121627 ], [ -47.195329637388454, -22.076179861742432 ], [ -47.195242138401348, -22.076161920314512 ], [ -47.195154639432147, -22.076143978837898 ], [ -47.195067140480887, -22.076126037312545 ], [ -47.194979641547519, -22.076108095738473 ], [ -47.194892142632085, -22.076090154115683 ], [ -47.194804643734557, -22.076072212444178 ], [ -47.194717144854941, -22.076054270723947 ], [ -47.19462964599326, -22.076036328955006 ], [ -47.194542147149491, -22.076018387137346 ], [ -47.194454648323649, -22.07600044527096 ], [ -47.194367149515699, -22.075982503355871 ], [ -47.194279650725683, -22.075964561392048 ], [ -47.194192151953594, -22.075946619379504 ], [ -47.194104653199396, -22.07592867731827 ], [ -47.19401715446314, -22.075910735208314 ], [ -47.19392965574481, -22.075892793049626 ], [ -47.193842157044379, -22.075874850842222 ], [ -47.193754658361804, -22.075856908586083 ], [ -47.193667159697277, -22.07583896628126 ], [ -47.19357966105062, -22.075821023927713 ], [ -47.193492162421869, -22.07580308152545 ], [ -47.193404663811052, -22.075785139074473 ], [ -47.193317165218154, -22.075767196574766 ], [ -47.193229666643177, -22.075749254026348 ], [ -47.193142168086105, -22.075731311429216 ], [ -47.193054669546967, -22.075713368783365 ], [ -47.193008057963354, -22.075703810486548 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 613.65848853, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19880320615416, -22.07690593208503 ], [ -47.198738990174164, -22.076892766307456 ], [ -47.198651490480401, -22.076874826778685 ], [ -47.198563990804558, -22.076856887201163 ], [ -47.198476491146614, -22.076838947574924 ], [ -47.19838899150659, -22.076821007899966 ], [ -47.198301491884479, -22.07680306817625 ], [ -47.198213992280259, -22.076785128403852 ], [ -47.198126492693952, -22.076767188582711 ], [ -47.198038993125571, -22.076749248712861 ], [ -47.197951493575083, -22.07673130879428 ], [ -47.197863994042514, -22.076713368826983 ], [ -47.197776494527858, -22.076695428810964 ], [ -47.1976889950311, -22.076677488746203 ], [ -47.197601495552256, -22.076659548632737 ], [ -47.197513996091324, -22.076641608470542 ], [ -47.197426496648312, -22.076623668259625 ], [ -47.197338997223206, -22.076605728 ], [ -47.197251497815998, -22.076587787691619 ], [ -47.197163998426717, -22.076569847334564 ], [ -47.197076499055342, -22.076551906928749 ], [ -47.196988999701873, -22.076533966474237 ], [ -47.196901500366323, -22.076516025970996 ], [ -47.196814001048686, -22.076498085419026 ], [ -47.196726501748962, -22.076480144818358 ], [ -47.196639002467137, -22.076462204168948 ], [ -47.196551503203246, -22.076444263470794 ], [ -47.19646400395726, -22.076426322723972 ], [ -47.196376504729187, -22.076408381928399 ], [ -47.196289005519034, -22.076390441084115 ], [ -47.196201506326766, -22.076372500191106 ], [ -47.196114007152438, -22.076354559249371 ], [ -47.196026507996024, -22.076336618258939 ], [ -47.195939008857515, -22.076318677219749 ], [ -47.195851509736933, -22.076300736131866 ], [ -47.19576401063425, -22.076282794995244 ], [ -47.1956765115495, -22.076264853809931 ], [ -47.19558901248265, -22.076246912575886 ], [ -47.195501513433726, -22.076228971293116 ], [ -47.195414014402701, -22.07621102996163 ], [ -47.19532651538961, -22.076193088581423 ], [ -47.195239016394424, -22.076175147152497 ], [ -47.195151517417159, -22.076157205674871 ], [ -47.195064018457813, -22.076139264148491 ], [ -47.194976519516374, -22.076121322573425 ], [ -47.194889020592861, -22.076103380949625 ], [ -47.194801521687253, -22.076085439277108 ], [ -47.194714022799566, -22.076067497555872 ], [ -47.194626523929806, -22.076049555785929 ], [ -47.194539025077958, -22.076031613967238 ], [ -47.194451526244038, -22.076013672099862 ], [ -47.194364027428016, -22.075995730183759 ], [ -47.194276528629921, -22.075977788218907 ], [ -47.194189029849753, -22.075959846205372 ], [ -47.19410153108749, -22.075941904143132 ], [ -47.194014032343155, -22.07592396203216 ], [ -47.193926533616747, -22.075906019872466 ], [ -47.193839034908237, -22.075888077664054 ], [ -47.193751536217583, -22.075870135406891 ], [ -47.193664037544984, -22.07585219310107 ], [ -47.193576538890248, -22.075834250746517 ], [ -47.193489040253418, -22.075816308343224 ], [ -47.193401541634529, -22.075798365891252 ], [ -47.19331404303356, -22.07578042339054 ], [ -47.193226544450503, -22.075762480841117 ], [ -47.193139045885353, -22.075744538242969 ], [ -47.193051547338136, -22.075726595596109 ], [ -47.192997516404887, -22.075715515866509 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 612.90833967799995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198785567984984, -22.076916182746562 ], [ -47.198735868489848, -22.076905993185761 ], [ -47.198648368788028, -22.076888053655953 ], [ -47.198560869104092, -22.076870114077412 ], [ -47.198473369438076, -22.076852174450178 ], [ -47.198385869789966, -22.0768342347742 ], [ -47.198298370159776, -22.076816295049504 ], [ -47.198210870547506, -22.076798355276093 ], [ -47.198123370953105, -22.076780415453939 ], [ -47.198035871376639, -22.07676247558307 ], [ -47.197948371818079, -22.076744535663483 ], [ -47.197860872277431, -22.076726595695181 ], [ -47.197773372754689, -22.076708655678136 ], [ -47.19768587324986, -22.076690715612393 ], [ -47.197598373762936, -22.076672775497908 ], [ -47.197510874293926, -22.076654835334704 ], [ -47.197423374842835, -22.076636895122778 ], [ -47.197335875409649, -22.076618954862141 ], [ -47.19724837599437, -22.076601014552775 ], [ -47.197160876597025, -22.076583074194691 ], [ -47.197073377217556, -22.076565133787877 ], [ -47.196985877856022, -22.076547193332352 ], [ -47.196898378512394, -22.076529252828099 ], [ -47.196810879186685, -22.076511312275123 ], [ -47.196723379878861, -22.07649337167344 ], [ -47.196635880588985, -22.076475431023024 ], [ -47.196548381317015, -22.076457490323879 ], [ -47.196460882062937, -22.076439549576019 ], [ -47.196373382826792, -22.076421608779441 ], [ -47.196285883608553, -22.076403667934155 ], [ -47.19619838440822, -22.076385727040133 ], [ -47.196110885225821, -22.076367786097396 ], [ -47.19602338606132, -22.076349845105945 ], [ -47.195935886914754, -22.076331904065761 ], [ -47.195848387786079, -22.076313962976865 ], [ -47.195760888675338, -22.076296021839244 ], [ -47.195673389582481, -22.076278080652912 ], [ -47.195585890507566, -22.076260139417855 ], [ -47.195498391450556, -22.076242198134079 ], [ -47.195410892411481, -22.076224256801581 ], [ -47.195323393390296, -22.076206315420382 ], [ -47.195235894387039, -22.076188373990437 ], [ -47.195148395401688, -22.07617043251178 ], [ -47.195060896434256, -22.07615249098442 ], [ -47.194973397484752, -22.07613454940833 ], [ -47.194885898553167, -22.076116607783522 ], [ -47.194798399639481, -22.07609866611001 ], [ -47.194710900743708, -22.076080724387769 ], [ -47.194623401865876, -22.076062782616802 ], [ -47.194535903005956, -22.07604484079711 ], [ -47.194448404163943, -22.07602689892871 ], [ -47.194360905339863, -22.076008957011592 ], [ -47.194273406533704, -22.075991015045759 ], [ -47.194185907745435, -22.075973073031207 ], [ -47.194098408975108, -22.075955130967941 ], [ -47.194010910222694, -22.075937188855956 ], [ -47.1939234114882, -22.07591924669525 ], [ -47.193835912771618, -22.075901304485839 ], [ -47.193748414072893, -22.075883362227682 ], [ -47.193660915392236, -22.075865419920845 ], [ -47.193573416729407, -22.075847477565269 ], [ -47.193485918084512, -22.075829535160977 ], [ -47.193398419457537, -22.075811592707986 ], [ -47.193310920848475, -22.075793650206268 ], [ -47.19322342225734, -22.075775707655829 ], [ -47.193135923684132, -22.075757765056679 ], [ -47.193048425128829, -22.075739822408803 ], [ -47.192986974844722, -22.075727221245902 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 612.158190827, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198767929813144, -22.076926433406392 ], [ -47.198732746805064, -22.076919220064024 ], [ -47.198645247095165, -22.076901280533196 ], [ -47.19855774740315, -22.076883340953664 ], [ -47.198470247729063, -22.07686540132541 ], [ -47.198382748072881, -22.07684746164843 ], [ -47.198295248434604, -22.076829521922729 ], [ -47.198207748814255, -22.076811582148306 ], [ -47.198120249211776, -22.076793642325129 ], [ -47.198032749627238, -22.076775702453268 ], [ -47.197945250060599, -22.076757762532672 ], [ -47.197857750511872, -22.076739822563358 ], [ -47.197770250981051, -22.076721882545293 ], [ -47.19768275146815, -22.076703942478552 ], [ -47.197595251973141, -22.076686002363068 ], [ -47.197507752496065, -22.076668062198852 ], [ -47.197420253036888, -22.076650121985921 ], [ -47.197332753595632, -22.076632181724271 ], [ -47.197245254172273, -22.076614241413893 ], [ -47.197157754766849, -22.076596301054806 ], [ -47.197070255379316, -22.076578360646987 ], [ -47.196982756009696, -22.076560420190447 ], [ -47.196895256657996, -22.07654247968518 ], [ -47.196807757324201, -22.076524539131199 ], [ -47.196720258008312, -22.07650659852851 ], [ -47.196632758710344, -22.076488657877071 ], [ -47.196545259430309, -22.076470717176928 ], [ -47.196457760168151, -22.076452776428063 ], [ -47.196370260923921, -22.076434835630476 ], [ -47.19628276169761, -22.076416894784181 ], [ -47.196195262489205, -22.076398953889154 ], [ -47.196107763298727, -22.076381012945408 ], [ -47.196020264126155, -22.076363071952944 ], [ -47.195932764971502, -22.076345130911751 ], [ -47.195845265834755, -22.076327189821843 ], [ -47.195757766715928, -22.076309248683202 ], [ -47.195670267615007, -22.076291307495875 ], [ -47.195582768532006, -22.076273366259809 ], [ -47.195495269466925, -22.07625542497502 ], [ -47.19540777041977, -22.076237483641517 ], [ -47.195320271390514, -22.076219542259309 ], [ -47.195232772379171, -22.076201600828341 ], [ -47.195145273385748, -22.07618365934869 ], [ -47.195057774410245, -22.07616571782032 ], [ -47.194970275452661, -22.076147776243221 ], [ -47.194882776512991, -22.076129834617383 ], [ -47.19479527759124, -22.076111892942876 ], [ -47.194707778687395, -22.076093951219629 ], [ -47.194620279801484, -22.07607600944764 ], [ -47.194532780933486, -22.076058067626938 ], [ -47.194445282083393, -22.076040125757544 ], [ -47.194357783251235, -22.076022183839417 ], [ -47.194270284436989, -22.07600424187256 ], [ -47.194182785640663, -22.075986299857021 ], [ -47.194095286862257, -22.075968357792735 ], [ -47.194007788101757, -22.075950415679742 ], [ -47.193920289359191, -22.075932473518026 ], [ -47.193832790634538, -22.075914531307607 ], [ -47.193745291927726, -22.075896589048423 ], [ -47.193657793238998, -22.075878646740591 ], [ -47.19357029456809, -22.075860704384013 ], [ -47.193482795915116, -22.075842761978706 ], [ -47.193395297280063, -22.075824819524705 ], [ -47.193307798662936, -22.075806877021972 ], [ -47.193220300063729, -22.07578893447053 ], [ -47.193132801482435, -22.075770991870364 ], [ -47.19304530291906, -22.075753049221486 ], [ -47.19297643328283, -22.075738926624759 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 611.40804197700004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198750291638675, -22.076936684064496 ], [ -47.19872962511981, -22.076932446942227 ], [ -47.198642125401825, -22.076914507410415 ], [ -47.198554625701739, -22.07689656782987 ], [ -47.198467126019565, -22.0768786282006 ], [ -47.198379626355319, -22.076860688522608 ], [ -47.198292126708964, -22.076842748795897 ], [ -47.198204627080536, -22.076824809020458 ], [ -47.198117127469985, -22.076806869196311 ], [ -47.198029627877368, -22.076788929323431 ], [ -47.19794212830265, -22.076770989401815 ], [ -47.197854628745851, -22.076753049431488 ], [ -47.197767129206952, -22.076735109412436 ], [ -47.197679629685965, -22.076717169344665 ], [ -47.197592130182898, -22.076699229228169 ], [ -47.197504630697736, -22.07668128906295 ], [ -47.19741713123048, -22.07666334884901 ], [ -47.197329631781137, -22.076645408586348 ], [ -47.197242132349714, -22.076627468274971 ], [ -47.197154632936183, -22.076609527914862 ], [ -47.197067133540592, -22.076591587506034 ], [ -47.196979634162894, -22.076573647048491 ], [ -47.196892134803107, -22.076555706542219 ], [ -47.196804635461234, -22.076537765987233 ], [ -47.196717136137288, -22.076519825383517 ], [ -47.19662963683124, -22.076501884731083 ], [ -47.196542137543105, -22.076483944029935 ], [ -47.196454638272897, -22.076466003280064 ], [ -47.196367139020587, -22.076448062481461 ], [ -47.196279639786205, -22.07643012163415 ], [ -47.196192140569721, -22.076412180738114 ], [ -47.196104641371143, -22.076394239793373 ], [ -47.196017142190506, -22.076376298799897 ], [ -47.195929643027767, -22.076358357757705 ], [ -47.195842143882949, -22.076340416666781 ], [ -47.195754644756043, -22.076322475527139 ], [ -47.19566714564705, -22.076304534338792 ], [ -47.195579646555977, -22.076286593101717 ], [ -47.19549214748281, -22.076268651815919 ], [ -47.195404648427576, -22.076250710481407 ], [ -47.195317149390235, -22.07623276909818 ], [ -47.195229650370827, -22.076214827666227 ], [ -47.195142151369332, -22.076196886185553 ], [ -47.19505465238575, -22.076178944656167 ], [ -47.194967153420102, -22.076161003078063 ], [ -47.194879654472345, -22.076143061451237 ], [ -47.194792155542515, -22.076125119775686 ], [ -47.19470465663062, -22.076107178051419 ], [ -47.194617157736609, -22.076089236278452 ], [ -47.194529658860539, -22.076071294456753 ], [ -47.194442160002374, -22.076053352586335 ], [ -47.194354661162137, -22.076035410667206 ], [ -47.19426716233982, -22.076017468699352 ], [ -47.194179663535401, -22.075999526682775 ], [ -47.194092164748916, -22.075981584617487 ], [ -47.194004665980351, -22.075963642503478 ], [ -47.193917167229706, -22.07594570034076 ], [ -47.193829668496974, -22.075927758129314 ], [ -47.193742169782084, -22.075909815869156 ], [ -47.193654671085284, -22.075891873560291 ], [ -47.193567172406325, -22.07587393120269 ], [ -47.193479673745259, -22.075855988796398 ], [ -47.193392175102133, -22.075838046341371 ], [ -47.193304676476927, -22.075820103837632 ], [ -47.193217177869634, -22.075802161285175 ], [ -47.193129679280261, -22.07578421868401 ], [ -47.193042180708822, -22.07576627603412 ], [ -47.192965891719254, -22.075750632003047 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 610.65789312699997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198732653461548, -22.076946934720894 ], [ -47.198726503434088, -22.076945673820411 ], [ -47.198639003708024, -22.076927734287608 ], [ -47.198551503999866, -22.076909794706054 ], [ -47.198464004309614, -22.076891855075761 ], [ -47.198376504637281, -22.076873915396774 ], [ -47.198289004982854, -22.076855975669051 ], [ -47.198201505346347, -22.07683803589261 ], [ -47.198114005727724, -22.076820096067454 ], [ -47.198026506127022, -22.076802156193562 ], [ -47.197939006544232, -22.07678421627093 ], [ -47.197851506979354, -22.076766276299608 ], [ -47.197764007432376, -22.076748336279547 ], [ -47.19767650790331, -22.07673039621076 ], [ -47.197589008392164, -22.076712456093254 ], [ -47.197501508898931, -22.076694515927034 ], [ -47.197414009423596, -22.076676575712085 ], [ -47.197326509966175, -22.07665863544841 ], [ -47.19723901052668, -22.076640695136028 ], [ -47.197151511105069, -22.076622754774913 ], [ -47.1970640117014, -22.076604814365076 ], [ -47.196976512315629, -22.076586873906525 ], [ -47.196889012947764, -22.076568933399244 ], [ -47.196801513597812, -22.076550992843249 ], [ -47.196714014265787, -22.076533052238528 ], [ -47.19662651495166, -22.076515111585085 ], [ -47.196539015655453, -22.076497170882924 ], [ -47.196451516377167, -22.076479230132048 ], [ -47.196364017116778, -22.076461289332418 ], [ -47.196276517874317, -22.076443348484116 ], [ -47.196189018649754, -22.07642540758707 ], [ -47.196101519443104, -22.07640746664131 ], [ -47.196014020254388, -22.076389525646814 ], [ -47.195926521083578, -22.076371584603635 ], [ -47.195839021930674, -22.076353643511684 ], [ -47.195751522795703, -22.07633570237105 ], [ -47.195664023678631, -22.076317761181691 ], [ -47.195576524579479, -22.076299819943607 ], [ -47.195489025498233, -22.076281878656804 ], [ -47.195401526434921, -22.076263937321276 ], [ -47.195314027389507, -22.076245995937047 ], [ -47.195226528362021, -22.076228054504082 ], [ -47.195139029352447, -22.076210113022398 ], [ -47.195051530360793, -22.076192171491996 ], [ -47.194964031387066, -22.076174229912887 ], [ -47.19487653243123, -22.076156288285034 ], [ -47.194789033493329, -22.076138346608495 ], [ -47.194701534573355, -22.076120404883223 ], [ -47.194614035671272, -22.076102463109237 ], [ -47.194526536787123, -22.076084521286514 ], [ -47.19443903792088, -22.076066579415105 ], [ -47.194351539072564, -22.076048637494967 ], [ -47.194264040242174, -22.0760306955261 ], [ -47.194176541429677, -22.076012753508522 ], [ -47.194089042635113, -22.075994811442218 ], [ -47.194001543858477, -22.075976869327199 ], [ -47.19391404509976, -22.07595892716347 ], [ -47.193826546358949, -22.075940984951021 ], [ -47.193739047635987, -22.075923042689855 ], [ -47.193651548931101, -22.075905100379959 ], [ -47.193564050244071, -22.07588715802137 ], [ -47.193476551574925, -22.075869215614066 ], [ -47.193389052923727, -22.075851273158015 ], [ -47.19330155429045, -22.075833330653278 ], [ -47.193214055675071, -22.075815388099812 ], [ -47.193126557077633, -22.075797445497631 ], [ -47.193039058498108, -22.075779502846732 ], [ -47.192955350153937, -22.075762337380791 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 609.90774427600002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198715015281735, -22.076957185375601 ], [ -47.198635882013754, -22.076940961164741 ], [ -47.198548382297517, -22.076923021582179 ], [ -47.198460882599186, -22.076905081950901 ], [ -47.198373382918774, -22.076887142270895 ], [ -47.198285883256268, -22.076869202542163 ], [ -47.198198383611661, -22.076851262764716 ], [ -47.198110883984981, -22.076833322938541 ], [ -47.198023384376206, -22.07681538306365 ], [ -47.197935884785331, -22.076797443140016 ], [ -47.197848385212389, -22.076779503167668 ], [ -47.197760885657331, -22.076761563146608 ], [ -47.197673386120201, -22.076743623076815 ], [ -47.197585886600962, -22.076725682958301 ], [ -47.197498387099657, -22.076707742791065 ], [ -47.197410887616243, -22.076689802575128 ], [ -47.197323388150743, -22.076671862310445 ], [ -47.197235888703155, -22.076653921997046 ], [ -47.197148389273494, -22.076635981634922 ], [ -47.197060889861724, -22.076618041224076 ], [ -47.196973390467875, -22.076600100764502 ], [ -47.196885891091945, -22.076582160256223 ], [ -47.196798391733921, -22.076564219699211 ], [ -47.196710892393817, -22.076546279093485 ], [ -47.196623393071619, -22.076528338439037 ], [ -47.196535893767326, -22.076510397735877 ], [ -47.196448394480946, -22.076492456983981 ], [ -47.196360895212493, -22.076474516183364 ], [ -47.196273395961953, -22.076456575334028 ], [ -47.196185896729318, -22.076438634435974 ], [ -47.196098397514604, -22.076420693489208 ], [ -47.196010898317809, -22.076402752493717 ], [ -47.195923399138927, -22.076384811449508 ], [ -47.195835899977936, -22.076366870356576 ], [ -47.195748400834873, -22.07634892921492 ], [ -47.195660901709736, -22.076330988024541 ], [ -47.19557340260252, -22.076313046785447 ], [ -47.195485903513195, -22.076295105497636 ], [ -47.195398404441804, -22.076277164161098 ], [ -47.195310905388318, -22.07625922277585 ], [ -47.195223406352753, -22.07624128134189 ], [ -47.1951359073351, -22.076223339859208 ], [ -47.195048408335374, -22.076205398327797 ], [ -47.194960909353554, -22.076187456747661 ], [ -47.194873410389647, -22.076169515118824 ], [ -47.194785911443688, -22.076151573441265 ], [ -47.194698412515606, -22.076133631714981 ], [ -47.194610913605459, -22.076115689939968 ], [ -47.194523414713224, -22.076097748116261 ], [ -47.194435915838916, -22.076079806243825 ], [ -47.194348416982528, -22.076061864322682 ], [ -47.194260918144053, -22.076043922352802 ], [ -47.194173419323491, -22.076025980334212 ], [ -47.194085920520862, -22.076008038266906 ], [ -47.19399842173614, -22.075990096150878 ], [ -47.193910922969337, -22.075972153986136 ], [ -47.193823424220454, -22.075954211772675 ], [ -47.193735925489413, -22.075936269510482 ], [ -47.193648426776456, -22.075918327199606 ], [ -47.193560928081325, -22.075900384839997 ], [ -47.193473429404122, -22.075882442431674 ], [ -47.193385930744839, -22.075864499974628 ], [ -47.193298432103475, -22.075846557468868 ], [ -47.193210933480039, -22.075828614914393 ], [ -47.193123434874522, -22.075810672311206 ], [ -47.193035936286932, -22.075792729659298 ], [ -47.192948437717241, -22.075774786958682 ], [ -47.192944808586923, -22.075774042757967 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 609.15759542499995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198697377099272, -22.076967436028593 ], [ -47.198632760319008, -22.076954188041871 ], [ -47.198545260594699, -22.076936248458303 ], [ -47.198457760888289, -22.076918308826013 ], [ -47.198370261199798, -22.076900369144997 ], [ -47.198282761529221, -22.07688242941526 ], [ -47.198195261876535, -22.076864489636804 ], [ -47.198107762241769, -22.076846549809616 ], [ -47.198020262624922, -22.076828609933717 ], [ -47.197932763025968, -22.07681067000906 ], [ -47.197845263444947, -22.07679273003572 ], [ -47.197757763881818, -22.076774790013651 ], [ -47.197670264336601, -22.07675684994285 ], [ -47.197582764809283, -22.076738909823327 ], [ -47.197495265299899, -22.076720969655081 ], [ -47.197407765808421, -22.076703029438139 ], [ -47.197320266334835, -22.076685089172429 ], [ -47.197232766879175, -22.076667148858039 ], [ -47.197145267441435, -22.076649208494906 ], [ -47.197057768021587, -22.076631268083037 ], [ -47.196970268619658, -22.076613327622468 ], [ -47.196882769235657, -22.076595387113183 ], [ -47.196795269869554, -22.076577446555159 ], [ -47.196707770521371, -22.076559505948424 ], [ -47.196620271191108, -22.07654156529297 ], [ -47.196532771878729, -22.076523624588802 ], [ -47.19644527258427, -22.076505683835897 ], [ -47.196357773307746, -22.076487743034278 ], [ -47.19627027404912, -22.076469802183929 ], [ -47.196182774808413, -22.076451861284866 ], [ -47.196095275585627, -22.076433920337092 ], [ -47.196007776380746, -22.076415979340585 ], [ -47.195920277193792, -22.07639803829537 ], [ -47.195832778024723, -22.076380097201426 ], [ -47.195745278873581, -22.076362156058767 ], [ -47.19565777974038, -22.07634421486738 ], [ -47.195570280625077, -22.076326273627277 ], [ -47.19548278152768, -22.076308332338456 ], [ -47.195395282448203, -22.076290391000914 ], [ -47.195307783386646, -22.076272449614653 ], [ -47.195220284343002, -22.076254508179677 ], [ -47.195132785317277, -22.076236566695989 ], [ -47.195045286309472, -22.07621862516357 ], [ -47.194957787319574, -22.076200683582407 ], [ -47.194870288347587, -22.076182741952575 ], [ -47.19478278939355, -22.076164800274011 ], [ -47.194695290457396, -22.0761468585467 ], [ -47.194607791539177, -22.076128916770696 ], [ -47.19452029263887, -22.076110974945976 ], [ -47.194432793756484, -22.076093033072517 ], [ -47.19434529489201, -22.076075091150372 ], [ -47.194257796045456, -22.076057149179476 ], [ -47.194170297216829, -22.076039207159894 ], [ -47.194082798406114, -22.076021265091576 ], [ -47.19399529961332, -22.07600332297454 ], [ -47.193907800838439, -22.075985380808785 ], [ -47.193820302081491, -22.075967438594315 ], [ -47.193732803342364, -22.075949496331116 ], [ -47.193645304621327, -22.075931554019228 ], [ -47.193557805918125, -22.075913611658606 ], [ -47.193470307232843, -22.075895669249274 ], [ -47.193382808565488, -22.075877726791205 ], [ -47.193295309916053, -22.075859784284454 ], [ -47.193207811284537, -22.075841841728966 ], [ -47.193120312670949, -22.075823899124774 ], [ -47.193032814075274, -22.07580595647185 ], [ -47.192945315497518, -22.075788013770229 ], [ -47.192934267018188, -22.07578574813461 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 608.40744657400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198679738914159, -22.076977686679875 ], [ -47.198629638623807, -22.076967414918958 ], [ -47.198542138891405, -22.076949475334377 ], [ -47.198454639176923, -22.076931535701078 ], [ -47.198367139480354, -22.076913596019054 ], [ -47.19827963980169, -22.076895656288308 ], [ -47.198192140140939, -22.076877716508832 ], [ -47.198104640498094, -22.076859776680635 ], [ -47.198017140873176, -22.076841836803734 ], [ -47.197929641266136, -22.076823896878093 ], [ -47.197842141677029, -22.076805956903733 ], [ -47.197754642105821, -22.076788016880649 ], [ -47.197667142552518, -22.076770076808842 ], [ -47.197579643017143, -22.07675213668832 ], [ -47.19749214349968, -22.076734196519066 ], [ -47.197404644000116, -22.076716256301086 ], [ -47.197317144518465, -22.076698316034392 ], [ -47.19722964505474, -22.076680375718986 ], [ -47.197142145608908, -22.076662435354844 ], [ -47.197054646180995, -22.076644494941984 ], [ -47.196967146770987, -22.076626554480399 ], [ -47.196879647378893, -22.076608613970095 ], [ -47.196792148004718, -22.076590673411069 ], [ -47.196704648648449, -22.076572732803321 ], [ -47.1966171493101, -22.076554792146844 ], [ -47.196529649989664, -22.076536851441663 ], [ -47.196442150687133, -22.07651891068776 ], [ -47.19635465140253, -22.076500969885135 ], [ -47.196267152135825, -22.076483029033781 ], [ -47.196179652887039, -22.076465088133709 ], [ -47.196092153656167, -22.076447147184911 ], [ -47.196004654443215, -22.076429206187417 ], [ -47.195917155248168, -22.076411265141179 ], [ -47.195829656071048, -22.076393324046226 ], [ -47.195742156911834, -22.076375382902551 ], [ -47.19565465777054, -22.076357441710169 ], [ -47.195567158647151, -22.076339500469057 ], [ -47.195479659541682, -22.076321559179227 ], [ -47.195392160454148, -22.076303617840676 ], [ -47.195304661384505, -22.076285676453409 ], [ -47.195217162332781, -22.076267735017417 ], [ -47.195129663298978, -22.076249793532714 ], [ -47.195042164283102, -22.076231851999296 ], [ -47.194954665285131, -22.076213910417149 ], [ -47.194867166305073, -22.076195968786283 ], [ -47.194779667342935, -22.0761780271067 ], [ -47.194692168398717, -22.076160085378394 ], [ -47.194604669472426, -22.076142143601373 ], [ -47.194517170564033, -22.076124201775638 ], [ -47.194429671673575, -22.076106259901177 ], [ -47.194342172801022, -22.076088317978023 ], [ -47.194254673946396, -22.076070376006133 ], [ -47.194167175109683, -22.07605243398552 ], [ -47.194079676290897, -22.076034491916197 ], [ -47.193992177490024, -22.076016549798151 ], [ -47.193904678707078, -22.075998607631387 ], [ -47.193817179942045, -22.075980665415909 ], [ -47.193729681194839, -22.075962723151687 ], [ -47.193642182465737, -22.075944780838803 ], [ -47.193554683754463, -22.07592683847718 ], [ -47.193467185061102, -22.075908896066831 ], [ -47.193379686385668, -22.075890953607768 ], [ -47.193292187728161, -22.075873011099986 ], [ -47.193204689088567, -22.07585506854349 ], [ -47.193117190466893, -22.075837125938275 ], [ -47.193029691863138, -22.075819183284349 ], [ -47.192942193277332, -22.075801240581711 ], [ -47.192923725447756, -22.075797453510678 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 607.63088865500004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198661850874103, -22.076987886103769 ], [ -47.198626516928115, -22.07698064179602 ], [ -47.198539017187635, -22.076962702210434 ], [ -47.198451517465081, -22.076944762576126 ], [ -47.19836401776044, -22.076926822893093 ], [ -47.198276518073691, -22.076908883161337 ], [ -47.198189018404861, -22.076890943380857 ], [ -47.198101518753944, -22.07687300355165 ], [ -47.198014019120947, -22.076855063673737 ], [ -47.197926519505828, -22.07683712374709 ], [ -47.197839019908642, -22.076819183771729 ], [ -47.197751520329362, -22.076801243747632 ], [ -47.197664020767981, -22.076783303674812 ], [ -47.197576521224526, -22.076765363553285 ], [ -47.197489021698985, -22.076747423383022 ], [ -47.197401522191342, -22.076729483164023 ], [ -47.197314022701619, -22.07671154289633 ], [ -47.197226523229816, -22.076693602579915 ], [ -47.197139023775904, -22.076675662214768 ], [ -47.197051524339912, -22.076657721800895 ], [ -47.196964024921833, -22.076639781338304 ], [ -47.19687652552166, -22.076621840826991 ], [ -47.196789026139406, -22.076603900266957 ], [ -47.196701526775065, -22.0765859596582 ], [ -47.196614027428637, -22.076568019000721 ], [ -47.196526528100122, -22.076550078294524 ], [ -47.19643902878952, -22.076532137539612 ], [ -47.196351529496837, -22.076514196735982 ], [ -47.196264030222054, -22.076496255883615 ], [ -47.196176530965189, -22.076478314982534 ], [ -47.196089031726245, -22.076460374032735 ], [ -47.196001532505214, -22.076442433034227 ], [ -47.195914033302088, -22.076424491986959 ], [ -47.19582653411689, -22.076406550891015 ], [ -47.195739034949604, -22.076388609746335 ], [ -47.195651535800238, -22.07637066855294 ], [ -47.195564036668763, -22.07635272731082 ], [ -47.195476537555223, -22.076334786019981 ], [ -47.195389038459609, -22.076316844680417 ], [ -47.195301539381894, -22.076298903292148 ], [ -47.195214040322099, -22.076280961855133 ], [ -47.19512654128021, -22.076263020369431 ], [ -47.195039042256255, -22.076245078835004 ], [ -47.194951543250212, -22.076227137251848 ], [ -47.194864044262076, -22.076209195619974 ], [ -47.194776545291859, -22.076191253939385 ], [ -47.194689046339562, -22.076173312210067 ], [ -47.194601547405192, -22.076155370432023 ], [ -47.194514048488735, -22.076137428605289 ], [ -47.194426549590197, -22.076119486729823 ], [ -47.194339050709573, -22.07610154480566 ], [ -47.194251551846861, -22.076083602832757 ], [ -47.194164053002076, -22.076065660811121 ], [ -47.194076554175211, -22.076047718740799 ], [ -47.193989055366266, -22.076029776621745 ], [ -47.193901556575234, -22.076011834453976 ], [ -47.193814057802136, -22.075993892237484 ], [ -47.193726559046851, -22.075975949972257 ], [ -47.193639060309671, -22.075958007658357 ], [ -47.193551561590318, -22.075940065295729 ], [ -47.193464062888886, -22.07592212288435 ], [ -47.193376564205373, -22.075904180424295 ], [ -47.193289065539787, -22.075886237915491 ], [ -47.193201566892128, -22.075868295357999 ], [ -47.193114068262368, -22.075850352751761 ], [ -47.193026569650542, -22.07583241009684 ], [ -47.192939071056657, -22.075814467393187 ], [ -47.192913183875596, -22.075809158886209 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 606.69610816199997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198643471069076, -22.076997984702835 ], [ -47.198623395231955, -22.076993868673043 ], [ -47.198535895483417, -22.076975929086437 ], [ -47.198448395752763, -22.076957989451124 ], [ -47.198360896040043, -22.076940049767089 ], [ -47.198273396345229, -22.076922110034317 ], [ -47.198185896668335, -22.076904170252828 ], [ -47.198098397009325, -22.076886230422623 ], [ -47.198010897368235, -22.076868290543686 ], [ -47.197923397745058, -22.076850350616031 ], [ -47.197835898139786, -22.076832410639668 ], [ -47.19774839855242, -22.076814470614568 ], [ -47.197660898982988, -22.07679653054074 ], [ -47.197573399431448, -22.076778590418193 ], [ -47.197485899897814, -22.076760650246921 ], [ -47.197398400382106, -22.076742710026931 ], [ -47.197310900884297, -22.076724769758215 ], [ -47.197223401404415, -22.076706829440795 ], [ -47.197135901942424, -22.076688889074642 ], [ -47.197048402498353, -22.076670948659764 ], [ -47.196960903072195, -22.076653008196157 ], [ -47.196873403663957, -22.076635067683842 ], [ -47.196785904273632, -22.076617127122795 ], [ -47.196698404901213, -22.076599186513029 ], [ -47.196610905546706, -22.076581245854562 ], [ -47.196523406210112, -22.076563305147353 ], [ -47.196435906891431, -22.076545364391418 ], [ -47.196348407590662, -22.076527423586775 ], [ -47.196260908307814, -22.076509482733407 ], [ -47.196173409042878, -22.076491541831313 ], [ -47.196085909795855, -22.076473600880504 ], [ -47.195998410566737, -22.076455659880974 ], [ -47.19591091135554, -22.076437718832722 ], [ -47.19582341216227, -22.076419777735747 ], [ -47.195735912986898, -22.076401836590058 ], [ -47.195648413829446, -22.076383895395647 ], [ -47.195560914689914, -22.076365954152532 ], [ -47.195473415568287, -22.076348012860688 ], [ -47.195385916464595, -22.076330071520118 ], [ -47.195298417378801, -22.076312130130827 ], [ -47.19521091831092, -22.07629418869282 ], [ -47.19512341926098, -22.076276247206096 ], [ -47.195035920228932, -22.076258305670663 ], [ -47.194948421214811, -22.076240364086498 ], [ -47.194860922218609, -22.076222422453618 ], [ -47.194773423240314, -22.076204480772013 ], [ -47.194685924279938, -22.076186539041689 ], [ -47.194598425337496, -22.076168597262651 ], [ -47.194510926412946, -22.076150655434894 ], [ -47.194423427506337, -22.076132713558419 ], [ -47.194335928617654, -22.076114771633225 ], [ -47.194248429746857, -22.076096829659335 ], [ -47.194160930894, -22.076078887636701 ], [ -47.194073432059056, -22.076060945565356 ], [ -47.193985933242026, -22.076043003445292 ], [ -47.193898434442929, -22.076025061276514 ], [ -47.193810935661752, -22.076007119059014 ], [ -47.193723436898388, -22.075989176792785 ], [ -47.193635938153122, -22.075971234477866 ], [ -47.193548439425705, -22.075953292114225 ], [ -47.193460940716193, -22.075935349701858 ], [ -47.193373442024608, -22.075917407240787 ], [ -47.193285943350944, -22.075899464730988 ], [ -47.193198444695199, -22.075881522172462 ], [ -47.193110946057374, -22.075863579565237 ], [ -47.193023447437483, -22.075845636909285 ], [ -47.192935948835498, -22.075827694204619 ], [ -47.192903647446329, -22.075821070379423 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 605.76039209299995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198625091261341, -22.077008083300026 ], [ -47.198620273535326, -22.077007095550023 ], [ -47.198532773778716, -22.076989155962419 ], [ -47.19844527403999, -22.076971216326108 ], [ -47.198357774319184, -22.076953276641056 ], [ -47.198270274616291, -22.076935336907283 ], [ -47.198182774931318, -22.076917397124792 ], [ -47.19809527526423, -22.076899457293571 ], [ -47.198007775615061, -22.076881517413629 ], [ -47.197920275983805, -22.076863577484968 ], [ -47.197832776370461, -22.076845637507596 ], [ -47.197745276775024, -22.07682769748147 ], [ -47.197657777197506, -22.07680975740665 ], [ -47.197570277637887, -22.076791817283095 ], [ -47.19748277809618, -22.076773877110817 ], [ -47.197395278572394, -22.076755936889818 ], [ -47.197307779066513, -22.076737996620096 ], [ -47.197220279578545, -22.076720056301664 ], [ -47.197132780108483, -22.076702115934502 ], [ -47.197045280656326, -22.076684175518615 ], [ -47.196957781222103, -22.076666235054002 ], [ -47.196870281805779, -22.076648294540671 ], [ -47.196782782407375, -22.076630353978615 ], [ -47.196695283026891, -22.076612413367847 ], [ -47.196607783664298, -22.076594472708368 ], [ -47.196520284319625, -22.076576532000132 ], [ -47.196432784992879, -22.076558591243202 ], [ -47.196345285684025, -22.076540650437554 ], [ -47.196257786393097, -22.076522709583177 ], [ -47.19617028712009, -22.076504768680078 ], [ -47.196082787864981, -22.076486827728257 ], [ -47.195995288627792, -22.076468886727717 ], [ -47.195907789408523, -22.076450945678456 ], [ -47.195820290207166, -22.076433004580476 ], [ -47.195732791023723, -22.076415063433775 ], [ -47.195645291858199, -22.076397122238358 ], [ -47.195557792710588, -22.076379180994238 ], [ -47.19547029358089, -22.076361239701377 ], [ -47.195382794469118, -22.076343298359799 ], [ -47.195295295375246, -22.076325356969502 ], [ -47.195207796299286, -22.076307415530483 ], [ -47.195120297241267, -22.076289474042749 ], [ -47.195032798201147, -22.076271532506311 ], [ -47.194945299178947, -22.076253590921116 ], [ -47.194857800174667, -22.076235649287245 ], [ -47.194770301188299, -22.076217707604634 ], [ -47.194682802219845, -22.076199765873302 ], [ -47.194595303269324, -22.076181824093251 ], [ -47.194507804336709, -22.076163882264485 ], [ -47.194420305422014, -22.076145940387001 ], [ -47.194332806525253, -22.076127998460798 ], [ -47.194245307646383, -22.076110056485895 ], [ -47.194157808785448, -22.076092114462256 ], [ -47.194070309942433, -22.076074172389902 ], [ -47.193982811117323, -22.076056230268826 ], [ -47.193895312310147, -22.076038288099035 ], [ -47.193807813520891, -22.076020345880526 ], [ -47.193720314749456, -22.076002403613284 ], [ -47.193632815996111, -22.075984461297359 ], [ -47.193545317260615, -22.075966518932706 ], [ -47.193457818543031, -22.07594857651932 ], [ -47.193370319843375, -22.075930634057251 ], [ -47.193282821161631, -22.075912691546421 ], [ -47.1931953224978, -22.075894748986908 ], [ -47.193107823851918, -22.07587680637867 ], [ -47.193020325223941, -22.075858863721695 ], [ -47.192932826613877, -22.075840921016038 ], [ -47.192894119866743, -22.075832983687267 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 604.82467602300005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198606711450836, -22.077018181895358 ], [ -47.198529652073532, -22.077002382838376 ], [ -47.198442152326727, -22.076984443201042 ], [ -47.198354652597843, -22.076966503514985 ], [ -47.198267152886878, -22.076948563780203 ], [ -47.198179653193812, -22.076930623996702 ], [ -47.198092153518665, -22.07691268416448 ], [ -47.198004653861425, -22.076894744283525 ], [ -47.197917154222097, -22.076876804353862 ], [ -47.197829654600667, -22.07685886437547 ], [ -47.197742154997151, -22.076840924348353 ], [ -47.197654655411547, -22.076822984272514 ], [ -47.197567155843871, -22.07680504414796 ], [ -47.197479656294085, -22.076787103974667 ], [ -47.19739215676222, -22.076769163752655 ], [ -47.197304657248253, -22.076751223481921 ], [ -47.197217157752213, -22.076733283162465 ], [ -47.197129658274072, -22.076715342794287 ], [ -47.197042158813858, -22.07669740237742 ], [ -47.196954659371556, -22.076679461911795 ], [ -47.196867159947139, -22.076661521397451 ], [ -47.196779660540649, -22.076643580834393 ], [ -47.196692161152086, -22.076625640222623 ], [ -47.196604661781421, -22.076607699562114 ], [ -47.196517162428677, -22.076589758852894 ], [ -47.196429663093852, -22.076571818094951 ], [ -47.196342163776919, -22.076553877288287 ], [ -47.196254664477912, -22.076535936432904 ], [ -47.196167165196826, -22.076517995528793 ], [ -47.196079665933645, -22.076500054575966 ], [ -47.195992166688384, -22.076482113574428 ], [ -47.195904667461029, -22.076464172524155 ], [ -47.195817168251608, -22.076446231425155 ], [ -47.195729669060071, -22.076428290277455 ], [ -47.195642169886476, -22.076410349081023 ], [ -47.195554670730793, -22.076392407835886 ], [ -47.195467171593009, -22.076374466542024 ], [ -47.195379672473166, -22.076356525199429 ], [ -47.195292173371215, -22.076338583808123 ], [ -47.19520467428719, -22.076320642368096 ], [ -47.195117175221078, -22.076302700879349 ], [ -47.195029676172886, -22.076284759341892 ], [ -47.194942177142622, -22.076266817755705 ], [ -47.194854678130255, -22.076248876120815 ], [ -47.194767179135809, -22.076230934437202 ], [ -47.194679680159304, -22.076212992704864 ], [ -47.194592181200683, -22.076195050923804 ], [ -47.194504682259996, -22.076177109094029 ], [ -47.194417183337229, -22.076159167215547 ], [ -47.194329684432375, -22.076141225288335 ], [ -47.194242185545434, -22.076123283312395 ], [ -47.194154686676427, -22.076105341287747 ], [ -47.194067187825326, -22.076087399214394 ], [ -47.193979688992158, -22.076069457092309 ], [ -47.193892190176896, -22.076051514921513 ], [ -47.193804691379569, -22.076033572701995 ], [ -47.193717192600047, -22.076015630433737 ], [ -47.193629693838638, -22.0759976881168 ], [ -47.19354219509507, -22.07597974575113 ], [ -47.1934546963694, -22.07596180333675 ], [ -47.193367197661658, -22.07594386087365 ], [ -47.193279698971857, -22.07592591836184 ], [ -47.193192200299961, -22.075907975801311 ], [ -47.193104701645979, -22.075890033192056 ], [ -47.193017203009916, -22.075872090534091 ], [ -47.192929704391794, -22.075854147827403 ], [ -47.192884592285594, -22.075844896994678 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 603.88895995400003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198588331637609, -22.077028280488829 ], [ -47.198526530367886, -22.077015609714287 ], [ -47.198439030613002, -22.076997670075965 ], [ -47.198351530876046, -22.076979730388899 ], [ -47.198264031157002, -22.076961790653108 ], [ -47.198176531455857, -22.076943850868599 ], [ -47.198089031772632, -22.07692591103536 ], [ -47.198001532107313, -22.0769079711534 ], [ -47.197914032459906, -22.076890031222735 ], [ -47.197826532830405, -22.076872091243334 ], [ -47.197739033218809, -22.076854151215212 ], [ -47.197651533625127, -22.07683621113836 ], [ -47.197564034049371, -22.076818271012797 ], [ -47.197476534491507, -22.076800330838484 ], [ -47.197389034951563, -22.076782390615474 ], [ -47.197301535429524, -22.076764450343738 ], [ -47.197214035925406, -22.076746510023277 ], [ -47.197126536439185, -22.076728569654087 ], [ -47.197039036970892, -22.076710629236199 ], [ -47.196951537520512, -22.076692688769576 ], [ -47.196864038088023, -22.076674748254224 ], [ -47.196776538673461, -22.076656807690153 ], [ -47.196689039276819, -22.076638867077381 ], [ -47.196601539898069, -22.076620926415846 ], [ -47.196514040537252, -22.076602985705627 ], [ -47.196426541194356, -22.076585044946683 ], [ -47.196339041869344, -22.076567104138988 ], [ -47.196251542562258, -22.076549163282611 ], [ -47.196164043273093, -22.076531222377493 ], [ -47.196076544001833, -22.076513281423658 ], [ -47.195989044748501, -22.076495340421108 ], [ -47.195901545513067, -22.076477399369811 ], [ -47.195814046295567, -22.076459458269824 ], [ -47.195726547095958, -22.076441517121111 ], [ -47.195639047914277, -22.076423575923673 ], [ -47.195551548750522, -22.076405634677524 ], [ -47.195464049604659, -22.076387693382646 ], [ -47.195376550476738, -22.076369752039049 ], [ -47.195289051366714, -22.076351810646734 ], [ -47.195201552274618, -22.076333869205698 ], [ -47.195114053200427, -22.076315927715942 ], [ -47.195026554144157, -22.076297986177465 ], [ -47.19493905510582, -22.07628004459028 ], [ -47.194851556085375, -22.076262102954377 ], [ -47.19476405708285, -22.076244161269752 ], [ -47.194676558098266, -22.076226219536409 ], [ -47.194589059131566, -22.076208277754336 ], [ -47.1945015601828, -22.076190335923553 ], [ -47.194414061251969, -22.076172394044065 ], [ -47.194326562339036, -22.076154452115826 ], [ -47.194239063444016, -22.076136510138895 ], [ -47.194151564566937, -22.076118568113234 ], [ -47.194064065707757, -22.076100626038873 ], [ -47.193976566866517, -22.076082683915782 ], [ -47.19388906804317, -22.07606474174397 ], [ -47.19380156923777, -22.076046799523446 ], [ -47.19371407045017, -22.07602885725418 ], [ -47.193626571680689, -22.076010914936234 ], [ -47.193539072929042, -22.075992972569527 ], [ -47.193451574195301, -22.075975030154158 ], [ -47.193364075479487, -22.07595708769005 ], [ -47.193276576781599, -22.075939145177234 ], [ -47.193189078101625, -22.075921202615696 ], [ -47.193101579439571, -22.075903260005433 ], [ -47.193014080795443, -22.075885317346451 ], [ -47.192926582169235, -22.075867374638758 ], [ -47.192875064702896, -22.075856810301641 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 602.95324388300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198569951821611, -22.077038379080438 ], [ -47.198523408661771, -22.077028836590181 ], [ -47.198435908898801, -22.077010896950828 ], [ -47.198348409153773, -22.076992957262767 ], [ -47.198260909426651, -22.076975017525978 ], [ -47.198173409717434, -22.076957077740456 ], [ -47.19808591002613, -22.076939137906212 ], [ -47.197998410352731, -22.076921198023243 ], [ -47.197910910697239, -22.076903258091551 ], [ -47.197823411059666, -22.076885318111152 ], [ -47.197735911439992, -22.076867378082014 ], [ -47.197648411838244, -22.07684943800416 ], [ -47.197560912254389, -22.076831497877571 ], [ -47.197473412688453, -22.076813557702277 ], [ -47.197385913140437, -22.076795617478247 ], [ -47.197298413610319, -22.076777677205502 ], [ -47.197210914098115, -22.076759736884039 ], [ -47.197123414603837, -22.076741796513847 ], [ -47.197035915127458, -22.076723856094919 ], [ -47.196948415668992, -22.076705915627283 ], [ -47.196860916228438, -22.07668797511095 ], [ -47.196773416805797, -22.076670034545867 ], [ -47.196685917401069, -22.076652093932079 ], [ -47.196598418014254, -22.076634153269556 ], [ -47.196510918645338, -22.076616212558321 ], [ -47.196423419294362, -22.076598271798357 ], [ -47.1963359199613, -22.076580330989671 ], [ -47.196248420646128, -22.076562390132267 ], [ -47.196160921348877, -22.076544449226148 ], [ -47.196073422069553, -22.076526508271318 ], [ -47.195985922808141, -22.076508567267744 ], [ -47.195898423564635, -22.076490626215445 ], [ -47.195810924339064, -22.076472685114446 ], [ -47.195723425131369, -22.076454743964732 ], [ -47.195635925941623, -22.076436802766281 ], [ -47.195548426769776, -22.076418861519105 ], [ -47.195460927615848, -22.076400920223222 ], [ -47.19537342847984, -22.07638297887862 ], [ -47.195285929361745, -22.076365037485296 ], [ -47.195198430261563, -22.076347096043261 ], [ -47.1951109311793, -22.076329154552493 ], [ -47.195023432114972, -22.07631121301301 ], [ -47.194935933068535, -22.076293271424799 ], [ -47.194848434040019, -22.07627532978788 ], [ -47.194760935029421, -22.076257388102256 ], [ -47.194673436036751, -22.076239446367904 ], [ -47.194585937061987, -22.076221504584826 ], [ -47.194498438105157, -22.076203562753033 ], [ -47.194410939166218, -22.076185620872522 ], [ -47.194323440245221, -22.076167678943289 ], [ -47.194235941342143, -22.076149736965352 ], [ -47.194148442456964, -22.076131794938686 ], [ -47.194060943589712, -22.076113852863305 ], [ -47.193973444740394, -22.076095910739202 ], [ -47.193885945908981, -22.076077968566384 ], [ -47.193798447095496, -22.076060026344862 ], [ -47.193710948299838, -22.076042084074579 ], [ -47.193623449522264, -22.076024141755617 ], [ -47.193535950762545, -22.076006199387926 ], [ -47.193448452020725, -22.07598825697152 ], [ -47.193360953296832, -22.075970314506399 ], [ -47.193273454590866, -22.075952371992575 ], [ -47.19318595590282, -22.075934429430028 ], [ -47.193098457232686, -22.075916486818755 ], [ -47.19301095858048, -22.075898544158768 ], [ -47.192923459946201, -22.075880601450063 ], [ -47.192865537118635, -22.075868723608167 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 602.01752781499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198551572002899, -22.077048477670168 ], [ -47.198520286955173, -22.077042063466031 ], [ -47.198432787184139, -22.077024123825687 ], [ -47.198345287431032, -22.077006184136611 ], [ -47.19825778769583, -22.076988244398823 ], [ -47.198170287978542, -22.076970304612271 ], [ -47.198082788279152, -22.076952364777039 ], [ -47.197995288597674, -22.076934424893064 ], [ -47.197907788934103, -22.076916484960361 ], [ -47.197820289288451, -22.076898544978949 ], [ -47.197732789660712, -22.076880604948805 ], [ -47.197645290050879, -22.076862664869925 ], [ -47.197557790458951, -22.076844724742347 ], [ -47.197470290884937, -22.076826784566041 ], [ -47.197382791328835, -22.076808844341006 ], [ -47.197295291790645, -22.076790904067252 ], [ -47.197207792270369, -22.076772963744776 ], [ -47.197120292768005, -22.076755023373565 ], [ -47.197032793283554, -22.076737082953642 ], [ -47.196945293817002, -22.076719142485004 ], [ -47.196857794368391, -22.076701201967655 ], [ -47.196770294937664, -22.076683261401552 ], [ -47.196682795524858, -22.076665320786766 ], [ -47.196595296129956, -22.076647380123237 ], [ -47.196507796752982, -22.07662943941099 ], [ -47.196420297393921, -22.076611498650003 ], [ -47.196332798052779, -22.076593557840326 ], [ -47.196245298729536, -22.076575616981913 ], [ -47.196157799424206, -22.076557676074778 ], [ -47.196070300136796, -22.076539735118946 ], [ -47.195982800867313, -22.076521794114342 ], [ -47.195895301615735, -22.076503853061055 ], [ -47.195807802382078, -22.076485911959043 ], [ -47.195720303166304, -22.07646797080832 ], [ -47.195632803968486, -22.076450029608846 ], [ -47.19554530478856, -22.076432088360679 ], [ -47.19545780562656, -22.07641414706378 ], [ -47.195370306482467, -22.076396205718179 ], [ -47.195282807356307, -22.076378264323822 ], [ -47.195195308248046, -22.076360322880795 ], [ -47.195107809157712, -22.076342381389026 ], [ -47.195020310085305, -22.076324439848516 ], [ -47.194932811030782, -22.07630649825931 ], [ -47.194845311994193, -22.076288556621378 ], [ -47.194757812975524, -22.076270614934746 ], [ -47.194670313974775, -22.076252673199384 ], [ -47.194582814991932, -22.076234731415298 ], [ -47.194495316027023, -22.076216789582496 ], [ -47.194407817080013, -22.076198847700972 ], [ -47.194320318150936, -22.07618090577073 ], [ -47.19423281923978, -22.076162963791788 ], [ -47.194145320346529, -22.076145021764095 ], [ -47.194057821471205, -22.076127079687716 ], [ -47.193970322613801, -22.07610913756259 ], [ -47.193882823774317, -22.076091195388781 ], [ -47.193795324952752, -22.07607325316625 ], [ -47.193707826149016, -22.076055310894944 ], [ -47.193620327363369, -22.076037368574983 ], [ -47.193532828595572, -22.076019426206287 ], [ -47.193445329845673, -22.076001483788872 ], [ -47.193357831113715, -22.075983541322735 ], [ -47.193270332399671, -22.075965598807898 ], [ -47.193182833703538, -22.075947656244342 ], [ -47.193095335025333, -22.075929713632064 ], [ -47.193007836365055, -22.075911770971064 ], [ -47.19292033772269, -22.07589382826135 ], [ -47.192856009532818, -22.075880636914263 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 601.081811743, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198533192181394, -22.077058576258054 ], [ -47.198517165248106, -22.077055290341882 ], [ -47.198429665469007, -22.077037350700504 ], [ -47.198342165707807, -22.077019411010415 ], [ -47.198254665964541, -22.077001471271604 ], [ -47.198167166239159, -22.076983531484068 ], [ -47.198079666531697, -22.076965591647806 ], [ -47.197992166842148, -22.076947651762829 ], [ -47.197904667170505, -22.076929711829131 ], [ -47.197817167516767, -22.076911771846703 ], [ -47.197729667880971, -22.076893831815543 ], [ -47.197642168263037, -22.076875891735675 ], [ -47.197554668663038, -22.076857951607078 ], [ -47.197467169080944, -22.076840011429763 ], [ -47.197379669516778, -22.076822071203715 ], [ -47.197292169970503, -22.076804130928949 ], [ -47.19720467044214, -22.076786190605464 ], [ -47.197117170931705, -22.076768250233251 ], [ -47.197029671439182, -22.076750309812336 ], [ -47.196942171964558, -22.076732369342686 ], [ -47.196854672507847, -22.076714428824307 ], [ -47.196767173069048, -22.076696488257227 ], [ -47.19667967364817, -22.076678547641411 ], [ -47.196592174245211, -22.076660606976859 ], [ -47.196504674860144, -22.076642666263599 ], [ -47.196417175493011, -22.076624725501624 ], [ -47.19632967614379, -22.076606784690934 ], [ -47.196242176812468, -22.076588843831512 ], [ -47.196154677499067, -22.076570902923368 ], [ -47.196067178203585, -22.076552961966502 ], [ -47.195979678926008, -22.076535020960925 ], [ -47.195892179666359, -22.076517079906623 ], [ -47.195804680424615, -22.076499138803598 ], [ -47.195717181200799, -22.076481197651848 ], [ -47.195629681994866, -22.07646325645139 ], [ -47.195542182806882, -22.076445315202214 ], [ -47.195454683636797, -22.076427373904309 ], [ -47.195367184484638, -22.076409432557675 ], [ -47.195279685350386, -22.07639149116234 ], [ -47.19519218623406, -22.076373549718276 ], [ -47.195104687135633, -22.076355608225494 ], [ -47.195017188055154, -22.076337666684001 ], [ -47.194929688992566, -22.076319725093782 ], [ -47.194842189947899, -22.076301783454841 ], [ -47.194754690921151, -22.076283841767189 ], [ -47.194667191912316, -22.076265900030815 ], [ -47.194579692921408, -22.07624795824572 ], [ -47.19449219394842, -22.076230016411913 ], [ -47.194404694993331, -22.076212074529394 ], [ -47.194317196056183, -22.076194132598143 ], [ -47.194229697136954, -22.076176190618163 ], [ -47.194142198235625, -22.076158248589479 ], [ -47.194054699352215, -22.076140306512084 ], [ -47.193967200486739, -22.076122364385963 ], [ -47.19387970163919, -22.076104422211124 ], [ -47.193792202809533, -22.076086479987566 ], [ -47.19370470399771, -22.076068537715276 ], [ -47.193617205204013, -22.076050595394303 ], [ -47.193529706428123, -22.076032653024594 ], [ -47.193442207670159, -22.076014710606167 ], [ -47.193354708930116, -22.075996768139046 ], [ -47.193267210207992, -22.075978825623174 ], [ -47.193179711503795, -22.075960883058595 ], [ -47.193092212817511, -22.075942940445319 ], [ -47.193004714149154, -22.075924997783318 ], [ -47.192917215498738, -22.075907055072591 ], [ -47.192846481945438, -22.075892550219901 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 600.14609567499997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198514812357203, -22.077068674844046 ], [ -47.19851404354057, -22.077068517217665 ], [ -47.198426543753392, -22.077050577575282 ], [ -47.198339043984127, -22.077032637884198 ], [ -47.198251544232782, -22.077014698144378 ], [ -47.198164044499322, -22.076996758355836 ], [ -47.198076544783781, -22.076978818518565 ], [ -47.197989045086153, -22.076960878632583 ], [ -47.197901545406431, -22.076942938697879 ], [ -47.197814045744614, -22.076924998714439 ], [ -47.197726546100732, -22.076907058682249 ], [ -47.197639046474734, -22.076889118601397 ], [ -47.197551546866656, -22.076871178471787 ], [ -47.197464047276483, -22.076853238293459 ], [ -47.197376547704238, -22.076835298066413 ], [ -47.197289048149884, -22.076817357790638 ], [ -47.19720154861345, -22.076799417466145 ], [ -47.197114049094935, -22.076781477092922 ], [ -47.197026549594334, -22.076763536671002 ], [ -47.196939050111631, -22.076745596200336 ], [ -47.196851550646841, -22.076727655680937 ], [ -47.196764051199978, -22.076709715112859 ], [ -47.196676551771013, -22.07669177449602 ], [ -47.196589052359975, -22.07667383383048 ], [ -47.196501552966836, -22.076655893116207 ], [ -47.196414053591624, -22.076637952353231 ], [ -47.196326554234332, -22.076620011541522 ], [ -47.196239054894932, -22.076602070681091 ], [ -47.196151555573451, -22.07658412977192 ], [ -47.19606405626989, -22.076566188814066 ], [ -47.195976556984235, -22.076548247807477 ], [ -47.195889057716514, -22.076530306752172 ], [ -47.195801558466691, -22.076512365648124 ], [ -47.195714059234795, -22.076494424495372 ], [ -47.195626560020784, -22.076476483293909 ], [ -47.195539060824728, -22.076458542043724 ], [ -47.195451561646571, -22.07644060074481 ], [ -47.195364062486327, -22.076422659397149 ], [ -47.195276563344002, -22.07640471800082 ], [ -47.195189064219598, -22.076386776555747 ], [ -47.195101565113099, -22.07636883506196 ], [ -47.195014066024541, -22.076350893519454 ], [ -47.194926566953875, -22.076332951928208 ], [ -47.194839067901128, -22.07631501028828 ], [ -47.194751568866309, -22.076297068599615 ], [ -47.194664069849402, -22.076279126862232 ], [ -47.194576570850415, -22.076261185076127 ], [ -47.194489071869349, -22.076243243241304 ], [ -47.194401572906195, -22.076225301357784 ], [ -47.194314073960953, -22.076207359425506 ], [ -47.194226575033646, -22.076189417444521 ], [ -47.194139076124245, -22.076171475414842 ], [ -47.194051577232763, -22.076153533336438 ], [ -47.193964078359208, -22.076135591209308 ], [ -47.193876579503581, -22.076117649033439 ], [ -47.193789080665852, -22.076099706808897 ], [ -47.193701581845957, -22.076081764535594 ], [ -47.193614083044167, -22.076063822213591 ], [ -47.193526584260212, -22.076045879842887 ], [ -47.19343908549417, -22.076027937423451 ], [ -47.193351586746054, -22.076009994955317 ], [ -47.193264088015852, -22.075992052438423 ], [ -47.193176589303576, -22.075974109872849 ], [ -47.19308909060922, -22.075956167258564 ], [ -47.193001591932784, -22.07593822459555 ], [ -47.19291409327429, -22.075920281883814 ], [ -47.192836954356501, -22.075904463525106 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 599.21037960599995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198496432530263, -22.077078773428184 ], [ -47.198423422037315, -22.077063804450031 ], [ -47.198335922259965, -22.077045864757938 ], [ -47.198248422500527, -22.077027925017113 ], [ -47.198160922759008, -22.077009985227555 ], [ -47.198073423035389, -22.076992045389289 ], [ -47.197985923329689, -22.076974105502288 ], [ -47.197898423641888, -22.076956165566568 ], [ -47.197810923971993, -22.076938225582129 ], [ -47.197723424320017, -22.076920285548962 ], [ -47.197635924685962, -22.076902345467065 ], [ -47.197548425069797, -22.07688440533645 ], [ -47.197460925471553, -22.07686646515711 ], [ -47.197373425891222, -22.076848524929051 ], [ -47.197285926328796, -22.076830584652278 ], [ -47.19719842678429, -22.076812644326768 ], [ -47.19711092725769, -22.076794703952551 ], [ -47.197023427749016, -22.076776763529612 ], [ -47.196935928258235, -22.076758823057943 ], [ -47.19684842878538, -22.07674088253755 ], [ -47.196760929330424, -22.076722941968438 ], [ -47.196673429893387, -22.0767050013506 ], [ -47.196585930474264, -22.076687060684048 ], [ -47.196498431073067, -22.07666911996877 ], [ -47.196410931689762, -22.076651179204777 ], [ -47.196323432324391, -22.076633238392056 ], [ -47.196235932976904, -22.076615297530616 ], [ -47.196148433647366, -22.076597356620464 ], [ -47.196060934335726, -22.076579415661584 ], [ -47.195973435041999, -22.076561474653978 ], [ -47.195885935766185, -22.076543533597668 ], [ -47.195798436508291, -22.076525592492633 ], [ -47.195710937268316, -22.076507651338872 ], [ -47.195623438046262, -22.076489710136386 ], [ -47.195535938842106, -22.076471768885188 ], [ -47.195448439655863, -22.076453827585258 ], [ -47.195360940487546, -22.076435886236617 ], [ -47.195273441337143, -22.076417944839257 ], [ -47.19518594220466, -22.076400003393175 ], [ -47.195098443090089, -22.076382061898375 ], [ -47.195010943993452, -22.076364120354857 ], [ -47.194923444914707, -22.076346178762616 ], [ -47.194835945853882, -22.076328237121675 ], [ -47.194748446810991, -22.076310295431998 ], [ -47.194660947786005, -22.076292353693603 ], [ -47.194573448778947, -22.076274411906489 ], [ -47.194485949789801, -22.076256470070653 ], [ -47.194398450818568, -22.076238528186114 ], [ -47.194310951865255, -22.076220586252855 ], [ -47.194223452929869, -22.076202644270861 ], [ -47.19413595401241, -22.076184702240162 ], [ -47.194048455112842, -22.076166760160742 ], [ -47.193960956231201, -22.0761488180326 ], [ -47.193873457367502, -22.076130875855739 ], [ -47.193785958521701, -22.076112933630167 ], [ -47.193698459693721, -22.076094991355848 ], [ -47.193610960883852, -22.076077049032861 ], [ -47.193523462091825, -22.076059106661134 ], [ -47.193435963317711, -22.076041164240689 ], [ -47.193348464561524, -22.076023221771528 ], [ -47.193260965823242, -22.07600527925365 ], [ -47.193173467102888, -22.075987336687053 ], [ -47.193085968400453, -22.075969394071752 ], [ -47.192998469715945, -22.075951451407736 ], [ -47.192910971049365, -22.075933508694991 ], [ -47.192827426766023, -22.075916376829859 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 598.27466353600005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198478052700544, -22.077088872010471 ], [ -47.198420300320763, -22.077077031324762 ], [ -47.19833280053534, -22.077059091631664 ], [ -47.19824530076783, -22.077041151889823 ], [ -47.198157801018233, -22.077023212099263 ], [ -47.198070301286528, -22.077005272259989 ], [ -47.197982801572749, -22.076987332371981 ], [ -47.197895301876869, -22.076969392435231 ], [ -47.197807802198909, -22.076951452449798 ], [ -47.197720302538848, -22.076933512415604 ], [ -47.197632802896713, -22.076915572332723 ], [ -47.197545303272477, -22.076897632201099 ], [ -47.197457803666147, -22.07687969202075 ], [ -47.197370304077744, -22.076861751791679 ], [ -47.197282804507239, -22.076843811513896 ], [ -47.197195304954661, -22.076825871187381 ], [ -47.197107805419982, -22.076807930812159 ], [ -47.197020305903223, -22.076789990388214 ], [ -47.196932806404369, -22.076772049915533 ], [ -47.196845306923436, -22.07675410939413 ], [ -47.196757807460401, -22.076736168823992 ], [ -47.196670308015285, -22.076718228205163 ], [ -47.19658280858809, -22.076700287537601 ], [ -47.196495309178815, -22.076682346821318 ], [ -47.196407809787438, -22.076664406056313 ], [ -47.196320310413981, -22.076646465242586 ], [ -47.196232811058429, -22.076628524380137 ], [ -47.196145311720812, -22.076610583468973 ], [ -47.196057812401087, -22.076592642509063 ], [ -47.195970313099295, -22.076574701500469 ], [ -47.195882813815402, -22.076556760443147 ], [ -47.195795314549429, -22.076538819337106 ], [ -47.195707815301368, -22.076520878182336 ], [ -47.195620316071242, -22.07650293697883 ], [ -47.195532816859007, -22.076484995726634 ], [ -47.195445317664692, -22.076467054425702 ], [ -47.195357818488297, -22.076449113076048 ], [ -47.195270319329815, -22.076431171677672 ], [ -47.195182820189252, -22.076413230230585 ], [ -47.19509532106661, -22.076395288734776 ], [ -47.195007821961894, -22.076377347190245 ], [ -47.194920322875078, -22.076359405597 ], [ -47.19483282380618, -22.07634146395505 ], [ -47.194745324755203, -22.076323522264346 ], [ -47.194657825722139, -22.076305580524956 ], [ -47.194570326707002, -22.076287638736829 ], [ -47.194482827709777, -22.076269696899992 ], [ -47.194395328730472, -22.076251755014439 ], [ -47.194307829769087, -22.076233813080169 ], [ -47.194220330825623, -22.076215871097148 ], [ -47.194132831900085, -22.076197929065462 ], [ -47.194045332992438, -22.076179986985029 ], [ -47.193957834102733, -22.076162044855881 ], [ -47.193870335230955, -22.076144102678015 ], [ -47.193782836377068, -22.076126160451427 ], [ -47.193695337541008, -22.076108218176099 ], [ -47.193607838723075, -22.076090275852103 ], [ -47.193520339922969, -22.076072333479367 ], [ -47.193432841140776, -22.076054391057912 ], [ -47.19334534237651, -22.07603644858774 ], [ -47.193257843630157, -22.076018506068852 ], [ -47.193170344901731, -22.076000563501246 ], [ -47.193082846191217, -22.075982620884933 ], [ -47.192995347498631, -22.075964678219904 ], [ -47.192907848823978, -22.075946735506154 ], [ -47.192817899173967, -22.07592829013419 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 597.33894746600004, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198459672868111, -22.077098970590878 ], [ -47.198417178603741, -22.077090258199462 ], [ -47.198329678810239, -22.077072318505341 ], [ -47.198242179034658, -22.077054378762494 ], [ -47.198154679276975, -22.077036438970921 ], [ -47.19806717953719, -22.077018499130631 ], [ -47.197979679815326, -22.077000559241618 ], [ -47.197892180111388, -22.076982619303891 ], [ -47.197804680425342, -22.07696467931742 ], [ -47.197717180757209, -22.076946739282231 ], [ -47.197629681106989, -22.076928799198321 ], [ -47.197542181474674, -22.076910859065691 ], [ -47.197454681860279, -22.076892918884337 ], [ -47.197367182263783, -22.076874978654281 ], [ -47.19727968268522, -22.076857038375476 ], [ -47.19719218312455, -22.076839098047959 ], [ -47.197104683581813, -22.076821157671723 ], [ -47.197017184056961, -22.076803217246756 ], [ -47.196929684550028, -22.076785276773073 ], [ -47.196842185061016, -22.076767336250661 ], [ -47.196754685589916, -22.076749395679528 ], [ -47.196667186136722, -22.07673145505969 ], [ -47.196579686701455, -22.076713514391116 ], [ -47.196492187284086, -22.076695573673817 ], [ -47.196404687884645, -22.076677632907806 ], [ -47.196317188503102, -22.076659692093056 ], [ -47.196229689139471, -22.076641751229605 ], [ -47.196142189793761, -22.076623810317436 ], [ -47.196054690465992, -22.076605869356534 ], [ -47.195967191156107, -22.07658792834691 ], [ -47.195879691864128, -22.076569987288572 ], [ -47.195792192590083, -22.076552046181515 ], [ -47.195704693333951, -22.076534105025747 ], [ -47.195617194095739, -22.07651616382125 ], [ -47.195529694875432, -22.076498222568027 ], [ -47.195442195673053, -22.07648028126609 ], [ -47.195354696488572, -22.076462339915423 ], [ -47.195267197322032, -22.076444398516045 ], [ -47.195179698173384, -22.076426457067949 ], [ -47.195092199042669, -22.076408515571128 ], [ -47.195004699929861, -22.076390574025602 ], [ -47.194917200834965, -22.07637263243134 ], [ -47.194829701757996, -22.076354690788374 ], [ -47.194742202698954, -22.076336749096676 ], [ -47.194654703657811, -22.076318807356255 ], [ -47.194567204634595, -22.076300865567131 ], [ -47.194479705629298, -22.076282923729277 ], [ -47.194392206641915, -22.076264981842716 ], [ -47.194304707672451, -22.076247039907429 ], [ -47.194217208720907, -22.076229097923431 ], [ -47.194129709787276, -22.076211155890707 ], [ -47.194042210871572, -22.076193213809265 ], [ -47.193954711973788, -22.076175271679112 ], [ -47.193867213093917, -22.076157329500226 ], [ -47.193779714231972, -22.076139387272637 ], [ -47.193692215387841, -22.076121444996296 ], [ -47.193604716561836, -22.076103502671295 ], [ -47.193517217753637, -22.076085560297546 ], [ -47.193429718963372, -22.076067617875086 ], [ -47.193342220191035, -22.076049675403905 ], [ -47.193254721436602, -22.076031732884005 ], [ -47.193167222700097, -22.07601379031539 ], [ -47.193079723981519, -22.07599584769806 ], [ -47.192992225280847, -22.075977905032023 ], [ -47.192904726598115, -22.075959962317256 ], [ -47.192817227933297, -22.075942019553786 ], [ -47.192808371580369, -22.075940203438062 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 596.40323139600002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.1984412930329, -22.077109069169431 ], [ -47.19841405688625, -22.077103485074126 ], [ -47.198326557084663, -22.077085545378999 ], [ -47.198239057301002, -22.07706760563514 ], [ -47.198151557535255, -22.077049665842566 ], [ -47.198064057787391, -22.077031726001263 ], [ -47.197976558057448, -22.077013786111241 ], [ -47.197889058345432, -22.076995846172512 ], [ -47.1978015586513, -22.076977906185011 ], [ -47.197714058975095, -22.076959966148831 ], [ -47.197626559316795, -22.076942026063918 ], [ -47.197539059676409, -22.076924085930276 ], [ -47.197451560053935, -22.076906145747913 ], [ -47.19736406044936, -22.076888205516855 ], [ -47.197276560862718, -22.076870265237023 ], [ -47.197189061293976, -22.076852324908508 ], [ -47.19710156174316, -22.076834384531264 ], [ -47.197014062210229, -22.07681644410529 ], [ -47.196926562695218, -22.076798503630592 ], [ -47.196839063198126, -22.076780563107178 ], [ -47.196751563718955, -22.076762622535039 ], [ -47.196664064257682, -22.076744681914189 ], [ -47.196576564814336, -22.076726741244585 ], [ -47.196489065388889, -22.076708800526301 ], [ -47.196401565981368, -22.076690859759257 ], [ -47.196314066591746, -22.076672918943522 ], [ -47.196226567220059, -22.076654978079063 ], [ -47.196139067866262, -22.076637037165881 ], [ -47.196051568530414, -22.076619096203974 ], [ -47.195964069212451, -22.076601155193345 ], [ -47.1958765699124, -22.07658321413399 ], [ -47.195789070630276, -22.076565273025906 ], [ -47.195701571366065, -22.076547331869151 ], [ -47.195614072119781, -22.076529390663641 ], [ -47.195526572891389, -22.076511449409409 ], [ -47.19543907368093, -22.076493508106459 ], [ -47.195351574488377, -22.076475566754791 ], [ -47.195264075313759, -22.076457625354404 ], [ -47.195176576157031, -22.076439683905292 ], [ -47.195089077018238, -22.076421742407465 ], [ -47.195001577897365, -22.076403800860927 ], [ -47.19491407879439, -22.076385859265645 ], [ -47.19482657970935, -22.076367917621681 ], [ -47.194739080642222, -22.076349975928963 ], [ -47.194651581593007, -22.076332034187548 ], [ -47.194564082561712, -22.076314092397411 ], [ -47.194476583548337, -22.076296150558552 ], [ -47.194389084552874, -22.076278208670978 ], [ -47.194301585575332, -22.076260266734664 ], [ -47.19421408661573, -22.076242324749678 ], [ -47.194126587674013, -22.076224382715925 ], [ -47.19403908875023, -22.076206440633488 ], [ -47.193951589844367, -22.076188498502319 ], [ -47.193864090956424, -22.076170556322431 ], [ -47.193776592086401, -22.076152614093829 ], [ -47.193689093234191, -22.076134671816487 ], [ -47.193601594400114, -22.076116729490451 ], [ -47.193514095583843, -22.076098787115715 ], [ -47.1934265967855, -22.076080844692243 ], [ -47.193339098005083, -22.076062902220052 ], [ -47.193251599242579, -22.076044959699143 ], [ -47.193164100497995, -22.076027017129519 ], [ -47.193076601771345, -22.076009074511177 ], [ -47.192989103062594, -22.075991131844127 ], [ -47.192901604371784, -22.075973189128355 ], [ -47.192814105698886, -22.075955246363876 ], [ -47.192798843985194, -22.075952116741512 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 182.348719851, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199466887427477, -22.076473458645165 ], [ -47.199391975376884, -22.076458100172129 ], [ -47.199304475906857, -22.076440160976997 ], [ -47.19921697645475, -22.076422221733143 ], [ -47.199129477020527, -22.076404282440567 ], [ -47.199041977604224, -22.076386343099291 ], [ -47.198954478205835, -22.07636840370926 ], [ -47.198866978825343, -22.076350464270515 ], [ -47.198779479462765, -22.076332524783041 ], [ -47.198691980118085, -22.076314585246852 ], [ -47.198604480791325, -22.076296645661937 ], [ -47.198516981482456, -22.076278706028301 ], [ -47.198429482191507, -22.07626076634595 ], [ -47.198341982918471, -22.076242826614873 ], [ -47.198254483663341, -22.076224886835071 ], [ -47.198166984426095, -22.076206947006558 ], [ -47.198079485206783, -22.076189007129315 ], [ -47.197991986005377, -22.076171067203344 ], [ -47.197904486821884, -22.076153127228661 ], [ -47.197816987656275, -22.076135187205249 ], [ -47.197741721904634, -22.076119755366509 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 240.16070786099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.199456859045974, -22.076485269506541 ], [ -47.199388853760354, -22.076471327057771 ], [ -47.199301354282241, -22.076453387861626 ], [ -47.199213854822062, -22.076435448616763 ], [ -47.199126355379761, -22.076417509323178 ], [ -47.199038855955379, -22.076399569980893 ], [ -47.19895135654891, -22.076381630589843 ], [ -47.19886385716034, -22.076363691150107 ], [ -47.198776357789683, -22.076345751661631 ], [ -47.198688858436938, -22.076327812124429 ], [ -47.198601359102099, -22.076309872538506 ], [ -47.198513859785152, -22.076291932903864 ], [ -47.198426360486124, -22.076273993220504 ], [ -47.198338861205009, -22.076256053488418 ], [ -47.198251361941793, -22.076238113707593 ], [ -47.198163862696482, -22.076220173878088 ], [ -47.198076363469092, -22.076202233999819 ], [ -47.197988864259607, -22.076184294072856 ], [ -47.197901365068034, -22.076166354097161 ], [ -47.197813865894361, -22.076148414072744 ], [ -47.197726366738607, -22.076130473999612 ], [ -47.197638867600766, -22.07611253387774 ], [ -47.197551368480823, -22.076094593707186 ], [ -47.197463869378794, -22.076076653487888 ], [ -47.19737637029467, -22.076058713219844 ], [ -47.197288871228466, -22.076040772903127 ], [ -47.19718474690832, -22.076019423769466 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 576.75319392999995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198055315860152, -22.077321138888159 ], [ -47.197998500932677, -22.077309490277088 ], [ -47.197911001033106, -22.077291550365889 ], [ -47.197823501151447, -22.077273610405978 ], [ -47.197736001287716, -22.077255670397339 ], [ -47.197648501441869, -22.077237730339967 ], [ -47.197561001613948, -22.077219790233872 ], [ -47.197473501803941, -22.077201850079053 ], [ -47.197386002011839, -22.077183909875522 ], [ -47.197298502237658, -22.077165969623259 ], [ -47.197211002481374, -22.077148029322281 ], [ -47.197123502743011, -22.07713008897257 ], [ -47.197036003022568, -22.077112148574138 ], [ -47.196948503320023, -22.077094208126987 ], [ -47.196861003635405, -22.077076267631107 ], [ -47.196773503968679, -22.077058327086505 ], [ -47.196686004319872, -22.077040386493188 ], [ -47.196598504689, -22.077022445851142 ], [ -47.196511005076033, -22.077004505160378 ], [ -47.196423505480972, -22.076986564420906 ], [ -47.196336005903831, -22.076968623632695 ], [ -47.196248506344595, -22.076950682795754 ], [ -47.196161006803273, -22.07693274191011 ], [ -47.196073507279877, -22.076914800975736 ], [ -47.195986007774401, -22.076896859992633 ], [ -47.195898508286824, -22.076878918960826 ], [ -47.195811008817167, -22.07686097788029 ], [ -47.195723509365415, -22.076843036751033 ], [ -47.19563600993159, -22.076825095573053 ], [ -47.1955485105157, -22.076807154346355 ], [ -47.1954610111177, -22.076789213070935 ], [ -47.195373511737628, -22.076771271746797 ], [ -47.195286012375455, -22.076753330373933 ], [ -47.195198513031215, -22.076735388952351 ], [ -47.195111013704896, -22.07671744748205 ], [ -47.195023514396496, -22.076699505963038 ], [ -47.194936015105995, -22.076681564395294 ], [ -47.194848515833421, -22.076663622778831 ], [ -47.194761016578752, -22.07664568111365 ], [ -47.194673517342025, -22.076627739399758 ], [ -47.194586018123204, -22.076609797637136 ], [ -47.194498518922302, -22.076591855825797 ], [ -47.194411019739313, -22.076573913965735 ], [ -47.194323520574258, -22.076555972056958 ], [ -47.194236021427109, -22.076538030099481 ], [ -47.19414852229788, -22.076520088093261 ], [ -47.19406102318657, -22.076502146038329 ], [ -47.193973524093188, -22.07648420393468 ], [ -47.193886025017719, -22.076466261782308 ], [ -47.193798525960169, -22.076448319581218 ], [ -47.193711026920546, -22.076430377331409 ], [ -47.193623527898708, -22.076412435032861 ], [ -47.193536028895046, -22.076394492685644 ], [ -47.193448529909183, -22.076376550289684 ], [ -47.193361030941233, -22.076358607845005 ], [ -47.193273531991217, -22.076340665351609 ], [ -47.193186033059114, -22.076322722809508 ], [ -47.19309853414493, -22.076304780218678 ], [ -47.193011035248674, -22.076286837579119 ], [ -47.192923536370344, -22.076268894890863 ], [ -47.192836037509934, -22.076250952153881 ], [ -47.192748538667431, -22.076233009368192 ], [ -47.192661039842861, -22.076215066533788 ], [ -47.192598764126906, -22.076202296011918 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 575.81747785899995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198036935964588, -22.077331237425685 ], [ -47.197995379172504, -22.07732271714703 ], [ -47.197907879264861, -22.077304777234826 ], [ -47.197820379375131, -22.077286837273899 ], [ -47.19773287950332, -22.077268897264251 ], [ -47.197645379649394, -22.077250957205873 ], [ -47.197557879813395, -22.077233017098767 ], [ -47.197470379995309, -22.077215076942942 ], [ -47.197382880195129, -22.077197136738402 ], [ -47.197295380412861, -22.07717919648513 ], [ -47.197207880648506, -22.077161256183139 ], [ -47.197120380902064, -22.077143315832426 ], [ -47.197032881173548, -22.077125375432985 ], [ -47.196945381462925, -22.077107434984821 ], [ -47.196857881770228, -22.077089494487936 ], [ -47.196770382095423, -22.077071553942329 ], [ -47.196682882438544, -22.077053613347996 ], [ -47.196595382799586, -22.077035672704941 ], [ -47.196507883178548, -22.077017732013168 ], [ -47.196420383575408, -22.076999791272687 ], [ -47.196332883990195, -22.07698185048347 ], [ -47.196245384422873, -22.076963909645503 ], [ -47.196157884873486, -22.076945968758867 ], [ -47.196070385342011, -22.076928027823481 ], [ -47.195982885828457, -22.076910086839373 ], [ -47.195895386332793, -22.076892145806557 ], [ -47.195807886855064, -22.076874204725009 ], [ -47.195720387395241, -22.076856263594742 ], [ -47.195632887953337, -22.076838322415757 ], [ -47.195545388529368, -22.07682038118805 ], [ -47.19545788912329, -22.076802439911621 ], [ -47.195370389735139, -22.076784498586473 ], [ -47.195282890364894, -22.076766557212601 ], [ -47.195195391012575, -22.076748615790009 ], [ -47.195107891678177, -22.076730674318696 ], [ -47.195020392361705, -22.076712732798676 ], [ -47.194932893063125, -22.076694791229926 ], [ -47.194845393782479, -22.076676849612451 ], [ -47.194757894519732, -22.076658907946243 ], [ -47.194670395274926, -22.076640966231356 ], [ -47.194582896048033, -22.076623024467729 ], [ -47.194495396839052, -22.07660508265538 ], [ -47.194407897647984, -22.07658714079431 ], [ -47.194320398474851, -22.076569198884517 ], [ -47.19423289931963, -22.076551256926034 ], [ -47.194145400182322, -22.076533314918809 ], [ -47.194057901062934, -22.076515372862865 ], [ -47.193970401961472, -22.076497430758199 ], [ -47.193882902877938, -22.076479488604821 ], [ -47.19379540381231, -22.076461546402726 ], [ -47.193707904764608, -22.076443604151905 ], [ -47.193620405734698, -22.07642566185233 ], [ -47.193532906722957, -22.076407719504118 ], [ -47.193445407729016, -22.076389777107149 ], [ -47.193357908752986, -22.076371834661458 ], [ -47.193270409794891, -22.076353892167056 ], [ -47.193182910854723, -22.076335949623946 ], [ -47.193095411932454, -22.076318007032089 ], [ -47.193007913028126, -22.076300064391539 ], [ -47.192920414141717, -22.076282121702274 ], [ -47.192832915273229, -22.07626417896428 ], [ -47.192745416422653, -22.076246236177582 ], [ -47.192657917590005, -22.076228293342162 ], [ -47.192589236497469, -22.076214209305661 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 574.88176178900005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198018556066295, -22.077341335961346 ], [ -47.197992257411862, -22.077335944016927 ], [ -47.197904757496147, -22.077318004103702 ], [ -47.197817257598338, -22.077300064141763 ], [ -47.197729757718427, -22.077282124131109 ], [ -47.197642257856437, -22.077264184071719 ], [ -47.197554758012366, -22.077246243963614 ], [ -47.197467258186201, -22.07722830380678 ], [ -47.197379758377949, -22.077210363601225 ], [ -47.197292258587602, -22.077192423346943 ], [ -47.197204758815175, -22.077174483043937 ], [ -47.197117259060654, -22.077156542692219 ], [ -47.197029759324046, -22.077138602291782 ], [ -47.196942259605358, -22.077120661842606 ], [ -47.196854759904575, -22.077102721344716 ], [ -47.196767260221705, -22.077084780798096 ], [ -47.196679760556755, -22.077066840202761 ], [ -47.196592260909718, -22.077048899558697 ], [ -47.196504761280586, -22.077030958865912 ], [ -47.196417261669374, -22.077013018124408 ], [ -47.196329762076076, -22.076995077334189 ], [ -47.196242262500697, -22.076977136495238 ], [ -47.196154762943223, -22.076959195607575 ], [ -47.19606726340367, -22.07694125467118 ], [ -47.195979763882029, -22.076923313686066 ], [ -47.195892264378308, -22.076905372652231 ], [ -47.195804764892486, -22.076887431569684 ], [ -47.195717265424591, -22.076869490438405 ], [ -47.195629765974608, -22.076851549258411 ], [ -47.19554226654256, -22.076833608029695 ], [ -47.195454767128417, -22.07681566675226 ], [ -47.19536726773218, -22.076797725426097 ], [ -47.195279768353863, -22.076779784051215 ], [ -47.195192268993473, -22.076761842627626 ], [ -47.195104769650989, -22.076743901155307 ], [ -47.195017270326424, -22.07672595963427 ], [ -47.19492977101978, -22.076708018064501 ], [ -47.194842271731055, -22.076690076446035 ], [ -47.19475477246025, -22.076672134778832 ], [ -47.194667273207351, -22.076654193062915 ], [ -47.194579773972386, -22.076636251298272 ], [ -47.194492274755326, -22.076618309484914 ], [ -47.194404775556201, -22.076600367622831 ], [ -47.194317276374974, -22.076582425712036 ], [ -47.194229777211675, -22.07656448375252 ], [ -47.194142278066295, -22.0765465417443 ], [ -47.194054778938828, -22.07652859968735 ], [ -47.193967279829295, -22.076510657581682 ], [ -47.193879780737667, -22.076492715427285 ], [ -47.193792281663981, -22.076474773224181 ], [ -47.193704782608187, -22.076456830972354 ], [ -47.193617283570205, -22.076438888671785 ], [ -47.193529784550392, -22.076420946322539 ], [ -47.193442285548372, -22.076403003924568 ], [ -47.193354786564271, -22.076385061477879 ], [ -47.193267287598104, -22.076367118982461 ], [ -47.193179788649843, -22.076349176438328 ], [ -47.193092289719509, -22.076331233845476 ], [ -47.193004790807088, -22.07631329120392 ], [ -47.192917291912615, -22.076295348513632 ], [ -47.192829793036047, -22.076277405774626 ], [ -47.1927422941774, -22.076259462986908 ], [ -47.192654795336679, -22.076241520150475 ], [ -47.192579708866475, -22.076226122598964 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 573.94604572100002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198000176165273, -22.077351434495132 ], [ -47.197989135650751, -22.077349170886787 ], [ -47.197901635726957, -22.077331230972572 ], [ -47.197814135821069, -22.07731329100962 ], [ -47.197726635933087, -22.077295350997961 ], [ -47.197639136063025, -22.077277410937562 ], [ -47.197551636210868, -22.077259470828452 ], [ -47.197464136376624, -22.077241530670605 ], [ -47.197376636560293, -22.07722359046404 ], [ -47.197289136761867, -22.077205650208754 ], [ -47.197201636981362, -22.077187709904738 ], [ -47.197114137218769, -22.077169769552015 ], [ -47.197026637474082, -22.077151829150562 ], [ -47.196939137747314, -22.077133888700384 ], [ -47.196851638038453, -22.077115948201477 ], [ -47.196764138347511, -22.077098007653852 ], [ -47.196676638674482, -22.077080067057501 ], [ -47.196589139019366, -22.077062126412436 ], [ -47.196501639382156, -22.077044185718641 ], [ -47.196414139762872, -22.077026244976128 ], [ -47.196326640161502, -22.077008304184897 ], [ -47.196239140578037, -22.076990363344922 ], [ -47.196151641012499, -22.076972422456269 ], [ -47.196064141464866, -22.076954481518865 ], [ -47.195976641935147, -22.076936540532742 ], [ -47.195889142423347, -22.076918599497894 ], [ -47.195801642929453, -22.076900658414342 ], [ -47.195714143453479, -22.076882717282054 ], [ -47.195626643995418, -22.076864776101026 ], [ -47.195539144555283, -22.076846834871329 ], [ -47.195451645133062, -22.076828893592882 ], [ -47.19536414572876, -22.07681095226571 ], [ -47.195276646342364, -22.076793010889819 ], [ -47.195189146973888, -22.076775069465214 ], [ -47.195101647623332, -22.076757127991872 ], [ -47.195014148290696, -22.076739186469847 ], [ -47.194926648975972, -22.076721244899051 ], [ -47.194839149679169, -22.07670330327959 ], [ -47.194751650400292, -22.076685361611382 ], [ -47.194664151139314, -22.076667419894449 ], [ -47.194576651896263, -22.076649478128804 ], [ -47.194489152671125, -22.076631536314416 ], [ -47.194401653463927, -22.076613594451349 ], [ -47.194314154274622, -22.076595652539538 ], [ -47.194226655103243, -22.076577710579013 ], [ -47.194139155949792, -22.076559768569776 ], [ -47.194051656814253, -22.076541826511821 ], [ -47.193964157696634, -22.076523884405141 ], [ -47.193876658596935, -22.076505942249739 ], [ -47.19378915951517, -22.076488000045625 ], [ -47.19370166045131, -22.076470057792786 ], [ -47.19361416140525, -22.07645211549119 ], [ -47.193526662377359, -22.076434173140949 ], [ -47.193439163367266, -22.076416230741973 ], [ -47.193351664375086, -22.076398288294275 ], [ -47.193264165400834, -22.076380345797848 ], [ -47.193176666444501, -22.076362403252684 ], [ -47.193089167506095, -22.076344460658841 ], [ -47.193001668585602, -22.076326518016273 ], [ -47.192914169683043, -22.076308575324958 ], [ -47.192826670798404, -22.076290632584964 ], [ -47.192739171931684, -22.076272689796216 ], [ -47.192651673082885, -22.076254746958785 ], [ -47.192570181233918, -22.076238035891834 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 573.01032965000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19798179626148, -22.077361533027062 ], [ -47.197898513957298, -22.077344457841406 ], [ -47.197811014043332, -22.077326517877438 ], [ -47.197723514147278, -22.077308577864759 ], [ -47.197636014269129, -22.077290637803365 ], [ -47.197548514408886, -22.077272697693235 ], [ -47.197461014566571, -22.077254757534384 ], [ -47.197373514742161, -22.07723681732681 ], [ -47.197286014935678, -22.077218877070507 ], [ -47.197198515147079, -22.07720093676549 ], [ -47.197111015376407, -22.077182996411747 ], [ -47.197023515623648, -22.077165056009278 ], [ -47.196936015888802, -22.077147115558105 ], [ -47.196848516171862, -22.077129175058193 ], [ -47.196761016472848, -22.077111234509559 ], [ -47.196673516791741, -22.077093293912199 ], [ -47.196586017128546, -22.077075353266121 ], [ -47.196498517483256, -22.077057412571328 ], [ -47.196411017855901, -22.077039471827813 ], [ -47.196323518246444, -22.077021531035566 ], [ -47.196236018654915, -22.077003590194607 ], [ -47.196148519081284, -22.076985649304916 ], [ -47.196061019525565, -22.076967708366499 ], [ -47.195973519987774, -22.076949767379368 ], [ -47.195886020467903, -22.076931826343515 ], [ -47.195798520965937, -22.07691388525895 ], [ -47.195711021481877, -22.076895944125656 ], [ -47.195623522015758, -22.07687800294363 ], [ -47.195536022567538, -22.076860061712896 ], [ -47.195448523137237, -22.076842120433444 ], [ -47.195361023724857, -22.076824179105277 ], [ -47.195273524330389, -22.076806237728377 ], [ -47.195186024953834, -22.076788296302755 ], [ -47.195098525595213, -22.076770354828422 ], [ -47.195011026254491, -22.076752413305361 ], [ -47.194923526931703, -22.076734471733587 ], [ -47.194836027626806, -22.076716530113096 ], [ -47.194748528339851, -22.076698588443879 ], [ -47.194661029070801, -22.07668064672594 ], [ -47.194573529819678, -22.076662704959283 ], [ -47.194486030586475, -22.0766447631439 ], [ -47.194398531371171, -22.076626821279802 ], [ -47.194311032173822, -22.07660887936699 ], [ -47.194223532994357, -22.076590937405456 ], [ -47.19413603383282, -22.0765729953952 ], [ -47.194048534689216, -22.076555053336239 ], [ -47.193961035563518, -22.076537111228546 ], [ -47.19387353645574, -22.076519169072146 ], [ -47.193786037365903, -22.07650122686702 ], [ -47.193698538293951, -22.076483284613172 ], [ -47.193611039239805, -22.076465342310573 ], [ -47.193523540203849, -22.076447399959324 ], [ -47.193436041185677, -22.076429457559325 ], [ -47.193348542185426, -22.076411515110607 ], [ -47.193261043203101, -22.076393572613192 ], [ -47.193173544238689, -22.076375630067037 ], [ -47.193086045292226, -22.076357687472168 ], [ -47.192998546363647, -22.076339744828569 ], [ -47.192911047453002, -22.076321802136267 ], [ -47.192823548560284, -22.076303859395246 ], [ -47.192736049685486, -22.07628591660551 ], [ -47.192648550828608, -22.076267973767063 ], [ -47.192561051989664, -22.076250030879894 ], [ -47.19256065359982, -22.076249949184245 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 572.07461357800003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197963416354945, -22.077371631557128 ], [ -47.197895392187171, -22.077357684710204 ], [ -47.197807892265125, -22.077339744745217 ], [ -47.197720392360985, -22.077321804731543 ], [ -47.197632892474772, -22.077303864669144 ], [ -47.19754539260645, -22.077285924558005 ], [ -47.197457892756056, -22.077267984398144 ], [ -47.197370392923567, -22.077250044189558 ], [ -47.197282893109005, -22.077232103932253 ], [ -47.197195393312327, -22.077214163626223 ], [ -47.197107893533584, -22.077196223271468 ], [ -47.197020393772746, -22.077178282867997 ], [ -47.196932894029821, -22.077160342415812 ], [ -47.196845394304802, -22.077142401914895 ], [ -47.19675789459771, -22.077124461365251 ], [ -47.196670394908523, -22.077106520766886 ], [ -47.196582895237256, -22.077088580119792 ], [ -47.196495395583888, -22.077070639423994 ], [ -47.196407895948454, -22.077052698679466 ], [ -47.196320396330918, -22.077034757886199 ], [ -47.19623289673131, -22.077016817044239 ], [ -47.196145397149607, -22.076998876153546 ], [ -47.19605789758581, -22.076980935214106 ], [ -47.195970398039947, -22.076962994225983 ], [ -47.195882898511996, -22.076945053189117 ], [ -47.195795399001952, -22.076927112103544 ], [ -47.19570789950982, -22.07690917096922 ], [ -47.195620400035622, -22.076891229786206 ], [ -47.195532900579323, -22.07687328855447 ], [ -47.195445401140944, -22.076855347273998 ], [ -47.195357901720492, -22.076837405944822 ], [ -47.195270402317945, -22.076819464566913 ], [ -47.195182902933318, -22.076801523140286 ], [ -47.195095403566611, -22.076783581664941 ], [ -47.19500790421781, -22.076765640140856 ], [ -47.19492040488695, -22.076747698568084 ], [ -47.194832905573982, -22.076729756946587 ], [ -47.19474540627894, -22.076711815276362 ], [ -47.194657907001819, -22.076693873557414 ], [ -47.194570407742617, -22.076675931789747 ], [ -47.194482908501342, -22.076657989973363 ], [ -47.194395409277959, -22.076640048108253 ], [ -47.194307910072531, -22.076622106194424 ], [ -47.194220410884988, -22.076604164231881 ], [ -47.194132911715378, -22.07658622222062 ], [ -47.194045412563696, -22.076568280160643 ], [ -47.193957913429919, -22.076550338051945 ], [ -47.193870414314063, -22.076532395894535 ], [ -47.193782915216154, -22.076514453688397 ], [ -47.19369541613613, -22.076496511433543 ], [ -47.193607917073905, -22.076478569129932 ], [ -47.19352041802987, -22.076460626777674 ], [ -47.193432919003619, -22.076442684376662 ], [ -47.193345419995296, -22.076424741926935 ], [ -47.193257921004893, -22.076406799428508 ], [ -47.193170422032409, -22.076388856881348 ], [ -47.19308292307786, -22.076370914285452 ], [ -47.192995424141209, -22.076352971640862 ], [ -47.192907925222485, -22.076335028947547 ], [ -47.192820426321695, -22.07631708620552 ], [ -47.192732927438826, -22.076299143414769 ], [ -47.192645428573869, -22.076281200575313 ], [ -47.192557929726846, -22.076263257687117 ], [ -47.192551125964158, -22.076261862476205 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 571.13889751299996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197945036445681, -22.077381730085328 ], [ -47.197892270416567, -22.077370911578949 ], [ -47.197804770486435, -22.077352971612978 ], [ -47.19771727057423, -22.077335031598288 ], [ -47.197629770679939, -22.077317091534866 ], [ -47.197542270803545, -22.077299151422725 ], [ -47.197454770945065, -22.077281211261866 ], [ -47.197367271104497, -22.077263271052274 ], [ -47.197279771281849, -22.077245330793954 ], [ -47.197192271477114, -22.077227390486911 ], [ -47.197104771690285, -22.07720945013115 ], [ -47.197017271921368, -22.077191509726664 ], [ -47.196929772170364, -22.077173569273466 ], [ -47.19684227243728, -22.077155628771543 ], [ -47.196754772722109, -22.077137688220898 ], [ -47.196667273024836, -22.077119747621516 ], [ -47.196579773345483, -22.07710180697342 ], [ -47.196492273684051, -22.07708386627661 ], [ -47.196404774040531, -22.077065925531066 ], [ -47.196317274414938, -22.077047984736812 ], [ -47.196229774807236, -22.077030043893828 ], [ -47.196142275217454, -22.077012103002119 ], [ -47.196054775645592, -22.076994162061695 ], [ -47.195967276091643, -22.076976221072549 ], [ -47.195879776555614, -22.076958280034692 ], [ -47.195792277037498, -22.076940338948095 ], [ -47.195704777537287, -22.076922397812776 ], [ -47.195617278054996, -22.076904456628746 ], [ -47.195529778590625, -22.076886515395984 ], [ -47.195442279144181, -22.076868574114521 ], [ -47.195354779715665, -22.076850632784321 ], [ -47.195267280305025, -22.076832691405404 ], [ -47.195179780912312, -22.076814749977771 ], [ -47.195092281537526, -22.076796808501413 ], [ -47.195004782180668, -22.076778866976337 ], [ -47.194917282841722, -22.076760925402549 ], [ -47.194829783520667, -22.076742983780022 ], [ -47.194742284217568, -22.076725042108791 ], [ -47.194654784932361, -22.076707100388841 ], [ -47.194567285665094, -22.076689158620169 ], [ -47.194479786415727, -22.076671216802772 ], [ -47.194392287184279, -22.07665327493665 ], [ -47.194304787970758, -22.076635333021812 ], [ -47.194217288775157, -22.076617391058274 ], [ -47.194129789597461, -22.076599449046004 ], [ -47.194042290437693, -22.076581506985008 ], [ -47.193954791295852, -22.076563564875293 ], [ -47.193867292171923, -22.076545622716878 ], [ -47.193779793065922, -22.076527680509727 ], [ -47.193692293977833, -22.076509738253861 ], [ -47.193604794907529, -22.076491795949245 ], [ -47.193517295855422, -22.076473853595974 ], [ -47.1934297968211, -22.07645591119395 ], [ -47.193342297804691, -22.076437968743214 ], [ -47.193254798806215, -22.07642002624376 ], [ -47.193167299825653, -22.076402083695594 ], [ -47.192541598326883, -22.076273775767817 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 570.20318144400005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197926656533689, -22.077391828611646 ], [ -47.197889148645494, -22.077384138447673 ], [ -47.197801648707291, -22.077366198480711 ], [ -47.197714148787, -22.077348258465008 ], [ -47.197626648884629, -22.07733031840058 ], [ -47.197539149000164, -22.077312378287431 ], [ -47.197451649133612, -22.077294438125566 ], [ -47.197364149284965, -22.077276497914951 ], [ -47.197276649454238, -22.077258557655629 ], [ -47.197189149641424, -22.077240617347581 ], [ -47.197101649846516, -22.077222676990814 ], [ -47.197014150069521, -22.077204736585323 ], [ -47.196926650310438, -22.077186796131112 ], [ -47.196839150569275, -22.07716885562818 ], [ -47.196751650846025, -22.077150915076523 ], [ -47.196664151140673, -22.07713297447614 ], [ -47.196576651453249, -22.077115033827035 ], [ -47.196489151783744, -22.077097093129211 ], [ -47.196401652132145, -22.077079152382645 ], [ -47.196314152498474, -22.077061211587399 ], [ -47.196226652882693, -22.077043270743403 ], [ -47.19613915328484, -22.077025329850684 ], [ -47.196051653704892, -22.077007388909252 ], [ -47.195964154142871, -22.076989447919093 ], [ -47.195876654598763, -22.076971506880234 ], [ -47.195789155072561, -22.076953565792607 ], [ -47.195701655564285, -22.076935624656301 ], [ -47.195614156073916, -22.07691768347124 ], [ -47.195526656601473, -22.07689974223749 ], [ -47.19543915714695, -22.076881800955015 ], [ -47.195351657710347, -22.076863859623788 ], [ -47.195264158291636, -22.076845918243883 ], [ -47.195176658890851, -22.076827976815235 ], [ -47.195089159507987, -22.076810035337871 ], [ -47.195001660143042, -22.076792093811786 ], [ -47.194914160796024, -22.07677415223699 ], [ -47.194826661466891, -22.07675621061345 ], [ -47.19473916215572, -22.076738268941217 ], [ -47.194651662862434, -22.076720327220244 ], [ -47.194564163587096, -22.07670238545057 ], [ -47.194476664329635, -22.07668444363215 ], [ -47.194389165090122, -22.076666501765036 ], [ -47.194301665868522, -22.076648559849186 ], [ -47.194214166664842, -22.076630617884639 ], [ -47.194126667479075, -22.076612675871342 ], [ -47.194039168311235, -22.076594733809348 ], [ -47.193951669161308, -22.076576791698606 ], [ -47.193864170029315, -22.076558849539197 ], [ -47.19377667091522, -22.076540907331044 ], [ -47.193689171819067, -22.076522965074169 ], [ -47.193601672740684, -22.07650502276854 ], [ -47.193514173680505, -22.076487080414264 ], [ -47.193426674638104, -22.076469138011234 ], [ -47.193339175613623, -22.076451195559482 ], [ -47.193251676607062, -22.076433253059019 ], [ -47.193164177618428, -22.07641531050983 ], [ -47.192532070688088, -22.076285689058921 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 569.26746538700002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197908276618925, -22.077401927136115 ], [ -47.197886026873945, -22.077397365316383 ], [ -47.197798526927677, -22.07737942534839 ], [ -47.197711026999308, -22.077361485331675 ], [ -47.197623527088858, -22.077343545266245 ], [ -47.197536027196314, -22.077325605152083 ], [ -47.197448527321669, -22.077307664989203 ], [ -47.197361027464957, -22.077289724777597 ], [ -47.197273527626159, -22.077271784517265 ], [ -47.197186027805252, -22.077253844208215 ], [ -47.197098528002279, -22.077235903850436 ], [ -47.197011028217197, -22.077217963443935 ], [ -47.196923528450057, -22.07720002298872 ], [ -47.196836028700801, -22.077182082484772 ], [ -47.196748528969472, -22.077164141932101 ], [ -47.196661029256056, -22.077146201330709 ], [ -47.196573529560553, -22.077128260680595 ], [ -47.196486029882962, -22.077110319981756 ], [ -47.196398530223291, -22.077092379234198 ], [ -47.196311030581526, -22.077074438437915 ], [ -47.196223530957688, -22.077056497592913 ], [ -47.196136031351728, -22.077038556699204 ], [ -47.196048531763715, -22.077020615756755 ], [ -47.195961032193622, -22.077002674765595 ], [ -47.195873532641436, -22.07698473372572 ], [ -47.195786033107161, -22.076966792637105 ], [ -47.195698533590807, -22.076948851499775 ], [ -47.195611034092366, -22.076930910313717 ], [ -47.195523534611858, -22.076912969078947 ], [ -47.195436035149243, -22.076895027795455 ], [ -47.195348535704554, -22.076877086463242 ], [ -47.195261036277778, -22.076859145082299 ], [ -47.195173536868914, -22.076841203652656 ], [ -47.195086037477985, -22.076823262174273 ], [ -47.194998538104947, -22.076805320647178 ], [ -47.194911038749851, -22.076787379071359 ], [ -47.194823539412653, -22.076769437446835 ], [ -47.194736040093396, -22.076751495773578 ], [ -47.194648540792052, -22.076733554051607 ], [ -47.194561041508599, -22.076715612280911 ], [ -47.194473542243095, -22.076697670461499 ], [ -47.194386042995504, -22.076679728593366 ], [ -47.194298543765818, -22.076661786676524 ], [ -47.194211044554066, -22.076643844710951 ], [ -47.19412354536022, -22.076625902696648 ], [ -47.194036046184294, -22.076607960633648 ], [ -47.193948547026302, -22.076590018521923 ], [ -47.193861047886223, -22.076572076361476 ], [ -47.193773548764064, -22.076554134152307 ], [ -47.192522543047573, -22.076297602349801 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 568.331749317, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19788989670144, -22.077412025658713 ], [ -47.197882905101935, -22.077410592185039 ], [ -47.197795405147588, -22.077392652216059 ], [ -47.197707905211139, -22.077374712198317 ], [ -47.197620405292611, -22.0773567721319 ], [ -47.197532905391988, -22.077338832016729 ], [ -47.197445405509271, -22.077320891852832 ], [ -47.197357905644473, -22.077302951640217 ], [ -47.197270405797596, -22.07728501137888 ], [ -47.197182905968624, -22.077267071068825 ], [ -47.197095406157565, -22.077249130710019 ], [ -47.197007906364412, -22.077231190302523 ], [ -47.196920406589193, -22.077213249846302 ], [ -47.196832906831858, -22.077195309341345 ], [ -47.19674540709245, -22.077177368787666 ], [ -47.196657907370955, -22.077159428185261 ], [ -47.19657040766738, -22.077141487534142 ], [ -47.196482907981711, -22.077123546834294 ], [ -47.196395408313961, -22.077105606085713 ], [ -47.196307908664117, -22.077087665288438 ], [ -47.1962204090322, -22.077069724442424 ], [ -47.196132909418175, -22.077051783547706 ], [ -47.196045409822077, -22.077033842604251 ], [ -47.195957910243905, -22.077015901612075 ], [ -47.195870410683646, -22.076997960571191 ], [ -47.195782911141286, -22.07698001948156 ], [ -47.19569541161686, -22.076962078343232 ], [ -47.195607912110347, -22.076944137156172 ], [ -47.195520412621761, -22.076926195920382 ], [ -47.195432913151066, -22.076908254635889 ], [ -47.195345413698298, -22.076890313302652 ], [ -47.195257914263443, -22.076872371920697 ], [ -47.195170414846508, -22.076854430490059 ], [ -47.1950829154475, -22.076836489010674 ], [ -47.194995416066391, -22.076818547482567 ], [ -47.194907916703208, -22.076800605905738 ], [ -47.194820417357946, -22.076782664280199 ], [ -47.194732918030603, -22.076764722605933 ], [ -47.19464541872118, -22.076746780882953 ], [ -47.194557919429656, -22.076728839111247 ], [ -47.194470420156073, -22.076710897290823 ], [ -47.194382920900409, -22.076692955421684 ], [ -47.194295421662645, -22.076675013503827 ], [ -47.194207922442814, -22.07665707153723 ], [ -47.194120423240896, -22.07663912952194 ], [ -47.194032924056891, -22.076621187457928 ], [ -47.193945424890821, -22.076603245345193 ], [ -47.193857925742662, -22.076585303183737 ], [ -47.193770426612424, -22.076567360973556 ], [ -47.192513015405687, -22.076309515640002 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 409.78372530600001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197871516781184, -22.077422124179456 ], [ -47.197792283367022, -22.077405879083688 ], [ -47.197704783422495, -22.077387939064955 ], [ -47.197617283495887, -22.07736999899749 ], [ -47.197529783587186, -22.077352058881324 ], [ -47.197442283696397, -22.077334118716426 ], [ -47.197354783823521, -22.077316178502798 ], [ -47.197267283968564, -22.077298238240452 ], [ -47.197179784131514, -22.077280297929377 ], [ -47.197092284312383, -22.077262357569591 ], [ -47.197004784511144, -22.077244417161079 ], [ -47.196917284727839, -22.077226476703835 ], [ -47.196829784962453, -22.077208536197872 ], [ -47.19674228521496, -22.077190595643184 ], [ -47.196654785485386, -22.077172655039771 ], [ -47.196567285773725, -22.077154714387643 ], [ -47.196479786079976, -22.077136773686789 ], [ -47.196392286404148, -22.077118832937227 ], [ -47.196304786746239, -22.077100892138922 ], [ -47.196217287106236, -22.077082951291889 ], [ -47.196129787484161, -22.077065010396154 ], [ -47.196042287879976, -22.077047069451698 ], [ -47.195954788293719, -22.077029128458513 ], [ -47.195867288725381, -22.077011187416606 ], [ -47.195779789174964, -22.07699324632598 ], [ -47.195692289642452, -22.076975305186632 ], [ -47.195604790127838, -22.07695736399857 ], [ -47.195517290631173, -22.076939422761775 ], [ -47.195429791152428, -22.076921481476266 ], [ -47.195342291691567, -22.07690354014203 ], [ -47.195254792248647, -22.076885598759077 ], [ -47.195167292823626, -22.076867657327409 ], [ -47.195079793416539, -22.076849715847018 ], [ -47.194992294027372, -22.07683177431791 ], [ -47.194904794656097, -22.076813832740068 ], [ -47.194817295302769, -22.076795891113516 ], [ -47.194729795967341, -22.076777949438242 ], [ -47.194642296649825, -22.076760007714249 ], [ -47.194554797350236, -22.076742065941538 ], [ -47.194467298068581, -22.076724124120105 ], [ -47.194379798804825, -22.07670618224995 ], [ -47.193994621917092, -22.076627200462926 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 403.87681239900002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197853136858186, -22.077432222698331 ], [ -47.197789161585987, -22.077419105951289 ], [ -47.197701661633381, -22.077401165931551 ], [ -47.197614161698695, -22.077383225863063 ], [ -47.197526661781922, -22.077365285745902 ], [ -47.197439161883054, -22.077347345579994 ], [ -47.197351662002099, -22.077329405365344 ], [ -47.197264162139064, -22.077311465102007 ], [ -47.197176662293934, -22.077293524789926 ], [ -47.197089162466725, -22.077275584429106 ], [ -47.197001662657421, -22.077257644019607 ], [ -47.19691416286603, -22.077239703561357 ], [ -47.196826663092565, -22.077221763054382 ], [ -47.196739163336993, -22.077203822498685 ], [ -47.19665166359934, -22.077185881894245 ], [ -47.196564163879614, -22.077167941241122 ], [ -47.196476664177787, -22.077150000539262 ], [ -47.19638916449388, -22.077132059788692 ], [ -47.196301664827885, -22.077114118989357 ], [ -47.196214165179804, -22.077096178141343 ], [ -47.196126665549649, -22.077078237244599 ], [ -47.196039165937393, -22.07706029629913 ], [ -47.195951666343063, -22.077042355304936 ], [ -47.195864166766647, -22.07702441426202 ], [ -47.19577666720815, -22.077006473170378 ], [ -47.19568916766756, -22.076988532030025 ], [ -47.195601668144882, -22.076970590840951 ], [ -47.19551416864013, -22.076952649603136 ], [ -47.195426669153306, -22.076934708316632 ], [ -47.195339169684367, -22.076916766981391 ], [ -47.195251670233375, -22.076898825597425 ], [ -47.195164170800282, -22.076880884164748 ], [ -47.19507667138511, -22.076862942683345 ], [ -47.194989171987871, -22.076845001153231 ], [ -47.194901672608516, -22.076827059574374 ], [ -47.19481417324711, -22.076809117946823 ], [ -47.194726673903602, -22.076791176270536 ], [ -47.194639174578015, -22.076773234545531 ], [ -47.194551675270347, -22.076755292771814 ], [ -47.194464175980606, -22.076737350949369 ], [ -47.194376676708785, -22.076719409078205 ], [ -47.194032125836912, -22.076648757839671 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 393.730360152, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197834756932473, -22.077442321215337 ], [ -47.19778603980447, -22.077432332818837 ], [ -47.197698539843799, -22.07741439279809 ], [ -47.197611039901027, -22.077396452728614 ], [ -47.197523539976174, -22.077378512610434 ], [ -47.197436040069235, -22.077360572443514 ], [ -47.197348540180208, -22.077342632227861 ], [ -47.197261040309094, -22.077324691963501 ], [ -47.197173540455893, -22.077306751650411 ], [ -47.197086040620597, -22.077288811288607 ], [ -47.196998540803214, -22.077270870878078 ], [ -47.196911041003744, -22.077252930418823 ], [ -47.196823541222201, -22.077234989910835 ], [ -47.196736041458557, -22.077217049354136 ], [ -47.196648541712825, -22.077199108748712 ], [ -47.196561041985021, -22.077181168094558 ], [ -47.196473542275129, -22.077163227391683 ], [ -47.196386042583136, -22.077145286640096 ], [ -47.196298542909062, -22.077127345839788 ], [ -47.196211043252916, -22.077109404990747 ], [ -47.196123543614675, -22.077091464092987 ], [ -47.196036043994347, -22.077073523146513 ], [ -47.195948544391932, -22.07705558215131 ], [ -47.19586104480743, -22.077037641107385 ], [ -47.195773545240861, -22.077019700014738 ], [ -47.195686045692192, -22.077001758873372 ], [ -47.195598546161456, -22.076983817683288 ], [ -47.195511046648612, -22.07696587644449 ], [ -47.195423547153695, -22.076947935156955 ], [ -47.195336047676712, -22.076929993820706 ], [ -47.195248548217613, -22.076912052435727 ], [ -47.195161048776448, -22.076894111002041 ], [ -47.195073549353204, -22.076876169519625 ], [ -47.194986049947872, -22.076858227988492 ], [ -47.194898550560467, -22.07684028640864 ], [ -47.194811051190968, -22.076822344780076 ], [ -47.194723551839395, -22.076804403102784 ], [ -47.194636052505729, -22.07678646137677 ], [ -47.194548553189996, -22.076768519602034 ], [ -47.194461053892176, -22.076750577778586 ], [ -47.194373554612277, -22.076732635906414 ], [ -47.194109739170834, -22.076678539796383 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 387.61834751499998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197816377003988, -22.077452419730477 ], [ -47.197782918022497, -22.077445559686382 ], [ -47.19769541805374, -22.077427619664608 ], [ -47.197607918102889, -22.077409679594133 ], [ -47.197520418169972, -22.077391739474947 ], [ -47.197432918254954, -22.077373799307004 ], [ -47.197345418357848, -22.07735585909036 ], [ -47.197257918478655, -22.077337918824991 ], [ -47.197170418617368, -22.077319978510893 ], [ -47.197082918774001, -22.077302038148083 ], [ -47.196995418948546, -22.077284097736548 ], [ -47.196907919140997, -22.077266157276259 ], [ -47.196820419351376, -22.077248216767277 ], [ -47.196732919579652, -22.07723027620958 ], [ -47.196645419825842, -22.077212335603139 ], [ -47.196557920089958, -22.077194394947977 ], [ -47.196470420371988, -22.077176454244082 ], [ -47.196382920671923, -22.077158513491494 ], [ -47.19629542098977, -22.077140572690183 ], [ -47.196207921325545, -22.077122631840119 ], [ -47.196120421679225, -22.077104690941365 ], [ -47.196032922050826, -22.077086749993882 ], [ -47.195945422440332, -22.077068808997669 ], [ -47.19585792284775, -22.077050867952735 ], [ -47.195770423273103, -22.077032926859076 ], [ -47.195682923716355, -22.077014985716698 ], [ -47.195595424177547, -22.076997044525609 ], [ -47.195507924656631, -22.076979103285801 ], [ -47.195420425153635, -22.076961161997261 ], [ -47.195332925668573, -22.076943220659995 ], [ -47.195245426201403, -22.076925279274011 ], [ -47.195157926752159, -22.076907337839319 ], [ -47.195070427320836, -22.076889396355895 ], [ -47.194982927907432, -22.076871454823753 ], [ -47.194895428511941, -22.076853513242892 ], [ -47.19480792913437, -22.076835571613316 ], [ -47.194720429774712, -22.076817629935011 ], [ -47.194632930432974, -22.076799688207991 ], [ -47.194545431109169, -22.076781746432246 ], [ -47.194457931803264, -22.076763804607786 ], [ -47.194370432515285, -22.07674586273459 ], [ -47.194149183526456, -22.076700495031186 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 381.48487366199998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197797997072804, -22.077462518243731 ], [ -47.197779796240042, -22.077458786553862 ], [ -47.197692296263213, -22.077440846531108 ], [ -47.19760479630429, -22.077422906459617 ], [ -47.197517296363287, -22.077404966339408 ], [ -47.197429796440197, -22.077387026170477 ], [ -47.197342296535012, -22.077369085952821 ], [ -47.197254796647734, -22.077351145686432 ], [ -47.197167296778382, -22.077333205371325 ], [ -47.197079796926928, -22.077315265007492 ], [ -47.196992297093388, -22.077297324594962 ], [ -47.196904797277774, -22.077279384133686 ], [ -47.196817297480067, -22.077261443623684 ], [ -47.196729797700272, -22.077243503064963 ], [ -47.196642297938396, -22.077225562457517 ], [ -47.196554798194427, -22.07720762180135 ], [ -47.19646729846837, -22.077189681096463 ], [ -47.196379798760248, -22.077171740342852 ], [ -47.196292299070016, -22.077153799540515 ], [ -47.196204799397698, -22.077135858689477 ], [ -47.1961172997433, -22.077117917789693 ], [ -47.196029800106828, -22.0770999768412 ], [ -47.195942300488255, -22.077082035843979 ], [ -47.195854800887624, -22.077064094798036 ], [ -47.195767301304876, -22.077046153703371 ], [ -47.195679801740056, -22.077028212559981 ], [ -47.195592302193162, -22.077010271367872 ], [ -47.195504802664182, -22.076992330127066 ], [ -47.1954173031531, -22.076974388837513 ], [ -47.195329803659952, -22.076956447499242 ], [ -47.19524230418471, -22.076938506112253 ], [ -47.195154804727395, -22.076920564676534 ], [ -47.195067305287992, -22.076902623192112 ], [ -47.19497980586651, -22.076884681658971 ], [ -47.194892306462947, -22.076866740077097 ], [ -47.194804807077297, -22.076848798446509 ], [ -47.194717307709567, -22.076830856767199 ], [ -47.194629808359757, -22.076812915039167 ], [ -47.194542309027867, -22.076794973262412 ], [ -47.194454809713903, -22.076777031436944 ], [ -47.194367310417832, -22.076759089562753 ], [ -47.194188830933953, -22.076722491889381 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 375.37428065300003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197779617138835, -22.077472616755159 ], [ -47.197776674457131, -22.077472013421342 ], [ -47.197689174472217, -22.077454073397579 ], [ -47.197601674505215, -22.077436133325079 ], [ -47.19751417455614, -22.077418193203862 ], [ -47.197426674624971, -22.077400253033925 ], [ -47.197339174711708, -22.077382312815253 ], [ -47.197251674816343, -22.077364372547862 ], [ -47.197164174938919, -22.077346432231742 ], [ -47.197076675079394, -22.077328491866904 ], [ -47.196989175237782, -22.077310551453362 ], [ -47.196901675414082, -22.077292610991076 ], [ -47.196814175608296, -22.077274670480069 ], [ -47.196726675820422, -22.077256729920336 ], [ -47.196639176050475, -22.077238789311885 ], [ -47.196551676298427, -22.077220848654704 ], [ -47.196464176564284, -22.077202907948809 ], [ -47.196376676848089, -22.077184967194189 ], [ -47.196289177149779, -22.077167026390846 ], [ -47.196201677469389, -22.0771490855388 ], [ -47.196114177806912, -22.077131144637992 ], [ -47.196026678162355, -22.077113203688505 ], [ -47.19593917853571, -22.077095262690275 ], [ -47.195851678926999, -22.077077321643319 ], [ -47.195764179336173, -22.077059380547645 ], [ -47.195676679763281, -22.077041439403253 ], [ -47.195589180208302, -22.077023498210131 ], [ -47.195501680671256, -22.077005556968317 ], [ -47.195414181152096, -22.076987615677758 ], [ -47.195326681650869, -22.076969674338475 ], [ -47.195239182167548, -22.076951732950459 ], [ -47.195151682702161, -22.076933791513746 ], [ -47.195064183254679, -22.076915850028314 ], [ -47.194976683825118, -22.076897908494164 ], [ -47.194889184413483, -22.076879966911278 ], [ -47.194801685019755, -22.076862025279681 ], [ -47.194714185643953, -22.076844083599365 ], [ -47.194626686286064, -22.076826141870328 ], [ -47.194539186946088, -22.076808200092565 ], [ -47.194451687624046, -22.07679025826608 ], [ -47.194364188319902, -22.07677231639088 ], [ -47.194228261882046, -22.076744444348925 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 377.55825180300002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19776123720213, -22.077482715264697 ], [ -47.197686052680751, -22.077467300263994 ], [ -47.197598552705678, -22.077449360190496 ], [ -47.19751105274851, -22.077431420068276 ], [ -47.197423552809262, -22.07741347989732 ], [ -47.197336052887913, -22.077395539677639 ], [ -47.19724855298449, -22.077377599409239 ], [ -47.197161053098988, -22.077359659092114 ], [ -47.197073553231384, -22.07734171872627 ], [ -47.196986053381686, -22.077323778311694 ], [ -47.196898553549907, -22.0773058378484 ], [ -47.196811053736049, -22.077287897336387 ], [ -47.196723553940103, -22.077269956775663 ], [ -47.19663605416207, -22.077252016166202 ], [ -47.19654855440195, -22.077234075508017 ], [ -47.196461054659743, -22.077216134801109 ], [ -47.196373554935448, -22.077198194045479 ], [ -47.196286055229066, -22.077180253241131 ], [ -47.196198555540619, -22.077162312388062 ], [ -47.196111055870055, -22.077144371486281 ], [ -47.196023556217419, -22.07712643053576 ], [ -47.195936056582717, -22.077108489536521 ], [ -47.195848556965899, -22.077090548488563 ], [ -47.195761057367008, -22.077072607391877 ], [ -47.195673557786037, -22.077054666246468 ], [ -47.195586058222986, -22.077036725052341 ], [ -47.195498558677848, -22.077018783809496 ], [ -47.195411059150629, -22.077000842517929 ], [ -47.195323559641317, -22.076982901177651 ], [ -47.195236060149924, -22.076964959788651 ], [ -47.195148560676451, -22.076947018350918 ], [ -47.195061061220898, -22.076929076864467 ], [ -47.194973561783257, -22.076911135329294 ], [ -47.194886062363537, -22.076893193745409 ], [ -47.194798562961736, -22.076875252112796 ], [ -47.194711063577856, -22.076857310431482 ], [ -47.194623564211888, -22.076839368701435 ], [ -47.194536064863854, -22.076821426922663 ], [ -47.194448565533719, -22.076803485095173 ], [ -47.194361066221504, -22.076785543218957 ], [ -47.194189219632271, -22.076750305643998 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 7.083379043, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.194276942075888, -22.076782160399564 ], [ -47.194209927637033, -22.076768418907861 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 595.467515327, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198422913194996, -22.077119167746105 ], [ -47.198410935168269, -22.077116711948737 ], [ -47.198323435358638, -22.077098772252604 ], [ -47.198235935566871, -22.077080832507757 ], [ -47.198148435793037, -22.077062892714167 ], [ -47.198060936037116, -22.077044952871852 ], [ -47.197973436299087, -22.077027012980817 ], [ -47.197885936578992, -22.077009073041058 ], [ -47.197798436876788, -22.076991133052591 ], [ -47.197710937192518, -22.076973193015398 ], [ -47.197623437526126, -22.076955252929466 ], [ -47.197535937877667, -22.076937312794815 ], [ -47.197448438247115, -22.076919372611449 ], [ -47.197360938634468, -22.076901432379355 ], [ -47.197273439039741, -22.076883492098538 ], [ -47.197185939462926, -22.076865551769 ], [ -47.197098439904018, -22.076847611390757 ], [ -47.197010940363029, -22.076829670963775 ], [ -47.196923440839939, -22.076811730488071 ], [ -47.196835941334761, -22.076793789963659 ], [ -47.196748441847518, -22.076775849390501 ], [ -47.196660942378173, -22.076757908768627 ], [ -47.196573442926741, -22.076739968098035 ], [ -47.196485943493229, -22.076722027378732 ], [ -47.196398444077623, -22.076704086610697 ], [ -47.196310944679936, -22.076686145793939 ], [ -47.196223445300156, -22.076668204928481 ], [ -47.196135945938295, -22.076650264014283 ], [ -47.196048446594361, -22.07663232305136 ], [ -47.195960947268318, -22.076614382039725 ], [ -47.195873447960203, -22.076596440979365 ], [ -47.195785948669993, -22.07657849987028 ], [ -47.19569844939771, -22.076560558712487 ], [ -47.195610950143347, -22.076542617505979 ], [ -47.195523450906897, -22.076524676250742 ], [ -47.195435951688339, -22.076506734946786 ], [ -47.195348452487714, -22.076488793594105 ], [ -47.195260953305009, -22.076470852192706 ], [ -47.195173454140217, -22.076452910742592 ], [ -47.19508595499336, -22.076434969243756 ], [ -47.194998455864386, -22.076417027696198 ], [ -47.194910956753347, -22.076399086099922 ], [ -47.19482345766022, -22.076381144454935 ], [ -47.194735958585014, -22.076363202761229 ], [ -47.194648459527734, -22.076345261018798 ], [ -47.19456096048836, -22.076327319227634 ], [ -47.194473461466913, -22.07630937738778 ], [ -47.194385962463365, -22.076291435499183 ], [ -47.194298463477757, -22.076273493561875 ], [ -47.194210964510063, -22.076255551575862 ], [ -47.194123465560281, -22.076237609541128 ], [ -47.194035966628419, -22.076219667457664 ], [ -47.193948467714485, -22.076201725325486 ], [ -47.193860968818448, -22.076183783144597 ], [ -47.193773469940361, -22.076165840914982 ], [ -47.193685971080079, -22.076147898636634 ], [ -47.193598472237923, -22.076129956309607 ], [ -47.193510973413574, -22.07611201393383 ], [ -47.193423474607158, -22.076094071509353 ], [ -47.193335975818663, -22.076076129036156 ], [ -47.19324847704808, -22.076058186514238 ], [ -47.193160978295417, -22.076040243943606 ], [ -47.193073479560695, -22.076022301324254 ], [ -47.192985980843865, -22.076004358656188 ], [ -47.192898482144976, -22.075986415939404 ], [ -47.192810983464, -22.075968473173901 ], [ -47.192789316388492, -22.075964030044492 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 594.53179925500001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198404533354299, -22.077129266320938 ], [ -47.198320313632117, -22.077111999126203 ], [ -47.198232813832291, -22.077094059380336 ], [ -47.198145314050372, -22.077076119585726 ], [ -47.198057814286372, -22.077058179742423 ], [ -47.197970314540264, -22.07704023985038 ], [ -47.19788281481209, -22.077022299909615 ], [ -47.197795315101814, -22.077004359920139 ], [ -47.197707815409466, -22.076986419881937 ], [ -47.197620315735001, -22.076968479795003 ], [ -47.19753281607845, -22.076950539659322 ], [ -47.197445316439833, -22.076932599474961 ], [ -47.1973578168191, -22.076914659241861 ], [ -47.197270317216301, -22.076896718960036 ], [ -47.197182817631408, -22.076878778629485 ], [ -47.19709531806442, -22.076860838250234 ], [ -47.197007818515353, -22.076842897822246 ], [ -47.196920318984191, -22.076824957345515 ], [ -47.196832819470941, -22.076807016820112 ], [ -47.196745319975605, -22.07678907624593 ], [ -47.196657820498189, -22.076771135623041 ], [ -47.196570321038685, -22.076753194951461 ], [ -47.196482821597094, -22.076735254231149 ], [ -47.196395322173409, -22.07671731346209 ], [ -47.196307822767636, -22.076699372644338 ], [ -47.196220323379791, -22.076681431777867 ], [ -47.196132824009851, -22.076663490862668 ], [ -47.196045324657838, -22.076645549898739 ], [ -47.195957825323724, -22.076627608886088 ], [ -47.195870326007523, -22.076609667824719 ], [ -47.195782826709248, -22.076591726714632 ], [ -47.195695327428886, -22.076573785555826 ], [ -47.195607828166438, -22.076555844348306 ], [ -47.195520328921916, -22.076537903092067 ], [ -47.195432829695278, -22.076519961787096 ], [ -47.195345330486582, -22.076502020433406 ], [ -47.195257831295798, -22.076484079031001 ], [ -47.195170332122927, -22.076466137579871 ], [ -47.195082832967984, -22.076448196080026 ], [ -47.194995333830946, -22.076430254531463 ], [ -47.19490783471182, -22.076412312934178 ], [ -47.194820335610629, -22.076394371288181 ], [ -47.194732836527344, -22.076376429593466 ], [ -47.194645337461985, -22.076358487850012 ], [ -47.194557838414539, -22.076340546057857 ], [ -47.194470339385013, -22.076322604216983 ], [ -47.194382840373386, -22.076304662327384 ], [ -47.1942953413797, -22.076286720389067 ], [ -47.194207842403934, -22.076268778402039 ], [ -47.19412034344608, -22.076250836366299 ], [ -47.19403284450614, -22.076232894281826 ], [ -47.193945345584112, -22.076214952148639 ], [ -47.193857846680018, -22.076197009966741 ], [ -47.193770347793851, -22.076179067736099 ], [ -47.193682848925491, -22.076161125456753 ], [ -47.193595350075249, -22.0761431831287 ], [ -47.193507851242828, -22.076125240751931 ], [ -47.193420352428333, -22.076107298326441 ], [ -47.193332853631766, -22.076089355852243 ], [ -47.193245354853104, -22.076071413329299 ], [ -47.193157856092377, -22.076053470757671 ], [ -47.193070357349569, -22.076035528137293 ], [ -47.192982858624674, -22.076017585468232 ], [ -47.192895359917706, -22.075999642750421 ], [ -47.192807861228644, -22.075981699983927 ], [ -47.192779788790212, -22.07597594334705 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 593.59608318599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198386153510882, -22.077139364893888 ], [ -47.198317191905119, -22.077125225999769 ], [ -47.198229692097229, -22.077107286252879 ], [ -47.19814219230723, -22.077089346457289 ], [ -47.198054692535145, -22.077071406612959 ], [ -47.197967192780986, -22.077053466719899 ], [ -47.197879693044726, -22.077035526778129 ], [ -47.197792193326372, -22.077017586787633 ], [ -47.197704693625923, -22.076999646748423 ], [ -47.197617193943394, -22.076981706660479 ], [ -47.197529694278778, -22.076963766523825 ], [ -47.197442194632075, -22.076945826338434 ], [ -47.197354695003277, -22.076927886104325 ], [ -47.197267195392392, -22.076909945821495 ], [ -47.197179695799413, -22.076892005489942 ], [ -47.197092196224368, -22.076874065109667 ], [ -47.197004696667207, -22.076856124680667 ], [ -47.196917197127966, -22.076838184202945 ], [ -47.196829697606645, -22.076820243676519 ], [ -47.196742198103237, -22.076802303101353 ], [ -47.196654698617735, -22.076784362477465 ], [ -47.196567199150159, -22.076766421804855 ], [ -47.196479699700483, -22.076748481083527 ], [ -47.196392200268718, -22.076730540313481 ], [ -47.196304700854888, -22.076712599494705 ], [ -47.19621720145895, -22.076694658627222 ], [ -47.196129702080931, -22.076676717711006 ], [ -47.196042202720832, -22.076658776746068 ], [ -47.195954703378646, -22.076640835732412 ], [ -47.195867204054366, -22.076622894670045 ], [ -47.19577970474802, -22.076604953558942 ], [ -47.195692205459586, -22.076587012399131 ], [ -47.195604706189066, -22.076569071190587 ], [ -47.195517206936451, -22.076551129933335 ], [ -47.195429707701756, -22.076533188627362 ], [ -47.195342208484973, -22.076515247272678 ], [ -47.195254709286111, -22.076497305869253 ], [ -47.195167210105176, -22.076479364417125 ], [ -47.195079710942146, -22.076461422916267 ], [ -47.194992211797043, -22.076443481366692 ], [ -47.194904712669839, -22.076425539768401 ], [ -47.194817213560555, -22.076407598121385 ], [ -47.194729714469197, -22.076389656425658 ], [ -47.19464221539576, -22.076371714681205 ], [ -47.194554716340228, -22.076353772888034 ], [ -47.194467217302631, -22.076335831046151 ], [ -47.194379718282946, -22.076317889155543 ], [ -47.194292219281166, -22.076299947216228 ], [ -47.194204720297336, -22.07628200522818 ], [ -47.194117221331389, -22.076264063191417 ], [ -47.194029722383377, -22.076246121105953 ], [ -47.193942223453291, -22.07622817897175 ], [ -47.193854724541112, -22.076210236788835 ], [ -47.193767225646873, -22.076192294557202 ], [ -47.193679726770426, -22.076174352276826 ], [ -47.193592227912113, -22.076156409947782 ], [ -47.19350472907162, -22.076138467569994 ], [ -47.193417230249047, -22.076120525143498 ], [ -47.1933297314444, -22.076102582668277 ], [ -47.193242232657667, -22.076084640144348 ], [ -47.193154733888854, -22.076066697571694 ], [ -47.193067235137967, -22.076048754950325 ], [ -47.192979736405, -22.076030812280237 ], [ -47.192892237689968, -22.076012869561442 ], [ -47.192804738992841, -22.075994926793918 ], [ -47.192770261190368, -22.075987856649174 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 592.66036711499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.1983677736647, -22.077149463464991 ], [ -47.198314070177666, -22.077138452873299 ], [ -47.19822657036169, -22.077120513125386 ], [ -47.198139070563627, -22.077102573328801 ], [ -47.198051570783456, -22.077084633483452 ], [ -47.197964071021218, -22.077066693589401 ], [ -47.197876571276879, -22.077048753646618 ], [ -47.197789071550453, -22.077030813655117 ], [ -47.197701571841925, -22.077012873614898 ], [ -47.197614072151325, -22.076994933525949 ], [ -47.197526572478623, -22.076976993388282 ], [ -47.197439072823848, -22.076959053201886 ], [ -47.197351573186971, -22.076941112966768 ], [ -47.197264073568007, -22.076923172682932 ], [ -47.197176573966949, -22.076905232350367 ], [ -47.197089074383825, -22.076887291969065 ], [ -47.197001574818593, -22.076869351539074 ], [ -47.196914075271273, -22.076851411060343 ], [ -47.196826575741873, -22.076833470532907 ], [ -47.196739076230386, -22.076815529956718 ], [ -47.196651576736812, -22.076797589331839 ], [ -47.196564077261158, -22.076779648658221 ], [ -47.196476577803402, -22.076761707935884 ], [ -47.196389078363559, -22.076743767164821 ], [ -47.19630157894165, -22.076725826345044 ], [ -47.19621407953764, -22.076707885476544 ], [ -47.196126580151549, -22.076689944559309 ], [ -47.196039080783372, -22.076672003593384 ], [ -47.1959515814331, -22.076654062578701 ], [ -47.195864082100755, -22.076636121515339 ], [ -47.195776582786323, -22.076618180403209 ], [ -47.195689083489818, -22.076600239242403 ], [ -47.195601584211218, -22.076582298032857 ], [ -47.195514084950524, -22.07656435677459 ], [ -47.19542658570775, -22.076546415467607 ], [ -47.195339086482896, -22.076528474111917 ], [ -47.195251587275955, -22.076510532707466 ], [ -47.195164088086941, -22.076492591254343 ], [ -47.195076588915832, -22.07647464975248 ], [ -47.194989089762657, -22.076456708201896 ], [ -47.194901590627374, -22.076438766602589 ], [ -47.194814091510018, -22.076420824954571 ], [ -47.194726592410589, -22.076402883257831 ], [ -47.19463909332908, -22.076384941512369 ], [ -47.194551594265462, -22.076366999718193 ], [ -47.194464095219786, -22.076349057875298 ], [ -47.194376596192022, -22.076331115983663 ], [ -47.194289097182178, -22.076313174043353 ], [ -47.194201598190261, -22.076295232054299 ], [ -47.194114099216236, -22.076277290016524 ], [ -47.194026600260152, -22.076259347930044 ], [ -47.19393910132198, -22.076241405794825 ], [ -47.193851602401743, -22.076223463610916 ], [ -47.193764103499419, -22.076205521378252 ], [ -47.193676604614893, -22.076187579096889 ], [ -47.193589105748501, -22.076169636766831 ], [ -47.193501606899936, -22.076151694388017 ], [ -47.193414108069284, -22.076133751960523 ], [ -47.193326609256559, -22.076115809484289 ], [ -47.193239110461761, -22.076097866959358 ], [ -47.193151611684861, -22.076079924385695 ], [ -47.193064112925903, -22.076061981763313 ], [ -47.192976614184865, -22.076044039092217 ], [ -47.192889115461753, -22.076026096372409 ], [ -47.192801616756547, -22.076008153603865 ], [ -47.192760733588962, -22.075999769950851 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 591.72465104699995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198349393815811, -22.0771595620342 ], [ -47.198310948449738, -22.077151679746773 ], [ -47.198223448625683, -22.077133739997873 ], [ -47.198135948819534, -22.077115800200275 ], [ -47.198048449031297, -22.077097860353927 ], [ -47.197960949260974, -22.077079920458857 ], [ -47.197873449508556, -22.077061980515069 ], [ -47.197785949774051, -22.077044040522559 ], [ -47.197698450057459, -22.077026100481319 ], [ -47.197610950358772, -22.077008160391365 ], [ -47.197523450677991, -22.076990220252704 ], [ -47.197435951015137, -22.076972280065288 ], [ -47.197348451370189, -22.076954339829161 ], [ -47.197260951743147, -22.076936399544316 ], [ -47.197173452134017, -22.076918459210745 ], [ -47.197085952542807, -22.076900518828449 ], [ -47.196998452969495, -22.07688257839742 ], [ -47.196910953414097, -22.076864637917691 ], [ -47.196823453876632, -22.076846697389236 ], [ -47.196735954357088, -22.076828756812059 ], [ -47.196648454855428, -22.076810816186153 ], [ -47.19656095537168, -22.076792875511533 ], [ -47.196473455905846, -22.076774934788187 ], [ -47.196385956457938, -22.076756994016115 ], [ -47.196298457027943, -22.076739053195322 ], [ -47.196210957615861, -22.076721112325814 ], [ -47.196123458221692, -22.076703171407587 ], [ -47.196035958845435, -22.076685230440635 ], [ -47.195948459487106, -22.076667289424979 ], [ -47.195860960146675, -22.076649348360583 ], [ -47.195773460824171, -22.076631407247458 ], [ -47.195685961519565, -22.076613466085629 ], [ -47.195598462232901, -22.076595524875074 ], [ -47.195510962964129, -22.076577583615798 ], [ -47.195423463713276, -22.076559642307803 ], [ -47.195335964480343, -22.0765417009511 ], [ -47.195248465265337, -22.076523759545672 ], [ -47.195160966068229, -22.076505818091508 ], [ -47.195073466889056, -22.076487876588626 ], [ -47.194985967727789, -22.076469935037029 ], [ -47.194898468584427, -22.076451993436734 ], [ -47.194810969459013, -22.0764340517877 ], [ -47.194723470351505, -22.076416110089944 ], [ -47.19463597126191, -22.076398168343488 ], [ -47.19454847219022, -22.076380226548313 ], [ -47.194460973136458, -22.076362284704405 ], [ -47.19437347410063, -22.076344342811765 ], [ -47.1942859750827, -22.076326400870432 ], [ -47.194198476082704, -22.076308458880366 ], [ -47.194110977100614, -22.076290516841581 ], [ -47.194023478136458, -22.076272574754086 ], [ -47.193935979190208, -22.076254632617868 ], [ -47.193848480261885, -22.076236690432935 ], [ -47.193760981351474, -22.076218748199292 ], [ -47.193673482458891, -22.076200805916891 ], [ -47.19358598358442, -22.076182863585828 ], [ -47.193498484727783, -22.076164921206033 ], [ -47.193410985889052, -22.076146978777512 ], [ -47.193323487068255, -22.076129036300269 ], [ -47.193235988265371, -22.076111093774305 ], [ -47.1931484894804, -22.076093151199647 ], [ -47.19306099071337, -22.07607520857626 ], [ -47.192973491964253, -22.076057265904151 ], [ -47.192885993233055, -22.076039323183323 ], [ -47.192798494519778, -22.076021380413788 ], [ -47.192751205986013, -22.076011683252087 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 590.78893497700005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19833101396415, -22.077169660601562 ], [ -47.198307826721347, -22.07716490662024 ], [ -47.198220326889206, -22.077146966870334 ], [ -47.198132827074986, -22.077129027071724 ], [ -47.198045327278663, -22.077111087224377 ], [ -47.197957827500268, -22.077093147328299 ], [ -47.197870327739771, -22.077075207383501 ], [ -47.19778282799718, -22.077057267389961 ], [ -47.197695328272523, -22.07703932734773 ], [ -47.197607828565744, -22.07702138725676 ], [ -47.197520328876905, -22.0770034471171 ], [ -47.197432829205965, -22.076985506928661 ], [ -47.197345329552938, -22.07696756669154 ], [ -47.197257829917824, -22.076949626405689 ], [ -47.197170330300615, -22.076931686071106 ], [ -47.197082830701319, -22.076913745687804 ], [ -47.196995331119943, -22.076895805255749 ], [ -47.196907831556466, -22.076877864775025 ], [ -47.196820332010923, -22.076859924245557 ], [ -47.196732832483292, -22.076841983667371 ], [ -47.196645332973553, -22.076824043040446 ], [ -47.196557833481734, -22.076806102364838 ], [ -47.196470334007827, -22.076788161640479 ], [ -47.196382834551841, -22.076770220867399 ], [ -47.196295335113767, -22.0767522800456 ], [ -47.196207835693606, -22.076734339175076 ], [ -47.196120336291358, -22.076716398255837 ], [ -47.19603283690703, -22.076698457287883 ], [ -47.195945337540628, -22.076680516271217 ], [ -47.195857838192111, -22.076662575205795 ], [ -47.195770338861529, -22.076644634091679 ], [ -47.195682839548859, -22.076626692928844 ], [ -47.195595340254116, -22.076608751717277 ], [ -47.195507840977257, -22.076590810456977 ], [ -47.195420341718332, -22.076572869147988 ], [ -47.195332842477328, -22.076554927790273 ], [ -47.195245343254236, -22.076536986383836 ], [ -47.195157844049056, -22.076519044928645 ], [ -47.195070344861797, -22.076501103424771 ], [ -47.194982845692465, -22.076483161872169 ], [ -47.194895346541031, -22.076465220270862 ], [ -47.194807847407525, -22.076447278620819 ], [ -47.194720348291945, -22.076429336922057 ], [ -47.194632849194278, -22.076411395174578 ], [ -47.194545350114517, -22.076393453378405 ], [ -47.194457851052675, -22.07637551153347 ], [ -47.194370352008768, -22.076357569639839 ], [ -47.194282852982759, -22.076339627697493 ], [ -47.194195353974685, -22.076321685706422 ], [ -47.194107854984523, -22.076303743666628 ], [ -47.194020356012288, -22.07628580157812 ], [ -47.193932857057959, -22.076267859440893 ], [ -47.193845358121564, -22.076249917254952 ], [ -47.193757859203082, -22.076231975020296 ], [ -47.193670360302413, -22.076214032736868 ], [ -47.19358286141987, -22.076196090404814 ], [ -47.193495362555161, -22.07617814802401 ], [ -47.193407863708352, -22.076160205594476 ], [ -47.193320364879476, -22.076142263116214 ], [ -47.193232866068513, -22.076124320589251 ], [ -47.193145367275477, -22.076106378013577 ], [ -47.193057868500368, -22.076088435389181 ], [ -47.192970369743172, -22.07607049271607 ], [ -47.192882871003896, -22.076052549994234 ], [ -47.192795372282546, -22.076034607223686 ], [ -47.192741678381495, -22.076023596552897 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 589.85321890600005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198312634109747, -22.077179759167063 ], [ -47.198304704992474, -22.077178133493664 ], [ -47.198217205152261, -22.077160193742742 ], [ -47.198129705329976, -22.077142253943123 ], [ -47.198042205525567, -22.077124314094767 ], [ -47.197954705739086, -22.077106374197687 ], [ -47.19786720597051, -22.077088434251877 ], [ -47.197779706219855, -22.077070494257349 ], [ -47.197692206487105, -22.077052554214095 ], [ -47.197604706772267, -22.077034614122116 ], [ -47.197517207075336, -22.077016673981426 ], [ -47.197429707396324, -22.076998733792013 ], [ -47.197342207735211, -22.076980793553869 ], [ -47.197254708092011, -22.076962853267002 ], [ -47.197167208466745, -22.076944912931417 ], [ -47.197079708859377, -22.076926972547106 ], [ -47.196992209269922, -22.07690903211407 ], [ -47.196904709698366, -22.076891091632316 ], [ -47.196817210144737, -22.076873151101836 ], [ -47.196729710609034, -22.076855210522648 ], [ -47.196642211091209, -22.076837269894735 ], [ -47.196554711591318, -22.07681932921809 ], [ -47.196467212109333, -22.076801388492726 ], [ -47.196379712645268, -22.076783447718633 ], [ -47.196292213199122, -22.076765506895825 ], [ -47.196204713770889, -22.076747566024295 ], [ -47.196117214360569, -22.076729625104043 ], [ -47.196029714968148, -22.076711684135084 ], [ -47.195942215593661, -22.076693743117392 ], [ -47.195854716237079, -22.076675802050985 ], [ -47.195767216898417, -22.07665786093586 ], [ -47.195679717577669, -22.076639919772006 ], [ -47.195592218274847, -22.076621978559434 ], [ -47.195504718989916, -22.076604037298136 ], [ -47.195417219722927, -22.076586095988123 ], [ -47.195329720473829, -22.076568154629388 ], [ -47.195242221242665, -22.076550213221935 ], [ -47.195154722029422, -22.076532271765767 ], [ -47.195067222834084, -22.076514330260878 ], [ -47.194979723656658, -22.076496388707277 ], [ -47.19489222449716, -22.076478447104947 ], [ -47.194804725355574, -22.076460505453891 ], [ -47.194717226231909, -22.076442563754117 ], [ -47.194629727126163, -22.076424622005629 ], [ -47.194542228038351, -22.076406680208418 ], [ -47.194454728968424, -22.076388738362507 ], [ -47.194367229916431, -22.076370796467874 ], [ -47.19427973088235, -22.076352854524508 ], [ -47.194192231866204, -22.076334912532424 ], [ -47.194104732867963, -22.076316970491625 ], [ -47.194017233887649, -22.076299028402104 ], [ -47.193929734925248, -22.076281086263887 ], [ -47.193842235980767, -22.076263144076922 ], [ -47.193754737054213, -22.076245201841243 ], [ -47.193667238145473, -22.076227259556831 ], [ -47.193579739254858, -22.076209317223746 ], [ -47.193492240382064, -22.076191374841919 ], [ -47.193404741527175, -22.076173432411387 ], [ -47.19331724269022, -22.076155489932127 ], [ -47.1932297438712, -22.076137547404162 ], [ -47.193142245070078, -22.076119604827465 ], [ -47.193054746286883, -22.076101662202056 ], [ -47.192967247521608, -22.076083719527951 ], [ -47.19287974877426, -22.076065776805102 ], [ -47.192792250044825, -22.076047834033531 ], [ -47.192732150775441, -22.076035509853238 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 588.91750283700003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198294254252616, -22.077189857730684 ], [ -47.19821408341484, -22.077173420615146 ], [ -47.198126583584475, -22.077155480814508 ], [ -47.198039083772002, -22.077137540965154 ], [ -47.197951583977442, -22.077119601067061 ], [ -47.197864084200781, -22.077101661120246 ], [ -47.197776584442053, -22.077083721124705 ], [ -47.197689084701217, -22.077065781080442 ], [ -47.197601584978301, -22.077047840987461 ], [ -47.197514085273305, -22.077029900845758 ], [ -47.197426585586207, -22.077011960655312 ], [ -47.197339085917029, -22.076994020416176 ], [ -47.197251586265736, -22.07697608012829 ], [ -47.197164086632398, -22.076958139791717 ], [ -47.197076587016952, -22.076940199406394 ], [ -47.196989087419425, -22.076922258972349 ], [ -47.19690158783979, -22.076904318489586 ], [ -47.196814088278082, -22.0768863779581 ], [ -47.1967265887343, -22.076868437377907 ], [ -47.196639089208396, -22.076850496748978 ], [ -47.196551589700427, -22.076832556071327 ], [ -47.19646409021037, -22.076814615344951 ], [ -47.196376590738232, -22.076796674569856 ], [ -47.196289091284001, -22.076778733746035 ], [ -47.196201591847689, -22.076760792873497 ], [ -47.196114092429298, -22.07674285195224 ], [ -47.196026593028797, -22.076724910982268 ], [ -47.195939093646231, -22.076706969963567 ], [ -47.195851594281578, -22.076689028896144 ], [ -47.195764094934837, -22.076671087780017 ], [ -47.195676595606017, -22.076653146615151 ], [ -47.195589096295116, -22.076635205401569 ], [ -47.195501597002114, -22.076617264139266 ], [ -47.195414097727038, -22.07659932282824 ], [ -47.195326598469869, -22.0765813814685 ], [ -47.195239099230626, -22.076563440060035 ], [ -47.195151600009311, -22.076545498602862 ], [ -47.195064100805887, -22.076527557096959 ], [ -47.19497660162039, -22.076509615542349 ], [ -47.194889102452812, -22.076491673938989 ], [ -47.194801603303148, -22.076473732286946 ], [ -47.19471410417141, -22.076455790586163 ], [ -47.194626605057593, -22.076437848836662 ], [ -47.194539105961702, -22.076419907038449 ], [ -47.194451606883696, -22.076401965191522 ], [ -47.194364107823631, -22.07638402329588 ], [ -47.194276608781472, -22.076366081351487 ], [ -47.194189109757247, -22.076348139358412 ], [ -47.194101610750927, -22.076330197316604 ], [ -47.194014111762542, -22.076312255226075 ], [ -47.193926612792062, -22.076294313086844 ], [ -47.193839113839502, -22.076276370898857 ], [ -47.193751614904876, -22.076258428662182 ], [ -47.193664115988064, -22.076240486376761 ], [ -47.193576617089363, -22.076222544042668 ], [ -47.19348911820849, -22.076204601659835 ], [ -47.193401619345529, -22.076186659228291 ], [ -47.193314120500503, -22.076168716748022 ], [ -47.193226621673396, -22.076150774219041 ], [ -47.19313912286421, -22.076132831641342 ], [ -47.193051624072929, -22.076114889014917 ], [ -47.192964125299589, -22.076096946339803 ], [ -47.192876626544155, -22.076079003615927 ], [ -47.192789127806655, -22.076061060843362 ], [ -47.192722623167803, -22.076047423153163 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 587.98178676800001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198275874392742, -22.077199956292443 ], [ -47.198210961676956, -22.077186647487494 ], [ -47.198123461838492, -22.077168707685843 ], [ -47.198035962017947, -22.07715076783548 ], [ -47.197948462215308, -22.077132827936381 ], [ -47.197860962430589, -22.077114887988561 ], [ -47.197773462663775, -22.077096947992015 ], [ -47.197685962914868, -22.077079007946747 ], [ -47.197598463183866, -22.07706106785275 ], [ -47.197510963470783, -22.077043127710045 ], [ -47.197423463775621, -22.077025187518611 ], [ -47.197335964098357, -22.077007247278441 ], [ -47.197248464439006, -22.076989306989567 ], [ -47.197160964797575, -22.076971366651964 ], [ -47.197073465174057, -22.076953426265636 ], [ -47.196985965568437, -22.076935485830589 ], [ -47.196898465980745, -22.076917545346816 ], [ -47.196810966410951, -22.076899604814315 ], [ -47.196723466859083, -22.076881664233095 ], [ -47.196635967325129, -22.076863723603154 ], [ -47.196548467809073, -22.076845782924515 ], [ -47.196460968310937, -22.076827842197126 ], [ -47.196373468830728, -22.076809901421019 ], [ -47.196285969368411, -22.076791960596193 ], [ -47.19619846992402, -22.076774019722642 ], [ -47.196110970497543, -22.076756078800393 ], [ -47.196023471088992, -22.076738137829405 ], [ -47.19593597169834, -22.076720196809681 ], [ -47.195848472325608, -22.076702255741264 ], [ -47.195760972970788, -22.076684314624121 ], [ -47.195673473633896, -22.076666373458249 ], [ -47.195585974314902, -22.076648432243662 ], [ -47.195498475013835, -22.076630490980367 ], [ -47.195410975730674, -22.076612549668326 ], [ -47.19532347646544, -22.076594608307563 ], [ -47.195235977218111, -22.076576666898099 ], [ -47.19514847798871, -22.076558725439909 ], [ -47.195060978777214, -22.076540783933009 ], [ -47.194973479583652, -22.076522842377379 ], [ -47.194885980407996, -22.076504900773024 ], [ -47.19479848125026, -22.076486959119951 ], [ -47.194710982110458, -22.076469017418166 ], [ -47.19462348298854, -22.076451075667656 ], [ -47.194535983884563, -22.076433133868427 ], [ -47.194448484798492, -22.076415192020491 ], [ -47.194360985730349, -22.076397250123833 ], [ -47.194273486680125, -22.076379308178453 ], [ -47.194185987647813, -22.076361366184354 ], [ -47.194098488633429, -22.076343424141537 ], [ -47.194010989636951, -22.076325482050002 ], [ -47.193923490658399, -22.076307539909742 ], [ -47.193835991697782, -22.076289597720766 ], [ -47.193748492755056, -22.07627165548308 ], [ -47.193660993830157, -22.076253713196643 ], [ -47.193573494923392, -22.076235770861544 ], [ -47.193485996034447, -22.076217828477699 ], [ -47.193398497163422, -22.076199886045135 ], [ -47.193310998310309, -22.076181943563856 ], [ -47.193223499475124, -22.076164001033877 ], [ -47.193136000657859, -22.076146058455162 ], [ -47.193048501858506, -22.076128115827728 ], [ -47.192961003077087, -22.076110173151587 ], [ -47.192873504313589, -22.076092230426742 ], [ -47.192786005568017, -22.076074287653164 ], [ -47.192713095558616, -22.076059336452627 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 587.046070697, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198257494530104, -22.077210054852351 ], [ -47.198207839938597, -22.077199874359831 ], [ -47.198120340092046, -22.077181934557167 ], [ -47.19803284026343, -22.077163994705788 ], [ -47.197945340452719, -22.077146054805674 ], [ -47.197857840659914, -22.077128114856865 ], [ -47.197770340885029, -22.077110174859307 ], [ -47.197682841128035, -22.077092234813026 ], [ -47.197595341388961, -22.077074294718027 ], [ -47.197507841667814, -22.07705635457431 ], [ -47.197420341964566, -22.077038414381871 ], [ -47.197332842279224, -22.077020474140674 ], [ -47.197245342611801, -22.077002533850813 ], [ -47.197157842962291, -22.076984593512197 ], [ -47.19707034333068, -22.076966653124838 ], [ -47.196982843717002, -22.076948712688811 ], [ -47.196895344121231, -22.076930772204008 ], [ -47.196807844543358, -22.076912831670512 ], [ -47.196720344983412, -22.076894891088287 ], [ -47.196632845441378, -22.07687695045734 ], [ -47.196545345917244, -22.076859009777685 ], [ -47.196457846411029, -22.076841069049294 ], [ -47.196370346922741, -22.076823128272157 ], [ -47.196282847452352, -22.076805187446336 ], [ -47.196195347999883, -22.076787246571779 ], [ -47.196107848565333, -22.076769305648522 ], [ -47.196020349148696, -22.076751364676504 ], [ -47.195932849749973, -22.076733423655792 ], [ -47.195845350369154, -22.076715482586366 ], [ -47.195757851006263, -22.076697541468214 ], [ -47.195670351661306, -22.076679600301333 ], [ -47.195582852334226, -22.076661659085733 ], [ -47.19549535302508, -22.07664371782143 ], [ -47.195407853733848, -22.076625776508365 ], [ -47.195320354460534, -22.076607835146607 ], [ -47.195232855205134, -22.076589893736138 ], [ -47.195145355967654, -22.076571952276918 ], [ -47.195057856748079, -22.076554010769023 ], [ -47.194970357546438, -22.076536069212384 ], [ -47.194882858362703, -22.076518127607006 ], [ -47.194795359196888, -22.076500185952948 ], [ -47.194707860049007, -22.076482244250148 ], [ -47.194620360919018, -22.076464302498628 ], [ -47.194532861806962, -22.076446360698391 ], [ -47.194445362712827, -22.076428418849446 ], [ -47.194357863636604, -22.076410476951775 ], [ -47.194270364578301, -22.07639253500539 ], [ -47.194182865537904, -22.076374593010279 ], [ -47.194095366515455, -22.076356650966449 ], [ -47.194007867510898, -22.076338708873902 ], [ -47.193920368524267, -22.076320766732639 ], [ -47.193832869555571, -22.076302824542658 ], [ -47.193745370604773, -22.076284882303963 ], [ -47.193657871671789, -22.076266940016495 ], [ -47.193570372756959, -22.076248997680405 ], [ -47.193482873859935, -22.076231055295551 ], [ -47.193395374980838, -22.076213112861979 ], [ -47.193307876119647, -22.076195170379687 ], [ -47.193220377276376, -22.076177227848703 ], [ -47.193132878451038, -22.076159285268954 ], [ -47.193045379643607, -22.076141342640526 ], [ -47.192957880854117, -22.076123399963379 ], [ -47.192870382082546, -22.076105457237521 ], [ -47.192782883328896, -22.076087514462934 ], [ -47.192703567947881, -22.07607124975166 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 586.11035462799998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198239114664744, -22.07722015341038 ], [ -47.198204718199754, -22.077213101232118 ], [ -47.19811721834516, -22.077195161428445 ], [ -47.198029718508444, -22.077177221576065 ], [ -47.197942218689654, -22.077159281674945 ], [ -47.197854718888777, -22.077141341725117 ], [ -47.197767219105806, -22.077123401726553 ], [ -47.197679719340748, -22.077105461679267 ], [ -47.197592219593602, -22.077087521583255 ], [ -47.197504719864362, -22.077069581438522 ], [ -47.197417220153035, -22.077051641245067 ], [ -47.197329720459621, -22.077033701002886 ], [ -47.197242220784126, -22.077015760711983 ], [ -47.197154721126523, -22.07699782037238 ], [ -47.197067221486847, -22.076979879984037 ], [ -47.196979721865084, -22.076961939546965 ], [ -47.196892222261219, -22.076943999061172 ], [ -47.196804722675282, -22.076926058526666 ], [ -47.196717223107257, -22.076908117943425 ], [ -47.196629723557145, -22.076890177311476 ], [ -47.196542224024938, -22.076872236630798 ], [ -47.196454724510652, -22.076854295901409 ], [ -47.196367225014278, -22.076836355123287 ], [ -47.196279725535831, -22.076818414296444 ], [ -47.196192226075283, -22.076800473420882 ], [ -47.196104726632647, -22.076782532496591 ], [ -47.196017227207932, -22.076764591523585 ], [ -47.195929727801129, -22.07674665050186 ], [ -47.195842228412246, -22.076728709431425 ], [ -47.195754729041283, -22.076710768312257 ], [ -47.195667229688226, -22.07669282714437 ], [ -47.195579730353074, -22.076674885927758 ], [ -47.19549223103585, -22.076656944662435 ], [ -47.195404731736545, -22.076639003348387 ], [ -47.19531723245516, -22.076621061985616 ], [ -47.195229733191695, -22.076603120574127 ], [ -47.195142233946129, -22.076585179113909 ], [ -47.195054734718489, -22.076567237604976 ], [ -47.194967235508756, -22.076549296047343 ], [ -47.194879736316949, -22.07653135444097 ], [ -47.194792237143055, -22.076513412785886 ], [ -47.194704737987088, -22.076495471082083 ], [ -47.194617238849041, -22.076477529329562 ], [ -47.1945297397289, -22.076459587528319 ], [ -47.194442240626678, -22.07644164567834 ], [ -47.194354741542377, -22.07642370377966 ], [ -47.194267242475995, -22.076405761832273 ], [ -47.19417974342754, -22.076387819836157 ], [ -47.194092244396991, -22.076369877791318 ], [ -47.194004745384369, -22.076351935697762 ], [ -47.19391724638966, -22.076333993555483 ], [ -47.193829747412885, -22.076316051364493 ], [ -47.193742248454029, -22.076298109124785 ], [ -47.193654749512966, -22.076280166836334 ], [ -47.19356725059005, -22.07626222449921 ], [ -47.193479751684954, -22.076244282113347 ], [ -47.193392252797771, -22.076226339678776 ], [ -47.193304753928508, -22.076208397195476 ], [ -47.193217255077165, -22.076190454663461 ], [ -47.193129756243749, -22.076172512082731 ], [ -47.193042257428253, -22.076154569453287 ], [ -47.19295475863067, -22.076136626775117 ], [ -47.19286725985102, -22.076118684048236 ], [ -47.192779761089291, -22.07610074127264 ], [ -47.192694040335589, -22.076083163050242 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 585.17463855699998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198220734796621, -22.077230251966565 ], [ -47.19820159646045, -22.077226328104388 ], [ -47.198114096597777, -22.077208388299709 ], [ -47.198026596752989, -22.077190448446316 ], [ -47.19793909692612, -22.077172508544194 ], [ -47.197851597117165, -22.077154568593354 ], [ -47.197764097326115, -22.077136628593784 ], [ -47.197676597552977, -22.077118688545472 ], [ -47.197589097797753, -22.077100748448473 ], [ -47.197501598060434, -22.077082808302727 ], [ -47.197414098341035, -22.077064868108263 ], [ -47.197326598639542, -22.077046927865076 ], [ -47.197239098955968, -22.077028987573165 ], [ -47.197151599290294, -22.077011047232549 ], [ -47.197064099642539, -22.076993106843197 ], [ -47.196976600012704, -22.07697516640512 ], [ -47.19688910040076, -22.076957225918314 ], [ -47.196801600806751, -22.076939285382792 ], [ -47.19671410123064, -22.076921344798556 ], [ -47.196626601672449, -22.076903404165598 ], [ -47.196539102132164, -22.076885463483908 ], [ -47.196451602609805, -22.07686752275351 ], [ -47.196364103105353, -22.076849581974365 ], [ -47.196276603618827, -22.076831641146526 ], [ -47.1961891041502, -22.076813700269955 ], [ -47.196101604699493, -22.076795759344659 ], [ -47.196014105266705, -22.076777818370644 ], [ -47.195926605851824, -22.076759877347904 ], [ -47.195839106454862, -22.076741936276466 ], [ -47.195751607075813, -22.076723995156286 ], [ -47.195664107714677, -22.07670605398739 ], [ -47.195576608371461, -22.076688112769773 ], [ -47.195489109046157, -22.076670171503441 ], [ -47.195401609738774, -22.076652230188362 ], [ -47.195314110449317, -22.076634288824597 ], [ -47.195226611177766, -22.076616347412084 ], [ -47.195139111924135, -22.076598405950875 ], [ -47.19505161268841, -22.076580464440937 ], [ -47.194964113470604, -22.076562522882281 ], [ -47.194876614270711, -22.076544581274913 ], [ -47.194789115088746, -22.07652663961882 ], [ -47.194701615924707, -22.076508697913997 ], [ -47.194614116778588, -22.076490756160474 ], [ -47.194526617650354, -22.076472814358201 ], [ -47.194439118540075, -22.076454872507234 ], [ -47.194351619447694, -22.076436930607539 ], [ -47.194264120373234, -22.076418988659146 ], [ -47.194176621316693, -22.076401046662017 ], [ -47.194089122278072, -22.07638310461617 ], [ -47.194001623257378, -22.076365162521604 ], [ -47.193914124254583, -22.07634722037832 ], [ -47.193826625269736, -22.076329278186318 ], [ -47.193739126302802, -22.076311335945594 ], [ -47.19365162735366, -22.076293393656123 ], [ -47.193564128422672, -22.076275451318004 ], [ -47.193476629509497, -22.076257508931132 ], [ -47.193389130614243, -22.076239566495552 ], [ -47.193301631736901, -22.076221624011243 ], [ -47.193214132877486, -22.076203681478219 ], [ -47.193126634035984, -22.076185738896484 ], [ -47.193039135212409, -22.076167796266024 ], [ -47.192951636406761, -22.076149853586845 ], [ -47.192864137619033, -22.076131910858937 ], [ -47.192776638849232, -22.076113968082343 ], [ -47.192689140097336, -22.076096025257019 ], [ -47.192684512721733, -22.076095076348395 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 584.23892248799996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198202354925776, -22.077240350520867 ], [ -47.198110974849918, -22.077221615170942 ], [ -47.198023474997065, -22.077203675316525 ], [ -47.197935975162117, -22.077185735413394 ], [ -47.197848475345076, -22.077167795461541 ], [ -47.197760975545954, -22.077149855460966 ], [ -47.197673475764745, -22.077131915411663 ], [ -47.197585976001434, -22.077113975313637 ], [ -47.197498476256044, -22.077096035166885 ], [ -47.197410976528559, -22.077078094971412 ], [ -47.197323476818994, -22.077060154727217 ], [ -47.197235977127328, -22.077042214434304 ], [ -47.197148477453595, -22.077024274092665 ], [ -47.197060977797761, -22.077006333702286 ], [ -47.196973478159833, -22.076988393263232 ], [ -47.196885978539839, -22.076970452775424 ], [ -47.196798478937737, -22.076952512238883 ], [ -47.196710979353547, -22.076934571653645 ], [ -47.196623479787291, -22.076916631019671 ], [ -47.196535980238934, -22.076898690336975 ], [ -47.196448480708483, -22.076880749605554 ], [ -47.196360981195959, -22.076862808825414 ], [ -47.196273481701354, -22.076844867996563 ], [ -47.196185982224648, -22.076826927118983 ], [ -47.196098482765862, -22.076808986192678 ], [ -47.196010983325003, -22.076791045217654 ], [ -47.195923483902035, -22.076773104193908 ], [ -47.195835984496995, -22.076755163121451 ], [ -47.195748485109867, -22.076737222000268 ], [ -47.195660985740666, -22.076719280830361 ], [ -47.195573486389371, -22.076701339611727 ], [ -47.195485987055996, -22.076683398344386 ], [ -47.195398487740526, -22.076665457028316 ], [ -47.195310988442991, -22.076647515663524 ], [ -47.195223489163354, -22.076629574250017 ], [ -47.195135989901644, -22.076611632787785 ], [ -47.195048490657847, -22.076593691276862 ], [ -47.194960991431984, -22.076575749717193 ], [ -47.194873492224005, -22.076557808108795 ], [ -47.194785993033975, -22.076539866451697 ], [ -47.19469849386185, -22.076521924745872 ], [ -47.194610994707645, -22.076503982991333 ], [ -47.19452349557136, -22.076486041188069 ], [ -47.194435996452981, -22.07646809933609 ], [ -47.194348497352522, -22.076450157435374 ], [ -47.194260998269989, -22.076432215485969 ], [ -47.194173499205377, -22.076414273487831 ], [ -47.194086000158677, -22.076396331440979 ], [ -47.193998501129904, -22.0763783893454 ], [ -47.193911002119052, -22.076360447201104 ], [ -47.193823503126112, -22.076342505008096 ], [ -47.193736004151098, -22.07632456276637 ], [ -47.193648505193877, -22.076306620475886 ], [ -47.193561006254825, -22.076288678136756 ], [ -47.193473507333572, -22.076270735748878 ], [ -47.193386008430231, -22.076252793312278 ], [ -47.193298509544817, -22.07623485082696 ], [ -47.193211010677338, -22.076216908292928 ], [ -47.193123511827757, -22.076198965710176 ], [ -47.19303601299611, -22.076181023078711 ], [ -47.192948514182376, -22.076163080398526 ], [ -47.19286101538659, -22.07614513766962 ], [ -47.192773516608689, -22.076127194891999 ], [ -47.192686017848736, -22.07610925206567 ], [ -47.192674985106308, -22.076106989646103 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 583.30320641699996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19818397505216, -22.077250449073308 ], [ -47.198107853101597, -22.077234842042142 ], [ -47.198020353240665, -22.077216902186695 ], [ -47.197932853397639, -22.077198962282576 ], [ -47.197845353572525, -22.077181022329714 ], [ -47.197757853765324, -22.077163082328113 ], [ -47.197670353976029, -22.077145142277821 ], [ -47.197582854204647, -22.077127202178787 ], [ -47.197495354451178, -22.07710926203103 ], [ -47.197407854715614, -22.077091321834541 ], [ -47.197320354997977, -22.07707338158934 ], [ -47.197232855298239, -22.077055441295421 ], [ -47.197145355616421, -22.077037500952752 ], [ -47.197057855952508, -22.077019560561389 ], [ -47.196970356306508, -22.077001620121322 ], [ -47.196882856678428, -22.076983679632487 ], [ -47.196795357068247, -22.076965739094955 ], [ -47.196707857475992, -22.076947798508712 ], [ -47.196620357901658, -22.076929857873711 ], [ -47.196532858345222, -22.076911917189996 ], [ -47.196445358806699, -22.07689397645759 ], [ -47.196357859286096, -22.076876035676428 ], [ -47.196270359783412, -22.076858094846578 ], [ -47.196182860298627, -22.076840153967989 ], [ -47.196095360831762, -22.076822213040678 ], [ -47.196007861382824, -22.076804272064642 ], [ -47.195920361951778, -22.076786331039891 ], [ -47.195832862538666, -22.076768389966432 ], [ -47.195745363143459, -22.076750448844233 ], [ -47.195657863766179, -22.076732507673302 ], [ -47.195570364406805, -22.076714566453671 ], [ -47.195482865065351, -22.076696625185324 ], [ -47.19539536574181, -22.076678683868248 ], [ -47.195307866436202, -22.076660742502447 ], [ -47.195220367148487, -22.076642801087928 ], [ -47.195132867878705, -22.07662485962469 ], [ -47.195045368626829, -22.076606918112748 ], [ -47.194957869392887, -22.076588976552056 ], [ -47.19487037017683, -22.07657103494267 ], [ -47.19478287097872, -22.076553093284563 ], [ -47.194695371798524, -22.076535151577726 ], [ -47.19460787263624, -22.076517209822182 ], [ -47.194520373491876, -22.076499268017908 ], [ -47.194432874365418, -22.076481326164892 ], [ -47.194345375256894, -22.076463384263192 ], [ -47.194257876166283, -22.076445442312778 ], [ -47.194170377093592, -22.076427500313613 ], [ -47.194082878038813, -22.076409558265762 ], [ -47.193995379001969, -22.076391616169182 ], [ -47.19390787998303, -22.076373674023881 ], [ -47.193820380982018, -22.076355731829857 ], [ -47.193732881998926, -22.076337789587122 ], [ -47.193645383033626, -22.076319847295615 ], [ -47.193557884086502, -22.076301904955479 ], [ -47.19347038515717, -22.076283962566595 ], [ -47.19338288624575, -22.076266020128973 ], [ -47.193295387352272, -22.076248077642664 ], [ -47.193207888476714, -22.076230135107615 ], [ -47.193120389619054, -22.076212192523862 ], [ -47.193032890779328, -22.07619424989138 ], [ -47.192945391957522, -22.076176307210186 ], [ -47.192857893153658, -22.076158364480271 ], [ -47.192770394367685, -22.076140421701645 ], [ -47.192682895599653, -22.076122478874307 ], [ -47.19266545748934, -22.076118902943371 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 582.36749034699994, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198165595175816, -22.077260547623879 ], [ -47.198104731352814, -22.077248068913292 ], [ -47.198017231483796, -22.077230129056865 ], [ -47.197929731632698, -22.077212189151716 ], [ -47.197842231799498, -22.077194249197834 ], [ -47.197754731984233, -22.077176309195234 ], [ -47.197667232186845, -22.07715836914393 ], [ -47.197579732407398, -22.077140429043887 ], [ -47.19749223264585, -22.077122488895121 ], [ -47.197404732902207, -22.07710454869763 ], [ -47.197317233176477, -22.07708660845142 ], [ -47.197229733468667, -22.077068668156478 ], [ -47.197142233778763, -22.077050727812829 ], [ -47.197054734106779, -22.077032787420453 ], [ -47.196967234452714, -22.077014846979349 ], [ -47.196879734816562, -22.076996906489519 ], [ -47.196792235198295, -22.076978965950978 ], [ -47.196704735597962, -22.076961025363719 ], [ -47.196617236015541, -22.076943084727727 ], [ -47.196529736451033, -22.076925144043013 ], [ -47.196442236904439, -22.076907203309585 ], [ -47.196354737375749, -22.076889262527427 ], [ -47.196267237864994, -22.076871321696551 ], [ -47.196179738372123, -22.076853380816956 ], [ -47.196092238897194, -22.076835439888633 ], [ -47.196004739440163, -22.076817498911595 ], [ -47.195917240001066, -22.076799557885835 ], [ -47.195829740579875, -22.076781616811342 ], [ -47.195742241176589, -22.076763675688142 ], [ -47.195654741791223, -22.076745734516226 ], [ -47.195567242423785, -22.076727793295582 ], [ -47.195479743074252, -22.076709852026205 ], [ -47.195392243742631, -22.076691910708128 ], [ -47.195304744428931, -22.076673969341314 ], [ -47.195217245133151, -22.07665602792579 ], [ -47.19512974585529, -22.076638086461543 ], [ -47.195042246595335, -22.076620144948578 ], [ -47.194954747353307, -22.076602203386898 ], [ -47.194867248129192, -22.076584261776492 ], [ -47.19477974892299, -22.076566320117379 ], [ -47.194692249734715, -22.076548378409534 ], [ -47.194604750564352, -22.07653043665298 ], [ -47.194517251411909, -22.076512494847698 ], [ -47.194429752277394, -22.076494552993694 ], [ -47.194342253160791, -22.076476611090968 ], [ -47.194254754062108, -22.07645866913953 ], [ -47.194167254981338, -22.076440727139364 ], [ -47.19407975591848, -22.076422785090489 ], [ -47.19399225687355, -22.076404842992911 ], [ -47.193904757846539, -22.076386900846607 ], [ -47.193817258837456, -22.076368958651575 ], [ -47.193729759846292, -22.076351016407823 ], [ -47.193642260872913, -22.076333074115333 ], [ -47.193554761917703, -22.076315131774173 ], [ -47.193467262980299, -22.07629718938426 ], [ -47.193379764060822, -22.076279246945642 ], [ -47.193292265159243, -22.076261304458313 ], [ -47.193204766275599, -22.07624336192227 ], [ -47.193117267409882, -22.07622541933749 ], [ -47.19302976856207, -22.076207476704006 ], [ -47.1929422697322, -22.076189534021797 ], [ -47.192854770920242, -22.07617159129088 ], [ -47.192767272126204, -22.076153648511241 ], [ -47.192679773350093, -22.076135705682884 ], [ -47.192655929870817, -22.076130816240191 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 581.43177427700005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198147215296721, -22.077270646172604 ], [ -47.198101609603548, -22.077261295784428 ], [ -47.198014109726451, -22.077243355926992 ], [ -47.197926609867274, -22.07722541602082 ], [ -47.197839110026003, -22.077207476065944 ], [ -47.197751610202658, -22.077189536062338 ], [ -47.197664110397191, -22.077171596010022 ], [ -47.197576610609666, -22.077153655908972 ], [ -47.197489110840039, -22.077135715759198 ], [ -47.197401611088324, -22.077117775560698 ], [ -47.197314111354515, -22.077099835313479 ], [ -47.197226611638627, -22.077081895017535 ], [ -47.19713911194065, -22.077063954672873 ], [ -47.19705161226058, -22.077046014279492 ], [ -47.196964112598437, -22.077028073837361 ], [ -47.196876612954206, -22.077010133346537 ], [ -47.196789113327874, -22.076992192806994 ], [ -47.196701613719462, -22.076974252218719 ], [ -47.196614114128963, -22.076956311581721 ], [ -47.196526614556376, -22.076938370895999 ], [ -47.196439115001702, -22.076920430161557 ], [ -47.196351615464948, -22.076902489378394 ], [ -47.196264115946114, -22.076884548546502 ], [ -47.196176616445165, -22.076866607665899 ], [ -47.196089116962156, -22.076848666736574 ], [ -47.196001617497053, -22.07683072575853 ], [ -47.195914118049863, -22.076812784731736 ], [ -47.1958266186206, -22.076794843656252 ], [ -47.195739119209236, -22.076776902532046 ], [ -47.195651619815798, -22.076758961359122 ], [ -47.195564120440281, -22.076741020137462 ], [ -47.195476621082662, -22.076723078867062 ], [ -47.19538912174297, -22.076705137547993 ], [ -47.195301622421205, -22.076687196180174 ], [ -47.195214123117339, -22.07666925476364 ], [ -47.195126623831399, -22.076651313298381 ], [ -47.195039124563372, -22.076633371784407 ], [ -47.194951625313266, -22.076615430221718 ], [ -47.194864126081072, -22.076597488610304 ], [ -47.194776626866805, -22.076579546950175 ], [ -47.194689127670443, -22.076561605241327 ], [ -47.194601628492002, -22.076543663483765 ], [ -47.19451412933148, -22.076525721677452 ], [ -47.194426630188886, -22.07650777982246 ], [ -47.194339131064211, -22.076489837918729 ], [ -47.194251631957449, -22.076471895966261 ], [ -47.194164132868615, -22.0764539539651 ], [ -47.194076633797678, -22.076436011915213 ], [ -47.193989134744669, -22.076418069816626 ], [ -47.193901635709587, -22.076400127669313 ], [ -47.193814136692417, -22.076382185473271 ], [ -47.193726637693175, -22.076364243228515 ], [ -47.193639138711724, -22.076346300935011 ], [ -47.193551639748442, -22.076328358592825 ], [ -47.193464140802959, -22.076310416201917 ], [ -47.193376641875403, -22.076292473762287 ], [ -47.193289142965753, -22.076274531273945 ], [ -47.193201644074037, -22.076256588736889 ], [ -47.193114145200234, -22.07623864615109 ], [ -47.193026646344357, -22.076220703516615 ], [ -47.192939147506408, -22.0762027608334 ], [ -47.192851648686364, -22.076184818101453 ], [ -47.192764149884262, -22.076166875320819 ], [ -47.192676651100065, -22.076148932491453 ], [ -47.192646402250716, -22.076142729536588 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 580.49605820700003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198128835414884, -22.077280744719449 ], [ -47.198098487853805, -22.077274522655518 ], [ -47.198010987968644, -22.077256582797062 ], [ -47.197923488101381, -22.07723864288991 ], [ -47.197835988252031, -22.077220702934014 ], [ -47.197748488420601, -22.077202762929403 ], [ -47.197660988607069, -22.077184822876067 ], [ -47.197573488811472, -22.077166882774009 ], [ -47.197485989033765, -22.077148942623229 ], [ -47.197398489273972, -22.07713100242372 ], [ -47.197310989532099, -22.077113062175492 ], [ -47.197223489808117, -22.077095121878543 ], [ -47.197135990102069, -22.077077181532868 ], [ -47.197048490413927, -22.077059241138478 ], [ -47.196960990743698, -22.077041300695356 ], [ -47.196873491091388, -22.077023360203512 ], [ -47.196785991456977, -22.077005419662946 ], [ -47.196698491840486, -22.076987479073662 ], [ -47.196610992241915, -22.076969538435652 ], [ -47.19652349266125, -22.076951597748923 ], [ -47.19643599309849, -22.076933657013477 ], [ -47.196348493553664, -22.076915716229308 ], [ -47.196260994026737, -22.076897775396414 ], [ -47.19617349451773, -22.076879834514799 ], [ -47.196085995026642, -22.076861893584457 ], [ -47.195998495553468, -22.076843952605408 ], [ -47.195910996098199, -22.076826011577634 ], [ -47.195823496660843, -22.076808070501123 ], [ -47.195735997241414, -22.076790129375894 ], [ -47.195648497839912, -22.076772188201957 ], [ -47.195560998456301, -22.076754246979291 ], [ -47.195473499090618, -22.076736305707914 ], [ -47.19538599974284, -22.076718364387805 ], [ -47.195298500412996, -22.076700423018988 ], [ -47.195211001101065, -22.076682481601441 ], [ -47.195123501807053, -22.076664540135184 ], [ -47.195036002530934, -22.076646598620197 ], [ -47.194948503272762, -22.076628657056496 ], [ -47.194861004032489, -22.076610715444072 ], [ -47.194773504810136, -22.076592773782927 ], [ -47.19468600560571, -22.076574832073067 ], [ -47.194598506419183, -22.076556890314482 ], [ -47.194511007250597, -22.076538948507189 ], [ -47.194423508099916, -22.076521006651181 ], [ -47.194336008967156, -22.07650306474644 ], [ -47.194248509852308, -22.076485122792981 ], [ -47.194161010755408, -22.076467180790804 ], [ -47.1940735116764, -22.076449238739905 ], [ -47.193986012615319, -22.076431296640294 ], [ -47.193898513572151, -22.076413354491962 ], [ -47.193811014546917, -22.076395412294911 ], [ -47.193723515539595, -22.076377470049145 ], [ -47.193636016550059, -22.076359527754633 ], [ -47.193548517578705, -22.076341585411452 ], [ -47.19346101862515, -22.076323643019528 ], [ -47.193373519689509, -22.076305700578903 ], [ -47.193286020771787, -22.076287758089538 ], [ -47.193198521871992, -22.076269815551473 ], [ -47.193111022990117, -22.076251872964683 ], [ -47.193023524126168, -22.076233930329177 ], [ -47.192936025280133, -22.07621598764495 ], [ -47.192848526452018, -22.076198044912008 ], [ -47.192761027641829, -22.076180102130348 ], [ -47.192673528849561, -22.076162159299979 ], [ -47.192636874629073, -22.076154642832535 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 579.560342139, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198110455530326, -22.077290843264418 ], [ -47.198095366103594, -22.077287749526576 ], [ -47.198007866210354, -22.077269809667129 ], [ -47.197920366335019, -22.077251869758964 ], [ -47.197832866477597, -22.07723392980207 ], [ -47.197745366638081, -22.077215989796439 ], [ -47.197657866816478, -22.077198049742076 ], [ -47.197570367012801, -22.077180109639031 ], [ -47.197482867227009, -22.077162169487234 ], [ -47.197395367459137, -22.077144229286727 ], [ -47.197307867709192, -22.077126289037487 ], [ -47.197220367977138, -22.077108348739536 ], [ -47.197132868263012, -22.077090408392852 ], [ -47.197045368566791, -22.077072467997453 ], [ -47.196957868888482, -22.077054527553319 ], [ -47.196870369228094, -22.077036587060466 ], [ -47.196782869585611, -22.077018646518894 ], [ -47.196695369961049, -22.077000705928601 ], [ -47.196607870354399, -22.076982765289582 ], [ -47.196520370765654, -22.076964824601841 ], [ -47.196432871194823, -22.076946883865386 ], [ -47.196345371641918, -22.076928943080212 ], [ -47.196257872106912, -22.076911002246309 ], [ -47.196170372589826, -22.076893061363677 ], [ -47.19608287309066, -22.07687512043233 ], [ -47.195995373609399, -22.076857179452269 ], [ -47.195907874146059, -22.076839238423492 ], [ -47.195820374700631, -22.076821297345955 ], [ -47.195732875273123, -22.076803356219735 ], [ -47.195645375863542, -22.076785415044785 ], [ -47.195557876471852, -22.076767473821096 ], [ -47.195470377098097, -22.076749532548728 ], [ -47.19538287774224, -22.07673159122761 ], [ -47.195295378404317, -22.076713649857773 ], [ -47.195207879084307, -22.076695708439225 ], [ -47.195120379782225, -22.076677766971958 ], [ -47.195032880498033, -22.076659825455963 ], [ -47.194945381231783, -22.076641883891256 ], [ -47.194857881983424, -22.07662394227782 ], [ -47.194770382752999, -22.076606000615666 ], [ -47.194682883540494, -22.076588058904793 ], [ -47.194595384345895, -22.076570117145202 ], [ -47.19450788516923, -22.076552175336889 ], [ -47.194420386010471, -22.076534233479883 ], [ -47.194332886869638, -22.076516291574116 ], [ -47.194245387746719, -22.076498349619662 ], [ -47.19415788864174, -22.076480407616476 ], [ -47.194070389554653, -22.076462465564571 ], [ -47.193982890485493, -22.076444523463945 ], [ -47.193895391434253, -22.076426581314607 ], [ -47.19380789240094, -22.076408639116543 ], [ -47.19372039338554, -22.076390696869765 ], [ -47.193632894387925, -22.076372754574244 ], [ -47.193545395408499, -22.076354812230054 ], [ -47.193457896446866, -22.076336869837125 ], [ -47.193370397503152, -22.076318927395491 ], [ -47.193282898577351, -22.076300984905096 ], [ -47.193195399669484, -22.076283042366036 ], [ -47.19310790077953, -22.076265099778237 ], [ -47.193020401907503, -22.076247157141719 ], [ -47.192932903053389, -22.076229214456486 ], [ -47.192845404217202, -22.076211271722531 ], [ -47.192757905398935, -22.076193328939866 ], [ -47.192670406598594, -22.076175386108481 ], [ -47.19262734700586, -22.076166556128047 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 578.624626068, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198092075643004, -22.077300941807533 ], [ -47.198004744451609, -22.077283036537146 ], [ -47.197917244568202, -22.077265096627958 ], [ -47.197829744702688, -22.077247156670055 ], [ -47.197742244855093, -22.077229216663437 ], [ -47.197654745025417, -22.077211276608082 ], [ -47.197567245213648, -22.077193336503999 ], [ -47.197479745419791, -22.077175396351201 ], [ -47.197392245643854, -22.077157456149685 ], [ -47.197304745885816, -22.077139515899443 ], [ -47.197217246145691, -22.077121575600483 ], [ -47.197129746423478, -22.077103635252787 ], [ -47.197042246719192, -22.077085694856375 ], [ -47.196954747032798, -22.077067754411235 ], [ -47.196867247364338, -22.077049813917377 ], [ -47.196779747713769, -22.077031873374793 ], [ -47.196692248081128, -22.077013932783483 ], [ -47.196604748466392, -22.076995992143463 ], [ -47.196517248869583, -22.076978051454731 ], [ -47.196429749290679, -22.076960110717259 ], [ -47.196342249729682, -22.076942169931066 ], [ -47.196254750186604, -22.076924229096154 ], [ -47.196167250661446, -22.076906288212513 ], [ -47.196079751154194, -22.076888347280157 ], [ -47.195992251664862, -22.076870406299076 ], [ -47.195904752193449, -22.07685246526928 ], [ -47.195817252739943, -22.07683452419078 ], [ -47.195729753304377, -22.076816583063533 ], [ -47.195642253886696, -22.076798641887571 ], [ -47.195554754486935, -22.076780700662898 ], [ -47.1954672551051, -22.076762759389492 ], [ -47.195379755741172, -22.076744818067365 ], [ -47.195292256395177, -22.076726876696522 ], [ -47.195204757067074, -22.076708935276958 ], [ -47.195117257756905, -22.076690993808683 ], [ -47.195029758464663, -22.076673052291682 ], [ -47.194942259190306, -22.076655110725955 ], [ -47.194854759933889, -22.076637169111514 ], [ -47.194767260695393, -22.076619227448358 ], [ -47.194679761474816, -22.076601285736476 ], [ -47.194592262272138, -22.076583343975873 ], [ -47.194504763087387, -22.076565402166555 ], [ -47.194417263920556, -22.076547460308522 ], [ -47.194329764771652, -22.076529518401763 ], [ -47.194242265640653, -22.076511576446283 ], [ -47.194154766527589, -22.076493634442091 ], [ -47.19406726743243, -22.076475692389185 ], [ -47.193979768355199, -22.076457750287553 ], [ -47.19389226929588, -22.076439808137195 ], [ -47.193804770254481, -22.076421865938137 ], [ -47.193717271231016, -22.076403923690346 ], [ -47.193629772225336, -22.076385981393813 ], [ -47.193542273237817, -22.07636803904861 ], [ -47.193454774268105, -22.076350096654672 ], [ -47.193367275316326, -22.076332154212011 ], [ -47.19327977638244, -22.076314211720632 ], [ -47.193192277466494, -22.076296269180538 ], [ -47.193104778568461, -22.076278326591734 ], [ -47.193017279688362, -22.076260383954214 ], [ -47.192929780826177, -22.076242441267972 ], [ -47.19284228198191, -22.076224498533012 ], [ -47.192754783155571, -22.07620655574933 ], [ -47.192667284347166, -22.076188612916937 ], [ -47.192617819381105, -22.076178469423109 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 577.68891, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.198073695752953, -22.077311040348782 ], [ -47.198001622692381, -22.077296263407131 ], [ -47.197914122800896, -22.077278323496948 ], [ -47.197826622927309, -22.077260383538039 ], [ -47.197739123071635, -22.077242443530412 ], [ -47.197651623233881, -22.077224503474049 ], [ -47.197564123414033, -22.077206563368961 ], [ -47.197476623612097, -22.07718862321515 ], [ -47.197389123828081, -22.077170683012625 ], [ -47.197301624061971, -22.077152742761374 ], [ -47.197214124313767, -22.077134802461405 ], [ -47.197126624583483, -22.077116862112693 ], [ -47.197039124871111, -22.077098921715283 ], [ -47.196951625176645, -22.07708098126912 ], [ -47.196864125500099, -22.077063040774263 ], [ -47.196776625841466, -22.077045100230674 ], [ -47.196689126200745, -22.077027159638359 ], [ -47.19660162657793, -22.077009218997325 ], [ -47.196514126973042, -22.076991278307585 ], [ -47.19642662738606, -22.076973337569086 ], [ -47.196339127816991, -22.076955396781901 ], [ -47.196251628265841, -22.076937455945977 ], [ -47.196164128732605, -22.076919515061334 ], [ -47.196076629217274, -22.076901574127969 ], [ -47.195989129719862, -22.076883633145883 ], [ -47.195901630240364, -22.076865692115071 ], [ -47.195814130778786, -22.076847751035565 ], [ -47.195726631335134, -22.076829809907288 ], [ -47.195639131909381, -22.076811868730335 ], [ -47.195551632501548, -22.076793927504653 ], [ -47.195464133111635, -22.076775986230238 ], [ -47.195376633739627, -22.076758044907105 ], [ -47.195289134385554, -22.076740103535251 ], [ -47.195201635049379, -22.076722162114681 ], [ -47.195114135731131, -22.076704220645397 ], [ -47.195026636430818, -22.076686279127383 ], [ -47.194939137148381, -22.076668337560651 ], [ -47.194851637883893, -22.076650395945194 ], [ -47.194764138637311, -22.076632454281032 ], [ -47.194676639408655, -22.076614512568138 ], [ -47.194589140197913, -22.076596570806526 ], [ -47.194501641005083, -22.076578628996199 ], [ -47.194414141830173, -22.076560687137153 ], [ -47.19432664267319, -22.076542745229375 ], [ -47.194239143534119, -22.076524803272893 ], [ -47.194151644412976, -22.076506861267699 ], [ -47.194064145309738, -22.076488919213784 ], [ -47.193976646224435, -22.076470977111139 ], [ -47.193889147157037, -22.07645303495978 ], [ -47.193801648107566, -22.076435092759706 ], [ -47.193714149076023, -22.076417150510892 ], [ -47.193626650062257, -22.076399208213346 ], [ -47.193539151066666, -22.076381265867152 ], [ -47.193451652088875, -22.076363323472197 ], [ -47.193364153129025, -22.076345381028531 ], [ -47.193276654187066, -22.076327438536143 ], [ -47.193189155263042, -22.076309495995037 ], [ -47.193101656356937, -22.076291553405223 ], [ -47.193014157468753, -22.076273610766695 ], [ -47.192926658598488, -22.07625566807944 ], [ -47.19283915974615, -22.076237725343468 ], [ -47.192751660911732, -22.07621978255878 ], [ -47.192664162095248, -22.076201839725368 ], [ -47.19260829175478, -22.076190382717741 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 244.06181693799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196750488216345, -22.078052028482173 ], [ -47.196723728404599, -22.078046541809488 ], [ -47.196636228138388, -22.07802860124098 ], [ -47.196548727890118, -22.07801066062375 ], [ -47.196461227659739, -22.077992719957791 ], [ -47.196373727447273, -22.077974779243128 ], [ -47.196286227252735, -22.077956838479722 ], [ -47.196198727076109, -22.077938897667593 ], [ -47.196111226917402, -22.077920956806739 ], [ -47.196023726776623, -22.077903015897171 ], [ -47.195936226653728, -22.077885074938873 ], [ -47.195848726548782, -22.077867133931857 ], [ -47.195761226461727, -22.077849192876108 ], [ -47.195673726392599, -22.077831251771642 ], [ -47.195586226341391, -22.077813310618442 ], [ -47.195498726308088, -22.077795369416531 ], [ -47.195411226292713, -22.077777428165895 ], [ -47.195323726295264, -22.077759486866537 ], [ -47.195236226315728, -22.077741545518453 ], [ -47.195148726354105, -22.077723604121648 ], [ -47.195061226410395, -22.077705662676138 ], [ -47.194973726484605, -22.077687721181885 ], [ -47.194886226576735, -22.07766977963891 ], [ -47.194798726686791, -22.077651838047217 ], [ -47.194711226814768, -22.077633896406802 ], [ -47.194623726960643, -22.077615954717665 ], [ -47.194536227124466, -22.077598012979809 ], [ -47.194448727306181, -22.077580071193236 ], [ -47.194441447998621, -22.07757857857311 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 242.174168407, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196732524931946, -22.078062212347191 ], [ -47.196720606513573, -22.078059768665039 ], [ -47.19663310623929, -22.078041828095525 ], [ -47.196545605982934, -22.078023887477283 ], [ -47.196458105744476, -22.078005946810318 ], [ -47.196370605523946, -22.077988006094643 ], [ -47.196283105321321, -22.077970065330231 ], [ -47.196195605136616, -22.077952124517076 ], [ -47.196108104969838, -22.077934183655234 ], [ -47.19602060482098, -22.077916242744649 ], [ -47.195933104690006, -22.077898301785346 ], [ -47.195845604576981, -22.077880360777318 ], [ -47.195758104481847, -22.07786241972056 ], [ -47.19567060440464, -22.077844478615084 ], [ -47.19558310434536, -22.077826537460879 ], [ -47.195495604303979, -22.077808596257938 ], [ -47.195408104280531, -22.077790655006318 ], [ -47.195320604274997, -22.077772713705947 ], [ -47.195233104287389, -22.077754772356855 ], [ -47.195145604317688, -22.07773683095904 ], [ -47.195058104365906, -22.077718889512514 ], [ -47.194970604432029, -22.077700948017238 ], [ -47.194883104516087, -22.077683006473272 ], [ -47.194795604618065, -22.077665064880566 ], [ -47.194708104737963, -22.077647123239142 ], [ -47.194620604875759, -22.077629181548993 ], [ -47.194533105031503, -22.077611239810128 ], [ -47.194445605205146, -22.077593298022549 ], [ -47.194441343355706, -22.077592424131499 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 240.11648341700001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19671456164486, -22.078072396210423 ], [ -47.196629984339722, -22.078055054950021 ], [ -47.196542484075266, -22.07803711433079 ], [ -47.196454983828744, -22.07801917366281 ], [ -47.196367483600142, -22.078001232946114 ], [ -47.196279983389445, -22.077983292180694 ], [ -47.196192483196654, -22.077965351366544 ], [ -47.196104983021797, -22.077947410503672 ], [ -47.196017482864846, -22.077929469592078 ], [ -47.195929982725808, -22.07791152863177 ], [ -47.195842482604696, -22.077893587622746 ], [ -47.195754982501498, -22.077875646564976 ], [ -47.195667482416212, -22.077857705458481 ], [ -47.195579982348853, -22.077839764303278 ], [ -47.195492482299393, -22.077821823099345 ], [ -47.195404982267867, -22.077803881846684 ], [ -47.195317482254268, -22.077785940545304 ], [ -47.19522998225856, -22.077767999195203 ], [ -47.195142482280787, -22.077750057796379 ], [ -47.195054982320919, -22.077732116348834 ], [ -47.194967482378978, -22.077714174852581 ], [ -47.194879982454971, -22.077696233307588 ], [ -47.194792482548863, -22.077678291713873 ], [ -47.194704982660674, -22.07766035007144 ], [ -47.194617482790413, -22.077642408380282 ], [ -47.194529982938072, -22.077624466640401 ], [ -47.194442847403892, -22.077606599551462 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 237.85767268000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196696598355068, -22.078082580071886 ], [ -47.196626862439672, -22.078068281804498 ], [ -47.196539362167151, -22.078050341184259 ], [ -47.196451861912543, -22.078032400515259 ], [ -47.196364361675869, -22.078014459797568 ], [ -47.196276861457093, -22.077996519031135 ], [ -47.196189361256224, -22.07797857821598 ], [ -47.196101861073281, -22.077960637352103 ], [ -47.196014360908251, -22.077942696439496 ], [ -47.195926860761148, -22.077924755478175 ], [ -47.195839360631958, -22.077906814468143 ], [ -47.195751860520673, -22.07788887340935 ], [ -47.195664360427315, -22.077870932301863 ], [ -47.195576860351885, -22.077852991145651 ], [ -47.195489360294346, -22.077835049940706 ], [ -47.195401860254741, -22.077817108687039 ], [ -47.195314360233063, -22.077799167384651 ], [ -47.195226860229276, -22.077781226033537 ], [ -47.195139360243424, -22.077763284633701 ], [ -47.195051860275477, -22.077745343185146 ], [ -47.194964360325464, -22.077727401687888 ], [ -47.194876860393379, -22.077709460141886 ], [ -47.194789360479191, -22.077691518547162 ], [ -47.194701860582924, -22.077673576903713 ], [ -47.194614360704584, -22.077655635211546 ], [ -47.194526860844164, -22.077637693470642 ], [ -47.194446254275022, -22.077621165144471 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 359.79603724499998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197724477320499, -22.077502912278195 ], [ -47.1976798090964, -22.077493753996769 ], [ -47.197592309105175, -22.077475813921239 ], [ -47.197504809131836, -22.077457873796998 ], [ -47.197417309176458, -22.077439933624031 ], [ -47.197329809238951, -22.077421993402336 ], [ -47.197242309319371, -22.077404053131914 ], [ -47.197154809417697, -22.077386112812775 ], [ -47.197067309533949, -22.07736817244491 ], [ -47.1969798096681, -22.077350232028323 ], [ -47.196892309820164, -22.07733229156301 ], [ -47.196804809990148, -22.077314351048983 ], [ -47.196717310178045, -22.07729641048623 ], [ -47.196629810383861, -22.077278469874759 ], [ -47.196542310607583, -22.077260529214556 ], [ -47.196454810849225, -22.07724258850563 ], [ -47.196367311108766, -22.077224647747986 ], [ -47.196279811386248, -22.077206706941617 ], [ -47.196192311681621, -22.077188766086536 ], [ -47.196104811994921, -22.077170825182723 ], [ -47.196017312326127, -22.077152884230191 ], [ -47.19592981267526, -22.077134943228938 ], [ -47.195842313042299, -22.077117002178959 ], [ -47.195754813427264, -22.077099061080254 ], [ -47.195667313830128, -22.077081119932831 ], [ -47.195579814250941, -22.077063178736697 ], [ -47.195492314689631, -22.077045237491834 ], [ -47.195404815146262, -22.077027296198242 ], [ -47.195317315620798, -22.077009354855935 ], [ -47.195229816113248, -22.076991413464921 ], [ -47.195142316623631, -22.07697347202517 ], [ -47.195054817151913, -22.076955530536701 ], [ -47.194967317698122, -22.076937588999513 ], [ -47.194879818262244, -22.0769196474136 ], [ -47.194792318844293, -22.076901705778969 ], [ -47.194704819444262, -22.076883764095626 ], [ -47.194617320062143, -22.076865822363558 ], [ -47.194529820697952, -22.076847880582768 ], [ -47.194442321351652, -22.076829938753271 ], [ -47.194354822023293, -22.07681199687504 ], [ -47.194320504135767, -22.076804959922622 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 355.46964411200003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197706097375544, -22.077513010782162 ], [ -47.19767668730352, -22.077506980863109 ], [ -47.19758918730421, -22.077489040786553 ], [ -47.197501687322813, -22.07747110066132 ], [ -47.197414187359342, -22.077453160487352 ], [ -47.197326687413764, -22.07743522026465 ], [ -47.197239187486097, -22.077417279993217 ], [ -47.197151687576351, -22.077399339673068 ], [ -47.197064187684525, -22.077381399304194 ], [ -47.19697668781059, -22.077363458886598 ], [ -47.196889187954582, -22.077345518420277 ], [ -47.196801688116494, -22.077327577905244 ], [ -47.196714188296319, -22.077309637341472 ], [ -47.196626688494057, -22.077291696728995 ], [ -47.196539188709693, -22.07727375606779 ], [ -47.196451688943263, -22.077255815357852 ], [ -47.196364189194732, -22.077237874599199 ], [ -47.196276689464128, -22.07721993379182 ], [ -47.196189189751422, -22.077201992935731 ], [ -47.196101690056651, -22.077184052030891 ], [ -47.196014190379778, -22.077166111077364 ], [ -47.195926690720832, -22.077148170075105 ], [ -47.195839191079791, -22.077130229024117 ], [ -47.195751691456678, -22.077112287924407 ], [ -47.195664191851471, -22.077094346775972 ], [ -47.195576692264197, -22.077076405578826 ], [ -47.195489192694815, -22.077058464332936 ], [ -47.195401693143367, -22.077040523038356 ], [ -47.195314193609825, -22.077022581695022 ], [ -47.195226694094202, -22.077004640303016 ], [ -47.195139194596507, -22.076986698862257 ], [ -47.19505169511671, -22.076968757372779 ], [ -47.19496419565484, -22.076950815834579 ], [ -47.194876696210898, -22.07693287424766 ], [ -47.194789196784868, -22.076914932612016 ], [ -47.194701697376757, -22.076896990927665 ], [ -47.194614197986553, -22.07687904919457 ], [ -47.19452669861429, -22.076861107412778 ], [ -47.194439199259918, -22.076843165582282 ], [ -47.19435169992348, -22.076825223703047 ], [ -47.19434305515793, -22.076823451077153 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 351.14325098299997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197687717427883, -22.07752310928424 ], [ -47.197673565510151, -22.077520207729396 ], [ -47.197586065502783, -22.077502267651852 ], [ -47.197498565513314, -22.077484327525596 ], [ -47.19741106554175, -22.077466387350608 ], [ -47.197323565588107, -22.077448447126901 ], [ -47.197236065652355, -22.077430506854469 ], [ -47.197148565734537, -22.077412566533308 ], [ -47.197061065834625, -22.077394626163439 ], [ -47.196973565952639, -22.077376685744831 ], [ -47.196886066088545, -22.077358745277504 ], [ -47.196798566242371, -22.077340804761441 ], [ -47.19671106641411, -22.077322864196677 ], [ -47.196623566603762, -22.077304923583181 ], [ -47.196536066811341, -22.07728698292097 ], [ -47.196448567036832, -22.077269042210027 ], [ -47.196361067280215, -22.077251101450369 ], [ -47.196273567541532, -22.077233160641981 ], [ -47.196186067820754, -22.077215219784868 ], [ -47.196098568117911, -22.077197278879048 ], [ -47.196011068432952, -22.077179337924488 ], [ -47.195923568765927, -22.077161396921213 ], [ -47.195836069116815, -22.077143455869223 ], [ -47.195748569485616, -22.077125514768504 ], [ -47.195661069872337, -22.077107573619063 ], [ -47.195573570276991, -22.077089632420904 ], [ -47.195486070699523, -22.077071691174027 ], [ -47.195398571140004, -22.077053749878424 ], [ -47.195311071598383, -22.077035808534099 ], [ -47.195223572074688, -22.077017867141059 ], [ -47.195136072568914, -22.076999925699294 ], [ -47.195048573081046, -22.076981984208807 ], [ -47.194961073611104, -22.076964042669601 ], [ -47.194873574159068, -22.076946101081671 ], [ -47.194786074724966, -22.076928159445025 ], [ -47.19469857530877, -22.076910217759657 ], [ -47.194611075910494, -22.076892276025578 ], [ -47.194523576530145, -22.076874334242767 ], [ -47.194436077167708, -22.076856392411234 ], [ -47.19436560618589, -22.076841942228061 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 346.81685785000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197669337477443, -22.077533207784469 ], [ -47.19758294370088, -22.077515494517126 ], [ -47.197495443703325, -22.077497554389861 ], [ -47.19740794372369, -22.077479614213864 ], [ -47.197320443761974, -22.077461673989141 ], [ -47.197232943818143, -22.077443733715704 ], [ -47.197145443892239, -22.077425793393537 ], [ -47.197057943984262, -22.07740785302266 ], [ -47.196970444094191, -22.077389912603042 ], [ -47.196882944222018, -22.077371972134685 ], [ -47.19679544436778, -22.077354031617634 ], [ -47.19670794453144, -22.077336091051858 ], [ -47.196620444713012, -22.077318150437353 ], [ -47.196532944912512, -22.077300209774137 ], [ -47.196445445129925, -22.077282269062184 ], [ -47.196357945365236, -22.077264328301517 ], [ -47.196270445618474, -22.077246387492103 ], [ -47.196182945889618, -22.077228446634003 ], [ -47.196095446178695, -22.077210505727169 ], [ -47.196007946485651, -22.077192564771583 ], [ -47.195920446810561, -22.07717462376732 ], [ -47.19583294715337, -22.07715668271431 ], [ -47.195745447514092, -22.07713874161259 ], [ -47.195657947892734, -22.07712080046214 ], [ -47.19557044828931, -22.077102859262968 ], [ -47.195482948703763, -22.077084918015085 ], [ -47.195395449136171, -22.077066976718474 ], [ -47.195307949586471, -22.07704903537314 ], [ -47.195220450054698, -22.077031093979091 ], [ -47.195132950540852, -22.077013152536313 ], [ -47.195045451044898, -22.076995211044817 ], [ -47.194957951566884, -22.076977269504599 ], [ -47.194870452106784, -22.07695932791566 ], [ -47.194782952664596, -22.076941386278012 ], [ -47.194695453240328, -22.076923444591618 ], [ -47.194607953833973, -22.076905502856544 ], [ -47.194520454445545, -22.076887561072724 ], [ -47.194432955075037, -22.076869619240185 ], [ -47.19438815721967, -22.076860433375327 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 344.38700243599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197650957524303, -22.077543306282816 ], [ -47.197579821898508, -22.07752872138234 ], [ -47.197492321892881, -22.077510781254073 ], [ -47.19740482190516, -22.077492841077071 ], [ -47.197317321935365, -22.077474900851342 ], [ -47.19722982198347, -22.077456960576889 ], [ -47.197142322049487, -22.077439020253717 ], [ -47.197054822133417, -22.07742107988182 ], [ -47.196967322235274, -22.0774031394612 ], [ -47.196879822355029, -22.077385198991848 ], [ -47.196792322492691, -22.077367258473782 ], [ -47.1967048226483, -22.077349317907004 ], [ -47.196617322821787, -22.07733137729149 ], [ -47.196529823013201, -22.07731343662725 ], [ -47.196442323222534, -22.077295495914296 ], [ -47.196354823449774, -22.077277555152612 ], [ -47.196267323694933, -22.077259614342204 ], [ -47.196179823958019, -22.077241673483076 ], [ -47.19609232423899, -22.077223732575227 ], [ -47.196004824537887, -22.077205791618674 ], [ -47.195917324854712, -22.077187850613377 ], [ -47.195829825189456, -22.077169909559363 ], [ -47.195742325542099, -22.077151968456626 ], [ -47.195654825912662, -22.077134027305167 ], [ -47.195567326301145, -22.077116086104986 ], [ -47.195479826707547, -22.077098144856091 ], [ -47.195392327131863, -22.077080203558474 ], [ -47.195304827574084, -22.077062262212138 ], [ -47.195217328034232, -22.077044320817073 ], [ -47.195129828512314, -22.07702637937329 ], [ -47.195042329008288, -22.077008437880782 ], [ -47.194954829522182, -22.076990496339558 ], [ -47.194867330054009, -22.076972554749613 ], [ -47.19477983060375, -22.076954613110953 ], [ -47.19469233117141, -22.07693667142356 ], [ -47.194604831756976, -22.076918729687453 ], [ -47.194517332360469, -22.076900787902623 ], [ -47.194429832981889, -22.076882846069083 ], [ -47.19439276547795, -22.076875245325194 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 342.289867023, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197632577568385, -22.077553404779309 ], [ -47.197576700095659, -22.077541948247546 ], [ -47.197489200081961, -22.077524008118274 ], [ -47.197401700086161, -22.077506067940259 ], [ -47.197314200108288, -22.077488127713522 ], [ -47.197226700148306, -22.077470187438045 ], [ -47.197139200206259, -22.077452247113882 ], [ -47.197051700282103, -22.077434306740972 ], [ -47.196964200375881, -22.077416366319341 ], [ -47.196876700487564, -22.07739842584899 ], [ -47.196789200617147, -22.077380485329911 ], [ -47.196701700764685, -22.077362544762124 ], [ -47.1966142009301, -22.077344604145601 ], [ -47.196526701113427, -22.077326663480356 ], [ -47.196439201314682, -22.077308722766386 ], [ -47.19635170153385, -22.077290782003697 ], [ -47.19626420177093, -22.077272841192283 ], [ -47.196176702025937, -22.077254900332143 ], [ -47.196089202298836, -22.077236959423285 ], [ -47.196001702589655, -22.077219018465723 ], [ -47.195914202898393, -22.077201077459417 ], [ -47.195826703225059, -22.077183136404393 ], [ -47.19573920356963, -22.077165195300644 ], [ -47.195651703932121, -22.07714725414818 ], [ -47.195564204312525, -22.07712931294699 ], [ -47.195476704710849, -22.077111371697079 ], [ -47.195389205127086, -22.077093430398463 ], [ -47.195301705561235, -22.077075489051118 ], [ -47.195214206013304, -22.077057547655027 ], [ -47.1951267064833, -22.077039606210246 ], [ -47.195039206971202, -22.077021664716732 ], [ -47.194951707477024, -22.077003723174496 ], [ -47.194864208000773, -22.076985781583542 ], [ -47.194776708542442, -22.076967839943872 ], [ -47.194689209102016, -22.076949898255457 ], [ -47.19460170967951, -22.076931956518354 ], [ -47.194514210274924, -22.076914014732516 ], [ -47.194426710888266, -22.07689607289797 ], [ -47.194394225936605, -22.076889411813621 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 340.192731611, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197614197609731, -22.077563503273939 ], [ -47.197573578292342, -22.077555175112721 ], [ -47.197486078270565, -22.077537234982419 ], [ -47.197398578266693, -22.077519294803384 ], [ -47.19731107828072, -22.077501354575656 ], [ -47.197223578312688, -22.077483414299188 ], [ -47.197136078362554, -22.077465473973994 ], [ -47.197048578430341, -22.077447533600083 ], [ -47.196961078516033, -22.077429593177438 ], [ -47.196873578619631, -22.077411652706083 ], [ -47.196786078741155, -22.077393712186005 ], [ -47.196698578880586, -22.077375771617188 ], [ -47.196611079037922, -22.077357830999667 ], [ -47.196523579213192, -22.077339890333413 ], [ -47.196436079406361, -22.077321949618437 ], [ -47.19634857961745, -22.077304008854732 ], [ -47.196261079846451, -22.07728606804233 ], [ -47.196173580093379, -22.077268127181178 ], [ -47.196086080358199, -22.077250186271296 ], [ -47.195998580640953, -22.077232245312707 ], [ -47.195911080941627, -22.077214304305404 ], [ -47.1958235812602, -22.077196363249378 ], [ -47.195736081596692, -22.077178422144623 ], [ -47.195648581951097, -22.077160480991147 ], [ -47.19556108232343, -22.077142539788948 ], [ -47.195473582713674, -22.077124598538035 ], [ -47.195386083121846, -22.077106657238406 ], [ -47.195298583547917, -22.077088715890042 ], [ -47.195211083991907, -22.07707077449296 ], [ -47.195123584453825, -22.077052833047158 ], [ -47.195036084933655, -22.077034891552632 ], [ -47.194948585431405, -22.077016950009387 ], [ -47.194861085947061, -22.076999008417427 ], [ -47.19477358648065, -22.076981066776735 ], [ -47.194686087032153, -22.076963125087328 ], [ -47.194598587601575, -22.07694518334921 ], [ -47.194511088188918, -22.076927241562366 ], [ -47.194423588794166, -22.076909299726797 ], [ -47.19439568639568, -22.076903578301966 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 338.09559619800001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19759581764832, -22.077573601766705 ], [ -47.197570456488556, -22.077568401977864 ], [ -47.1974829564587, -22.077550461846531 ], [ -47.197395456446749, -22.077532521666516 ], [ -47.197307956452704, -22.077514581437775 ], [ -47.197220456476586, -22.077496641160298 ], [ -47.197132956518381, -22.077478700834096 ], [ -47.197045456578088, -22.077460760459171 ], [ -47.196957956655702, -22.077442820035525 ], [ -47.196870456751221, -22.077424879563157 ], [ -47.196782956864674, -22.077406939042074 ], [ -47.196695456996018, -22.07738899847223 ], [ -47.196607957145289, -22.077371057853718 ], [ -47.196520457312474, -22.077353117186455 ], [ -47.196432957497564, -22.077335176470445 ], [ -47.196345457700581, -22.077317235705756 ], [ -47.19625795792151, -22.077299294892342 ], [ -47.196170458160346, -22.077281354030163 ], [ -47.196082958417101, -22.07726341311929 ], [ -47.195995458691776, -22.077245472159696 ], [ -47.195907958984371, -22.077227531151383 ], [ -47.195820459294865, -22.077209590094345 ], [ -47.195732959623278, -22.077191648988581 ], [ -47.195645459969612, -22.077173707834081 ], [ -47.195557960333865, -22.077155766630884 ], [ -47.195470460716031, -22.077137825378969 ], [ -47.195382961116124, -22.077119884078325 ], [ -47.195295461534116, -22.077101942728955 ], [ -47.195207961970034, -22.077084001330846 ], [ -47.195120462423873, -22.077066059884054 ], [ -47.195032962895624, -22.077048118388518 ], [ -47.194945463385302, -22.077030176844264 ], [ -47.194857963892879, -22.077012235251267 ], [ -47.194770464418397, -22.076994293609594 ], [ -47.194682964961821, -22.076976351919178 ], [ -47.194595465523165, -22.076958410180048 ], [ -47.194507966102428, -22.076940468392177 ], [ -47.194420466699604, -22.076922526555617 ], [ -47.194397146855181, -22.076917744790283 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 335.998460787, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197577437684188, -22.077583700257602 ], [ -47.197567334684294, -22.077581628842964 ], [ -47.197479834646366, -22.077563688710647 ], [ -47.197392334626329, -22.077545748529602 ], [ -47.197304834624234, -22.077527808299838 ], [ -47.197217334640015, -22.077509868021359 ], [ -47.197129834673724, -22.077491927694147 ], [ -47.197042334725353, -22.077473987318204 ], [ -47.196954834794894, -22.077456046893559 ], [ -47.196867334882342, -22.077438106420189 ], [ -47.196779834987709, -22.077420165898079 ], [ -47.196692335110988, -22.077402225327262 ], [ -47.196604835252188, -22.077384284707712 ], [ -47.196517335411293, -22.077366344039437 ], [ -47.196429835588312, -22.077348403322453 ], [ -47.196342335783235, -22.077330462556738 ], [ -47.196254835996086, -22.077312521742286 ], [ -47.196167336226857, -22.077294580879133 ], [ -47.196079836475526, -22.077276639967248 ], [ -47.195992336742123, -22.077258699006649 ], [ -47.195904837026639, -22.07724075799732 ], [ -47.195817337329068, -22.077222816939265 ], [ -47.195729837649409, -22.077204875832493 ], [ -47.195642337987664, -22.077186934676998 ], [ -47.195554838343831, -22.077168993472778 ], [ -47.195467338717911, -22.077151052219847 ], [ -47.195379839109926, -22.077133110918187 ], [ -47.195292339519845, -22.077115169567822 ], [ -47.195204839947699, -22.077097228168721 ], [ -47.195117340393459, -22.077079286720899 ], [ -47.195029840857131, -22.077061345224351 ], [ -47.194942341338724, -22.077043403679092 ], [ -47.194854841838229, -22.077025462085114 ], [ -47.194767342355668, -22.077007520442407 ], [ -47.194679842891006, -22.076989578750979 ], [ -47.194592343444292, -22.076971637010832 ], [ -47.194504844015448, -22.076953695221981 ], [ -47.194417344604567, -22.076935753384394 ], [ -47.194398607315101, -22.076931911278528 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 333.90132537400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197559057717292, -22.077593798746637 ], [ -47.197476712833556, -22.077576915574703 ], [ -47.197389212805447, -22.077558975392666 ], [ -47.197301712795266, -22.077541035161879 ], [ -47.197214212802983, -22.077523094882405 ], [ -47.197126712828613, -22.077505154554171 ], [ -47.197039212872156, -22.077487214177236 ], [ -47.196951712933625, -22.077469273751579 ], [ -47.196864213012987, -22.077451333277196 ], [ -47.196776713110282, -22.077433392754084 ], [ -47.196689213225483, -22.077415452182258 ], [ -47.196601713358604, -22.077397511561699 ], [ -47.196514213509637, -22.077379570892415 ], [ -47.196426713678569, -22.077361630174419 ], [ -47.196339213865421, -22.077343689407677 ], [ -47.196251714070193, -22.077325748592237 ], [ -47.196164214292885, -22.077307807728072 ], [ -47.196076714533483, -22.077289866815168 ], [ -47.195989214792007, -22.077271925853569 ], [ -47.195901715068437, -22.077253984843232 ], [ -47.195814215362788, -22.077236043784172 ], [ -47.195726715675058, -22.07721810267639 ], [ -47.19563921600524, -22.077200161519869 ], [ -47.195551716353329, -22.077182220314658 ], [ -47.19546421671933, -22.07716427906071 ], [ -47.195376717103265, -22.077146337758048 ], [ -47.195289217505113, -22.077128396406675 ], [ -47.195201717924888, -22.077110455006565 ], [ -47.195114218362569, -22.077092513557727 ], [ -47.195026718818163, -22.077074572060173 ], [ -47.194939219291676, -22.077056630513898 ], [ -47.194851719783109, -22.077038688918915 ], [ -47.194764220292463, -22.077020747275188 ], [ -47.194676720819722, -22.077002805582762 ], [ -47.194589221364936, -22.076984863841609 ], [ -47.194501721928027, -22.076966922051749 ], [ -47.19441422250906, -22.076948980213153 ], [ -47.194400067775447, -22.076946077766717 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 331.82451713099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197540870060656, -22.077603936663685 ], [ -47.197473591020277, -22.077590142438744 ], [ -47.197386090984097, -22.077572202255688 ], [ -47.197298590965829, -22.077554262023906 ], [ -47.197211090965475, -22.077536321743395 ], [ -47.197123590983026, -22.077518381414176 ], [ -47.197036091018504, -22.077500441036225 ], [ -47.196948591071894, -22.077482500609548 ], [ -47.196861091143177, -22.07746456013415 ], [ -47.196773591232393, -22.077446619610051 ], [ -47.196686091339515, -22.077428679037197 ], [ -47.196598591464543, -22.077410738415633 ], [ -47.196511091607491, -22.077392797745343 ], [ -47.196423591768358, -22.077374857026328 ], [ -47.196336091947138, -22.077356916258594 ], [ -47.196248592143824, -22.077338975442132 ], [ -47.196161092358452, -22.077321034576958 ], [ -47.196073592590963, -22.077303093663055 ], [ -47.195986092841416, -22.077285152700448 ], [ -47.195898593109767, -22.077267211689097 ], [ -47.195811093396038, -22.077249270629032 ], [ -47.195723593700222, -22.077231329520238 ], [ -47.195636094022326, -22.077213388362726 ], [ -47.19554859436235, -22.077195447156488 ], [ -47.19546109472028, -22.077177505901531 ], [ -47.195373595096136, -22.077159564597853 ], [ -47.195286095489912, -22.077141623245474 ], [ -47.195198595901587, -22.077123681844355 ], [ -47.195111096331196, -22.077105740394511 ], [ -47.195023596778718, -22.077087798895949 ], [ -47.19493609724416, -22.077069857348665 ], [ -47.194848597727521, -22.077051915752662 ], [ -47.194761098228788, -22.077033974107938 ], [ -47.194673598747997, -22.077016032414509 ], [ -47.194586099285097, -22.076998090672351 ], [ -47.194498599840145, -22.076980148881464 ], [ -47.194411100413085, -22.076962207041859 ], [ -47.19440152823622, -22.076960244254828 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 329.77143749099997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197522906894868, -22.077614120606825 ], [ -47.197470469206529, -22.077603369302754 ], [ -47.19738296916227, -22.077585429118688 ], [ -47.197295469135923, -22.077567488885901 ], [ -47.19720796912749, -22.077549548604363 ], [ -47.197120469136969, -22.07753160827415 ], [ -47.197032969164368, -22.07751366789519 ], [ -47.19694546920968, -22.077495727467507 ], [ -47.196857969272884, -22.0774777869911 ], [ -47.196770469354028, -22.077459846465988 ], [ -47.196682969453065, -22.077441905892108 ], [ -47.19659546957002, -22.077423965269556 ], [ -47.196507969704889, -22.077406024598258 ], [ -47.196420469857678, -22.077388083878233 ], [ -47.196332970028379, -22.077370143109487 ], [ -47.196245470216994, -22.077352202292026 ], [ -47.196157970423535, -22.077334261425833 ], [ -47.196070470647982, -22.077316320510924 ], [ -47.195982970890356, -22.077298379547308 ], [ -47.195895471150621, -22.077280438534931 ], [ -47.19580797142882, -22.077262497473871 ], [ -47.195720471724925, -22.077244556364072 ], [ -47.195632972038965, -22.077226615205547 ], [ -47.195545472370902, -22.077208673998303 ], [ -47.195457972720753, -22.077190732742338 ], [ -47.195370473088531, -22.077172791437647 ], [ -47.195282973474228, -22.077154850084259 ], [ -47.195195473877831, -22.07713690868211 ], [ -47.195107974299361, -22.077118967231282 ], [ -47.195020474738811, -22.077101025731711 ], [ -47.194932975196167, -22.077083084183414 ], [ -47.19484547567145, -22.077065142586402 ], [ -47.194757976164652, -22.077047200940669 ], [ -47.194670476675775, -22.077029259246224 ], [ -47.19458297720481, -22.077011317503054 ], [ -47.194495477751765, -22.076993375711172 ], [ -47.194407978316626, -22.076975433870537 ], [ -47.194402988697412, -22.076974410742896 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 327.71835785299999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197504943726415, -22.077624304548191 ], [ -47.197467347392319, -22.07761659616671 ], [ -47.197379847339974, -22.077598655981639 ], [ -47.197292347305549, -22.077580715747846 ], [ -47.197204847289036, -22.077562775465321 ], [ -47.197117347290444, -22.077544835134077 ], [ -47.19702984730975, -22.077526894754108 ], [ -47.196942347346983, -22.077508954325413 ], [ -47.196854847402122, -22.077491013848007 ], [ -47.196767347475188, -22.07747307332188 ], [ -47.196679847566145, -22.077455132747009 ], [ -47.196592347675022, -22.077437192123423 ], [ -47.196504847801812, -22.077419251451115 ], [ -47.196417347946536, -22.077401310730092 ], [ -47.196329848109158, -22.077383369960344 ], [ -47.196242348289694, -22.077365429141867 ], [ -47.196154848488149, -22.077347488274668 ], [ -47.196067348704524, -22.077329547358747 ], [ -47.195979848938812, -22.077311606394101 ], [ -47.195892349191013, -22.077293665380743 ], [ -47.195804849461126, -22.077275724318653 ], [ -47.19571734974916, -22.077257783207855 ], [ -47.19562985005512, -22.077239842048325 ], [ -47.195542350378972, -22.077221900840069 ], [ -47.195454850720758, -22.077203959583095 ], [ -47.195367351080456, -22.077186018277398 ], [ -47.195279851458075, -22.077168076922987 ], [ -47.195192351853606, -22.077150135519851 ], [ -47.195104852267058, -22.077132194068 ], [ -47.195017352698429, -22.077114252567419 ], [ -47.194929853147713, -22.077096311018117 ], [ -47.194842353614931, -22.077078369420096 ], [ -47.194754854100033, -22.077060427773361 ], [ -47.194667354603077, -22.077042486077904 ], [ -47.19457985512404, -22.07702454433371 ], [ -47.194492355662923, -22.077006602540816 ], [ -47.19440444915903, -22.076988577230903 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 325.66527821199998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19748698055524, -22.077634488487778 ], [ -47.197464225577626, -22.077629823030652 ], [ -47.197376725517209, -22.07761188284455 ], [ -47.197289225474698, -22.07759394260977 ], [ -47.197201725450114, -22.077576002326239 ], [ -47.197114225443435, -22.07755806199399 ], [ -47.197026725454677, -22.077540121613012 ], [ -47.196939225483824, -22.077522181183312 ], [ -47.196851725530891, -22.077504240704894 ], [ -47.196764225595871, -22.077486300177757 ], [ -47.196676725678756, -22.077468359601855 ], [ -47.196589225779555, -22.077450418977282 ], [ -47.196501725898273, -22.077432478303969 ], [ -47.196414226034911, -22.077414537581934 ], [ -47.196326726189461, -22.077396596811177 ], [ -47.196239226361918, -22.077378655991676 ], [ -47.196151726552301, -22.077360715123483 ], [ -47.196064226760598, -22.077342774206553 ], [ -47.1959767269868, -22.077324833240883 ], [ -47.195889227230928, -22.077306892226524 ], [ -47.19580172749297, -22.077288951163432 ], [ -47.195714227772925, -22.077271010051625 ], [ -47.195626728070806, -22.077253068891086 ], [ -47.195539228386586, -22.077235127681821 ], [ -47.195451728720293, -22.077217186423837 ], [ -47.195364229071913, -22.077199245117132 ], [ -47.195276729441453, -22.077181303761712 ], [ -47.195189229828905, -22.07716336235756 ], [ -47.195101730234285, -22.07714542090471 ], [ -47.195014230657577, -22.077127479403114 ], [ -47.194926731098775, -22.077109537852802 ], [ -47.194839231557921, -22.077091596253773 ], [ -47.194751732034952, -22.077073654606028 ], [ -47.194664232529917, -22.077055712909566 ], [ -47.194576733042801, -22.077037771164346 ], [ -47.194489233573613, -22.077019829370457 ], [ -47.194405909621075, -22.077002743718854 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 323.61219856600002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197469017381302, -22.077644672425649 ], [ -47.197461103762514, -22.077643049894565 ], [ -47.197373603693961, -22.077625109707462 ], [ -47.197286103643393, -22.077607169471651 ], [ -47.19719860361073, -22.077589229187119 ], [ -47.197111103595972, -22.077571288853857 ], [ -47.197023603599114, -22.077553348471874 ], [ -47.196936103620203, -22.077535408041165 ], [ -47.196848603659184, -22.077517467561741 ], [ -47.196761103716085, -22.077499527033577 ], [ -47.196673603790899, -22.077481586456699 ], [ -47.196586103883625, -22.077463645831095 ], [ -47.19649860399425, -22.077445705156777 ], [ -47.196411104122824, -22.07742776443374 ], [ -47.196323604269288, -22.077409823661959 ], [ -47.19623610443368, -22.077391882841475 ], [ -47.196148604615978, -22.077373941972258 ], [ -47.196061104816202, -22.077356001054319 ], [ -47.195973605034332, -22.077338060087644 ], [ -47.195886105270361, -22.077320119072272 ], [ -47.195798605524331, -22.077302178008171 ], [ -47.195711105796214, -22.077284236895359 ], [ -47.195623606086023, -22.077266295733804 ], [ -47.195536106393718, -22.07724835452353 ], [ -47.195448606719346, -22.077230413264537 ], [ -47.195361107062894, -22.077212471956834 ], [ -47.195273607424362, -22.077194530600394 ], [ -47.195186107803742, -22.07717658919524 ], [ -47.195098608201029, -22.077158647741367 ], [ -47.195011108616242, -22.077140706238769 ], [ -47.19492360904939, -22.077122764687459 ], [ -47.194836109500429, -22.07710482308741 ], [ -47.194748609969395, -22.077086881438639 ], [ -47.194661110456281, -22.077068939741157 ], [ -47.194573610961093, -22.07705099799497 ], [ -47.194486111483819, -22.077033056200047 ], [ -47.194407370083539, -22.077016910206744 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 321.55911893299998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197451054204826, -22.077654856361644 ], [ -47.197370481870252, -22.077638336570335 ], [ -47.197282981811604, -22.077620396333518 ], [ -47.197195481770862, -22.077602456047973 ], [ -47.197107981748033, -22.077584515713703 ], [ -47.197020481743095, -22.07756657533071 ], [ -47.196932981756106, -22.077548634898978 ], [ -47.196845481787008, -22.077530694418559 ], [ -47.19675798183583, -22.077512753889398 ], [ -47.196670481902565, -22.077494813311503 ], [ -47.196582981987213, -22.07747687268489 ], [ -47.196495482089766, -22.077458932009556 ], [ -47.19640798221026, -22.077440991285517 ], [ -47.196320482348646, -22.07742305051271 ], [ -47.196232982504959, -22.077405109691234 ], [ -47.196145482679178, -22.077387168821009 ], [ -47.196057982871331, -22.077369227902061 ], [ -47.195970483081382, -22.077351286934363 ], [ -47.195882983309339, -22.077333345917996 ], [ -47.19579548355523, -22.077315404852882 ], [ -47.195707983819034, -22.077297463739065 ], [ -47.195620484100758, -22.077279522576479 ], [ -47.195532984400387, -22.077261581365217 ], [ -47.195445484717943, -22.077243640105216 ], [ -47.195357985053413, -22.077225698796504 ], [ -47.195270485406802, -22.077207757439055 ], [ -47.195182985778104, -22.077189816032888 ], [ -47.195095486167318, -22.077171874578006 ], [ -47.195007986574453, -22.077153933074403 ], [ -47.194920486999514, -22.077135991522084 ], [ -47.194832987442474, -22.077118049921005 ], [ -47.194745487903369, -22.077100108271239 ], [ -47.194657988382176, -22.077082166572751 ], [ -47.194570488878917, -22.077064224825556 ], [ -47.194482989393556, -22.077046283029624 ], [ -47.194408830546429, -22.077031076694581 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 319.50603929599998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197433091025594, -22.077665040295887 ], [ -47.197367360046066, -22.077651563433161 ], [ -47.197279859979339, -22.077633623195325 ], [ -47.197192359930519, -22.077615682908768 ], [ -47.197104859899611, -22.077597742573513 ], [ -47.197017359886615, -22.077579802189501 ], [ -47.196929859891526, -22.077561861756777 ], [ -47.196842359914363, -22.077543921275335 ], [ -47.196754859955107, -22.077525980745158 ], [ -47.19666736001377, -22.077508040166261 ], [ -47.196579860090345, -22.07749009953864 ], [ -47.196492360184841, -22.077472158862296 ], [ -47.196404860297221, -22.077454218137234 ], [ -47.196317360427528, -22.077436277363454 ], [ -47.196229860575784, -22.077418336540937 ], [ -47.196142360741931, -22.077400395669699 ], [ -47.196054860925983, -22.077382454749745 ], [ -47.195967361127963, -22.077364513781074 ], [ -47.195879861347841, -22.077346572763673 ], [ -47.19579236158566, -22.077328631697547 ], [ -47.195704861841378, -22.077310690582699 ], [ -47.195617362115016, -22.077292749419133 ], [ -47.19552986240658, -22.077274808206841 ], [ -47.195442362716051, -22.077256866945849 ], [ -47.195354863043455, -22.077238925636124 ], [ -47.195267363388751, -22.07722098427767 ], [ -47.195179863751981, -22.077203042870497 ], [ -47.195092364133124, -22.07718510141461 ], [ -47.195004864532187, -22.077167159909983 ], [ -47.194917364949156, -22.077149218356642 ], [ -47.194829865384051, -22.077131276754589 ], [ -47.194742365836873, -22.077113335103814 ], [ -47.194654866307602, -22.077095393404313 ], [ -47.194567366796257, -22.077077451656095 ], [ -47.194479867302825, -22.077059509859151 ], [ -47.194410291009739, -22.077045243182333 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 317.45295965499997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197415127843634, -22.07767522422839 ], [ -47.197364238221411, -22.077664790295966 ], [ -47.197276738146613, -22.077646850057132 ], [ -47.197189238089706, -22.077628909769562 ], [ -47.197101738050733, -22.077610969433294 ], [ -47.197014238029652, -22.077593029048256 ], [ -47.196926738026491, -22.077575088614545 ], [ -47.19683923804125, -22.077557148132087 ], [ -47.196751738073914, -22.07753920760091 ], [ -47.196664238124498, -22.077521267021002 ], [ -47.196576738192995, -22.077503326392371 ], [ -47.196489238279412, -22.077485385715018 ], [ -47.196401738383713, -22.077467444988944 ], [ -47.196314238505948, -22.077449504214158 ], [ -47.196226738646118, -22.077431563390636 ], [ -47.196139238804193, -22.077413622518389 ], [ -47.196051738980167, -22.077395681597423 ], [ -47.195964239174067, -22.077377740627742 ], [ -47.195876739385874, -22.077359799609329 ], [ -47.195789239615607, -22.077341858542198 ], [ -47.195701739863253, -22.077323917426341 ], [ -47.195614240128812, -22.077305976261766 ], [ -47.195526740412298, -22.077288035048468 ], [ -47.195439240713696, -22.077270093786467 ], [ -47.195351741033022, -22.077252152475722 ], [ -47.195264241370246, -22.077234211116263 ], [ -47.195176741725398, -22.077216269708085 ], [ -47.195089242098462, -22.077198328251185 ], [ -47.195001742489445, -22.077180386745535 ], [ -47.194914242898342, -22.077162445191195 ], [ -47.194826743325159, -22.077144503588137 ], [ -47.194739243769902, -22.077126561936357 ], [ -47.194651744232551, -22.077108620235844 ], [ -47.194564244713135, -22.077090678486613 ], [ -47.194476745211624, -22.077072736688649 ], [ -47.194411751473481, -22.077059409670042 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 315.39988001699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197397164659002, -22.077685408159102 ], [ -47.197361116396294, -22.077678017158732 ], [ -47.19727361631341, -22.077660076918885 ], [ -47.197186116248432, -22.077642136630317 ], [ -47.197098616201366, -22.077624196293012 ], [ -47.19701111617222, -22.077606255907 ], [ -47.19692361616098, -22.077588315472259 ], [ -47.196836116167653, -22.077570374988795 ], [ -47.196748616192245, -22.077552434456607 ], [ -47.19666111623475, -22.077534493875689 ], [ -47.196573616295169, -22.077516553246053 ], [ -47.196486116373492, -22.077498612567705 ], [ -47.19639861646975, -22.077480671840618 ], [ -47.196311116583907, -22.077462731064802 ], [ -47.19622361671599, -22.077444790240289 ], [ -47.196136116865979, -22.07742684936704 ], [ -47.196048617033895, -22.077408908445054 ], [ -47.195961117219703, -22.077390967474365 ], [ -47.195873617423445, -22.077373026454936 ], [ -47.195786117645092, -22.077355085386802 ], [ -47.195698617884659, -22.077337144269936 ], [ -47.195611118142153, -22.077319203104349 ], [ -47.19552361841756, -22.077301261890046 ], [ -47.195436118710873, -22.077283320627032 ], [ -47.195348619022106, -22.077265379315278 ], [ -47.195261119351265, -22.077247437954806 ], [ -47.19517361969833, -22.077229496545613 ], [ -47.19508612006333, -22.0772115550877 ], [ -47.194998620446228, -22.077193613581063 ], [ -47.194911120847053, -22.077175672025717 ], [ -47.194823621265797, -22.077157730421636 ], [ -47.194736121702469, -22.077139788768847 ], [ -47.19464862215704, -22.077121847067328 ], [ -47.194561122629544, -22.077103905317077 ], [ -47.194473623119968, -22.077085963518133 ], [ -47.194413211937636, -22.077073576157694 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 313.34680037599998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197379201471648, -22.077695592088052 ], [ -47.197357994570702, -22.077691244021477 ], [ -47.197270494479739, -22.077673303780628 ], [ -47.197182994406681, -22.077655363491029 ], [ -47.197095494351537, -22.07763742315273 ], [ -47.197007994314312, -22.077619482765712 ], [ -47.196920494295, -22.077601542329941 ], [ -47.196832994293594, -22.077583601845493 ], [ -47.196745494310107, -22.077565661312288 ], [ -47.196657994344534, -22.077547720730365 ], [ -47.196570494396873, -22.07752978009972 ], [ -47.196482994467125, -22.07751183942036 ], [ -47.196395494555304, -22.07749389869225 ], [ -47.196307994661382, -22.077475957915446 ], [ -47.196220494785386, -22.077458017089921 ], [ -47.196132994927297, -22.077440076215662 ], [ -47.196045495087134, -22.07742213529265 ], [ -47.19595799526487, -22.07740419432097 ], [ -47.195870495460525, -22.077386253300517 ], [ -47.195782995674101, -22.077368312231389 ], [ -47.195695495905596, -22.077350371113518 ], [ -47.195607996155005, -22.077332429946917 ], [ -47.195520496422333, -22.077314488731602 ], [ -47.195432996707581, -22.077296547467586 ], [ -47.195345497010734, -22.07727860615482 ], [ -47.195257997331815, -22.077260664793336 ], [ -47.195170497670809, -22.077242723383137 ], [ -47.195082998027729, -22.077224781924212 ], [ -47.194995498402548, -22.077206840416565 ], [ -47.194907998795294, -22.077188898860211 ], [ -47.19482049920596, -22.077170957255106 ], [ -47.19473299963456, -22.077153015601322 ], [ -47.194645500081045, -22.077135073898781 ], [ -47.194558000545484, -22.077117132147535 ], [ -47.194470501027823, -22.077099190347585 ], [ -47.194414672402225, -22.07708774264529 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 311.29372073799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197361238281623, -22.077705776015208 ], [ -47.197267372645584, -22.077686530642307 ], [ -47.197179872564462, -22.077668590351717 ], [ -47.197092372501245, -22.077650650012401 ], [ -47.197004872455928, -22.077632709624382 ], [ -47.196917372428544, -22.077614769187615 ], [ -47.196829872419059, -22.077596828702138 ], [ -47.196742372427494, -22.077578888167928 ], [ -47.196654872453834, -22.077560947584999 ], [ -47.196567372498109, -22.077543006953338 ], [ -47.196479872560282, -22.077525066272962 ], [ -47.196392372640375, -22.07750712554386 ], [ -47.196304872738388, -22.077489184766051 ], [ -47.196217372854306, -22.077471243939506 ], [ -47.196129872988152, -22.077453303064239 ], [ -47.196042373139889, -22.077435362140235 ], [ -47.195954873309567, -22.077417421167528 ], [ -47.195867373497144, -22.077399480146092 ], [ -47.195779873702641, -22.07738153907593 ], [ -47.195692373926057, -22.077363597957046 ], [ -47.195604874167387, -22.07734565678944 ], [ -47.195517374426643, -22.077327715573116 ], [ -47.195429874703812, -22.07730977430808 ], [ -47.195342374998894, -22.077291832994312 ], [ -47.195254875311882, -22.077273891631823 ], [ -47.195167375642811, -22.077255950220614 ], [ -47.195079875991638, -22.077238008760677 ], [ -47.1949923763584, -22.077220067252021 ], [ -47.194904876743074, -22.077202125694644 ], [ -47.194817377145647, -22.077184184088562 ], [ -47.194729877566168, -22.077166242433744 ], [ -47.194642378004595, -22.077148300730197 ], [ -47.194554878460927, -22.077130358977954 ], [ -47.194467378935194, -22.077112417176984 ], [ -47.194416132867232, -22.077101909132811 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 309.24064109800003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197343275088883, -22.077715959940594 ], [ -47.197264250810974, -22.077699757503982 ], [ -47.197176750721766, -22.077681817212383 ], [ -47.197089250650478, -22.077663876872059 ], [ -47.197001750597082, -22.07764593648303 ], [ -47.196914250561619, -22.077627996045234 ], [ -47.196826750544062, -22.077610055558765 ], [ -47.196739250544411, -22.077592115023553 ], [ -47.19665175056268, -22.077574174439608 ], [ -47.196564250598875, -22.077556233806945 ], [ -47.19647675065297, -22.077538293125556 ], [ -47.196389250724991, -22.077520352395446 ], [ -47.196301750814918, -22.077502411616628 ], [ -47.196214250922765, -22.077484470789059 ], [ -47.196126751048531, -22.077466529912797 ], [ -47.19603925119219, -22.077448588987771 ], [ -47.195951751353789, -22.077430648014072 ], [ -47.195864251533294, -22.077412706991627 ], [ -47.195776751730705, -22.077394765920456 ], [ -47.19568925194605, -22.07737682480056 ], [ -47.1956017521793, -22.077358883631948 ], [ -47.195514252430478, -22.077340942414608 ], [ -47.195426752699575, -22.077323001148567 ], [ -47.195339252986578, -22.077305059833776 ], [ -47.195251753291494, -22.077287118470295 ], [ -47.195164253614337, -22.077269177058071 ], [ -47.195076753955085, -22.077251235597128 ], [ -47.194989254313775, -22.077233294087463 ], [ -47.19490175469037, -22.077215352529077 ], [ -47.194814255084871, -22.077197410921976 ], [ -47.194726755497314, -22.077179469266135 ], [ -47.194639255927662, -22.077161527561596 ], [ -47.194551756375922, -22.077143585808351 ], [ -47.19446425684211, -22.077125644006372 ], [ -47.194417593332666, -22.077116075620285 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 307.18756146099997, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197325311893479, -22.077726143864194 ], [ -47.197261128975882, -22.077712984365608 ], [ -47.197173628878595, -22.07769504407301 ], [ -47.197086128799221, -22.077677103731677 ], [ -47.196998628737774, -22.077659163341629 ], [ -47.196911128694218, -22.077641222902852 ], [ -47.196823628668582, -22.077623282415338 ], [ -47.196736128660852, -22.077605341879124 ], [ -47.196648628671049, -22.077587401294174 ], [ -47.196561128699173, -22.077569460660499 ], [ -47.196473628745181, -22.077551519978105 ], [ -47.196386128809117, -22.077533579247 ], [ -47.196298628890986, -22.077515638467148 ], [ -47.196211128990754, -22.077497697638584 ], [ -47.196123629108421, -22.077479756761306 ], [ -47.196036129244021, -22.077461815835299 ], [ -47.195948629397527, -22.077443874860567 ], [ -47.195861129568961, -22.077425933837109 ], [ -47.195773629758321, -22.077407992764947 ], [ -47.195686129965573, -22.077390051644048 ], [ -47.195598630190744, -22.077372110474414 ], [ -47.195511130433836, -22.077354169256072 ], [ -47.195423630694854, -22.077336227988994 ], [ -47.195336130973786, -22.077318286673204 ], [ -47.195248631270623, -22.077300345308704 ], [ -47.195161131585401, -22.077282403895481 ], [ -47.195073631918071, -22.077264462433529 ], [ -47.194986132268681, -22.077246520922856 ], [ -47.194898632637184, -22.07722857936346 ], [ -47.19481113302362, -22.077210637755353 ], [ -47.194723633427984, -22.077192696098518 ], [ -47.19463613385026, -22.077174754392967 ], [ -47.194548634290456, -22.077156812638691 ], [ -47.194461134748558, -22.077138870835697 ], [ -47.194419053798519, -22.077130242107685 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 305.13448182100001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197307348695347, -22.077736327786035 ], [ -47.197258007140327, -22.077726211227223 ], [ -47.197170507034969, -22.077708270933616 ], [ -47.197083006947508, -22.07769033059126 ], [ -47.196995506877983, -22.077672390200213 ], [ -47.196908006826355, -22.077654449760427 ], [ -47.196820506792626, -22.07763650927189 ], [ -47.196733006776832, -22.077618568734682 ], [ -47.196645506778957, -22.077600628148726 ], [ -47.196558006798995, -22.077582687514045 ], [ -47.196470506836924, -22.077564746830635 ], [ -47.196383006892788, -22.077546806098525 ], [ -47.196295506966571, -22.077528865317646 ], [ -47.196208007058267, -22.077510924488092 ], [ -47.196120507167855, -22.077492983609801 ], [ -47.196033007295384, -22.077475042682764 ], [ -47.195945507440811, -22.07745710170704 ], [ -47.195858007604166, -22.077439160682577 ], [ -47.195770507785447, -22.077421219609409 ], [ -47.195683007984627, -22.077403278487481 ], [ -47.195595508201713, -22.077385337316858 ], [ -47.195508008436725, -22.07736739609749 ], [ -47.195420508689672, -22.07734945482942 ], [ -47.195333008960532, -22.077331513512622 ], [ -47.195245509249297, -22.077313572147112 ], [ -47.195158009555996, -22.077295630732877 ], [ -47.19507050988058, -22.077277689269916 ], [ -47.194983010223112, -22.077259747758234 ], [ -47.194895510583549, -22.077241806197829 ], [ -47.194808010961907, -22.07722386458871 ], [ -47.194720511358184, -22.077205922930865 ], [ -47.194633011772389, -22.077187981224309 ], [ -47.194545512204499, -22.077170039469021 ], [ -47.194458012654536, -22.077152097665014 ], [ -47.194420514264806, -22.077144408595039 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 303.08140218099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197289385494521, -22.077746511706099 ], [ -47.197254885304297, -22.077739438088791 ], [ -47.197167385190852, -22.077721497794169 ], [ -47.197079885095327, -22.07770355745081 ], [ -47.196992385017715, -22.077685617058737 ], [ -47.196904884958009, -22.077667676617949 ], [ -47.196817384916237, -22.077649736128429 ], [ -47.196729884892349, -22.077631795590182 ], [ -47.196642384886381, -22.077613855003225 ], [ -47.196554884898333, -22.077595914367539 ], [ -47.196467384928198, -22.077577973683123 ], [ -47.19637988497599, -22.077560032949986 ], [ -47.196292385041694, -22.07754209216812 ], [ -47.196204885125297, -22.077524151337556 ], [ -47.19611738522682, -22.077506210458239 ], [ -47.196029885346277, -22.07748826953021 ], [ -47.195942385483626, -22.077470328553463 ], [ -47.195854885638894, -22.077452387528005 ], [ -47.195767385812083, -22.077434446453811 ], [ -47.195679886003198, -22.077416505330881 ], [ -47.195592386212233, -22.07739856415926 ], [ -47.19550488643916, -22.077380622938893 ], [ -47.195417386684028, -22.077362681669801 ], [ -47.195329886946794, -22.077344740352004 ], [ -47.195242387227488, -22.077326798985474 ], [ -47.195154887526087, -22.077308857570216 ], [ -47.195067387842634, -22.077290916106257 ], [ -47.194979888177066, -22.077272974593573 ], [ -47.194892388529432, -22.077255033032159 ], [ -47.194804888899704, -22.077237091422024 ], [ -47.194717389287909, -22.077219149763167 ], [ -47.194629889694021, -22.077201208055598 ], [ -47.194542390118073, -22.077183266299304 ], [ -47.19445489056001, -22.077165324494281 ], [ -47.194421974731505, -22.077158575082329 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 301.02832254100002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197271422290996, -22.077756695624384 ], [ -47.197251763467797, -22.077752664950335 ], [ -47.197164263346274, -22.077734724654693 ], [ -47.197076763242677, -22.07771678431034 ], [ -47.196989263156972, -22.077698843917261 ], [ -47.196901763089201, -22.077680903475461 ], [ -47.196814263039343, -22.077662962984917 ], [ -47.196726763007383, -22.077645022445676 ], [ -47.196639262993337, -22.07762708185771 ], [ -47.196551762997217, -22.077609141221007 ], [ -47.196464263019003, -22.077591200535593 ], [ -47.196376763058716, -22.077573259801447 ], [ -47.196289263116348, -22.077555319018575 ], [ -47.196201763191866, -22.077537378186999 ], [ -47.196114263285317, -22.077519437306655 ], [ -47.196026763396695, -22.077501496377632 ], [ -47.195939263525965, -22.077483555399883 ], [ -47.195851763673161, -22.077465614373409 ], [ -47.195764263838264, -22.077447673298188 ], [ -47.195676764021307, -22.077429732174274 ], [ -47.195589264222264, -22.077411791001637 ], [ -47.195501764441111, -22.07739384978025 ], [ -47.1954142646779, -22.077375908510163 ], [ -47.195326764932595, -22.077357967191354 ], [ -47.19523926520521, -22.077340025823801 ], [ -47.19515176549573, -22.077322084407552 ], [ -47.195064265804199, -22.07730414294258 ], [ -47.194976766130559, -22.07728620142889 ], [ -47.194889266474839, -22.077268259866447 ], [ -47.194801766837045, -22.07725031825532 ], [ -47.194714267217172, -22.077232376595436 ], [ -47.194626767615205, -22.077214434886876 ], [ -47.194539268031178, -22.07719649312957 ], [ -47.194451768465044, -22.077178551323545 ], [ -47.19442343519863, -22.077172741569566 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 298.97524290500002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197253459084813, -22.077766879540878 ], [ -47.19716114150124, -22.077747951515185 ], [ -47.197073641389544, -22.07773001116982 ], [ -47.196986141295774, -22.077712070775732 ], [ -47.196898641219917, -22.077694130332919 ], [ -47.196811141161966, -22.077676189841398 ], [ -47.196723641121949, -22.077658249301127 ], [ -47.19663614109983, -22.077640308712152 ], [ -47.196548641095617, -22.07762236807444 ], [ -47.196461141109339, -22.077604427388014 ], [ -47.196373641140973, -22.077586486652855 ], [ -47.196286141190505, -22.077568545868978 ], [ -47.196198641257965, -22.077550605036382 ], [ -47.196111141343337, -22.077532664155061 ], [ -47.196023641446622, -22.077514723225015 ], [ -47.195936141567842, -22.07749678224625 ], [ -47.195848641706945, -22.077478841218756 ], [ -47.195761141863983, -22.077460900142544 ], [ -47.19567364203894, -22.077442959017617 ], [ -47.195586142231804, -22.077425017843954 ], [ -47.195498642442587, -22.077407076621572 ], [ -47.195411142671311, -22.077389135350483 ], [ -47.19532364291792, -22.077371194030658 ], [ -47.195236143182463, -22.07735325266211 ], [ -47.195148643464918, -22.077335311244845 ], [ -47.195061143765287, -22.077317369778857 ], [ -47.194973644083589, -22.077299428264144 ], [ -47.19488614441979, -22.077281486700713 ], [ -47.194798644773911, -22.077263545088563 ], [ -47.194711145145959, -22.077245603427681 ], [ -47.19462364553592, -22.077227661718105 ], [ -47.194536145943808, -22.077209719959786 ], [ -47.194448646369629, -22.077191778152752 ], [ -47.194424895666181, -22.077186908056714 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 296.92216326499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197235495875894, -22.077777063455621 ], [ -47.197158019655724, -22.077761178375656 ], [ -47.197070519535941, -22.077743238029285 ], [ -47.1969830194341, -22.077725297634188 ], [ -47.196895519350171, -22.07770735719037 ], [ -47.196808019284141, -22.07768941669784 ], [ -47.196720519236031, -22.077671476156539 ], [ -47.196633019205848, -22.077653535566572 ], [ -47.196545519193556, -22.077635594927855 ], [ -47.196458019199191, -22.077617654240395 ], [ -47.196370519222754, -22.077599713504256 ], [ -47.196283019264214, -22.077581772719363 ], [ -47.196195519323595, -22.077563831885762 ], [ -47.196108019400889, -22.077545891003432 ], [ -47.196020519496102, -22.07752795007238 ], [ -47.195933019609235, -22.077510009092599 ], [ -47.195845519740267, -22.0774920680641 ], [ -47.195758019889226, -22.077474126986875 ], [ -47.195670520056112, -22.077456185860939 ], [ -47.195583020240889, -22.077438244686256 ], [ -47.1954955204436, -22.077420303462876 ], [ -47.195408020664246, -22.077402362190782 ], [ -47.195320520902776, -22.077384420869929 ], [ -47.19523302115924, -22.077366479500391 ], [ -47.195145521433616, -22.077348538082109 ], [ -47.195058021725906, -22.077330596615113 ], [ -47.19497052203613, -22.077312655099394 ], [ -47.194883022364252, -22.077294713534958 ], [ -47.194795522710301, -22.077276771921792 ], [ -47.194708023074284, -22.077258830259908 ], [ -47.194620523456159, -22.077240888549323 ], [ -47.194533023855968, -22.077222946789995 ], [ -47.194445524273711, -22.077205004981931 ], [ -47.194426356134151, -22.077201074543826 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 294.86908362600002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197217532664304, -22.077787247368565 ], [ -47.19715489780971, -22.077774405236084 ], [ -47.197067397681884, -22.077756464888708 ], [ -47.196979897571943, -22.077738524492613 ], [ -47.196892397479942, -22.077720584047782 ], [ -47.196804897405841, -22.077702643554218 ], [ -47.196717397349666, -22.077684703011954 ], [ -47.196629897311382, -22.07766676242095 ], [ -47.196542397291026, -22.077648821781221 ], [ -47.196454897288582, -22.077630881092773 ], [ -47.196367397304073, -22.077612940355596 ], [ -47.196279897337448, -22.077594999569715 ], [ -47.196192397388749, -22.077577058735095 ], [ -47.196104897457964, -22.077559117851742 ], [ -47.196017397545099, -22.077541176919688 ], [ -47.195929897650146, -22.077523235938905 ], [ -47.19584239777312, -22.077505294909393 ], [ -47.195754897914007, -22.07748735383116 ], [ -47.195667398072786, -22.077469412704207 ], [ -47.195579898249498, -22.077451471528533 ], [ -47.195492398444145, -22.077433530304148 ], [ -47.19540489865669, -22.077415589031023 ], [ -47.195317398887177, -22.077397647709184 ], [ -47.195229899135541, -22.077379706338615 ], [ -47.195142399401846, -22.077361764919335 ], [ -47.19505489968607, -22.077343823451326 ], [ -47.194967399988201, -22.077325881934598 ], [ -47.194879900308251, -22.077307940369153 ], [ -47.194792400646229, -22.077289998754985 ], [ -47.194704901002112, -22.077272057092092 ], [ -47.194617401375929, -22.077254115380484 ], [ -47.194529901767659, -22.077236173620143 ], [ -47.194442402177309, -22.077218231811091 ], [ -47.194427816602555, -22.077215241030892 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 292.816003986, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197199569449992, -22.077797431279755 ], [ -47.197151775963256, -22.077787632096499 ], [ -47.197064275827344, -22.077769691748106 ], [ -47.196976775709331, -22.077751751351009 ], [ -47.196889275609237, -22.077733810905155 ], [ -47.196801775527064, -22.077715870410596 ], [ -47.196714275462824, -22.077697929867316 ], [ -47.196626775416455, -22.077679989275307 ], [ -47.19653927538802, -22.077662048634576 ], [ -47.196451775377504, -22.077644107945115 ], [ -47.196364275384916, -22.077626167206933 ], [ -47.196276775410212, -22.077608226420033 ], [ -47.196189275453428, -22.077590285584392 ], [ -47.196101775514578, -22.077572344700048 ], [ -47.196014275593633, -22.077554403766982 ], [ -47.195926775690602, -22.077536462785194 ], [ -47.195839275805497, -22.077518521754676 ], [ -47.195751775938305, -22.07750058067543 ], [ -47.195664276089012, -22.077482639547465 ], [ -47.195576776257646, -22.077464698370783 ], [ -47.195489276444214, -22.077446757145392 ], [ -47.19540177664868, -22.077428815871261 ], [ -47.195314276871088, -22.077410874548406 ], [ -47.195226777111372, -22.077392933176824 ], [ -47.195139277369606, -22.077374991756535 ], [ -47.195051777645752, -22.077357050287521 ], [ -47.194964277939803, -22.077339108769781 ], [ -47.194876778251782, -22.07732116720333 ], [ -47.194789278581673, -22.077303225588139 ], [ -47.194701778929485, -22.077285283924247 ], [ -47.194614279295223, -22.077267342211638 ], [ -47.194526779678881, -22.077249400450288 ], [ -47.194439280080452, -22.077231458640224 ], [ -47.194429277071379, -22.077229407517883 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 290.76292434800001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197181606233016, -22.077807615189155 ], [ -47.197148654116312, -22.077800858956863 ], [ -47.197061153972321, -22.077782918607461 ], [ -47.196973653846243, -22.077764978209341 ], [ -47.196886153738077, -22.077747037762506 ], [ -47.196798653647825, -22.077729097266936 ], [ -47.1967111535755, -22.077711156722636 ], [ -47.196623653521051, -22.077693216129614 ], [ -47.196536153484551, -22.07767527548787 ], [ -47.196448653465957, -22.077657334797404 ], [ -47.196361153465269, -22.077639394058217 ], [ -47.1962736534825, -22.077621453270311 ], [ -47.196186153517644, -22.077603512433676 ], [ -47.196098653570708, -22.077585571548319 ], [ -47.196011153641692, -22.07756763061424 ], [ -47.195923653730603, -22.077549689631432 ], [ -47.195836153837398, -22.07753174859991 ], [ -47.195748653962127, -22.077513807519654 ], [ -47.195661154104762, -22.077495866390684 ], [ -47.195573654265324, -22.077477925212985 ], [ -47.195486154443813, -22.077459983986575 ], [ -47.195398654640208, -22.077442042711436 ], [ -47.195311154854515, -22.077424101387574 ], [ -47.195223655086743, -22.077406160015002 ], [ -47.19513615533689, -22.077388218593697 ], [ -47.19504865560495, -22.077370277123666 ], [ -47.19496115589093, -22.077352335604925 ], [ -47.194873656194829, -22.077334394037468 ], [ -47.194786156516656, -22.077316452421268 ], [ -47.194698656856382, -22.077298510756371 ], [ -47.194611157214055, -22.077280569042735 ], [ -47.194523657589627, -22.077262627280383 ], [ -47.19443615798312, -22.077244685469307 ], [ -47.194430737540628, -22.077243574004815 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 288.70984470799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197163643013312, -22.077817799096785 ], [ -47.19714553226892, -22.077814085817213 ], [ -47.197058032116836, -22.077796145466802 ], [ -47.196970531982679, -22.077778205067673 ], [ -47.196883031866435, -22.077760264619826 ], [ -47.196795531768103, -22.07774232412325 ], [ -47.196708031687699, -22.077724383577941 ], [ -47.196620531625186, -22.077706442983914 ], [ -47.1965330315806, -22.077688502341161 ], [ -47.196445531553934, -22.077670561649679 ], [ -47.196358031545167, -22.077652620909486 ], [ -47.196270531554326, -22.077634680120571 ], [ -47.196183031581377, -22.077616739282909 ], [ -47.196095531626376, -22.077598798396558 ], [ -47.196008031689288, -22.077580857461474 ], [ -47.195920531770113, -22.077562916477657 ], [ -47.195833031868837, -22.077544975445122 ], [ -47.19574553198548, -22.077527034363861 ], [ -47.195658032120043, -22.077509093233878 ], [ -47.195570532272527, -22.077491152055174 ], [ -47.195483032442944, -22.077473210827755 ], [ -47.195395532631252, -22.077455269551606 ], [ -47.195308032837481, -22.07743732822674 ], [ -47.195220533061637, -22.077419386853155 ], [ -47.195133033303712, -22.077401445430837 ], [ -47.195045533563693, -22.077383503959801 ], [ -47.194958033841587, -22.077365562440043 ], [ -47.194870534137415, -22.077347620871578 ], [ -47.194783034451163, -22.077329679254358 ], [ -47.194695534782824, -22.07731173758846 ], [ -47.194608035132404, -22.077293795873803 ], [ -47.194520535499905, -22.077275854110457 ], [ -47.194433035885318, -22.077257912298357 ], [ -47.194432198010297, -22.077257740491675 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 286.65676507000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197145679790928, -22.077827983002638 ], [ -47.197054910260881, -22.077809372326094 ], [ -47.196967410118667, -22.077791431925959 ], [ -47.19687990999433, -22.077773491477092 ], [ -47.196792409887927, -22.077755550979496 ], [ -47.196704909799422, -22.0777376104332 ], [ -47.196617409728837, -22.07771966983816 ], [ -47.196529909676173, -22.077701729194402 ], [ -47.196442409641435, -22.077683788501911 ], [ -47.196354909624588, -22.077665847760706 ], [ -47.196267409625669, -22.077647906970782 ], [ -47.196179909644663, -22.077629966132129 ], [ -47.196092409681583, -22.07761202524474 ], [ -47.196004909736395, -22.077594084308661 ], [ -47.195917409809134, -22.077576143323835 ], [ -47.195829909899793, -22.077558202290291 ], [ -47.195742410008371, -22.077540261208021 ], [ -47.195654910134856, -22.07752232007703 ], [ -47.19556741027926, -22.077504378897313 ], [ -47.195479910441584, -22.077486437668881 ], [ -47.195392410621821, -22.07746849639172 ], [ -47.195304910819992, -22.077450555065838 ], [ -47.195217411036055, -22.077432613691254 ], [ -47.195129911270044, -22.077414672267928 ], [ -47.195042411521953, -22.077396730795883 ], [ -47.194954911791783, -22.077378789275116 ], [ -47.194867412079532, -22.077360847705627 ], [ -47.194779912385201, -22.077342906087427 ], [ -47.194692412708783, -22.077324964420502 ], [ -47.194604913050298, -22.077307022704854 ], [ -47.194517413409706, -22.077289080940485 ], [ -47.194433658480385, -22.077271906978496 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 284.603685429, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197127716565838, -22.077838166906723 ], [ -47.197051788404458, -22.077822599185371 ], [ -47.196964288254165, -22.077804658784224 ], [ -47.196876788121749, -22.077786718334334 ], [ -47.196789288007267, -22.077768777835743 ], [ -47.19670178791069, -22.077750837288441 ], [ -47.19661428783202, -22.077732896692392 ], [ -47.196526787771283, -22.077714956047622 ], [ -47.196439287728467, -22.077697015354129 ], [ -47.196351787703541, -22.077679074611911 ], [ -47.196264287696543, -22.077661133820978 ], [ -47.196176787707458, -22.077643192981295 ], [ -47.196089287736307, -22.077625252092922 ], [ -47.196001787783047, -22.077607311155827 ], [ -47.1959142878477, -22.077589370169985 ], [ -47.195826787930287, -22.077571429135443 ], [ -47.195739288030786, -22.077553488052164 ], [ -47.195651788149192, -22.077535546920164 ], [ -47.195564288285524, -22.077517605739438 ], [ -47.19547678843977, -22.077499664509993 ], [ -47.195389288611928, -22.077481723231827 ], [ -47.19530178880202, -22.077463781904935 ], [ -47.195214289010011, -22.077445840529347 ], [ -47.195126789235921, -22.077427899105011 ], [ -47.195039289479752, -22.077409957631954 ], [ -47.194951789741502, -22.077392016110178 ], [ -47.194864290021172, -22.07737407453968 ], [ -47.194776790318762, -22.077356132920468 ], [ -47.194689290634273, -22.077338191252529 ], [ -47.19460179096771, -22.077320249535873 ], [ -47.194514291319038, -22.077302307770495 ], [ -47.194435118950906, -22.07728607346526 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 282.550605792, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197109753338076, -22.077848350809017 ], [ -47.197048666547566, -22.077835826044602 ], [ -47.196961166389187, -22.077817885642439 ], [ -47.196873666248692, -22.077799945191554 ], [ -47.196786166126138, -22.077782004691954 ], [ -47.196698666021483, -22.077764064143622 ], [ -47.196611165934748, -22.077746123546579 ], [ -47.196523665865932, -22.077728182900795 ], [ -47.196436165815022, -22.077710242206297 ], [ -47.196348665782018, -22.07769230146307 ], [ -47.196261165766956, -22.077674360671121 ], [ -47.196173665769791, -22.077656419830454 ], [ -47.196086165790547, -22.077638478941058 ], [ -47.195998665829208, -22.07762053800295 ], [ -47.195911165885796, -22.07760259701611 ], [ -47.195823665960312, -22.077584655980548 ], [ -47.195736166052733, -22.07756671489626 ], [ -47.195648666163073, -22.077548773763247 ], [ -47.195561166291299, -22.077530832581516 ], [ -47.195473666437486, -22.077512891351063 ], [ -47.195386166601565, -22.077494950071884 ], [ -47.195298666783565, -22.07747700874399 ], [ -47.195211166983491, -22.077459067367375 ], [ -47.195123667201329, -22.07744112594203 ], [ -47.195036167437081, -22.077423184467975 ], [ -47.194948667690753, -22.07740524294519 ], [ -47.194861167962344, -22.07738730137369 ], [ -47.194773668251862, -22.077369359753469 ], [ -47.194686168559301, -22.077351418084515 ], [ -47.194598668884638, -22.077333476366842 ], [ -47.194511169227908, -22.077315534600448 ], [ -47.194436579421847, -22.077300239951938 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 280.49752615099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197091790107585, -22.077858534709545 ], [ -47.197045544690205, -22.077849052903812 ], [ -47.19695804452374, -22.077831112500647 ], [ -47.196870544375173, -22.077813172048749 ], [ -47.196783044244533, -22.077795231548141 ], [ -47.196695544131799, -22.077777290998789 ], [ -47.196608044036992, -22.077759350400743 ], [ -47.196520543960098, -22.077741409753958 ], [ -47.196433043901109, -22.07772346905843 ], [ -47.196345543860033, -22.077705528314212 ], [ -47.196258043836892, -22.077687587521254 ], [ -47.196170543831649, -22.077669646679581 ], [ -47.196083043844318, -22.077651705789155 ], [ -47.195995543874922, -22.077633764850056 ], [ -47.195908043923431, -22.077615823862207 ], [ -47.195820543989853, -22.077597882825636 ], [ -47.19573304407421, -22.077579941740339 ], [ -47.195645544176465, -22.077562000606317 ], [ -47.195558044296618, -22.07754405942358 ], [ -47.195470544434727, -22.077526118192115 ], [ -47.195383044590734, -22.07750817691193 ], [ -47.195295544764647, -22.077490235583028 ], [ -47.195208044956495, -22.077472294205396 ], [ -47.195120545166262, -22.077454352779046 ], [ -47.195033045393942, -22.077436411303982 ], [ -47.194945545639534, -22.077418469780184 ], [ -47.194858045903047, -22.077400528207676 ], [ -47.194770546184486, -22.077382586586449 ], [ -47.194683046483838, -22.077364644916461 ], [ -47.194595546801104, -22.077346703197801 ], [ -47.194508047136303, -22.077328761430397 ], [ -47.194438039893214, -22.077314406438568 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 278.44444651100002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197073826874401, -22.077868718608308 ], [ -47.197042422832368, -22.077862279762996 ], [ -47.196954922657824, -22.077844339358808 ], [ -47.196867422501185, -22.077826398905895 ], [ -47.196779922362467, -22.07780845840427 ], [ -47.196692422241654, -22.077790517853924 ], [ -47.196604922138761, -22.077772577254862 ], [ -47.196517422053788, -22.077754636607072 ], [ -47.19642992198672, -22.077736695910552 ], [ -47.19634242193758, -22.077718755165311 ], [ -47.196254921906352, -22.07770081437134 ], [ -47.196167421893037, -22.077682873528648 ], [ -47.196079921897635, -22.077664932637241 ], [ -47.195992421920153, -22.077646991697112 ], [ -47.195904921960576, -22.077629050708254 ], [ -47.195817422018926, -22.07761110967067 ], [ -47.19572992209519, -22.077593168584368 ], [ -47.195642422189373, -22.077575227449348 ], [ -47.195554922301469, -22.077557286265602 ], [ -47.195467422431484, -22.077539345033134 ], [ -47.195379922579413, -22.077521403751938 ], [ -47.195292422745268, -22.077503462422015 ], [ -47.195204922929037, -22.077485521043375 ], [ -47.195117423130725, -22.07746757961602 ], [ -47.195029923350319, -22.077449638139939 ], [ -47.194942423587833, -22.077431696615136 ], [ -47.194854923843273, -22.077413755041608 ], [ -47.194767424116648, -22.077395813419358 ], [ -47.194679924407914, -22.077377871748393 ], [ -47.194592424717108, -22.077359930028706 ], [ -47.194504925044214, -22.077341988260297 ], [ -47.194439500365, -22.077328572925147 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 276.39136687199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197055863638546, -22.07787890250528 ], [ -47.197039300974048, -22.077875506622128 ], [ -47.196951800791439, -22.077857566216935 ], [ -47.196864300626714, -22.07783962576303 ], [ -47.196776800479924, -22.077821685260382 ], [ -47.196689300351032, -22.077803744709037 ], [ -47.196601800240074, -22.077785804108974 ], [ -47.196514300147015, -22.077767863460167 ], [ -47.196426800071869, -22.077749922762639 ], [ -47.19633930001465, -22.077731982016385 ], [ -47.196251799975343, -22.077714041221409 ], [ -47.196164299953949, -22.077696100377711 ], [ -47.196076799950468, -22.077678159485291 ], [ -47.195989299964914, -22.077660218544157 ], [ -47.195901799997259, -22.07764227755429 ], [ -47.19581430004753, -22.077624336515697 ], [ -47.195726800115715, -22.077606395428383 ], [ -47.195639300201819, -22.077588454292354 ], [ -47.195551800305836, -22.077570513107585 ], [ -47.195464300427787, -22.077552571874122 ], [ -47.19537680056763, -22.077534630591902 ], [ -47.195289300725413, -22.077516689260968 ], [ -47.195201800901103, -22.077498747881336 ], [ -47.195114301094712, -22.077480806452968 ], [ -47.195026801306227, -22.077462864975882 ], [ -47.194939301535669, -22.07744492345007 ], [ -47.194851801783031, -22.077426981875529 ], [ -47.194764302048327, -22.077409040252277 ], [ -47.194676802331514, -22.0773910985803 ], [ -47.194589302632636, -22.077373156859608 ], [ -47.19450180295167, -22.077355215090183 ], [ -47.194440960837213, -22.077342739411673 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 274.338287235, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197037900399998, -22.077889086400475 ], [ -47.196948678924564, -22.077870793075029 ], [ -47.196861178751782, -22.077852852620119 ], [ -47.196773678596912, -22.077834912116487 ], [ -47.196686178459949, -22.077816971564118 ], [ -47.196598678340912, -22.077799030963032 ], [ -47.196511178239774, -22.077781090313216 ], [ -47.196423678156542, -22.077763149614675 ], [ -47.196336178091244, -22.077745208867423 ], [ -47.196248678043858, -22.077727268071435 ], [ -47.196161178014393, -22.077709327226742 ], [ -47.19607367800284, -22.077691386333299 ], [ -47.195986178009193, -22.077673445391142 ], [ -47.195898678033473, -22.077655504400262 ], [ -47.195811178075665, -22.077637563360671 ], [ -47.195723678135792, -22.077619622272344 ], [ -47.195636178213803, -22.077601681135302 ], [ -47.195548678309748, -22.077583739949532 ], [ -47.195461178423606, -22.077565798715053 ], [ -47.195373678555377, -22.077547857431842 ], [ -47.195286178705082, -22.077529916099913 ], [ -47.195198678872693, -22.077511974719254 ], [ -47.195111179058216, -22.07749403328987 ], [ -47.195023679261666, -22.077476091811771 ], [ -47.19493617948303, -22.077458150284947 ], [ -47.19484867972232, -22.077440208709408 ], [ -47.194761179979523, -22.077422267085144 ], [ -47.194673680254645, -22.077404325412154 ], [ -47.194586180547688, -22.077386383690445 ], [ -47.194498680858644, -22.077368441920015 ], [ -47.194442421309851, -22.077356905898103 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 272.37654488200002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197019937158728, -22.077899270293898 ], [ -47.196945557057234, -22.077884019933109 ], [ -47.196858056876373, -22.077866079477182 ], [ -47.196770556713425, -22.077848138972552 ], [ -47.196683056568382, -22.07783019841915 ], [ -47.196595556441267, -22.077812257817072 ], [ -47.196508056332057, -22.077794317166234 ], [ -47.196420556240746, -22.077776376466701 ], [ -47.196333056167376, -22.07775843571843 ], [ -47.196245556111911, -22.077740494921443 ], [ -47.196158056074367, -22.077722554075738 ], [ -47.196070556054728, -22.077704613181272 ], [ -47.195983056053009, -22.077686672238126 ], [ -47.19589555606921, -22.077668731246238 ], [ -47.195808056103338, -22.077650790205638 ], [ -47.195720556155372, -22.077632849116284 ], [ -47.195633056225319, -22.077614907978241 ], [ -47.195545556313178, -22.077596966791472 ], [ -47.195458056418964, -22.077579025555977 ], [ -47.195370556542656, -22.077561084271739 ], [ -47.195283056684289, -22.077543142938818 ], [ -47.195195556843807, -22.077525201557133 ], [ -47.195108057021265, -22.077507260126755 ], [ -47.195020557216644, -22.077489318647654 ], [ -47.194933057429928, -22.077471377119817 ], [ -47.194845557661139, -22.077453435543269 ], [ -47.194758057910263, -22.077435493917992 ], [ -47.194670558177307, -22.077417552243997 ], [ -47.194583058462264, -22.07739961052128 ], [ -47.194495558765155, -22.07738166874984 ], [ -47.194443017655175, -22.077370895194953 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 270.48889635400002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.197001973914794, -22.077909454185541 ], [ -47.196942435189435, -22.077897246791146 ], [ -47.196854935000495, -22.077879306334207 ], [ -47.196767434829461, -22.077861365828547 ], [ -47.196679934676347, -22.077843425274175 ], [ -47.196592434541145, -22.07782548467107 ], [ -47.196504934423864, -22.077807544019233 ], [ -47.196417434324509, -22.077789603318681 ], [ -47.196329934243032, -22.0777716625694 ], [ -47.196242434179496, -22.077753721771398 ], [ -47.196154934133865, -22.077735780924687 ], [ -47.196067434106162, -22.077717840029226 ], [ -47.195979934096364, -22.077699899085044 ], [ -47.195892434104472, -22.077681958092167 ], [ -47.195804934130521, -22.077664017050552 ], [ -47.195717434174476, -22.077646075960207 ], [ -47.195629934236344, -22.07762813482114 ], [ -47.195542434316138, -22.077610193633355 ], [ -47.195454934413846, -22.077592252396848 ], [ -47.195367434529466, -22.077574311111626 ], [ -47.195279934662992, -22.077556369777675 ], [ -47.195192434814466, -22.077538428394998 ], [ -47.195104934983831, -22.077520486963603 ], [ -47.195017435171131, -22.07750254548348 ], [ -47.194929935376351, -22.077484603954641 ], [ -47.194842435599469, -22.077466662377077 ], [ -47.194754935840521, -22.077448720750798 ], [ -47.194667436099508, -22.077430779075797 ], [ -47.194579936376385, -22.077412837352067 ], [ -47.19449243667119, -22.07739489557963 ], [ -47.194442913010654, -22.077384740753647 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 268.60124782299999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196984010668132, -22.077919638075421 ], [ -47.196939313321167, -22.077910473649162 ], [ -47.196851813124148, -22.0778925331912 ], [ -47.196764312945035, -22.077874592684548 ], [ -47.196676812783842, -22.07785665212916 ], [ -47.196589312640562, -22.077838711525047 ], [ -47.196501812515201, -22.077820770872204 ], [ -47.196414312407768, -22.077802830170622 ], [ -47.196326812318219, -22.07778488942035 ], [ -47.196239312246604, -22.077766948621342 ], [ -47.196151812192895, -22.077749007773622 ], [ -47.196064312157112, -22.077731066877138 ], [ -47.195976812139236, -22.077713125931965 ], [ -47.195889312139272, -22.077695184938076 ], [ -47.195801812157242, -22.077677243895447 ], [ -47.195714312193118, -22.077659302804101 ], [ -47.195626812246907, -22.077641361664018 ], [ -47.195539312318623, -22.07762342047522 ], [ -47.195451812408251, -22.077605479237707 ], [ -47.195364312515807, -22.07758753795148 ], [ -47.195276812641254, -22.07756959661652 ], [ -47.195189312784642, -22.077551655232831 ], [ -47.195101812945929, -22.077533713800424 ], [ -47.195014313125156, -22.077515772319295 ], [ -47.19492681332229, -22.077497830789433 ], [ -47.194839313537344, -22.077479889210874 ], [ -47.194751813770317, -22.077461947583579 ], [ -47.194664314021225, -22.077444005907576 ], [ -47.194576814290023, -22.07742606418282 ], [ -47.194489314576757, -22.077408122409388 ], [ -47.19444280836624, -22.077398586312317 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 266.71359929400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19696604741879, -22.077929821963508 ], [ -47.196936191452423, -22.077923700507117 ], [ -47.196848691247325, -22.077905760048164 ], [ -47.196761191060141, -22.077887819540507 ], [ -47.196673690890876, -22.077869878984103 ], [ -47.196586190739517, -22.077851938378974 ], [ -47.196498690606077, -22.077833997725126 ], [ -47.196411190490544, -22.077816057022552 ], [ -47.196323690392937, -22.077798116271257 ], [ -47.196236190313236, -22.077780175471236 ], [ -47.196148690251455, -22.07776223462249 ], [ -47.196061190207601, -22.077744293725022 ], [ -47.195973690181631, -22.077726352778839 ], [ -47.195886190173617, -22.077708411783927 ], [ -47.195798690183501, -22.077690470740297 ], [ -47.195711190211291, -22.077672529647934 ], [ -47.195623690257008, -22.077654588506849 ], [ -47.195536190320645, -22.077636647317046 ], [ -47.195448690402195, -22.077618706078521 ], [ -47.195361190501657, -22.077600764791271 ], [ -47.195273690619047, -22.077582823455312 ], [ -47.195186190754356, -22.077564882070622 ], [ -47.195098690907571, -22.077546940637202 ], [ -47.195011191078713, -22.077528999155064 ], [ -47.194923691267768, -22.0775110576242 ], [ -47.194836191474742, -22.077493116044622 ], [ -47.194748691699637, -22.077475174416321 ], [ -47.194661191942465, -22.077457232739302 ], [ -47.194573692203193, -22.077439291013569 ], [ -47.194486192481847, -22.077421349239099 ], [ -47.19444270372194, -22.07741243187095 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 264.82595076299998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196948084166735, -22.07794000584984 ], [ -47.19693306958321, -22.077936927365069 ], [ -47.196845569370034, -22.077918986905104 ], [ -47.19675806917477, -22.077901046396438 ], [ -47.196670568997426, -22.077883105839014 ], [ -47.196583068837988, -22.07786516523289 ], [ -47.19649556869647, -22.077847224578033 ], [ -47.196408068572858, -22.077829283874451 ], [ -47.196320568467179, -22.077811343122143 ], [ -47.196233068379399, -22.077793402321117 ], [ -47.196145568309539, -22.077775461471361 ], [ -47.196058068257614, -22.077757520572884 ], [ -47.195970568223572, -22.077739579625696 ], [ -47.195883068207465, -22.077721638629772 ], [ -47.195795568209277, -22.077703697585132 ], [ -47.195708068228996, -22.077685756491761 ], [ -47.195620568266634, -22.07766781534967 ], [ -47.195533068322185, -22.077649874158855 ], [ -47.195445568395662, -22.077631932919317 ], [ -47.195358068487053, -22.077613991631058 ], [ -47.195270568596364, -22.077596050294094 ], [ -47.195183068723587, -22.077578108908387 ], [ -47.19509556886873, -22.077560167473962 ], [ -47.195008069031793, -22.077542225990815 ], [ -47.194920569212776, -22.077524284458946 ], [ -47.194833069411672, -22.077506342878355 ], [ -47.194745569628495, -22.077488401249038 ], [ -47.194658069863245, -22.077470459571018 ], [ -47.194570570115893, -22.077452517844272 ], [ -47.194483070386468, -22.077434576068782 ], [ -47.194442599077739, -22.077426277429577 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 262.93830223600003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196930120912022, -22.07795018973437 ], [ -47.196842447492273, -22.077932213762001 ], [ -47.196754947288923, -22.077914273252304 ], [ -47.196667447103501, -22.077896332693889 ], [ -47.196579946935991, -22.077878392086756 ], [ -47.196492446786394, -22.07786045143089 ], [ -47.19640494665471, -22.077842510726299 ], [ -47.196317446540938, -22.077824569972982 ], [ -47.196229946445094, -22.07780662917094 ], [ -47.196142446367155, -22.077788688320179 ], [ -47.196054946307136, -22.077770747420693 ], [ -47.195967446265051, -22.077752806472489 ], [ -47.195879946240836, -22.077734865475577 ], [ -47.195792446234577, -22.077716924429918 ], [ -47.195704946246217, -22.077698983335537 ], [ -47.195617446275783, -22.077681042192438 ], [ -47.195529946323262, -22.077663101000613 ], [ -47.195442446388661, -22.077645159760085 ], [ -47.195354946471987, -22.077627218470809 ], [ -47.195267446573197, -22.077609277132808 ], [ -47.195179946692356, -22.077591335746096 ], [ -47.195092446829435, -22.077573394310679 ], [ -47.195004946984405, -22.07755545282652 ], [ -47.194917447157309, -22.077537511293638 ], [ -47.194829947348147, -22.077519569712042 ], [ -47.194742447556877, -22.077501628081713 ], [ -47.194654947783548, -22.077483686402669 ], [ -47.194567448028103, -22.07746574467491 ], [ -47.194479948290613, -22.077447802898426 ], [ -47.194442494433645, -22.077440122988168 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 261.050653705, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196912157654573, -22.077960373617149 ], [ -47.196839325614043, -22.07794544061888 ], [ -47.196751825402615, -22.077927500108174 ], [ -47.196664325209113, -22.077909559548743 ], [ -47.196576825033524, -22.077891618940608 ], [ -47.196489324875849, -22.077873678283733 ], [ -47.196401824736085, -22.077855737578133 ], [ -47.196314324614242, -22.077837796823811 ], [ -47.196226824510319, -22.07781985602076 ], [ -47.196139324424301, -22.077801915168987 ], [ -47.196051824356203, -22.077783974268492 ], [ -47.19596432430604, -22.077766033319275 ], [ -47.195876824273753, -22.077748092321357 ], [ -47.195789324259415, -22.077730151274693 ], [ -47.195701824262976, -22.077712210179303 ], [ -47.195614324284463, -22.077694269035192 ], [ -47.195526824323863, -22.077676327842358 ], [ -47.195439324381184, -22.077658386600817 ], [ -47.195351824456431, -22.077640445310514 ], [ -47.195264324549576, -22.077622503971522 ], [ -47.195176824660649, -22.077604562583804 ], [ -47.195089324789656, -22.077586621147375 ], [ -47.195001824936547, -22.07756867966221 ], [ -47.194914325101365, -22.07755073812832 ], [ -47.194826825284139, -22.077532796545707 ], [ -47.19473932548479, -22.07751485491438 ], [ -47.194651825703382, -22.07749691323432 ], [ -47.194564325939865, -22.077478971505542 ], [ -47.19447682619429, -22.077461029728049 ], [ -47.194442389789664, -22.077453968546759 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 259.16300517600001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196894194394446, -22.077970557498144 ], [ -47.196836203735323, -22.077958667475709 ], [ -47.19674870351583, -22.077940726964002 ], [ -47.19666120331425, -22.077922786403565 ], [ -47.196573703130582, -22.077904845794407 ], [ -47.196486202964834, -22.077886905136531 ], [ -47.196398702816992, -22.077868964429918 ], [ -47.196311202687077, -22.077851023674583 ], [ -47.196223702575061, -22.077833082870526 ], [ -47.196136202480972, -22.077815142017748 ], [ -47.196048702404802, -22.077797201116244 ], [ -47.195961202346552, -22.077779260166015 ], [ -47.195873702306216, -22.077761319167074 ], [ -47.195786202283777, -22.077743378119408 ], [ -47.195698702279266, -22.077725437023016 ], [ -47.195611202292682, -22.077707495877895 ], [ -47.195523702324003, -22.077689554684053 ], [ -47.195436202373237, -22.077671613441488 ], [ -47.19534870244042, -22.077653672150209 ], [ -47.195261202525479, -22.077635730810197 ], [ -47.19517370262848, -22.077617789421467 ], [ -47.195086202749387, -22.077599847984015 ], [ -47.194998702888213, -22.077581906497851 ], [ -47.194911203044967, -22.077563964962952 ], [ -47.19482370321964, -22.07754602337933 ], [ -47.194736203412226, -22.077528081746983 ], [ -47.19464870362274, -22.077510140065922 ], [ -47.194561203851158, -22.077492198336138 ], [ -47.194473704097497, -22.077474256557633 ], [ -47.194442285145783, -22.077467814105312 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 257.27535664499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196876231131604, -22.077980741377363 ], [ -47.196833081856148, -22.077971894332524 ], [ -47.196745581628576, -22.077953953819804 ], [ -47.196658081418917, -22.077936013258345 ], [ -47.196570581227171, -22.077918072648192 ], [ -47.196483081053344, -22.07790013198931 ], [ -47.19639558089743, -22.077882191281692 ], [ -47.19630808075943, -22.077864250525352 ], [ -47.196220580639348, -22.077846309720279 ], [ -47.19613308053718, -22.077828368866491 ], [ -47.196045580452932, -22.077810427963975 ], [ -47.195958080386596, -22.07779248701274 ], [ -47.19587058033818, -22.07777454601279 ], [ -47.19578308030767, -22.077756604964112 ], [ -47.195695580295087, -22.077738663866718 ], [ -47.195608080300424, -22.077720722720585 ], [ -47.195520580323659, -22.077702781525733 ], [ -47.195433080364822, -22.07768484028216 ], [ -47.195345580423918, -22.077666898989872 ], [ -47.195258080500906, -22.077648957648837 ], [ -47.195170580595828, -22.077631016259108 ], [ -47.195083080708663, -22.077613074820633 ], [ -47.194995580839418, -22.077595133333475 ], [ -47.194908080988078, -22.077577191797548 ], [ -47.19482058115468, -22.077559250212936 ], [ -47.194733081339194, -22.077541308579583 ], [ -47.194645581541621, -22.077523366897513 ], [ -47.194558081761969, -22.077505425166716 ], [ -47.194470582000235, -22.077487483387202 ], [ -47.194442180502016, -22.077481659663864 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 255.38770811399999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196858267866084, -22.077990925254817 ], [ -47.196829959976498, -22.0779851211893 ], [ -47.196742459740847, -22.077967180675561 ], [ -47.196654959523109, -22.07794924011311 ], [ -47.19656745932329, -22.077931299501934 ], [ -47.196479959141385, -22.077913358842039 ], [ -47.196392458977392, -22.077895418133412 ], [ -47.19630495883132, -22.07787747737606 ], [ -47.196217458703153, -22.077859536569985 ], [ -47.196129958592905, -22.077841595715189 ], [ -47.196042458500578, -22.077823654811663 ], [ -47.195954958426164, -22.077805713859416 ], [ -47.195867458369676, -22.077787772858468 ], [ -47.195779958331087, -22.077769831808773 ], [ -47.195692458310418, -22.077751890710367 ], [ -47.195604958307676, -22.077733949563225 ], [ -47.195517458322847, -22.077716008367368 ], [ -47.195429958355945, -22.077698067122782 ], [ -47.195342458406941, -22.077680125829477 ], [ -47.195254958475871, -22.077662184487455 ], [ -47.195167458562707, -22.077644243096714 ], [ -47.195079958667463, -22.077626301657244 ], [ -47.194992458790132, -22.077608360169048 ], [ -47.194904958930735, -22.077590418632134 ], [ -47.194817459089265, -22.077572477046491 ], [ -47.194729959265679, -22.077554535412133 ], [ -47.194642459460049, -22.07753659372905 ], [ -47.194554959672303, -22.077518651997245 ], [ -47.194467459902498, -22.077500710216732 ], [ -47.194442075858355, -22.077495505222391 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 253.50005958599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196840304597877, -22.078001109130476 ], [ -47.196826838096378, -22.077998348046034 ], [ -47.196739337852655, -22.077980407531303 ], [ -47.196651837626838, -22.077962466967847 ], [ -47.196564337418941, -22.077944526355658 ], [ -47.196476837228957, -22.077926585694755 ], [ -47.196389337056885, -22.077908644985119 ], [ -47.196301836902734, -22.07789070422676 ], [ -47.196214336766495, -22.077872763419677 ], [ -47.196126836648169, -22.077854822563868 ], [ -47.196039336547763, -22.077836881659337 ], [ -47.195951836465269, -22.077818940706084 ], [ -47.195864336400703, -22.07780099970412 ], [ -47.195776836354035, -22.07778305865342 ], [ -47.195689336325295, -22.077765117553994 ], [ -47.195601836314474, -22.07774717640585 ], [ -47.195514336321565, -22.077729235208981 ], [ -47.195426836346584, -22.077711293963389 ], [ -47.195339336389502, -22.07769335266908 ], [ -47.195251836450367, -22.077675411326048 ], [ -47.195164336529118, -22.077657469934294 ], [ -47.195076836625802, -22.077639528493798 ], [ -47.194989336740385, -22.077621587004611 ], [ -47.194901836872909, -22.077603645466688 ], [ -47.194814337023359, -22.07758570388004 ], [ -47.194726837191702, -22.077567762244669 ], [ -47.194639337377993, -22.077549820560574 ], [ -47.194551837582175, -22.077531878827759 ], [ -47.194464337804291, -22.077513937046238 ], [ -47.194441971214793, -22.077509350780907 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 251.612411055, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19682234132695, -22.078011293004376 ], [ -47.19673621596398, -22.077993634387013 ], [ -47.196648715730085, -22.077975693822534 ], [ -47.196561215514116, -22.077957753209329 ], [ -47.196473715316053, -22.077939812547424 ], [ -47.196386215135902, -22.077921871836772 ], [ -47.196298714973679, -22.077903931077405 ], [ -47.196211214829354, -22.077885990269319 ], [ -47.196123714702971, -22.077868049412505 ], [ -47.196036214594471, -22.077850108506961 ], [ -47.19594871450392, -22.077832167552696 ], [ -47.195861214431254, -22.077814226549709 ], [ -47.195773714376521, -22.077796285498003 ], [ -47.195686214339709, -22.077778344397583 ], [ -47.195598714320795, -22.07776040324843 ], [ -47.195511214319808, -22.077742462050551 ], [ -47.195423714336748, -22.077724520803951 ], [ -47.195336214371608, -22.077706579508622 ], [ -47.195248714424373, -22.077688638164595 ], [ -47.195161214495066, -22.077670696771829 ], [ -47.195073714583657, -22.077652755330337 ], [ -47.194986214690175, -22.07763481384012 ], [ -47.19489871481462, -22.077616872301189 ], [ -47.194811214956978, -22.077598930713528 ], [ -47.194723715117256, -22.077580989077152 ], [ -47.194636215295461, -22.077563047392051 ], [ -47.194548715491571, -22.077545105658228 ], [ -47.194461215705616, -22.077527163875679 ], [ -47.194441866571346, -22.077523196339374 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 249.724762524, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196804378053329, -22.078021476876494 ], [ -47.196733094074844, -22.078006861242692 ], [ -47.196645593832869, -22.077988920677189 ], [ -47.196558093608822, -22.07797098006299 ], [ -47.196470593402687, -22.077953039400079 ], [ -47.19638309321445, -22.0779350986884 ], [ -47.196295593044148, -22.077917157928034 ], [ -47.196208092891752, -22.077899217118944 ], [ -47.196120592757289, -22.077881276261117 ], [ -47.196033092640711, -22.077863335354568 ], [ -47.195945592542081, -22.077845394399294 ], [ -47.195858092461336, -22.077827453395301 ], [ -47.195770592398524, -22.077809512342579 ], [ -47.195683092353647, -22.077791571241157 ], [ -47.195595592326654, -22.077773630090988 ], [ -47.195508092317588, -22.077755688892104 ], [ -47.195420592326442, -22.077737747644495 ], [ -47.195333092353231, -22.077719806348156 ], [ -47.195245592397917, -22.077701865003117 ], [ -47.195158092460531, -22.077683923609321 ], [ -47.195070592541043, -22.077665982166845 ], [ -47.19498309263949, -22.077648040675619 ], [ -47.194895592755856, -22.077630099135675 ], [ -47.194808092890135, -22.077612157546987 ], [ -47.194720593042334, -22.07759421590962 ], [ -47.19463309321246, -22.077576274223507 ], [ -47.194545593400498, -22.077558332488675 ], [ -47.194458093606471, -22.077540390705124 ], [ -47.194441761928005, -22.077537041897841 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 247.837113996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196786414777037, -22.078031660746827 ], [ -47.196729972185238, -22.078020088098313 ], [ -47.196642471935178, -22.07800214753183 ], [ -47.196554971703051, -22.077984206916614 ], [ -47.196467471488837, -22.077966266252673 ], [ -47.196379971292536, -22.077948325540014 ], [ -47.196292471114148, -22.077930384778625 ], [ -47.196204970953673, -22.077912443968518 ], [ -47.196117470811117, -22.07789450310969 ], [ -47.196029970686482, -22.077876562202128 ], [ -47.195942470579759, -22.077858621245849 ], [ -47.195854970490956, -22.07784068024085 ], [ -47.195767470420066, -22.077822739187123 ], [ -47.195679970367102, -22.077804798084667 ], [ -47.195592470332031, -22.077786856933482 ], [ -47.195504970314879, -22.0777689157336 ], [ -47.195417470315675, -22.077750974484989 ], [ -47.19532997033437, -22.077733033187641 ], [ -47.195242470370992, -22.077715091841579 ], [ -47.195154970425527, -22.077697150446806 ], [ -47.195067470497968, -22.077679209003296 ], [ -47.194979970588328, -22.077661267511068 ], [ -47.194892470696622, -22.077643325970119 ], [ -47.19480497082283, -22.077625384380436 ], [ -47.194717470966957, -22.077607442742039 ], [ -47.19462997112899, -22.07758950105492 ], [ -47.194542471308964, -22.077571559319082 ], [ -47.194454971506836, -22.077553617534516 ], [ -47.19444165728477, -22.077550887456276 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 245.949465465, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196768451498023, -22.078041844615406 ], [ -47.196726850295157, -22.078033314953927 ], [ -47.196639350037024, -22.078015374386435 ], [ -47.196551849796812, -22.077997433770197 ], [ -47.196464349574526, -22.077979493105261 ], [ -47.196376849370147, -22.077961552391596 ], [ -47.196289349183679, -22.077943611629177 ], [ -47.196201849015132, -22.077925670818082 ], [ -47.196114348864498, -22.077907729958238 ], [ -47.196026848731783, -22.077889789049671 ], [ -47.195939348616982, -22.077871848092382 ], [ -47.1958518485201, -22.077853907086379 ], [ -47.195764348441131, -22.077835966031635 ], [ -47.195676848380089, -22.077818024928163 ], [ -47.195589348336945, -22.077800083775987 ], [ -47.195501848311714, -22.077782142575089 ], [ -47.195414348304432, -22.077764201325465 ], [ -47.195326848315055, -22.077746260027119 ], [ -47.195239348343591, -22.077728318680041 ], [ -47.195151848390054, -22.077710377284262 ], [ -47.195064348454416, -22.077692435839722 ], [ -47.194976848536704, -22.0776744943465 ], [ -47.194889348636913, -22.077656552804537 ], [ -47.194801848755041, -22.077638611213853 ], [ -47.19471434889109, -22.077620669574447 ], [ -47.194626849045051, -22.077602727886319 ], [ -47.194539349216946, -22.077584786149465 ], [ -47.19445184940674, -22.077566844363897 ], [ -47.194441552641642, -22.077564733014711 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 63.871578198999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195826408891513, -22.078611374526023 ], [ -47.195767639938289, -22.078599324602472 ], [ -47.195680139397133, -22.078581383540957 ], [ -47.19559263887389, -22.078563442430717 ], [ -47.195505138368581, -22.078545501271751 ], [ -47.195417637881185, -22.078527560064057 ], [ -47.195330137411709, -22.078509618807644 ], [ -47.19524263696016, -22.078491677502523 ], [ -47.195222124233936, -22.078487471515718 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 60.624597434000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195807282053615, -22.078621319755676 ], [ -47.195764517949115, -22.078612551447232 ], [ -47.195677017399881, -22.078594610384709 ], [ -47.195589516868566, -22.078576669273456 ], [ -47.195502016355178, -22.078558728113482 ], [ -47.195414515859703, -22.078540786904782 ], [ -47.195327015382148, -22.078522845647356 ], [ -47.19523951492252, -22.078504904341226 ], [ -47.195233716808147, -22.078503715479957 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 57.377616673, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195788155212909, -22.078631264983294 ], [ -47.195761395959465, -22.078625778291947 ], [ -47.195673895402159, -22.078607837228407 ], [ -47.195586394862779, -22.078589896116149 ], [ -47.195498894341299, -22.078571954955166 ], [ -47.195411393837752, -22.07855401374546 ], [ -47.195323893352118, -22.078536072487026 ], [ -47.195245309385101, -22.078519959443103 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 54.130635909, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195769028369348, -22.078641210208886 ], [ -47.195758273969346, -22.078639005136637 ], [ -47.195670773403961, -22.078621064072095 ], [ -47.195583272856503, -22.078603122958825 ], [ -47.19549577232695, -22.078585181796832 ], [ -47.195408271815324, -22.078567240586118 ], [ -47.195320771321612, -22.078549299326657 ], [ -47.195256901964811, -22.078536203405189 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 50.883655148000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195749901522994, -22.078651155432425 ], [ -47.195667651405302, -22.078634290915733 ], [ -47.195580150849757, -22.07861634980145 ], [ -47.195492650312126, -22.078598408638467 ], [ -47.195405149792435, -22.078580467426729 ], [ -47.195317649290637, -22.078562526166266 ], [ -47.195268494547271, -22.078552447366196 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 47.636674384000003, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195730774673784, -22.078661100653957 ], [ -47.195664529406166, -22.07864751775935 ], [ -47.195577028842543, -22.078629576644065 ], [ -47.195489528296839, -22.078611635480073 ], [ -47.195402027769056, -22.078593694267305 ], [ -47.195314527259193, -22.078575753005854 ], [ -47.195280087132488, -22.07856869132614 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 44.244357946000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.1957102728094, -22.078670763941812 ], [ -47.195661407406554, -22.078660744602939 ], [ -47.195573906834866, -22.078642803486645 ], [ -47.195486406281084, -22.078624862321625 ], [ -47.195398905745215, -22.078606921107877 ], [ -47.195311405227272, -22.078588979845396 ], [ -47.195291679720455, -22.078584935285019 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 40.03999843, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195682088249434, -22.078678851971919 ], [ -47.195658285406473, -22.078673971446495 ], [ -47.195570784826707, -22.078656030329196 ], [ -47.195483284264846, -22.07863808916316 ], [ -47.195395783720897, -22.078620147948396 ], [ -47.195308283194883, -22.078602206684902 ], [ -47.195303272311158, -22.07860117924281 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 35.835638918000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195653903685887, -22.078686939997407 ], [ -47.195567662818078, -22.07866925717169 ], [ -47.195480162248138, -22.078651316004649 ], [ -47.195392661696118, -22.07863337478889 ], [ -47.195314864904631, -22.078617423199546 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 30.282315315000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195625719118674, -22.078695028018299 ], [ -47.195564540808981, -22.078682484014177 ], [ -47.195477040230962, -22.078664542846127 ], [ -47.19538953967087, -22.078646601629352 ], [ -47.195339219964069, -22.07863628399431 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 23.653694408, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195597534547893, -22.078703116034564 ], [ -47.195561418799421, -22.078695710856593 ], [ -47.19547391821331, -22.078677769687555 ], [ -47.195373748351024, -22.078657230738699 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 17.025073497000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195569349973418, -22.078711204046236 ], [ -47.195558296789379, -22.078708937699016 ], [ -47.195470796195195, -22.078690996528966 ], [ -47.195408276747756, -22.078678177474885 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 235.59886194500001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19667863506259, -22.078092763931572 ], [ -47.196623740539167, -22.078081508658929 ], [ -47.196536240258553, -22.078063568037663 ], [ -47.19644873999588, -22.07804562736769 ], [ -47.196361239751106, -22.078027686648973 ], [ -47.196273739524258, -22.078009745881523 ], [ -47.196186239315324, -22.077991805065366 ], [ -47.196098739124309, -22.07797386420048 ], [ -47.196011238951208, -22.077955923286869 ], [ -47.195923738796004, -22.077937982324539 ], [ -47.195836238658735, -22.077920041313476 ], [ -47.195748738539386, -22.077902100253699 ], [ -47.19566123843795, -22.077884159145196 ], [ -47.195573738354426, -22.077866217987975 ], [ -47.195486238288822, -22.077848276782017 ], [ -47.195398738241138, -22.077830335527342 ], [ -47.195311238211367, -22.077812394223958 ], [ -47.195223738199523, -22.077794452871835 ], [ -47.195136238205585, -22.07777651147099 ], [ -47.195048738229573, -22.077758570021427 ], [ -47.194961238271482, -22.077740628523127 ], [ -47.194873738331303, -22.077722686976124 ], [ -47.194786238409051, -22.077704745380402 ], [ -47.194698738504705, -22.077686803735947 ], [ -47.194611238618286, -22.077668862042771 ], [ -47.194523738749787, -22.077650920300879 ], [ -47.194449661146997, -22.077635730737324 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 233.34005120699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196660671767404, -22.078102947789482 ], [ -47.196620618638171, -22.078094735513346 ], [ -47.196533118349492, -22.078076794891068 ], [ -47.196445618078734, -22.078058854220085 ], [ -47.196358117825888, -22.078040913500349 ], [ -47.196270617590962, -22.078022972731905 ], [ -47.196183117373955, -22.078005031914742 ], [ -47.196095617174855, -22.077987091048843 ], [ -47.196008116993667, -22.077969150134223 ], [ -47.195920616830406, -22.077951209170884 ], [ -47.195833116685051, -22.077933268158816 ], [ -47.195745616557623, -22.077915327098022 ], [ -47.195658116448108, -22.077897385988511 ], [ -47.195570616356513, -22.077879444830277 ], [ -47.195483116282823, -22.077861503623296 ], [ -47.195395616227067, -22.07784356236764 ], [ -47.195308116189224, -22.077825621063234 ], [ -47.195220616169301, -22.077807679710091 ], [ -47.195133116167277, -22.077789738308251 ], [ -47.195045616183194, -22.077771796857657 ], [ -47.194958116217023, -22.077753855358374 ], [ -47.194870616268773, -22.077735913810361 ], [ -47.194783116338442, -22.077717972213623 ], [ -47.194695616426017, -22.077700030568163 ], [ -47.194608116531519, -22.077682088873974 ], [ -47.194520616654948, -22.077664147131074 ], [ -47.194453068019804, -22.077650296330038 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 231.08124047199999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196642708469525, -22.078113131645626 ], [ -47.196617496736714, -22.078107962367724 ], [ -47.196529996439949, -22.07809002174443 ], [ -47.196442496161119, -22.078072081072424 ], [ -47.196354995900194, -22.078054140351689 ], [ -47.196267495657189, -22.07803619958225 ], [ -47.196179995432111, -22.078018258764065 ], [ -47.196092495224924, -22.07800031789716 ], [ -47.196004995035665, -22.077982376981524 ], [ -47.195917494864311, -22.077964436017169 ], [ -47.195829994710891, -22.077946495004113 ], [ -47.195742494575384, -22.077928553942311 ], [ -47.19565499445779, -22.077910612831783 ], [ -47.195567494358116, -22.07789267167254 ], [ -47.195479994276369, -22.077874730464568 ], [ -47.195392494212541, -22.077856789207889 ], [ -47.195304994166612, -22.077838847902473 ], [ -47.195217494138589, -22.077820906548318 ], [ -47.195129994128507, -22.077802965145459 ], [ -47.195042494136345, -22.077785023693888 ], [ -47.194954994162096, -22.077767082193581 ], [ -47.194867494205752, -22.077749140644556 ], [ -47.194779994267357, -22.077731199046802 ], [ -47.194692494346867, -22.07771325740033 ], [ -47.194604994444283, -22.077695315705135 ], [ -47.194517494559648, -22.077677373961215 ], [ -47.194456474893435, -22.077664861922575 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 228.82242973699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196624745168961, -22.078123315499976 ], [ -47.19661437483478, -22.07812118922206 ], [ -47.196526874529944, -22.078103248597774 ], [ -47.196439374243035, -22.078085307924756 ], [ -47.196351873974031, -22.078067367203015 ], [ -47.196264373722954, -22.078049426432568 ], [ -47.19617687348979, -22.078031485613373 ], [ -47.196089373274525, -22.07801354474546 ], [ -47.196001873077186, -22.0779956038288 ], [ -47.195914372897761, -22.077977662863454 ], [ -47.195826872736262, -22.077959721849385 ], [ -47.195739372592683, -22.077941780786556 ], [ -47.19565187246701, -22.077923839675037 ], [ -47.195564372359257, -22.077905898514786 ], [ -47.195476872269424, -22.077887957305801 ], [ -47.195389372197525, -22.077870016048109 ], [ -47.19530187214351, -22.077852074741664 ], [ -47.195214372107422, -22.077834133386528 ], [ -47.195126872089254, -22.077816191982656 ], [ -47.19503937208902, -22.07779825053008 ], [ -47.194951872106685, -22.077780309028746 ], [ -47.194864372142284, -22.077762367478723 ], [ -47.194776872195803, -22.077744425879963 ], [ -47.194689372267234, -22.077726484232482 ], [ -47.194601872356571, -22.077708542536275 ], [ -47.194514372463857, -22.077690600791346 ], [ -47.194459881767912, -22.077679427514976 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 226.56361900100001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196606781865697, -22.07813349935256 ], [ -47.196523752619477, -22.078116475451075 ], [ -47.196436252324482, -22.078098534777045 ], [ -47.196348752047399, -22.07808059405431 ], [ -47.19626125178825, -22.078062653282835 ], [ -47.196173751546993, -22.078044712462635 ], [ -47.196086251323663, -22.078026771593709 ], [ -47.195998751118253, -22.078008830676062 ], [ -47.195911250930749, -22.077990889709689 ], [ -47.195823750761164, -22.07797294869459 ], [ -47.195736250609507, -22.07795500763077 ], [ -47.195648750475762, -22.077937066518238 ], [ -47.19556125035993, -22.077919125356971 ], [ -47.195473750262011, -22.077901184146985 ], [ -47.195386250182018, -22.077883242888277 ], [ -47.195298750119946, -22.077865301580847 ], [ -47.195211250075786, -22.077847360224688 ], [ -47.19512375004954, -22.07782941881981 ], [ -47.195036250041227, -22.077811477366208 ], [ -47.19494875005082, -22.077793535863886 ], [ -47.19486125007834, -22.077775594312836 ], [ -47.194773750123758, -22.077757652713075 ], [ -47.194686250187125, -22.077739711064588 ], [ -47.194598750268405, -22.077721769367368 ], [ -47.19451125036759, -22.077703827621434 ], [ -47.194463288643213, -22.077693993107218 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 224.304808264, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196588818559725, -22.078143683203368 ], [ -47.196520630708527, -22.078129702304352 ], [ -47.196433130405453, -22.078111761629316 ], [ -47.196345630120298, -22.078093820905575 ], [ -47.196258129853071, -22.078075880133085 ], [ -47.196170629603735, -22.078057939311879 ], [ -47.196083129372326, -22.078039998441945 ], [ -47.195995629158837, -22.078022057523292 ], [ -47.195908128963254, -22.078004116555906 ], [ -47.19582062878559, -22.077986175539802 ], [ -47.195733128625854, -22.077968234474969 ], [ -47.19564562848403, -22.077950293361429 ], [ -47.195558128360119, -22.077932352199156 ], [ -47.195470628254128, -22.077914410988154 ], [ -47.195383128166064, -22.077896469728444 ], [ -47.195295628095906, -22.077878528419998 ], [ -47.195208128043674, -22.07786058706283 ], [ -47.195120628009349, -22.07784264565694 ], [ -47.195033127992957, -22.077824704202328 ], [ -47.194945627994478, -22.077806762699005 ], [ -47.194858128013919, -22.077788821146942 ], [ -47.194770628051266, -22.077770879546172 ], [ -47.194683128106554, -22.077752937896676 ], [ -47.194595628179755, -22.077734996198448 ], [ -47.194508128270861, -22.077717054451504 ], [ -47.194466695519353, -22.077708558699314 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 222.04599752799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196570855251068, -22.078153867052404 ], [ -47.196517508797101, -22.0781429291576 ], [ -47.196430008485954, -22.078124988481555 ], [ -47.196342508192714, -22.078107047756788 ], [ -47.196255007917401, -22.078089106983292 ], [ -47.19616750766, -22.078071166161077 ], [ -47.196080007420505, -22.078053225290141 ], [ -47.195992507198952, -22.078035284370475 ], [ -47.195905006995289, -22.078017343402095 ], [ -47.195817506809561, -22.077999402384979 ], [ -47.195730006641739, -22.077981461319137 ], [ -47.195642506491858, -22.077963520204573 ], [ -47.195555006359854, -22.077945579041295 ], [ -47.195467506245791, -22.077927637829287 ], [ -47.195380006149634, -22.077909696568554 ], [ -47.195292506071411, -22.077891755259103 ], [ -47.195205006011093, -22.077873813900943 ], [ -47.195117505968696, -22.077855872494045 ], [ -47.195030005944218, -22.077837931038424 ], [ -47.194942505937661, -22.077819989534078 ], [ -47.194855005949023, -22.077802047981013 ], [ -47.194767505978312, -22.077784106379227 ], [ -47.194680006025493, -22.077766164728729 ], [ -47.194592506090608, -22.077748223029499 ], [ -47.194505006173664, -22.077730281281532 ], [ -47.194470102396323, -22.077723124291257 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 219.78718679100001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196552891939696, -22.078164050899662 ], [ -47.196514386885205, -22.07815615601082 ], [ -47.19642688656598, -22.078138215333762 ], [ -47.196339386264668, -22.078120274607986 ], [ -47.196251885981276, -22.078102333833485 ], [ -47.196164385715797, -22.078084393010258 ], [ -47.196076885468223, -22.078066452138312 ], [ -47.19598938523859, -22.078048511217624 ], [ -47.195901885026856, -22.078030570248245 ], [ -47.195814384833042, -22.078012629230123 ], [ -47.195726884657148, -22.077994688163276 ], [ -47.195639384499181, -22.077976747047678 ], [ -47.195551884359105, -22.077958805883412 ], [ -47.195464384236963, -22.077940864670378 ], [ -47.195376884132735, -22.077922923408654 ], [ -47.195289384046426, -22.077904982098193 ], [ -47.195201883978044, -22.077887040739025 ], [ -47.19511438392756, -22.0778690993311 ], [ -47.195026883895004, -22.077851157874484 ], [ -47.194939383880374, -22.077833216369129 ], [ -47.194851883883651, -22.077815274815055 ], [ -47.194764383904875, -22.077797333212256 ], [ -47.194676883943984, -22.077779391560753 ], [ -47.19458938400102, -22.077761449860496 ], [ -47.194501884075997, -22.077743508111535 ], [ -47.194473509274133, -22.077737689883048 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 217.528376055, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196534928625653, -22.078174234745141 ], [ -47.196511264972855, -22.078169382863987 ], [ -47.196423764645544, -22.078151442185924 ], [ -47.196336264336161, -22.078133501459135 ], [ -47.196248764044682, -22.078115560683635 ], [ -47.196161263771124, -22.078097619859395 ], [ -47.196073763515479, -22.078079678986445 ], [ -47.19598626327776, -22.078061738064765 ], [ -47.195898763057954, -22.078043797094349 ], [ -47.195811262856068, -22.078025856075222 ], [ -47.195723762672081, -22.078007915007369 ], [ -47.195636262506028, -22.077989973890784 ], [ -47.195548762357888, -22.077972032725484 ], [ -47.19546126222766, -22.077954091511454 ], [ -47.195373762115366, -22.077936150248707 ], [ -47.195286262020993, -22.077918208937234 ], [ -47.195198761944511, -22.07790026757705 ], [ -47.195111261885963, -22.07788232616814 ], [ -47.195023761845327, -22.077864384710498 ], [ -47.194936261822619, -22.077846443204134 ], [ -47.194848761817831, -22.077828501649051 ], [ -47.194761261830955, -22.07781056004524 ], [ -47.194673761861985, -22.077792618392706 ], [ -47.194586261910956, -22.077774676691469 ], [ -47.19449876197784, -22.077756734941492 ], [ -47.194476916152773, -22.077752255474685 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 215.26956531799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196516965308895, -22.078184418588847 ], [ -47.196508143060022, -22.078182609717143 ], [ -47.196420642724632, -22.07816466903807 ], [ -47.19633314240717, -22.078146728310273 ], [ -47.196245642107613, -22.078128787533757 ], [ -47.196158141825983, -22.078110846708498 ], [ -47.196070641562258, -22.078092905834549 ], [ -47.195983141316454, -22.078074964911846 ], [ -47.195895641088576, -22.078057023940438 ], [ -47.195808140878611, -22.078039082920306 ], [ -47.195720640686552, -22.07802114185144 ], [ -47.19563314051242, -22.078003200733846 ], [ -47.195545640356201, -22.077985259567537 ], [ -47.195458140217895, -22.077967318352503 ], [ -47.195370640097522, -22.077949377088743 ], [ -47.19528313999507, -22.077931435776257 ], [ -47.195195639910516, -22.077913494415064 ], [ -47.195108139843889, -22.077895553005149 ], [ -47.195020639795175, -22.077877611546494 ], [ -47.194933139764387, -22.077859670039125 ], [ -47.19484563975152, -22.077841728483026 ], [ -47.194758139756566, -22.077823786878209 ], [ -47.194670639779524, -22.077805845224667 ], [ -47.194583139820423, -22.077787903522413 ], [ -47.194495639879229, -22.077769961771434 ], [ -47.194480323032252, -22.077766821066167 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 213.01075458400001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196499001989473, -22.078194602430766 ], [ -47.196417520803244, -22.078177895890168 ], [ -47.19633002047771, -22.078159955161357 ], [ -47.196242520170074, -22.078142014383829 ], [ -47.196155019880358, -22.078124073557571 ], [ -47.196067519608562, -22.07810613268261 ], [ -47.195980019354685, -22.078088191758905 ], [ -47.195892519118722, -22.078070250786475 ], [ -47.195805018900693, -22.07805230976534 ], [ -47.195717518700555, -22.078034368695466 ], [ -47.195630018518351, -22.078016427576859 ], [ -47.195542518354053, -22.077998486409545 ], [ -47.19545501820766, -22.077980545193501 ], [ -47.195367518079216, -22.077962603928732 ], [ -47.19528001796867, -22.077944662615238 ], [ -47.195192517876045, -22.077926721253029 ], [ -47.195105017801339, -22.077908779842094 ], [ -47.195017517744567, -22.077890838382437 ], [ -47.194930017705687, -22.077872896874069 ], [ -47.194842517684741, -22.077854955316962 ], [ -47.194755017681722, -22.077837013711132 ], [ -47.194667517696594, -22.077819072056585 ], [ -47.1945800177294, -22.077801130353322 ], [ -47.194492517780134, -22.077783188601327 ], [ -47.194483729912555, -22.077781386657502 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 210.75274613900001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196481046257738, -22.078204787827229 ], [ -47.196414398881387, -22.07819112274225 ], [ -47.196326898547774, -22.078173182012431 ], [ -47.196239398232066, -22.078155241233894 ], [ -47.196151897934271, -22.078137300406631 ], [ -47.196064397654403, -22.078119359530653 ], [ -47.195976897392441, -22.078101418605922 ], [ -47.195889397148399, -22.078083477632504 ], [ -47.195801896922291, -22.07806553661035 ], [ -47.195714396714074, -22.078047595539456 ], [ -47.195626896523791, -22.078029654419861 ], [ -47.195539396351421, -22.078011713251534 ], [ -47.19545189619695, -22.077993772034482 ], [ -47.195364396060427, -22.077975830768704 ], [ -47.195276895941802, -22.077957889454204 ], [ -47.195189395841098, -22.077939948090979 ], [ -47.195101895758327, -22.077922006679042 ], [ -47.19501439569347, -22.077904065218373 ], [ -47.19492689564651, -22.077886123708993 ], [ -47.194839395617485, -22.07786818215088 ], [ -47.194751895606394, -22.077850240544041 ], [ -47.194664395613188, -22.077832298888481 ], [ -47.194576895637923, -22.077814357184209 ], [ -47.194489395680577, -22.077796415431191 ], [ -47.194487136793697, -22.077795952248664 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 206.39022153499999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196463122547321, -22.078214979787965 ], [ -47.196411276959061, -22.078204349594284 ], [ -47.196323776617362, -22.078186408863456 ], [ -47.196236276293583, -22.078168468083909 ], [ -47.196148775987709, -22.078150527255637 ], [ -47.196061275699762, -22.078132586378658 ], [ -47.195973775429728, -22.078114645452935 ], [ -47.195886275177614, -22.078096704478479 ], [ -47.19579877494342, -22.078078763455313 ], [ -47.195711274727138, -22.078060822383417 ], [ -47.195623774528748, -22.078042881262817 ], [ -47.195536274348321, -22.078024940093481 ], [ -47.19544877418577, -22.078006998875427 ], [ -47.195361274041161, -22.077989057608637 ], [ -47.195273773914465, -22.077971116293128 ], [ -47.195186273805689, -22.077953174928886 ], [ -47.195098773714825, -22.077935233515937 ], [ -47.195011273641889, -22.077917292054263 ], [ -47.194923773586865, -22.07789935054387 ], [ -47.194836273549768, -22.077881408984744 ], [ -47.194748773530584, -22.077863467376897 ], [ -47.19466127352932, -22.077845525720353 ], [ -47.194573773545983, -22.077827584015047 ], [ -47.194510486260711, -22.077814607044829 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 200.81868397299999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196445198834198, -22.078225171746951 ], [ -47.196408155036266, -22.078217576446299 ], [ -47.196320654686488, -22.078199635714466 ], [ -47.19623315435463, -22.07818169493391 ], [ -47.196145654040684, -22.078163754104629 ], [ -47.196058153744659, -22.078145813226637 ], [ -47.195970653466546, -22.078127872299891 ], [ -47.195883153206346, -22.078109931324448 ], [ -47.19579565296408, -22.078091990300265 ], [ -47.195708152739719, -22.078074049227347 ], [ -47.195620652533258, -22.078056108105752 ], [ -47.195533152344744, -22.078038166935389 ], [ -47.195445652174122, -22.078020225716337 ], [ -47.195358152021434, -22.078002284448548 ], [ -47.195270651886659, -22.077984343132012 ], [ -47.195183151769804, -22.077966401766776 ], [ -47.195095651670869, -22.077948460352818 ], [ -47.195008151589853, -22.077930518890113 ], [ -47.194920651526751, -22.077912577378729 ], [ -47.194833151481575, -22.077894635818602 ], [ -47.194745651454312, -22.077876694209724 ], [ -47.194658151444976, -22.077858752552185 ], [ -47.194570651453553, -22.07784081084586 ], [ -47.194545274054626, -22.077835607248822 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 195.24714641200001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196427275118396, -22.078235363704149 ], [ -47.196405033112995, -22.078230803298268 ], [ -47.196317532755145, -22.078212862565419 ], [ -47.196230032415194, -22.078194921783865 ], [ -47.196142532093177, -22.078176980953582 ], [ -47.196055031789065, -22.078159040074564 ], [ -47.195967531502887, -22.078141099146826 ], [ -47.195880031234609, -22.078123158170357 ], [ -47.195792530984257, -22.078105217145172 ], [ -47.195705030751824, -22.078087276071262 ], [ -47.195617530537305, -22.07806933494863 ], [ -47.195530030340691, -22.078051393777283 ], [ -47.195442530162005, -22.0780334525572 ], [ -47.195355030001231, -22.078015511288395 ], [ -47.195267529858391, -22.077997569970879 ], [ -47.195180029733457, -22.077979628604627 ], [ -47.195092529626443, -22.077961687189653 ], [ -47.195005029537356, -22.077943745725964 ], [ -47.194917529466167, -22.077925804213542 ], [ -47.194830029412913, -22.077907862652399 ], [ -47.194742529377578, -22.077889921042537 ], [ -47.19465502936017, -22.07787197938395 ], [ -47.194580061858417, -22.077856607444517 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 189.67560885, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196409351399915, -22.078245555659571 ], [ -47.196401911189248, -22.078244030150206 ], [ -47.196314410823334, -22.078226089416365 ], [ -47.196226910475303, -22.078208148633799 ], [ -47.196139410145207, -22.078190207802507 ], [ -47.196051909833024, -22.078172266922486 ], [ -47.19596440953876, -22.078154325993719 ], [ -47.195876909262402, -22.078136385016258 ], [ -47.195789409003979, -22.078118443990068 ], [ -47.195701908763461, -22.078100502915149 ], [ -47.195614408540862, -22.078082561791501 ], [ -47.195526908336177, -22.078064620619145 ], [ -47.195439408149412, -22.078046679398057 ], [ -47.195351907980566, -22.078028738128246 ], [ -47.19526440782964, -22.078010796809714 ], [ -47.195176907696627, -22.077992855442449 ], [ -47.195089407581534, -22.07797491402647 ], [ -47.195001907484382, -22.077956972561775 ], [ -47.194914407405115, -22.077939031048349 ], [ -47.194826907343774, -22.077921089486193 ], [ -47.194739407300368, -22.077903147875318 ], [ -47.194651907274881, -22.077885206215718 ], [ -47.194614849672142, -22.077877607631923 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 184.10407128899999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196391427678726, -22.078255747613248 ], [ -47.196311288891039, -22.078239316267272 ], [ -47.196223788534944, -22.078221375483686 ], [ -47.196136288196769, -22.078203434651378 ], [ -47.196048787876506, -22.078185493770345 ], [ -47.195961287574157, -22.078167552840608 ], [ -47.195873787289727, -22.078149611862116 ], [ -47.195786287023218, -22.078131670834914 ], [ -47.195698786774628, -22.078113729758982 ], [ -47.195611286543951, -22.078095788634325 ], [ -47.195523786331194, -22.07807784746096 ], [ -47.195436286136342, -22.078059906238867 ], [ -47.195348785959439, -22.078041964968047 ], [ -47.19526128580042, -22.078024023648489 ], [ -47.195173785659343, -22.078006082280229 ], [ -47.195086285536163, -22.077988140863248 ], [ -47.194998785430904, -22.077970199397534 ], [ -47.194911285343586, -22.077952257883091 ], [ -47.194823785274167, -22.077934316319933 ], [ -47.194736285222682, -22.07791637470805 ], [ -47.194649637495715, -22.077898607811015 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 177.98307720599999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196373503954838, -22.078265939565153 ], [ -47.196308166958282, -22.078252543118154 ], [ -47.196220666594101, -22.078234602333559 ], [ -47.196133166247854, -22.078216661500239 ], [ -47.196045665919513, -22.0781987206182 ], [ -47.195958165609092, -22.078180779687454 ], [ -47.195870665316576, -22.078162838707936 ], [ -47.195783165041995, -22.078144897679742 ], [ -47.195695664785326, -22.078126956602784 ], [ -47.19560816454657, -22.078109015477139 ], [ -47.195520664325734, -22.078091074302762 ], [ -47.195433164122811, -22.078073133079659 ], [ -47.195345663937822, -22.07805519180781 ], [ -47.195258163770731, -22.078037250487267 ], [ -47.195170663621575, -22.078019309117995 ], [ -47.195083163490317, -22.078001367699997 ], [ -47.194995663376986, -22.077983426233274 ], [ -47.194908163281589, -22.077965484717822 ], [ -47.194820663204098, -22.077947543153655 ], [ -47.194733163144527, -22.077929601540745 ], [ -47.194689623672694, -22.077920673889032 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 171.705212905, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196355580228293, -22.078276131515274 ], [ -47.196305045025042, -22.078265769968986 ], [ -47.196217544652804, -22.078247829183393 ], [ -47.196130044298457, -22.078229888349057 ], [ -47.196042543962051, -22.078211947466009 ], [ -47.195955043643544, -22.078194006534233 ], [ -47.195867543342978, -22.078176065553745 ], [ -47.195780043060303, -22.078158124524528 ], [ -47.195692542795548, -22.078140183446578 ], [ -47.195605042548721, -22.078122242319903 ], [ -47.195517542319806, -22.078104301144513 ], [ -47.195430042108796, -22.078086359920395 ], [ -47.195342541915721, -22.07806841864755 ], [ -47.195255041740566, -22.078050477325988 ], [ -47.195167541583324, -22.078032535955714 ], [ -47.195080041444008, -22.078014594536707 ], [ -47.194992541322591, -22.077996653068965 ], [ -47.194905041219108, -22.077978711552515 ], [ -47.194817541133538, -22.077960769987332 ], [ -47.194731093992502, -22.077943044273034 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 165.42734860100001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196337656499011, -22.078286323463647 ], [ -47.19630192309134, -22.078278996819805 ], [ -47.196214422711023, -22.078261056033202 ], [ -47.19612692234859, -22.078243115197857 ], [ -47.196039422004112, -22.0782251743138 ], [ -47.195951921677533, -22.078207233381018 ], [ -47.195864421368888, -22.078189292399518 ], [ -47.195776921078142, -22.078171351369292 ], [ -47.195689420805294, -22.078153410290319 ], [ -47.195601920550395, -22.078135469162646 ], [ -47.195514420313408, -22.078117527986254 ], [ -47.195426920094327, -22.078099586761127 ], [ -47.195339419893173, -22.078081645487266 ], [ -47.195251919709939, -22.078063704164695 ], [ -47.195164419544618, -22.078045762793423 ], [ -47.195076919397223, -22.078027821373379 ], [ -47.194989419267735, -22.078009879904645 ], [ -47.194901919156166, -22.077991938387182 ], [ -47.194814419062524, -22.077973996820994 ], [ -47.194772564324744, -22.077965414645387 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 159.149484304, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196319732767066, -22.078296515410244 ], [ -47.19629880115717, -22.078292223670573 ], [ -47.196211300768773, -22.078274282882955 ], [ -47.196123800398283, -22.078256342046608 ], [ -47.196036300045698, -22.078238401161542 ], [ -47.19594879971104, -22.078220460227747 ], [ -47.195861299394309, -22.078202519245238 ], [ -47.195773799095484, -22.078184578214 ], [ -47.195686298814572, -22.078166637134043 ], [ -47.1955987985516, -22.078148696005353 ], [ -47.195511298306535, -22.078130754827942 ], [ -47.195423798079375, -22.078112813601802 ], [ -47.195336297870149, -22.07809487232694 ], [ -47.195248797678822, -22.078076931003356 ], [ -47.195161297505429, -22.07805898963105 ], [ -47.195073797349956, -22.078041048210022 ], [ -47.194986297212409, -22.078023106740279 ], [ -47.194898797092755, -22.078005165221807 ], [ -47.194814034669328, -22.077987785006055 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 152.87162, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196301809032413, -22.078306707355079 ], [ -47.196295679222523, -22.078305450521331 ], [ -47.196208178826048, -22.078287509732686 ], [ -47.196120678447485, -22.078269568895351 ], [ -47.196033178086815, -22.078251628009269 ], [ -47.195945677744085, -22.078233687074466 ], [ -47.195858177419275, -22.07821574609094 ], [ -47.195770677112378, -22.078197805058704 ], [ -47.195683176823387, -22.078179863977734 ], [ -47.19559567655233, -22.078161922848039 ], [ -47.195508176299192, -22.078143981669616 ], [ -47.195420676063954, -22.078126040442466 ], [ -47.195333175846649, -22.078108099166599 ], [ -47.19524567564725, -22.078090157842006 ], [ -47.195158175465778, -22.078072216468687 ], [ -47.195070675302226, -22.07805427504665 ], [ -47.194983175156601, -22.078036333575898 ], [ -47.194895675028874, -22.078018392056418 ], [ -47.194855505026403, -22.078010155355088 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 148.90590210900001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196283885295067, -22.078316899298148 ], [ -47.196205056882853, -22.078300736582406 ], [ -47.196117556496198, -22.078282795744038 ], [ -47.196030056127476, -22.078264854856947 ], [ -47.195942555776668, -22.078246913921152 ], [ -47.195855055443772, -22.078228972936618 ], [ -47.195767555128796, -22.078211031903351 ], [ -47.195680054831733, -22.078193090821383 ], [ -47.195592554552583, -22.078175149690672 ], [ -47.195505054291374, -22.078157208511236 ], [ -47.195417554048063, -22.078139267283085 ], [ -47.195330053822687, -22.078121326006205 ], [ -47.195242553615195, -22.078103384680603 ], [ -47.195155053425651, -22.078085443306289 ], [ -47.19506755325402, -22.078067501883236 ], [ -47.194980053100309, -22.078049560411465 ], [ -47.194892552964525, -22.078031618890968 ], [ -47.194875100429606, -22.078028040318685 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 145.68518414299999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196265961555056, -22.078327091239444 ], [ -47.196201934939182, -22.078313963432073 ], [ -47.196114434544455, -22.078296022592713 ], [ -47.196026934167648, -22.078278081704617 ], [ -47.195939433808775, -22.07826014076781 ], [ -47.195851933467793, -22.078242199782249 ], [ -47.195764433144738, -22.078224258747973 ], [ -47.195676932839604, -22.078206317665 ], [ -47.195589432552374, -22.078188376533287 ], [ -47.195501932283079, -22.078170435352853 ], [ -47.195414432031697, -22.078152494123685 ], [ -47.195326931798242, -22.078134552845778 ], [ -47.195239431582685, -22.078116611519185 ], [ -47.195151931385062, -22.078098670143863 ], [ -47.195064431205346, -22.078080728719783 ], [ -47.194976931043563, -22.078062787247017 ], [ -47.194889430899693, -22.078044845725515 ], [ -47.194887647473536, -22.078044480041239 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 142.510649543, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196248474749623, -22.078337372767098 ], [ -47.196198812995029, -22.078327190281719 ], [ -47.196111312592244, -22.07830924944134 ], [ -47.196023812207365, -22.078291308552231 ], [ -47.195936311840391, -22.078273367614397 ], [ -47.195848811491352, -22.078255426627848 ], [ -47.195761311160211, -22.078237485592584 ], [ -47.195673810846998, -22.078219544508581 ], [ -47.195586310551704, -22.078201603375859 ], [ -47.19549881027433, -22.078183662194405 ], [ -47.195411310014862, -22.07816572096424 ], [ -47.195323809773328, -22.078147779685342 ], [ -47.195236309549706, -22.078129838357718 ], [ -47.195148809343983, -22.078111896981373 ], [ -47.195061309156216, -22.078093955556302 ], [ -47.194973808986333, -22.078076014082519 ], [ -47.19490019452045, -22.078060919762546 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 140.58859476399999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196242837558231, -22.078350083898716 ], [ -47.19619569105042, -22.07834041713134 ], [ -47.196108190639556, -22.078322476289951 ], [ -47.196020690246598, -22.078304535399834 ], [ -47.195933189871546, -22.078286594460995 ], [ -47.195845689514428, -22.07826865347343 ], [ -47.195758189175223, -22.078250712437161 ], [ -47.195670688853923, -22.078232771352134 ], [ -47.19558318855055, -22.07821483021841 ], [ -47.195495688265098, -22.078196889035954 ], [ -47.19540818799755, -22.078178947804773 ], [ -47.195320687747937, -22.078161006524866 ], [ -47.195233187516244, -22.078143065196237 ], [ -47.19514568730245, -22.078125123818882 ], [ -47.195058187106603, -22.078107182392809 ], [ -47.194970686928642, -22.078089240918015 ], [ -47.19491274157037, -22.078077359482648 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 138.666539986, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196237200365921, -22.078362795030195 ], [ -47.196192569105357, -22.078353643980911 ], [ -47.196105068686393, -22.07833570313851 ], [ -47.19601756828537, -22.078317762247387 ], [ -47.195930067902246, -22.078299821307539 ], [ -47.195842567537035, -22.078281880318965 ], [ -47.195755067189744, -22.078263939281669 ], [ -47.195667566860379, -22.078245998195648 ], [ -47.195580066548928, -22.078228057060919 ], [ -47.195492566255396, -22.07821011587745 ], [ -47.19540506597977, -22.078192174645263 ], [ -47.195317565722085, -22.078174233364344 ], [ -47.195230065482299, -22.078156292034706 ], [ -47.195142565260433, -22.078138350656342 ], [ -47.195055065056501, -22.07812040922926 ], [ -47.194967564870474, -22.078102467753464 ], [ -47.194925288623281, -22.078093799201504 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 136.74448520799999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196231563172695, -22.078375506161532 ], [ -47.196189447159803, -22.078366870830447 ], [ -47.19610194673276, -22.078348929987062 ], [ -47.196014446323659, -22.078330989094926 ], [ -47.195926945932456, -22.078313048154069 ], [ -47.195839445559173, -22.078295107164486 ], [ -47.19575194520381, -22.078277166126181 ], [ -47.19566444486636, -22.078259225039151 ], [ -47.195576944546836, -22.078241283903413 ], [ -47.195489444245226, -22.078223342718935 ], [ -47.195401943961514, -22.078205401485736 ], [ -47.19531444369575, -22.078187460203811 ], [ -47.195226943447899, -22.07816951887316 ], [ -47.195139443217954, -22.078151577493788 ], [ -47.195051943005943, -22.07813363606569 ], [ -47.194964442811845, -22.078115694588892 ], [ -47.194937835679184, -22.078110238919127 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 134.82243043099999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196225925978531, -22.078388217292762 ], [ -47.196186325213766, -22.078380097679972 ], [ -47.196098824778666, -22.078362156835553 ], [ -47.196011324361479, -22.078344215942412 ], [ -47.195923823962211, -22.078326275000567 ], [ -47.195836323580842, -22.078308334009972 ], [ -47.195748823217407, -22.078290392970651 ], [ -47.195661322871864, -22.078272451882601 ], [ -47.195573822544269, -22.07825451074584 ], [ -47.195486322234579, -22.07823656956036 ], [ -47.19539882194281, -22.078218628326159 ], [ -47.19531132166896, -22.078200687043228 ], [ -47.195223821413016, -22.078182745711569 ], [ -47.195136321175006, -22.078164804331202 ], [ -47.195048820954916, -22.078146862902098 ], [ -47.194961320752732, -22.07812892142427 ], [ -47.194950382738092, -22.07812667863551 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 132.90037565200001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196220288783458, -22.078400928423861 ], [ -47.196183203267275, -22.078393324529465 ], [ -47.196095702824095, -22.078375383684037 ], [ -47.196008202398829, -22.078357442789887 ], [ -47.195920701991483, -22.078339501847029 ], [ -47.195833201602035, -22.078321560855432 ], [ -47.195745701230521, -22.078303619815088 ], [ -47.195658200876913, -22.078285678726044 ], [ -47.195570700541232, -22.07826773758827 ], [ -47.195483200223464, -22.078249796401778 ], [ -47.195395699923615, -22.078231855166567 ], [ -47.195308199641687, -22.078213913882625 ], [ -47.195220699377671, -22.07819597254996 ], [ -47.195133199131583, -22.078178031168584 ], [ -47.195045698903414, -22.078160089738454 ], [ -47.194962929799999, -22.078143118350681 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 130.978320876, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196214651587461, -22.078413639554821 ], [ -47.196180081320321, -22.078406551378912 ], [ -47.196092580869063, -22.078388610532471 ], [ -47.196005080435711, -22.078370669637312 ], [ -47.195917580020286, -22.078352728693432 ], [ -47.195830079622759, -22.078334787700832 ], [ -47.195742579243174, -22.078316846659501 ], [ -47.195655078881487, -22.078298905569433 ], [ -47.195567578537734, -22.07828096443065 ], [ -47.195480078211887, -22.078263023243164 ], [ -47.195392577903959, -22.07824508200693 ], [ -47.195305077613952, -22.078227140721978 ], [ -47.195217577341857, -22.078209199388301 ], [ -47.195130077087697, -22.078191258005901 ], [ -47.195042576851428, -22.078173316574777 ], [ -47.194975476864883, -22.078159558064588 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 129.05626609800001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196209014390547, -22.078426350685646 ], [ -47.196176959372885, -22.078419778228326 ], [ -47.196089458913548, -22.078401837380891 ], [ -47.196001958472117, -22.07838389648472 ], [ -47.19591445804862, -22.07836595553983 ], [ -47.195826957643014, -22.078348014546226 ], [ -47.195739457255343, -22.078330073503864 ], [ -47.195651956885591, -22.078312132412805 ], [ -47.195564456533752, -22.078294191273017 ], [ -47.195476956199833, -22.078276250084514 ], [ -47.19538945588382, -22.078258308847278 ], [ -47.195301955585734, -22.078240367561314 ], [ -47.195214455305567, -22.078222426226628 ], [ -47.195126955043328, -22.078204484843223 ], [ -47.195039454798987, -22.078186543411089 ], [ -47.19498802393278, -22.078175997777283 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 127.134211322, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19620337719271, -22.078439061816358 ], [ -47.196173837424986, -22.078433005077724 ], [ -47.196086336957549, -22.078415064229258 ], [ -47.195998836508053, -22.078397123332085 ], [ -47.195911336076485, -22.078379182386179 ], [ -47.1958238356628, -22.078361241391555 ], [ -47.195736335267043, -22.078343300348212 ], [ -47.195648834889205, -22.078325359256141 ], [ -47.195561334529295, -22.078307418115347 ], [ -47.19547383418729, -22.078289476925825 ], [ -47.195386333863212, -22.078271535687577 ], [ -47.195298833557054, -22.078253594400607 ], [ -47.195211333268809, -22.078235653064912 ], [ -47.195123832998483, -22.078217711680487 ], [ -47.195036332746071, -22.078199770247348 ], [ -47.195000571003654, -22.078192437488728 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 122.914261799, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196175999771157, -22.078447315402176 ], [ -47.196170715476605, -22.078446231927074 ], [ -47.196083215001096, -22.078428291077618 ], [ -47.195995714543521, -22.078410350179432 ], [ -47.195908214103873, -22.078392409232521 ], [ -47.19582071368211, -22.078374468236884 ], [ -47.195733213278274, -22.078356527192529 ], [ -47.195645712892365, -22.078338586099456 ], [ -47.195558212524375, -22.078320644957653 ], [ -47.195470712174291, -22.078302703767118 ], [ -47.195383211842135, -22.078284762527861 ], [ -47.195295711527898, -22.078266821239879 ], [ -47.195208211231574, -22.078248879903175 ], [ -47.195120710953177, -22.078230938517745 ], [ -47.195033210692692, -22.078212997083593 ], [ -47.195013118077547, -22.078208877198961 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 118.227197244, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19614420300308, -22.078454662854828 ], [ -47.196080093044174, -22.078441517925928 ], [ -47.195992592578513, -22.078423577026733 ], [ -47.195905092130772, -22.078405636078816 ], [ -47.195817591700958, -22.078387695082171 ], [ -47.195730091289057, -22.078369754036803 ], [ -47.195642590895055, -22.078351812942714 ], [ -47.19555509051898, -22.078333871799906 ], [ -47.195467590160831, -22.078315930608362 ], [ -47.195380089820581, -22.078297989368089 ], [ -47.19529258949828, -22.078280048079105 ], [ -47.19520508919387, -22.078262106741388 ], [ -47.195117588907394, -22.078244165354953 ], [ -47.195025665154425, -22.078225316907954 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 113.540132687, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196112406231151, -22.078462010301568 ], [ -47.196076971086782, -22.078454744774223 ], [ -47.195989470613043, -22.07843680387402 ], [ -47.195901970157216, -22.078418862925098 ], [ -47.19581446971933, -22.078400921927422 ], [ -47.195726969299351, -22.078382980881059 ], [ -47.195639468897269, -22.078365039785954 ], [ -47.195551968513115, -22.078347098642141 ], [ -47.195464468146888, -22.07832915744957 ], [ -47.195376967798559, -22.078311216208288 ], [ -47.195289467468186, -22.078293274918316 ], [ -47.195201967155697, -22.078275333579594 ], [ -47.195114466861142, -22.078257392192146 ], [ -47.195038212234309, -22.078241756615718 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 108.85306813699999, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196080609455436, -22.078469357742364 ], [ -47.195986348647089, -22.078450030721253 ], [ -47.195898848183191, -22.078432089771304 ], [ -47.195811347737219, -22.078414148772652 ], [ -47.195723847309154, -22.078396207725266 ], [ -47.195636346899001, -22.078378266629159 ], [ -47.195548846506775, -22.078360325484315 ], [ -47.195461346132475, -22.07834238429076 ], [ -47.195373845776075, -22.078324443048484 ], [ -47.195286345437609, -22.078306501757478 ], [ -47.195198845117062, -22.078288560417747 ], [ -47.195111344814421, -22.078270619029286 ], [ -47.195050759317176, -22.078258196322238 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 104.16600358, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196048812675819, -22.078476705177248 ], [ -47.195983226680674, -22.078463257568476 ], [ -47.19589572620869, -22.078445316617497 ], [ -47.195808225754647, -22.078427375617853 ], [ -47.195720725318502, -22.078409434569458 ], [ -47.195633224900277, -22.078391493472338 ], [ -47.195545724499965, -22.078373552326493 ], [ -47.195458224117594, -22.078355611131926 ], [ -47.195370723753115, -22.078337669888644 ], [ -47.19528322340657, -22.078319728596618 ], [ -47.195195723077951, -22.078301787255878 ], [ -47.195108222767225, -22.078283845866416 ], [ -47.19506330640305, -22.078274636027533 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 99.814079354, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196020186632104, -22.078484702727604 ], [ -47.195980104713783, -22.078476484415653 ], [ -47.195892604233734, -22.078458543463693 ], [ -47.195805103771598, -22.078440602463008 ], [ -47.195717603327374, -22.078422661413594 ], [ -47.195630102901077, -22.078404720315476 ], [ -47.195542602492694, -22.078386779168621 ], [ -47.195455102102223, -22.078368837973041 ], [ -47.195367601729679, -22.078350896728747 ], [ -47.195280101375054, -22.078332955435727 ], [ -47.195192601038343, -22.078315014093977 ], [ -47.195105100719559, -22.078297072703499 ], [ -47.195075853491907, -22.078291075731585 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 96.852763023999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.196004717031641, -22.078495397843074 ], [ -47.195976982746409, -22.078489711262797 ], [ -47.195889482258295, -22.078471770309836 ], [ -47.19580198178808, -22.078453829308145 ], [ -47.195714481335784, -22.078435888257729 ], [ -47.195626980901409, -22.078417947158599 ], [ -47.195539480484939, -22.078400006010732 ], [ -47.195451980086396, -22.078382064814143 ], [ -47.195364479705781, -22.078364123568836 ], [ -47.195276979343078, -22.078346182274814 ], [ -47.195189478998287, -22.078328240932056 ], [ -47.195101978671424, -22.078310299540551 ], [ -47.195088400583764, -22.07830751543441 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 93.891446692000002, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195989247428784, -22.078506092957262 ], [ -47.195973860778587, -22.078502938109914 ], [ -47.19588636028238, -22.078484997155936 ], [ -47.1957988598041, -22.078467056153237 ], [ -47.195711359343711, -22.078449115101808 ], [ -47.195623858901264, -22.078431174001661 ], [ -47.19553635847673, -22.078413232852785 ], [ -47.195448858070094, -22.078395291655205 ], [ -47.195361357681406, -22.078377350408875 ], [ -47.195273857310617, -22.078359409113819 ], [ -47.195186356957755, -22.078341467770066 ], [ -47.195100947678625, -22.078323955136018 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 90.930130358, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195973777823511, -22.078516788070178 ], [ -47.195970738810288, -22.078516164957005 ], [ -47.195883238305996, -22.078498224002004 ], [ -47.195795737819644, -22.07848028299831 ], [ -47.195708237351184, -22.07846234194588 ], [ -47.195620736900651, -22.078444400844717 ], [ -47.19553323646803, -22.078426459694835 ], [ -47.19544573605333, -22.078408518496243 ], [ -47.195358235656549, -22.078390577248886 ], [ -47.195270735277695, -22.078372635952842 ], [ -47.195183234916755, -22.07835469460808 ], [ -47.195113494776486, -22.078340394836392 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 87.968814029000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195958308215872, -22.078527483181787 ], [ -47.195880116329135, -22.078511450848058 ], [ -47.195792615834705, -22.078493509843344 ], [ -47.195705115358173, -22.078475568789894 ], [ -47.195617614899554, -22.078457627687726 ], [ -47.195530114458876, -22.078439686536836 ], [ -47.195442614036089, -22.078421745337227 ], [ -47.19535511363123, -22.078403804088886 ], [ -47.195267613244297, -22.078385862791823 ], [ -47.195180112875271, -22.078367921446038 ], [ -47.19512604187733, -22.078356834535505 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 85.007497694999998, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195942838605802, -22.078538178292135 ], [ -47.195876994351813, -22.078524677694073 ], [ -47.195789493849297, -22.078506736688354 ], [ -47.195701993364693, -22.078488795633902 ], [ -47.195614492898002, -22.078470854530721 ], [ -47.195526992449246, -22.078452913378818 ], [ -47.19543949201838, -22.078434972178201 ], [ -47.195351991605442, -22.078417030928854 ], [ -47.19526449121043, -22.078399089630775 ], [ -47.195176990833325, -22.078381148283988 ], [ -47.195138588981187, -22.078373274233414 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 82.046181364999995, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195927368993367, -22.078548873401179 ], [ -47.19587387237403, -22.078537904540045 ], [ -47.195786371863427, -22.07851996353331 ], [ -47.19569887137073, -22.078502022477853 ], [ -47.195611370895975, -22.078484081373684 ], [ -47.195523870439125, -22.078466140220772 ], [ -47.195436370000195, -22.078448199019139 ], [ -47.195348869579178, -22.078430257768776 ], [ -47.19526136917608, -22.078412316469691 ], [ -47.195173868790917, -22.078394375121885 ], [ -47.195151136088015, -22.078389713930065 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 79.084865031999996, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195911899378515, -22.078559568508947 ], [ -47.195870750395756, -22.078551131386 ], [ -47.195783249877081, -22.078533190378256 ], [ -47.195695749376306, -22.078515249321786 ], [ -47.195608248893478, -22.078497308216608 ], [ -47.195520748428549, -22.078479367062673 ], [ -47.195433247981533, -22.078461425860052 ], [ -47.195345747552437, -22.07844348460868 ], [ -47.195258247141275, -22.078425543308587 ], [ -47.195170746748026, -22.078407601959771 ], [ -47.195163683197862, -22.078406153625501 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 76.173897505, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195896429761284, -22.078570263615426 ], [ -47.195867628417012, -22.078564358231922 ], [ -47.195780127890266, -22.078546417223158 ], [ -47.195692627381426, -22.078528476165676 ], [ -47.195605126890499, -22.078510535059472 ], [ -47.195517626417505, -22.078492593904564 ], [ -47.19543012596241, -22.078474652700912 ], [ -47.195342625525235, -22.078456711448535 ], [ -47.195255125106002, -22.078438770147432 ], [ -47.195175753964655, -22.078422495648141 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 73.313475421000007, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195880960141665, -22.078580958720604 ], [ -47.1958645064378, -22.078577585077802 ], [ -47.195777005902976, -22.078559644068044 ], [ -47.195689505386063, -22.078541703009552 ], [ -47.195602004887057, -22.078523761902339 ], [ -47.195514504405985, -22.078505820746422 ], [ -47.195427003942811, -22.07848787954174 ], [ -47.195339503497557, -22.078469938288372 ], [ -47.195252003070244, -22.07845199698626 ], [ -47.195187346527852, -22.078438739616637 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 70.365539724000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195864662558812, -22.078591484060627 ], [ -47.195773883915209, -22.078572870912883 ], [ -47.19568638339021, -22.078554929853382 ], [ -47.195598882883147, -22.078536988745157 ], [ -47.195511382393995, -22.078519047588216 ], [ -47.19542388192275, -22.07850110638255 ], [ -47.195336381469417, -22.078483165128159 ], [ -47.195248881034018, -22.078465223825038 ], [ -47.195198939093792, -22.078454983584077 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 67.118558961000005, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195845535726569, -22.078601429294348 ], [ -47.19577076192698, -22.0785860977577 ], [ -47.195683261393903, -22.078568156697195 ], [ -47.19559576087876, -22.07855021558796 ], [ -47.19550826038153, -22.078532274430014 ], [ -47.195420759902206, -22.078514333223328 ], [ -47.195333259440801, -22.078496391967938 ], [ -47.195245758997324, -22.078478450663791 ], [ -47.195210531662497, -22.078471227550434 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 10.396452589000001, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.19554116539534, -22.078719292053304 ], [ -47.195467674176619, -22.07870422337033 ], [ -47.195442805154286, -22.078699124202906 ] ] } }, +{ "type": "Feature", "properties": { "Id": 1517, "Name": "Curvas", "Length": 3.767831676, "Dist1": 0.0, "Dist2": 0.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -47.195512980813604, -22.078727380055771 ], [ -47.195477333570629, -22.078720070922746 ] ] } } ] } diff --git a/AgroBase/AgroBase/bin/Debug/Python/Output/mapa_gps.html b/AgroBase/AgroBase/bin/Debug/Python/Output/mapa_gps.html index aa962c1c6..9e9cda4b8 100644 --- a/AgroBase/AgroBase/bin/Debug/Python/Output/mapa_gps.html +++ b/AgroBase/AgroBase/bin/Debug/Python/Output/mapa_gps.html @@ -25,7 +25,7 @@