From 5b5a134820ed17510f767f14683c88294c109349 Mon Sep 17 00:00:00 2001 From: alephcero Date: Fri, 25 Oct 2024 14:25:43 -0300 Subject: [PATCH 01/18] New library's versions and fix tests --- setup.py | 72 +++++++++++++++-------------- urbantrips/tests/test_unit_tests.py | 2 +- 2 files changed, 38 insertions(+), 36 deletions(-) diff --git a/setup.py b/setup.py index 214c252..2d287da 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name='urbantrips', - version='0.3.0', + version='0.4.0', author="Felipe Gonzalez & Sebastian Anapolsky", author_email="", description="A library to process public transit smart card data.", @@ -22,39 +22,41 @@ ], python_requires='>=3.10', install_requires=[ - 'anyio<4', - 'contextily==1.4.0', - 'folium==0.14.0', - 'fiona==1.9.6', - 'geopandas==0.14.0', - 'fiona==1.9.6', - 'h3==3.7.6', - 'ipython==8.16.1', - 'jupyterlab==4.0.6', - 'libpysal==4.8.0', - 'mapclassify==2.6.1', - 'matplotlib==3.8.3', - 'matplotlib-scalebar==0.8.1', - 'notebook==7.0.4', - 'numba==0.58.0', - 'numpy==1.25.2', - 'openpyxl==3.1.2', - 'osmnx==1.8.0', - 'pandas==2.1.1', - 'pandana==0.7', - 'patsy==0.5.3', - 'Pillow==9.5.0', - 'platformdirs==4.2.2', - 'plotly==5.17.0', - 'python-pptx==0.6.22', - 'PyYAML==6.0.1', - 'seaborn==0.13.0', - 'shapely==2.0.1', - 'statsmodels==0.14.0', - 'streamlit==1.27.2', - 'streamlit-folium==0.15.0', - 'typing_extensions==4.12.2', - 'weightedstats==0.4.1', - 'OSMnet==0.1.7' + 'anyio', + 'contextily', + 'folium', + 'fiona', + 'geopandas', + 'fiona', + 'h3<4', + 'ipython', + 'jupyterlab', + 'jupyter', + 'libpysal', + 'mapclassify', + 'matplotlib', + 'matplotlib-scalebar', + 'notebook', + 'numba', + 'numpy<2', + 'openpyxl', + 'osmnx', + 'pandas', + 'pandana', + 'patsy', + 'Pillow<11', + 'platformdirs', + 'plotly', + 'python-pptx', + 'PyYAML', + 'seaborn', + 'shapely', + 'statsmodels', + 'streamlit', + 'streamlit-folium', + 'typing_extensions', + 'weightedstats', + 'OSMnet', + 'httpcore==0.13.3' ] ) diff --git a/urbantrips/tests/test_unit_tests.py b/urbantrips/tests/test_unit_tests.py index 12d2799..8f3da46 100644 --- a/urbantrips/tests/test_unit_tests.py +++ b/urbantrips/tests/test_unit_tests.py @@ -688,7 +688,7 @@ def test_viz(matriz_validacion_test_amba): # Produce trips and users tables from legs trips.create_trips_from_legs() - # carto.create_zones_table() + carto.create_zones_table() carto.create_voronoi_zones() From 7df6f06e801aebb12686d33a1435185fa454c238 Mon Sep 17 00:00:00 2001 From: alephcero Date: Fri, 25 Oct 2024 17:29:57 -0300 Subject: [PATCH 02/18] Adds id_ramal to services --- urbantrips/datamodel/services.py | 434 +++++++++++++++++-------------- urbantrips/utils/utils.py | 2 + 2 files changed, 242 insertions(+), 194 deletions(-) diff --git a/urbantrips/datamodel/services.py b/urbantrips/datamodel/services.py index 5da6f0c..363464d 100644 --- a/urbantrips/datamodel/services.py +++ b/urbantrips/datamodel/services.py @@ -2,6 +2,7 @@ import geopandas as gpd from urbantrips.utils import utils + def process_services(line_ids=None): """ Download unprocessed gps data and classify them into services @@ -13,25 +14,25 @@ def process_services(line_ids=None): line id or ids to process services for Returns - ------- + ------- None. Updates services_gps_points, services, and services_stats tables in db """ configs = utils.leer_configs_generales() nombre_archivo_gps = configs["nombre_archivo_gps"] - + if nombre_archivo_gps is not None: print("Procesando servicios en base a tabla gps") # check line id type and turn it into list if is a single line id if line_ids is not None: if isinstance(line_ids, int): line_ids = [line_ids] - - line_ids_str = ','.join(map(str, line_ids)) + + line_ids_str = ",".join(map(str, line_ids)) else: line_ids_str = None - + print("Eliminando datos anteriores") delete_old_services_data(line_ids_str) print("Fin de borrado de datos anteriores") @@ -39,16 +40,15 @@ def process_services(line_ids=None): print(f"para id lineas {line_ids_str}") else: print("para todas las lineas") - + print("Descargando paradas y puntos gps") gps_points, stops = get_stops_and_gps_data(line_ids_str) - + if gps_points is None: print("Todos los puntos gps ya fueron procesados en servicios ") else: print("Clasificando puntos gps en servicios") - gps_points.groupby('id_linea').apply( - process_line_services, stops=stops) + gps_points.groupby("id_linea").apply(process_line_services, stops=stops) def delete_old_services_data(line_ids_str): @@ -56,8 +56,8 @@ def delete_old_services_data(line_ids_str): Deletes data from services tables for all lines or a specified set of line ids """ - conn_data = utils.iniciar_conexion_db(tipo='data') - tables = ['services_gps_points', 'services', 'services_stats'] + conn_data = utils.iniciar_conexion_db(tipo="data") + tables = ["services_gps_points", "services", "services_stats"] for table in tables: q = f""" DELETE FROM {table} @@ -79,11 +79,11 @@ def get_stops_and_gps_data(line_ids_str): """ configs = utils.leer_configs_generales() - conn_insumos = utils.iniciar_conexion_db(tipo='insumos') - conn_data = utils.iniciar_conexion_db(tipo='data') + conn_insumos = utils.iniciar_conexion_db(tipo="insumos") + conn_data = utils.iniciar_conexion_db(tipo="data") # check if data is present in the db - if not utils.check_table_in_db(table_name='gps', tipo_db='data'): + if not utils.check_table_in_db(table_name="gps", tipo_db="data"): print("No existe la tabla gps. Asegurese de tener datos gps y ") print("correr datamodel.transactions.process_and_upload_gps_table()") else: @@ -96,7 +96,7 @@ def get_stops_and_gps_data(line_ids_str): print("datamodel.transactions.process_and_upload_gps_table()") # check if data is present in the db - if not utils.check_table_in_db(table_name='gps', tipo_db='data'): + if not utils.check_table_in_db(table_name="gps", tipo_db="data"): print("No hay tabla services_stats. Asegurese de tener datos gps ") print("y correr datamodel.transactions.process_and_upload_gps_table()") @@ -118,23 +118,24 @@ def get_stops_and_gps_data(line_ids_str): gps_points = gpd.GeoDataFrame( gps_points, geometry=gpd.GeoSeries.from_xy( - x=gps_points.longitud, y=gps_points.latitud, crs='EPSG:4326'), - crs='EPSG:4326' + x=gps_points.longitud, y=gps_points.latitud, crs="EPSG:4326" + ), + crs="EPSG:4326", ) - gps_points = gps_points.to_crs(epsg=configs['epsg_m']) + gps_points = gps_points.to_crs(epsg=configs["epsg_m"]) gps_lines = gps_points.id_linea.drop_duplicates() - gps_lines_str = ','.join(gps_lines.map(str)) + gps_lines_str = ",".join(gps_lines.map(str)) if len(gps_lines_str) == 0: return None, None - elif configs['utilizar_servicios_gps']: + elif configs["utilizar_servicios_gps"]: return gps_points, None else: # check if data is present in the db - if not utils.check_table_in_db(table_name='stops', tipo_db='insumos'): + if not utils.check_table_in_db(table_name="stops", tipo_db="insumos"): print("No existe la tabla stops. Asegurese de tener datos de ") print("stops y correr carto.stops.create_stops_table()") else: @@ -157,27 +158,28 @@ def get_stops_and_gps_data(line_ids_str): line_no_stops_mask = ~gps_lines.isin(stops.id_linea.drop_duplicates()) if line_no_stops_mask.any(): line_no_stops = gps_lines[line_no_stops_mask] - line_no_stops_str = ','.join(line_no_stops.map(str)) + line_no_stops_str = ",".join(line_no_stops.map(str)) - print(f"""Hay lineas con GPS que no tienen paradas: + print( + f"""Hay lineas con GPS que no tienen paradas: {line_no_stops_str} - No se procesaran""") + No se procesaran""" + ) - gps_points = gps_points.loc[~gps_points.id_linea.isin( - line_no_stops)] + gps_points = gps_points.loc[~gps_points.id_linea.isin(line_no_stops)] # use only nodes as stops - stops = stops.drop_duplicates( - subset=['id_linea', 'id_ramal', 'node_id']) + stops = stops.drop_duplicates(subset=["id_linea", "id_ramal", "node_id"]) stops = gpd.GeoDataFrame( stops, geometry=gpd.GeoSeries.from_xy( - x=stops.node_x, y=stops.node_y, crs='EPSG:4326'), - crs='EPSG:4326' + x=stops.node_x, y=stops.node_y, crs="EPSG:4326" + ), + crs="EPSG:4326", ) - stops = stops.to_crs(epsg=configs['epsg_m']) + stops = stops.to_crs(epsg=configs["epsg_m"]) return gps_points, stops @@ -203,7 +205,7 @@ def process_line_services(gps_points, stops): """ line_id = gps_points.id_linea.unique()[0] - conn_data = utils.iniciar_conexion_db(tipo='data') + conn_data = utils.iniciar_conexion_db(tipo="data") print(f"Procesando servicios en base a gps para id_linea {line_id}") # if there are stops select only stops for that line @@ -213,63 +215,77 @@ def process_line_services(gps_points, stops): line_stops_gdf = None print("Asignando servicios") - gps_points_with_new_service_id = gps_points\ - .groupby(['dia', 'id_ramal', 'interno'], as_index=False)\ - .apply(classify_line_gps_points_into_services, - line_stops_gdf=line_stops_gdf)\ + gps_points_with_new_service_id = ( + gps_points.groupby(["dia", "id_ramal", "interno"], as_index=False) + .apply(classify_line_gps_points_into_services, line_stops_gdf=line_stops_gdf) .droplevel(0) + ) print("Subiendo servicios a la db") # save result to services table - services_gps_points = gps_points_with_new_service_id\ - .reindex(columns=['id', 'id_linea', 'id_ramal', 'interno', 'dia', 'original_service_id', 'new_service_id', - 'service_id', 'id_ramal_gps_point', 'node_id']) - services_gps_points.to_sql("services_gps_points", - conn_data, if_exists='append', index=False) + services_gps_points = gps_points_with_new_service_id.reindex( + columns=[ + "id", + "id_linea", + "id_ramal", + "interno", + "dia", + "original_service_id", + "new_service_id", + "service_id", + "id_ramal_gps_point", + "node_id", + ] + ) + services_gps_points.to_sql( + "services_gps_points", conn_data, if_exists="append", index=False + ) print("Creando tabla de servicios") # process services gps points into services table - line_services = create_line_services_table( - gps_points_with_new_service_id) - line_services.to_sql("services", conn_data, - if_exists='append', index=False) + line_services = create_line_services_table(gps_points_with_new_service_id) + line_services.to_sql("services", conn_data, if_exists="append", index=False) print("Creando estadisticos de servicios") # create stats for each line and day - stats = line_services\ - .groupby(['id_linea', 'dia'], as_index=False)\ - .apply(compute_new_services_stats) + stats = line_services.groupby( + ["id_linea", "id_ramal", "dia"], as_index=False + ).apply(compute_new_services_stats) - stats.to_sql("services_stats", conn_data, if_exists='append', index=False) + stats.to_sql("services_stats", conn_data, if_exists="append", index=False) return stats def create_line_services_table(line_day_gps_points): # get basic stats for each service - line_services = line_day_gps_points\ - .groupby(['id_linea', 'dia', 'interno', - 'original_service_id', 'service_id'], as_index=False)\ - .agg( - is_idling=('idling', 'sum'), - total_points=('idling', 'count'), - distance_km=('distance_km', 'sum'), - min_ts=('fecha', 'min'), - max_ts=('fecha', 'max'), - ) + line_services = line_day_gps_points.groupby( + ["id_linea", "id_ramal", "dia", "interno", "original_service_id", "service_id"], + as_index=False, + ).agg( + is_idling=("idling", "sum"), + total_points=("idling", "count"), + distance_km=("distance_km", "sum"), + min_ts=("fecha", "min"), + max_ts=("fecha", "max"), + ) - line_services.loc[:, ['min_datetime']] = line_services.min_ts.map( - lambda ts: str(pd.Timestamp(ts, unit='s'))) - line_services.loc[:, ['max_datetime']] = line_services.max_ts.map( - lambda ts: str(pd.Timestamp(ts, unit='s'))) + line_services.loc[:, ["min_datetime"]] = line_services.min_ts.map( + lambda ts: str(pd.Timestamp(ts, unit="s")) + ) + line_services.loc[:, ["max_datetime"]] = line_services.max_ts.map( + lambda ts: str(pd.Timestamp(ts, unit="s")) + ) # compute idling proportion for each service - line_services['prop_idling'] = line_services.is_idling / \ - line_services['total_points'] - line_services = line_services.drop(['is_idling'], axis=1) + line_services["prop_idling"] = ( + line_services.is_idling / line_services["total_points"] + ) + line_services = line_services.drop(["is_idling"], axis=1) # stablish valid services - line_services['valid'] = (line_services.prop_idling < .5) & ( - line_services.total_points > 5) + line_services["valid"] = (line_services.prop_idling < 0.5) & ( + line_services.total_points > 5 + ) return line_services @@ -299,17 +315,17 @@ def infer_service_id_stops(line_gps_points, line_stops_gdf, debug=False): GeoDataFrame points classified into services """ # get amount of original serviices - n_original_services_ids = len( - line_gps_points['original_service_id'].unique()) + n_original_services_ids = len(line_gps_points["original_service_id"].unique()) # get unique branches in the gps points branches = line_stops_gdf.id_ramal.unique() # get how many branches pass through that node - majority_by_node_id = line_stops_gdf\ - .drop_duplicates(['id_ramal', 'node_id'])\ - .groupby('node_id', as_index=False)\ - .agg(branch_mayority=('id_ramal', 'count')) + majority_by_node_id = ( + line_stops_gdf.drop_duplicates(["id_ramal", "node_id"]) + .groupby("node_id", as_index=False) + .agg(branch_mayority=("id_ramal", "count")) + ) # go through all branches gps_all_branches = pd.DataFrame() @@ -317,9 +333,9 @@ def infer_service_id_stops(line_gps_points, line_stops_gdf, debug=False): for branch in branches: # select stops for that branch - stops_to_join = line_stops_gdf\ - .loc[line_stops_gdf.id_ramal == branch, - ['branch_stop_order', 'geometry']] + stops_to_join = line_stops_gdf.loc[ + line_stops_gdf.id_ramal == branch, ["branch_stop_order", "geometry"] + ] # get nearest stop for that branch within 1.5 km # Not use max_distance. Far away stops will appear as @@ -327,15 +343,16 @@ def infer_service_id_stops(line_gps_points, line_stops_gdf, debug=False): gps_branch = gpd.sjoin_nearest( line_gps_points, stops_to_join, - how='left', + how="left", max_distance=1500, - distance_col='distance_to_stop') - gps_branch['id_ramal'] = branch + distance_col="distance_to_stop", + ) + gps_branch["id_ramal"] = branch # Evaluate change on stops order for each branch - temp_change = gps_branch\ - .groupby(['interno', 'original_service_id'])\ - .apply(find_change_in_direction) + temp_change = gps_branch.groupby(["interno", "original_service_id"]).apply( + find_change_in_direction + ) # when vehicle is always too far away from this branch if n_original_services_ids > 1: @@ -348,116 +365,138 @@ def infer_service_id_stops(line_gps_points, line_stops_gdf, debug=False): # when there is only one original service per vehicle else: temp_change = pd.Series( - temp_change.iloc[0].values, index=temp_change.columns) + temp_change.iloc[0].values, index=temp_change.columns + ) # eval if temporary change is conssitent 5 points ahead - gps_branch['temp_change'] = temp_change + gps_branch["temp_change"] = temp_change window = 5 - gps_branch['consistent_post'] = ( - gps_branch['temp_change'] - .shift(-window).fillna(False) - .rolling(window=window, center=False, min_periods=3).sum() == 0 + gps_branch["consistent_post"] = ( + gps_branch["temp_change"] + .shift(-window) + .fillna(False) + .rolling(window=window, center=False, min_periods=3) + .sum() + == 0 ) # Accept there is a change in direction when consistent - gps_branch['change'] = ( - gps_branch['temp_change'] & - gps_branch['consistent_post'] - ) + gps_branch["change"] = gps_branch["temp_change"] & gps_branch["consistent_post"] # add debugging attributes if debug: - debug_branch = gps_branch\ - .reindex(columns=['id', 'branch_stop_order', 'id_ramal', - 'temp_change', 'consistent_post', 'distance_to_stop', - 'change']) + debug_branch = gps_branch.reindex( + columns=[ + "id", + "branch_stop_order", + "id_ramal", + "temp_change", + "consistent_post", + "distance_to_stop", + "change", + ] + ) debug_df = pd.concat([debug_df, debug_branch]) gps_branch = gps_branch.drop( - ['index_right', 'temp_change', 'consistent_post', - ], axis=1) + [ + "index_right", + "temp_change", + "consistent_post", + ], + axis=1, + ) gps_all_branches = pd.concat([gps_all_branches, gps_branch]) # for each gps point get the node id form the nearest branch - branches_distances_table = gps_all_branches\ - .reindex(columns=['id', 'id_ramal', 'distance_to_stop', - 'branch_stop_order'])\ - .sort_values(['id', 'distance_to_stop'])\ - .drop_duplicates(subset=['id'], keep='first')\ - .drop(['distance_to_stop'], axis=1) - - gps_node_ids = branches_distances_table\ - .merge( - line_stops_gdf.reindex( - columns=['node_id', 'branch_stop_order', 'id_ramal']), - on=['id_ramal', 'branch_stop_order'], - how='left')\ - .reindex(columns=['id', 'id_ramal', 'node_id']) + branches_distances_table = ( + gps_all_branches.reindex( + columns=["id", "id_ramal", "distance_to_stop", "branch_stop_order"] + ) + .sort_values(["id", "distance_to_stop"]) + .drop_duplicates(subset=["id"], keep="first") + .drop(["distance_to_stop"], axis=1) + ) + + gps_node_ids = branches_distances_table.merge( + line_stops_gdf.reindex(columns=["node_id", "branch_stop_order", "id_ramal"]), + on=["id_ramal", "branch_stop_order"], + how="left", + ).reindex(columns=["id", "id_ramal", "node_id"]) # count how many branches see a change in that node - total_changes_by_gps = gps_all_branches\ - .groupby(['id'], as_index=False)\ - .agg(total_changes=('change', 'sum')) + total_changes_by_gps = gps_all_branches.groupby(["id"], as_index=False).agg( + total_changes=("change", "sum") + ) - gps_points_changes = gps_node_ids\ - .merge(total_changes_by_gps, how='left', on='id')\ - .merge(majority_by_node_id, how='left', on='node_id') + gps_points_changes = gps_node_ids.merge( + total_changes_by_gps, how="left", on="id" + ).merge(majority_by_node_id, how="left", on="node_id") # set change when passes the mayority - gps_points_changes['change'] = ( + gps_points_changes["change"] = ( gps_points_changes.total_changes >= gps_points_changes.branch_mayority ) # set schema - cols = ['id', 'id_ramal', 'node_id', 'change'] + cols = ["id", "id_ramal", "node_id", "change"] if debug: - cols = cols + ['branch_mayority', 'total_changes'] + cols = cols + ["branch_mayority", "total_changes"] - gps_points_changes = gps_points_changes.reindex( - columns=cols) + gps_points_changes = gps_points_changes.reindex(columns=cols) - gps_points_changes = gps_points_changes\ - .rename(columns={'id_ramal': 'id_ramal_gps_point'}) + gps_points_changes = gps_points_changes.rename( + columns={"id_ramal": "id_ramal_gps_point"} + ) - line_gps_points = line_gps_points.merge( - gps_points_changes, on='id', how='left') + line_gps_points = line_gps_points.merge(gps_points_changes, on="id", how="left") if n_original_services_ids > 1: # Within each original service id, classify services within - new_services_ids = line_gps_points\ - .groupby('original_service_id')\ - .apply(lambda df: df['change'].cumsum().ffill())\ + new_services_ids = ( + line_gps_points.groupby("original_service_id") + .apply(lambda df: df["change"].cumsum().ffill()) .droplevel(0) + ) else: - new_services_ids = line_gps_points\ - .groupby('original_service_id')\ - .apply(lambda df: df['change'].cumsum().ffill()) + new_services_ids = line_gps_points.groupby("original_service_id").apply( + lambda df: df["change"].cumsum().ffill() + ) new_services_ids = pd.Series( - new_services_ids.iloc[0].values, index=new_services_ids.columns) + new_services_ids.iloc[0].values, index=new_services_ids.columns + ) - line_gps_points['new_service_id'] = new_services_ids + line_gps_points["new_service_id"] = new_services_ids if debug: - debug_df = debug_df\ - .pivot(index="id", columns='id_ramal', - values=["branch_stop_order", "temp_change", - 'consistent_post', 'change', 'distance_to_stop'])\ - .reset_index() - - cols = [c[0]+'_'+str(c[1]) if c[0] != 'id' - else c[0] for c in debug_df.columns] + debug_df = debug_df.pivot( + index="id", + columns="id_ramal", + values=[ + "branch_stop_order", + "temp_change", + "consistent_post", + "change", + "distance_to_stop", + ], + ).reset_index() + + cols = [ + c[0] + "_" + str(c[1]) if c[0] != "id" else c[0] for c in debug_df.columns + ] debug_df.columns = cols - line_gps_points = line_gps_points.merge(debug_df, on='id', how='left') + line_gps_points = line_gps_points.merge(debug_df, on="id", how="left") return line_gps_points -def classify_line_gps_points_into_services(line_gps_points, line_stops_gdf, debug=False, - *args, **kwargs): +def classify_line_gps_points_into_services( + line_gps_points, line_stops_gdf, debug=False, *args, **kwargs +): """ Takes gps points and stops for a given line and classifies each point into services based on original gps data or infered basd on stops whenever the @@ -477,41 +516,43 @@ def classify_line_gps_points_into_services(line_gps_points, line_stops_gdf, debu GeoDataFrame points classified into services """ # create original service id - original_service_id = line_gps_points\ - .reindex(columns=['dia', 'id_ramal', 'interno', 'service_type'])\ - .groupby(['dia', 'id_ramal', 'interno'])\ + original_service_id = ( + line_gps_points.reindex(columns=["dia", "id_ramal", "interno", "service_type"]) + .groupby(["dia", "id_ramal", "interno"]) .apply(create_original_service_id) + ) original_service_id = original_service_id.service_type original_service_id = original_service_id.droplevel([0, 1, 2]) - line_gps_points.loc[:, ['original_service_id']] = original_service_id + line_gps_points.loc[:, ["original_service_id"]] = original_service_id # check configs if trust in service type gps configs = utils.leer_configs_generales() - trust_service_type_gps = configs['utilizar_servicios_gps'] + trust_service_type_gps = configs["utilizar_servicios_gps"] if trust_service_type_gps: # classify services based on gps dataset attribute - line_gps_points.loc[:, ['new_service_id']] = ( - line_gps_points['original_service_id'].copy() - ) + line_gps_points.loc[:, ["new_service_id"]] = line_gps_points[ + "original_service_id" + ].copy() else: # classify services based on stops line_gps_points = infer_service_id_stops( - line_gps_points, line_stops_gdf, debug=debug) + line_gps_points, line_stops_gdf, debug=debug + ) # Classify idling points when there is no movement - line_gps_points.loc[:, ['idling']] = line_gps_points.distance_km < 0.1 + line_gps_points.loc[:, ["idling"]] = line_gps_points.distance_km < 0.1 # create a unique id from both old and new - new_ids = line_gps_points\ - .reindex(columns=['original_service_id', 'new_service_id'])\ - .drop_duplicates() - new_ids['service_id'] = range(len(new_ids)) + new_ids = line_gps_points.reindex( + columns=["original_service_id", "new_service_id"] + ).drop_duplicates() + new_ids["service_id"] = range(len(new_ids)) - line_gps_points = line_gps_points\ - .merge(new_ids, how='left', - on=['original_service_id', 'new_service_id']) + line_gps_points = line_gps_points.merge( + new_ids, how="left", on=["original_service_id", "new_service_id"] + ) return line_gps_points @@ -534,27 +575,30 @@ def compute_new_services_stats(line_day_services): id_linea = line_day_services.id_linea.unique() dia = line_day_services.dia.unique() - n_original_services = line_day_services\ - .drop_duplicates(subset=['interno', 'original_service_id'])\ - .shape[0] + n_original_services = line_day_services.drop_duplicates( + subset=["interno", "original_service_id"] + ).shape[0] n_new_services = len(line_day_services) n_new_valid_services = line_day_services.valid.sum() n_services_short = (line_day_services.total_points <= 5).sum() - prop_short_idling = ((line_day_services.prop_idling >= .5) & ( - line_day_services.total_points <= 5)).sum() / n_services_short + prop_short_idling = ( + (line_day_services.prop_idling >= 0.5) & (line_day_services.total_points <= 5) + ).sum() / n_services_short original_services_distance = round(line_day_services.distance_km.sum()) - new_services_distance = round(line_day_services - .loc[line_day_services['valid'], - 'distance_km'] - .sum() / original_services_distance, 2) - - sub_services = line_day_services\ - .loc[line_day_services['valid'], :]\ - .groupby(['interno', 'original_service_id'])\ + new_services_distance = round( + line_day_services.loc[line_day_services["valid"], "distance_km"].sum() + / original_services_distance, + 2, + ) + + sub_services = ( + line_day_services.loc[line_day_services["valid"], :] + .groupby(["interno", "original_service_id"]) .apply(lambda df: len(df.service_id.unique())) + ) if len(sub_services): sub_services = sub_services.value_counts(normalize=True) @@ -566,24 +610,27 @@ def compute_new_services_stats(line_day_services): else: original_service_no_change = None - day_line_stats = pd.DataFrame({ - 'id_linea': id_linea, - 'dia': dia, - 'cant_servicios_originales': n_original_services, - 'cant_servicios_nuevos': n_new_services, - 'cant_servicios_nuevos_validos': n_new_valid_services, - 'n_servicios_nuevos_cortos': n_services_short, - 'prop_servicos_cortos_nuevos_idling': prop_short_idling, - 'distancia_recorrida_original': original_services_distance, - 'prop_distancia_recuperada': new_services_distance, - 'servicios_originales_sin_dividir': original_service_no_change, - }, index=[0]) + day_line_stats = pd.DataFrame( + { + "id_linea": id_linea, + "dia": dia, + "cant_servicios_originales": n_original_services, + "cant_servicios_nuevos": n_new_services, + "cant_servicios_nuevos_validos": n_new_valid_services, + "n_servicios_nuevos_cortos": n_services_short, + "prop_servicos_cortos_nuevos_idling": prop_short_idling, + "distancia_recorrida_original": original_services_distance, + "prop_distancia_recuperada": new_services_distance, + "servicios_originales_sin_dividir": original_service_no_change, + }, + index=[0], + ) return day_line_stats def find_change_in_direction(df): # Create a new series with the differences between consecutive elements - series = df['branch_stop_order'].copy() + series = df["branch_stop_order"].copy() # check diference against previous stop diff_series = series.diff().dropna() @@ -600,17 +647,16 @@ def find_change_in_direction(df): def create_original_service_id(service_type_series): - return (service_type_series == 'start_service').cumsum() + return (service_type_series == "start_service").cumsum() def delete_services_data(id_linea): "this function deletes data for a given line in servicies tables" - conn_data = utils.iniciar_conexion_db(tipo='data') + conn_data = utils.iniciar_conexion_db(tipo="data") print(f"Borrando datos en tablas de servicios para id linea {id_linea};") conn_data.execute(f"DELETE FROM services where id_linea = {id_linea};") - conn_data.execute( - f"DELETE FROM services_stats where id_linea = {id_linea};") + conn_data.execute(f"DELETE FROM services_stats where id_linea = {id_linea};") query = f""" DELETE FROM services_gps_points where id in ( diff --git a/urbantrips/utils/utils.py b/urbantrips/utils/utils.py index af2144b..8c4e4b2 100644 --- a/urbantrips/utils/utils.py +++ b/urbantrips/utils/utils.py @@ -968,6 +968,7 @@ def create_gps_table(): CREATE TABLE IF NOT EXISTS services ( id_linea int, + id_ramal int, dia text, interno int, original_service_id int, @@ -990,6 +991,7 @@ def create_gps_table(): CREATE TABLE IF NOT EXISTS services_stats ( id_linea int, + id_ramal int, dia text, cant_servicios_originales int, cant_servicios_nuevos int, From a1ec625040aa484518ee6ead36e1f0f1bd7e2d68 Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Fri, 1 Nov 2024 13:22:40 -0300 Subject: [PATCH 03/18] Improves overlapping module setting text outside prints and how interactive dash use it (#171) --- docs/source/configuracion.rst | 13 + docs/source/inputs.rst | 60 +- docs/source/kpi.rst | 62 +- docs/source/resultados.rst | 211 ++++- notebooks/KPI.ipynb | 28 +- notebooks/Overlapping.ipynb | 103 +-- urbantrips/kpi/overlapping.py | 1207 +++++++++++++++------------ urbantrips/run_interactive_tools.py | 250 ++++++ urbantrips/viz/overlapping.py | 10 +- 9 files changed, 1317 insertions(+), 627 deletions(-) create mode 100644 urbantrips/run_interactive_tools.py diff --git a/docs/source/configuracion.rst b/docs/source/configuracion.rst index d7b11ce..439acbb 100644 --- a/docs/source/configuracion.rst +++ b/docs/source/configuracion.rst @@ -202,3 +202,16 @@ El archivo puede contener la cantidad de polígonos (o cuencas) que se desee (ya poligonos: "[NOMBRE_DEL_ARCHIVO].geojson" + + + + +Parámetros de estaciones para tiempos de viaje +--------------------------------------------------- + +Urbantrips puede computar tiempos de viaje. En caso de las líneas que tengan GPS, se clasifica el GPS de origen y de destino calculando el tiempo de viaje entre ambos. Pero para aquellas líneas sin GPS en sus vehículos es necesario contar con un tabla que indique el tiempo de viaje en minutos entre cada par de estaciones de todas las líneas. Para más detalles consultar el apartado de Inputs de datos (:doc:`inputs`) + +.. code:: + + tiempos_viaje_estaciones: "[NOMBRE_DEL_ARCHIVO].csv" + diff --git a/docs/source/inputs.rst b/docs/source/inputs.rst index 1d67457..68431a0 100644 --- a/docs/source/inputs.rst +++ b/docs/source/inputs.rst @@ -159,7 +159,12 @@ Tabla con el posicionamiento de cada interno con información de linea y ramal. * - *longitud_gps* - float - **Obligatorio**. Longitud. - + * - *servicios_gps* + - int | str + - **Obligatorio si se quiere procesar serviciobs**. Columna que contiene la apertura y cierre de un servicio. + * - *velocity_gps* + - float + - **Opcional**. Velocidad del vehíuclo en km/h. Paradas ------- @@ -218,3 +223,56 @@ Polígonos de interés - Polygon o MultiPolygon - Polígono de la zona de interés. + + +Tiempos de viaje entre estaciones +-------------------- + +.. list-table:: + :widths: 25 25 50 + :header-rows: 1 + + * - id_o + - id_linea_o + - id_ramal_o + - lat_o + - lon_o + - id_d + - id_linea_d + - id_ramal_d + - lat_d + - lon_d + - travel_time_min + * - *id_o* + - int + - **Obligatorio**. id de la estación de origen. + * - *id_linea_o* + - int + - **Obligatorio**. id de la línea de origen. + * - *id_ramal_o* + - int + - id del ramal de origen en caso de que existan ramales. + * - *lat_o* + - float + - **Obligatorio**. Latitud de la estación de origen. + * - *lon_o* + - float + - **Obligatorio**. Longitud de la estación de origen. + * - *id_d* + - int + - **Obligatorio**. id de la estación de destino. + * - *id_linea_d* + - int + - **Obligatorio**. id de la línea de destino. + * - *id_ramal_d* + - int + - id del ramal de destino en caso de que existan ramales. + * - *lat_d* + - float + - **Obligatorio**. Latitud de la estación de destino. + * - *lon_d* + - float + - **Obligatorio**. Longitud de la estación de destino. + * - *travel_time_min* + - float + - **Obligatorio**. Tiempo de viaje en minutos entre las dos estaciones. diff --git a/docs/source/kpi.rst b/docs/source/kpi.rst index 9f2db5b..bb0e599 100644 --- a/docs/source/kpi.rst +++ b/docs/source/kpi.rst @@ -28,7 +28,7 @@ Por ejemplo, un usuario que inicia una etapa en el punto equiparable al 10% del Para computar esta demanda por tramo se puede utilizar la siguiente función: * ``id_linea``: id de línea o lista de ids de líneas a procesar -* ``rango_hrs``: define el rango horario del origen de las etapas a utilizar +* ``hour_range``: define el rango horario del origen de las etapas a utilizar * ``n_sections``: cantidad de segmentos a dividir el recorrido * ``section_meters``: cantidad de metros de largo del segmento. Si se especifica este parámetro no se considerará ``n_sections``. * ``day_type``: fecha de los datos a procesar o tipo de día (``weekday`` o ``weekend``). @@ -37,7 +37,7 @@ Para computar esta demanda por tramo se puede utilizar la siguiente función: kpi.compute_route_section_load( id_linea=False, - rango_hrs=False, + hour_range=False, n_sections=10, section_meters=None, day_type="weekday" @@ -52,11 +52,11 @@ Urbantrips también permite construir una visualización exploratoria en base a viz.visualize_route_section_load( id_linea=False, - rango_hrs=False, + hour_range=False, day_type='weekday', n_sections=10, section_meters=None, - indicador='cantidad_etapas', + stat='cantidad_etapas', factor=1, factor_min=50, save_gdf=False @@ -64,16 +64,64 @@ Urbantrips también permite construir una visualización exploratoria en base a * ``id_linea``: id de línea o lista de ids de líneas a procesar -* ``rango_hrs``: define el rango horario del origen de las etapas a utilizar +* ``hour_range``: define el rango horario del origen de las etapas a utilizar * ``day_type``: fecha de los datos a procesar o tipo de día (``weekday`` o ``weekend``). * ``n_sections``: cantidad de segmentos a dividir el recorrido * ``section_meters``: cantidad de metros de largo del segmento. Si se especifica este parámetro no se considerará ``n_sections``. -* ``indicador``: indicador a utilizar ``‘prop_etapas’`` o ``'cantidad_etapas'``. -* ``factor``: factor de escalado que el el tramo tendrá en la visualización en base al indicador utilizado. +* ``stat``: indicador a utilizar ``proportion`` o ``'totals'``. +* ``factor``: factor de escalado en metros que el tramo tendrá en la visualización en base al indicador utilizado. * ``factor_min``: ancho mínimo en metros que el tramo tendrá en la visualización. * ``save_gdf``: guardar los resultados de la visualización en un archivo geojson. + +**Matriz OD de la línea** + +De modo similar, Urbantrips puede calcular para cada línea una Matriz OD tomando esos segmentos como unidades espaciales de análisis. + + +.. code:: python + + kpi.compute_lines_od_matrix( + line_ids=[1], + hour_range=[7,8], + n_sections=10, + section_meters=None, + day_type='weekday, + save_csv=True +) + + +* ``line_ids``: id de línea o lista de ids de líneas a procesar +* ``hour_range``: define el rango horario del origen de las etapas a utilizar +* ``day_type``: fecha de los datos a procesar o tipo de día (``weekday`` o ``weekend``) o una fecha en particular. +* ``n_sections``: cantidad de segmentos a dividir el recorrido +* ``section_meters``: cantidad de metros de largo del segmento. Si se especifica este parámetro no se considerará ``n_sections``. +* ``save_csv``: guardar los resultados de la matriz OD en un archivo csv. + + +Este producto es una matriz de origen destino que se puede visualizar en un mapa o utilizar para otros análisis. + +.. code:: python + + viz.visualize_lines_od_matrix( + line_ids=[1], + hour_range=[7,8], + day_type='weekday', + n_sections=10, + section_meters=None, + stat='totals' + ) + +* ``id_linea``: id de línea o lista de ids de líneas a procesar +* ``hour_range``: define el rango horario del origen de las etapas a utilizar +* ``day_type``: fecha de los datos a procesar o tipo de día (``weekday`` o ``weekend``). +* ``n_sections``: cantidad de segmentos a dividir el recorrido +* ``section_meters``: cantidad de metros de largo del segmento. Si se especifica este parámetro no se considerará ``n_sections``. +* ``stat``: indicador a utilizar ``proportion`` o ``'totals'``. + + + En base a GPS ------------- diff --git a/docs/source/resultados.rst b/docs/source/resultados.rst index d8938ac..4fe5445 100644 --- a/docs/source/resultados.rst +++ b/docs/source/resultados.rst @@ -343,10 +343,79 @@ La tabla ``services`` agrupa los servicios ofertados por las diferentes lineas, * - *node_od* - int - node_id del ramal más cercano. - + +Las tablas a continuación indican el origen y el destino de cada etapa con respecto a cada gps o estación. + +.. list-table:: legs_to_gps_origin + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *dia* + - text + - Fecha del día para el cual fue computado el estadístico + * - *id_legs* + - int + - id de la tabla etapas + * - *id_gps* + - int + - id de la tabla gps + + +.. list-table:: legs_to_gps_destination + :widths: 25 25 50 + :header-rows: 1 + * - Campo + - Tipo de dato + - Descripción + * - *dia* + - text + - Fecha del día para el cual fue computado el estadístico + * - *id_legs* + - int + - id de la tabla etapas + * - *id_gps* + - int + - id de la tabla gps +.. list-table:: legs_to_station_origin + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *dia* + - text + - Fecha del día para el cual fue computado el estadístico + * - *id_legs* + - int + - id de la tabla etapas + * - *id_station* + - int + - id de la tabla travel_times_stations + +.. list-table:: legs_to_station_destination + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *dia* + - text + - Fecha del día para el cual fue computado el estadístico + * - *id_legs* + - int + - id de la tabla etapas + * - *id_station* + - int + - id de la tabla travel_times_stations + **Tablas de estadisticos** @@ -420,6 +489,25 @@ Estas tablas contienen estadísticos calculados por UrbanTrips. Algunos estádis - proporción de servicios originales dentro de los cuales hay uno y solo un servicio valido inferio por UrbanTrips. +.. list-table:: services_by_line_hour + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *id_linea* + - int + - id de la linea de los servicios. + * - *dia* + - text + - dia de los datos sobre los cuales se calculan los estadísticos. + * - *hora* + - int + - hora del dia sobre la cual se calculan los estadísticos. + * - *servicios* + - int + - cantidad de servicios por dia y hora. .. list-table:: ocupacion_por_linea_tramo @@ -432,6 +520,9 @@ Estas tablas contienen estadísticos calculados por UrbanTrips. Algunos estádis * - *id_linea* - int - id de la linea sobre el que se calculan los estadísticos. + * - *yr_mo* + - text + - mes y anio sobre el que se calculan los estadísticos. * - *day_type* - text - dia o tipo de día sobre el cual se calcula los estadísticos. @@ -446,23 +537,17 @@ Estas tablas contienen estadísticos calculados por UrbanTrips. Algunos estádis - sentido de las etapas utilizadas para calcular los estadísticos de ocupación. * - *section_id* - float - - id de la sección para la que se calcula los estadísticos. Tambíén el % del LRS del inicio de la sección sobre el recorrido representativo de la linea. - * - *X* - - float - - coordenada del inicio de la sección. - * - *y* - - float - - coordenada del inicio de la sección. - * - *hora_min* + - id de la sección para la que se calcula los estadísticos. Se une con routes_section_id_coords. + * - *hour_min* - int - hora mínima de las etapas a utilizar para calcular los estadísticos. - * - *hora_max* + * - *hour_max* - int - hora máxima de las etapas a utilizar para calcular los estadísticos. - * - *cantidad_etapas* + * - *legs* - int - cantidad de etapas en esa sección para ese día y horas. - * - *prop_etapas* + * - *prop* - float - proporción de etapas de esa sección sobre el total de etapas para ese día y horas. @@ -664,6 +749,81 @@ Estas tablas contienen estadísticos calculados por UrbanTrips. Algunos estádis - Velocidad comercial promedio de esa línea para ese día. + +.. list-table:: overlapping + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *dia* + - text + - Fecha del día para el cual fue computado el estadístico + * - *base_line_id* + - int + - id identificando la linea de base + * - *base_branch_id* + - int + - id identificando el ramal de base + * - *comp_line_id* + - int + - id identificando la linea de comparacion + * - *comp_branch_id* + - int + - id identificando el ramal de comparacion + * - *res_h3* + - int + - resolucion h3 utilizada en el computo del estadistico + * - *overlap* + - float + - estadistico de solapamiento + * - *type_overlap* + - text + - tipo de estadistico de solapamiento (oferta o demanda) + + + + +.. list-table:: lines_od_matrix_by_section + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *id_linea* + - int + - id de la linea sobre el que se calculan los estadísticos. + * - *yr_mo* + - text + - mes y anio sobre el que se calculan los estadísticos. + * - *day_type* + - text + - dia o tipo de día sobre el cual se calcula los estadísticos. + * - *n_sections* + - int + - cantidad de secciones en las que se segmentó el recorrido representativo de la linea. + * - *section_id_o* + - float + - id de la sección de origen para la que se calcula los estadísticos. Se une con routes_section_id_coords. + * - *section_id_d* + - float + - id de la sección de destino para la que se calcula los estadísticos. Se une con routes_section_id_coords. + * - *hour_min* + - int + - hora mínima de las etapas a utilizar para calcular los estadísticos. + * - *hour_max* + - int + - hora máxima de las etapas a utilizar para calcular los estadísticos. + * - *legs* + - int + - cantidad de etapas en esa sección para ese día y horas. + * - *prop* + - float + - proporción de etapas de esa sección sobre el total de etapas para ese día y horas. + + Modelo de datos de base ``insumos`` ----------------------------------- @@ -823,7 +983,7 @@ El siguiente grupo de tablas almacena información que no se actualiza periódic * - *Zona_voi* - int - id de la zona voronoi al que pertenece el indice h3. - + .. list-table:: distancias @@ -857,3 +1017,28 @@ El siguiente grupo de tablas almacena información que no se actualiza periódic +.. list-table:: routes_section_id_coords + :widths: 25 25 50 + :header-rows: 1 + + * - Campo + - Tipo de dato + - Descripción + * - *id_linea* + - int + - id de la linea del tramo del recorrido. + * - *n_sections* + - int + - cantidad de secciones en el que se fragmento el recorrido de la linea. + * - *section* + - int + - id del segmento del recorrido + * - *section_lrs* + - float + - proporcion del recorrido en el que se encuentra el inicio del tramo + * - *x* + - float + - longitud del inicio del tramo + * - *y* + - float + - latitud del inicio del tramo diff --git a/notebooks/KPI.ipynb b/notebooks/KPI.ipynb index 724f06b..167c543 100644 --- a/notebooks/KPI.ipynb +++ b/notebooks/KPI.ipynb @@ -2,22 +2,34 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Current path: /home/pipe/proyectos/urbantrips/ciudades/amba_2024/UrbanTrips/notebooks\n", + "Parent path: /home/pipe/proyectos/urbantrips/ciudades/amba_2024/UrbanTrips\n" + ] + } + ], "source": [ "import os\n", "import pandas as pd\n", + "from pathlib import Path\n", + "\n", + "# Obtiene la ruta actual y obtiene la ruta de la libreria\n", + "current_path = Path.cwd()\n", + "URBANTRIPS_PATH = current_path.parent\n", + "os.chdir(URBANTRIPS_PATH)\n", + "\n", "from urbantrips.utils import utils\n", "from urbantrips.kpi.kpi import compute_route_section_load\n", "from urbantrips.viz.viz import visualize_route_section_load\n", "from urbantrips.kpi.line_od_matrix import compute_lines_od_matrix\n", "from urbantrips.viz.line_od_matrix import visualize_lines_od_matrix\n", "\n", - "# Completar con el directorio donde se encuentra clonado e instalado el repositorio de UrbanTrips\n", - "URBANTRIPS_PATH = \"RUTA/DE/URBANTRIPS\"\n", - "os.chdir(URBANTRIPS_PATH)\n", - "\n", "# Leer archivos de configuración y conexiones a las db\n", "configs = utils.leer_configs_generales()\n", "conn_insumos = utils.iniciar_conexion_db(tipo='insumos')" @@ -38,7 +50,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -57,7 +69,7 @@ "source": [ "# Se calculan los estadisticos de carga de las secciones de las lineas\n", "compute_route_section_load(\n", - " line_ids=line_ids, hour_range=rango,\n", + " line_ids=line_ids, hour_range=rango,n_sections=n_sections,\n", " section_meters = section_meters,day_type=day_type)" ] }, diff --git a/notebooks/Overlapping.ipynb b/notebooks/Overlapping.ipynb index c3e7feb..9c3821b 100644 --- a/notebooks/Overlapping.ipynb +++ b/notebooks/Overlapping.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -11,14 +11,17 @@ "import geopandas as gpd\n", "import folium\n", "import itertools\n", + "from pathlib import Path\n", + "\n", + "# Obtiene la ruta actual y obtiene la ruta de la libreria\n", + "current_path = Path.cwd()\n", + "URBANTRIPS_PATH = current_path.parent\n", + "os.chdir(URBANTRIPS_PATH)\n", "\n", "from urbantrips.utils import utils\n", "from urbantrips.kpi import overlapping as ovl\n", "from urbantrips.viz import overlapping as ovl_viz\n", "\n", - "# Completar con el directorio donde se encuentra clonado e instalado el repositorio de UrbanTrips\n", - "URBANTRIPS_PATH = \"RUTA/DE/URBANTRIPS\"\n", - "os.chdir(URBANTRIPS_PATH)\n", "\n", "# Leer archivos de configuración y conexiones a las db\n", "configs = utils.leer_configs_generales()\n", @@ -36,13 +39,13 @@ "# Se leen los datos de las lineas\n", "metadata_lineas = pd.read_sql(\"select id_linea,nombre_linea, modo from metadata_lineas;\", conn_insumos)\n", "# Se puede buscar por nombre de linea que contenga alguna palabra o numero\n", - "metadata_lineas[metadata_lineas.nombre_linea.str.contains(\"50\") #reemplazar 50 por lo que se desee buscar en el nombre de la linea\n", + "metadata_lineas[metadata_lineas.nombre_linea.str.contains(\"22\") #reemplazar 17 por lo que se desee buscar en el nombre de la linea\n", " ]" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -59,41 +62,17 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ - "# Obtiene del archivo de configuración si se deben usar ramales o lineas\n", - "use_branches = configs['lineas_contienen_ramales']\n", - "if use_branches:\n", - " # Lee los datos de los ramales\n", - " metadata = pd.read_sql(f\"select id_linea,id_ramal from metadata_ramales where id_linea in ({base_line_id},{comp_line_id})\",\n", - " conn_insumos,dtype={'id_linea': int, 'id_ramal': int})\n", - " route_type = 'branches'\n", - "\n", - " # Computa todas las posibles combinaciones de ramales entre esas dos lineas\n", - " route_id_combinations = list(itertools.combinations(metadata['id_ramal'], 2))\n", - " base_route_id_combinations = list(itertools.combinations(metadata.loc[metadata.id_linea == base_line_id,'id_ramal'], 2))\n", - " comp_line_id_combinations = list(itertools.combinations(metadata.loc[metadata.id_linea == comp_line_id,'id_ramal'], 2))\n", - " route_id_combinations = [combination for combination in route_id_combinations if ((combination not in base_route_id_combinations) and (combination not in comp_line_id_combinations))]\n", - " \n", - " metadata_branches = pd.read_sql(f\"select * from metadata_ramales where id_linea in ({base_line_id},{comp_line_id})\",\n", - " conn_insumos,dtype={'id_linea': int, 'id_ramal': int})\n", + "comparison_info = ovl.get_route_combinations(base_line_id, comp_line_id)\n", "\n", - "else:\n", - " route_type = 'lines'\n", - " route_id_combinations = [(base_line_id, comp_line_id)]\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Aca se pueden ver todos los ramales de las lineas a comparar\n", - "metadata_branches " + "# Aca se pueden ver todos los id de ruta (lineas o ramales) de las lineas a comparar\n", + "route_id_combinations = comparison_info['route_id_combinations']\n", + "# Aca la metadata de las rutas (lineas o ramales)\n", + "route_metadata= comparison_info['metadata']\n", + "route_type = comparison_info['route_type']\n" ] }, { @@ -113,33 +92,8 @@ "metadata": {}, "outputs": [], "source": [ - "# crea un id de ruta unico de ramal o linea en funcion de si esta configurado para usar ramales o lineas\n", - "if use_branches:\n", - " if route_id_combination[0] in metadata.loc[metadata.id_linea == base_line_id,'id_ramal'].values:\n", - " base_route_id = route_id_combination[0]\n", - " comp_route_id = route_id_combination[1]\n", - "\n", - " else:\n", - " base_route_id = route_id_combination[1]\n", - " comp_route_id = route_id_combination[0]\n", - " \n", - " nombre_ramal_base = metadata_branches.loc[metadata_branches.id_ramal == base_route_id,'nombre_ramal'].item()\n", - " nombre_ramal_comp = metadata_branches.loc[metadata_branches.id_ramal == comp_route_id,'nombre_ramal'].item()\n", - "\n", - " base_route_str = f\"ramal {nombre_ramal_base} (id {base_route_id})\"\n", - " comp_route_str = f\"ramal {nombre_ramal_comp} (id {comp_route_id})\"\n", - "\n", - "else:\n", - " base_route_id,comp_route_id = route_id_combination\n", - " base_route_str = \"\"\n", - " comp_route_str = \"\"\n", - "\n", - "nombre_linea_base = metadata_lineas.loc[metadata_lineas.id_linea == base_line_id,'nombre_linea'].item()\n", - "nombre_linea_comp = metadata_lineas.loc[metadata_lineas.id_linea == comp_line_id,'nombre_linea'].item()\n", - "\n", - "print(f\"Tomando como linea base la linea {nombre_linea_base} (id {base_line_id}) \" + base_route_str)\n", - "print(f\"Tomando como linea comparacion la linea {nombre_linea_comp} (id {comp_line_id}) \" + comp_route_str)\n", - "\n" + "# get routes from the combination\n", + "base_route_id, comp_route_id = ovl.get_route_ids_from_combination(base_line_id, comp_line_id, route_id_combination)\n" ] }, { @@ -153,7 +107,10 @@ "base_gdf = overlapping_dict[\"base\"][\"h3\"]\n", "base_route_gdf = overlapping_dict[\"base\"][\"line\"]\n", "comp_gdf = overlapping_dict[\"comp\"][\"h3\"]\n", - "comp_route_gdf = overlapping_dict[\"comp\"][\"line\"]\n" + "comp_route_gdf = overlapping_dict[\"comp\"][\"line\"]\n", + "\n", + "print(overlapping_dict['text_base_v_comp'])\n", + "print(overlapping_dict['text_comp_v_base'])" ] }, { @@ -175,9 +132,14 @@ "outputs": [], "source": [ "# Calcula la demanda de la linea base y la de comparacion\n", - "base_demand,comp_demand = ovl.compute_demand_overlapping(base_line_id,comp_line_id,day,\n", + "demand_overlapping = ovl.compute_demand_overlapping(base_line_id,comp_line_id,day,\n", " base_route_id,comp_route_id,\n", - " base_gdf,comp_gdf)" + " base_gdf,comp_gdf)\n", + "\n", + "base_demand = demand_overlapping[\"base\"][\"data\"]\n", + "comp_demand = demand_overlapping[\"comp\"][\"data\"]\n", + "print(demand_overlapping[\"base\"][\"output_text\"])\n", + "print(demand_overlapping[\"comp\"][\"output_text\"])" ] }, { @@ -191,6 +153,13 @@ "fig.save(f\"resultados/html/{alias}_demand_overlapping_base_{base_route_id}_comp_{comp_route_id}_h3_{h3_res_comp}.html\")\n", "fig" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { diff --git a/urbantrips/kpi/overlapping.py b/urbantrips/kpi/overlapping.py index e41b483..0c1f557 100644 --- a/urbantrips/kpi/overlapping.py +++ b/urbantrips/kpi/overlapping.py @@ -1,528 +1,679 @@ -import pandas as pd -import geopandas as gpd -import numpy as np -from shapely.geometry import Point, LineString -import h3 -from urbantrips.geo import geo -from urbantrips.kpi import kpi -from urbantrips.utils import utils -from urbantrips.carto.routes import read_routes - - -def from_linestring_to_h3(linestring, h3_res=8): - """ - This function takes a shapely linestring and - returns all h3 hecgrid cells that intersect that linestring - """ - lrs = np.arange(0, 1, 0.01) - points = [linestring.interpolate(i, normalized=True) for i in lrs] - coords = [(point.x, point.y) for point in points] - linestring_h3 = pd.Series( - [ - h3.geo_to_h3(lat=coord[1], lng=coord[0], resolution=h3_res) - for coord in coords - ] - ).drop_duplicates() - return linestring_h3 - - -def create_coarse_h3_from_line( - linestring: LineString, h3_res: int, route_id: int -) -> dict: - - # Reference to coarser H3 for those lines - linestring_h3 = from_linestring_to_h3(linestring, h3_res=h3_res) - - # Creeate geodataframes with hex geoms and index and LRS - gdf = gpd.GeoDataFrame( - {"h3": linestring_h3}, geometry=linestring_h3.map(geo.add_geometry), crs=4326 - ) - gdf["route_id"] = route_id - - # Create LRS for each hex index - gdf["h3_lrs"] = [ - kpi.floor_rounding(linestring.project(Point(p[::-1]), True)) - for p in gdf.h3.map(h3.h3_to_geo) - ] - - # Create section ids for each line - df_section_ids_LRS = kpi.create_route_section_ids(len(gdf)) - - # Create cut points for each section based on H3 LRS - df_section_ids_LRS_cut = df_section_ids_LRS.copy() - df_section_ids_LRS_cut.loc[0] = -0.001 - - # Use cut points to come up with a unique integer id - df_section_ids = list(range(1, len(df_section_ids_LRS_cut))) - - gdf["section_id"] = pd.cut( - gdf.h3_lrs, bins=df_section_ids_LRS_cut, labels=df_section_ids, right=True - ) - - # ESTO REEMPLAZA PARA ATRAS - gdf = gdf.sort_values("h3_lrs") - gdf["section_id"] = range(len(gdf)) - - return gdf - - -def get_demand_data( - supply_gdf: gpd.GeoDataFrame, - day_type: str, - line_id: int, - hour_range: ( - list | None - ) = None, # Not used as % of demand is not related to hour range -) -> pd.DataFrame: - - h3_res = h3.h3_get_resolution(supply_gdf.h3.iloc[0]) - - # get demand data - line_ids_where = kpi.create_line_ids_sql_filter(line_ids=[line_id]) - legs = kpi.read_legs_data_by_line_hours_and_day( - line_ids_where, hour_range=hour_range, day_type=day_type - ) - - # Add legs to same coarser H3 used in branch routes - legs["h3_o"] = legs["h3_o"].map(lambda h: geo.h3toparent(h, h3_res)) - legs["h3_d"] = legs["h3_d"].map(lambda h: geo.h3toparent(h, h3_res)) - - shared_h3 = supply_gdf.loc[supply_gdf.shared_h3, "h3"] - legs["leg_in_shared_h3"] = legs.h3_o.isin(shared_h3) & legs.h3_d.isin(shared_h3) - - return legs - - -def aggregate_demand_data( - legs: pd.DataFrame, - supply_gdf: gpd.GeoDataFrame, - base_line_id: int, - comp_line_id: int, - base_branch_id: int | str, - comp_branch_id: int | str, -) -> dict: - - # Compute total legs by h3 origin and destination - total_legs_by_h3_od = ( - legs.reindex( - columns=[ - "dia", - "id_linea", - "h3_o", - "h3_d", - "leg_in_shared_h3", - "factor_expansion_linea", - ] - ) - .groupby( - ["dia", "id_linea", "h3_o", "h3_d", "leg_in_shared_h3"], as_index=False - ) - .sum() - ) - - # Get only legs that could have been done in this branch - legs_within_branch = ( - total_legs_by_h3_od.merge( - supply_gdf.drop("geometry", axis=1), - left_on=["h3_o"], - right_on=["h3"], - how="inner", - ) - .merge( - supply_gdf.drop("geometry", axis=1), - left_on=["h3_d"], - right_on=["h3"], - how="inner", - ) - .reindex( - columns=[ - "dia", - "id_linea", - "h3_o", - "h3_d", - "leg_in_shared_h3", - "factor_expansion_linea", - "h3_lrs_x", - "h3_lrs_y", - "section_id_x", - "section_id_y", - ] - ) - .rename(columns={"section_id_x": "o_proj", "section_id_y": "d_proj"}) - ) - - total_demand = legs_within_branch.factor_expansion_linea.sum() - line_id = legs_within_branch.id_linea.iloc[0] - day = legs_within_branch.dia.iloc[0] - - configs = utils.leer_configs_generales() - use_branches = configs["lineas_contienen_ramales"] - conn_insumos = utils.iniciar_conexion_db(tipo="insumos") - - line_metadata = pd.read_sql( - f"select id_linea, nombre_linea from metadata_lineas where id_linea in ({base_line_id},{comp_line_id})", - conn_insumos, - dtype={"id_linea": int}, - ) - - base_line_name = line_metadata.loc[ - line_metadata.id_linea == base_line_id, "nombre_linea" - ].item() - comp_line_name = line_metadata.loc[ - line_metadata.id_linea == comp_line_id, "nombre_linea" - ].item() - - if use_branches: - # get line id base on branch - metadata = pd.read_sql( - f"select id_linea,id_ramal,nombre_ramal from metadata_ramales where id_ramal in ({base_branch_id},{comp_branch_id})", - conn_insumos, - dtype={"id_linea": int, "id_ramal": int}, - ) - - base_branch_name = metadata.loc[ - metadata.id_ramal == base_branch_id, "nombre_ramal" - ].item() - comp_branch_name = metadata.loc[ - metadata.id_ramal == comp_branch_id, "nombre_ramal" - ].item() - demand_base_branch_str = ( - f"que podria recorrer este ramal {base_branch_name} (id {base_branch_id}) " - ) - demand_comp_branch_str = f"ramal {comp_branch_name} (id {comp_branch_id})" - - else: - demand_base_branch_str = " " - demand_comp_branch_str = " " - conn_insumos.close() - - print( - f"La demanda total para la linea {base_line_name} (id {line_id}) {demand_base_branch_str}es: {int(total_demand)} etapas" - ) - - shared_demand = round( - legs_within_branch.loc[ - legs_within_branch.leg_in_shared_h3, "factor_expansion_linea" - ].sum() - / total_demand - * 100, - 1, - ) - print( - f"De las cuales el {shared_demand} % comparte OD con la linea {comp_line_name} (id {comp_line_id}) {demand_comp_branch_str}" - ) - update_overlapping_table_demand( - day, - base_line_id, - base_branch_id, - comp_line_id, - comp_branch_id, - res_h3=h3.h3_get_resolution(supply_gdf.h3.iloc[0]), - base_v_comp=shared_demand, - ) - return legs_within_branch - - -def demand_by_section_id(legs_within_branch): - total_demand = legs_within_branch.factor_expansion_linea.sum() - - # Add direction to use for which sections id traversed - legs_within_branch["sentido"] = [ - "ida" if row.o_proj <= row.d_proj else "vuelta" - for _, row in legs_within_branch.iterrows() - ] - - # remove legs with no origin or destination projected - legs_within_branch = legs_within_branch.dropna(subset=["o_proj", "d_proj"]) - - # Create df with all traversed sections - legs_dict = legs_within_branch.to_dict("records") - leg_route_sections_df = pd.concat(map(kpi.build_leg_route_sections_df, legs_dict)) - - # Compute total demand by section id - demand_by_section_id = leg_route_sections_df.groupby( - ["section_id"], as_index=False - ).agg(total_legs=("factor_expansion_linea", "sum")) - - demand_by_section_id["prop_demand"] = ( - demand_by_section_id.total_legs / total_demand * 100 - ) - - return demand_by_section_id - - -def update_overlapping_table_supply( - day, - base_line_id, - base_branch_id, - comp_line_id, - comp_branch_id, - res_h3, - base_v_comp, - comp_v_base, -): - conn_data = utils.iniciar_conexion_db(tipo="data") - # Update db - delete_q = f""" - delete from overlapping - where dia = '{day}' - and base_line_id = {base_line_id} - and base_branch_id = {base_branch_id} - and comp_line_id = {comp_line_id} - and comp_branch_id = {comp_branch_id} - and res_h3 = {res_h3} - and type_overlap = "oferta" - ; - """ - conn_data.execute(delete_q) - conn_data.commit() - - delete_q = f""" - delete from overlapping - where dia = '{day}' - and base_line_id = {comp_line_id} - and base_branch_id = {comp_branch_id} - and comp_line_id = {base_line_id} - and comp_branch_id = {base_branch_id} - and res_h3 = {res_h3} - and type_overlap = "oferta" - ; - """ - conn_data.execute(delete_q) - conn_data.commit() - - insert_q = f""" - insert into overlapping (dia,base_line_id,base_branch_id,comp_line_id,comp_branch_id,res_h3,overlap, type_overlap) - values - ('{day}',{base_line_id},{base_branch_id},{comp_line_id},{comp_branch_id},{res_h3},{base_v_comp},'oferta'), - ('{day}',{comp_line_id},{comp_branch_id},{base_line_id},{base_branch_id},{res_h3},{comp_v_base},'oferta') - ; - """ - - conn_data.execute(insert_q) - conn_data.commit() - conn_data.close() - - -def update_overlapping_table_demand( - day, base_line_id, base_branch_id, comp_line_id, comp_branch_id, res_h3, base_v_comp -): - conn_data = utils.iniciar_conexion_db(tipo="data") - # Update db - delete_q = f""" - delete from overlapping - where dia = '{day}' - and base_line_id = {base_line_id} - and base_branch_id = {base_branch_id} - and comp_line_id = {comp_line_id} - and comp_branch_id = {comp_branch_id} - and res_h3 = {res_h3} - and type_overlap = "demanda" - ; - """ - conn_data.execute(delete_q) - conn_data.commit() - - insert_q = f""" - insert into overlapping (dia,base_line_id,base_branch_id,comp_line_id,comp_branch_id,res_h3,overlap, type_overlap) - values - ('{day}',{base_line_id},{base_branch_id},{comp_line_id},{comp_branch_id},{res_h3},{base_v_comp},'demanda') - ; - """ - conn_data.execute(insert_q) - conn_data.commit() - conn_data.close() - - -def normalize_total_legs_to_dot_size(series, min_dot_size, max_dot_size): - return min_dot_size + (max_dot_size - 1) * (series - series.min()) / ( - series.max() - series.min() - ) - - -def compute_supply_overlapping( - day, base_route_id, comp_route_id, route_type, h3_res_comp -): - # Get route geoms - route_geoms = read_routes( - route_ids=[base_route_id, comp_route_id], route_type=route_type - ) - - # Crate linestring for each branch - base_route_gdf = route_geoms.loc[route_geoms.route_id == base_route_id, "geometry"] - linestring_base = base_route_gdf.item() - - # Crate linestring for each branch - comp_route_gdf = route_geoms.loc[route_geoms.route_id == comp_route_id, "geometry"] - linestring_comp = comp_route_gdf.item() - - # Turn linestring into coarse h3 indexes - base_h3 = create_coarse_h3_from_line( - linestring=linestring_base, h3_res=h3_res_comp, route_id=base_route_id - ) - comp_h3 = create_coarse_h3_from_line( - linestring=linestring_comp, h3_res=h3_res_comp, route_id=comp_route_id - ) - - # Compute overlapping between those h3 indexes - branch_overlapping = base_h3.reindex( - columns=["h3", "route_id", "section_id"] - ).merge( - comp_h3.reindex(columns=["h3", "route_id", "section_id"]), - on="h3", - how="outer", - suffixes=("_base", "_comp"), - ) - - # classify each h3 index as shared or not - overlapping_mask = (branch_overlapping.route_id_base.notna()) & ( - branch_overlapping.route_id_comp.notna() - ) - overlapping_indexes = overlapping_mask.sum() - overlapping_h3 = branch_overlapping.loc[overlapping_mask, "h3"] - base_h3["shared_h3"] = base_h3.h3.isin(overlapping_h3) - comp_h3["shared_h3"] = comp_h3.h3.isin(overlapping_h3) - - # Compute % of shred h3 - base_v_comp = round(overlapping_indexes / len(base_h3) * 100, 1) - comp_v_base = round(overlapping_indexes / len(comp_h3) * 100, 1) - - configs = utils.leer_configs_generales() - use_branches = configs["lineas_contienen_ramales"] - - if use_branches: - # get line id base on branch - conn_insumos = utils.iniciar_conexion_db(tipo="insumos") - metadata = pd.read_sql( - f"select id_linea,id_ramal,nombre_ramal from metadata_ramales where id_ramal in ({base_route_id},{comp_route_id})", - conn_insumos, - dtype={"id_linea": int, "id_ramal": int}, - ) - conn_insumos.close() - base_line_id = metadata.loc[ - metadata.id_ramal == base_route_id, "id_linea" - ].item() - comp_line_id = metadata.loc[ - metadata.id_ramal == comp_route_id, "id_linea" - ].item() - - base_branch_name = metadata.loc[ - metadata.id_ramal == base_route_id, "nombre_ramal" - ].item() - comp_branch_name = metadata.loc[ - metadata.id_ramal == comp_route_id, "nombre_ramal" - ].item() - - base_branch_id = base_route_id - comp_branch_id = comp_route_id - - print( - f"El {base_v_comp} % del recorrido del ramal base {base_branch_name}" - f" se superpone con el del ramal de comparación {comp_branch_name}" - ) - print( - f"Por otro lado {comp_v_base} % del recorrido del ramal {comp_branch_name}" - f" se superpone con el del ramal {base_branch_name}" - ) - - else: - base_line_id = base_route_id - comp_line_id = comp_route_id - base_branch_id = "NULL" - comp_branch_id = "NULL" - - metadata = pd.read_sql( - f"select id_linea, nombre_linea from metadata_lineas where id_linea in ({base_route_id},{comp_route_id})", - conn_insumos, - dtype={"id_linea": int}, - ) - - base_line_name = metadata.loc[ - metadata.id_linea == base_route_id, "nombre_linea" - ].item() - comp_line_name = metadata.loc[ - metadata.id_linea == comp_route_id, "nombre_linea" - ].item() - - print( - f"El {base_v_comp} % del recorrido de la linea base {base_line_name}" - " se superpone con el del ramal de comparación {comp_line_name}" - ) - print( - f"Por otro lado {comp_v_base} % del recorrido del ramal {comp_line_name}" - " se superpone con el del ramal {base_line_name}" - ) - - update_overlapping_table_supply( - day=day, - base_line_id=base_line_id, - base_branch_id=base_branch_id, - comp_line_id=comp_line_id, - comp_branch_id=comp_branch_id, - res_h3=h3_res_comp, - base_v_comp=base_v_comp, - comp_v_base=comp_v_base, - ) - - return { - "base": {"line": base_route_gdf, "h3": base_h3}, - "comp": {"line": comp_route_gdf, "h3": comp_h3}, - } - - -def compute_demand_overlapping( - base_line_id, - comp_line_id, - day_type, - base_route_id, - comp_route_id, - base_gdf, - comp_gdf, -): - configs = utils.leer_configs_generales() - comp_h3_resolution = h3.h3_get_resolution(comp_gdf.h3.iloc[0]) - configs_resolution = configs["resolucion_h3"] - - if comp_h3_resolution > configs_resolution: - print( - "No puede procesarse la demanda con resolución de H3 mayor a la configurada" - ) - print("Se recomienda bajar la resolución de H3 de la línea de comparación") - print(f"Resolucion para solapamiento de demanda {comp_h3_resolution}") - print(f"Resolucion configurada {configs_resolution}") - return None, None - - use_branches = configs["lineas_contienen_ramales"] - - if use_branches: - base_branch_id = base_route_id - comp_branch_id = comp_route_id - else: - base_branch_id = "NULL" - comp_branch_id = "NULL" - - base_legs = get_demand_data( - supply_gdf=base_gdf, day_type=day_type, line_id=base_line_id - ) - comp_legs = get_demand_data( - supply_gdf=comp_gdf, day_type=day_type, line_id=comp_line_id - ) - - base_demand = aggregate_demand_data( - legs=base_legs, - supply_gdf=base_gdf, - base_line_id=base_line_id, - comp_line_id=comp_line_id, - base_branch_id=base_branch_id, - comp_branch_id=comp_branch_id, - ) - comp_demand = aggregate_demand_data( - legs=comp_legs, - supply_gdf=comp_gdf, - base_line_id=comp_line_id, - comp_line_id=base_line_id, - base_branch_id=comp_branch_id, - comp_branch_id=base_branch_id, - ) - - return base_demand, comp_demand +import pandas as pd +import geopandas as gpd +import numpy as np +from shapely.geometry import Point, LineString +import h3 +import itertools + +from urbantrips.geo import geo +from urbantrips.kpi import kpi +from urbantrips.utils import utils +from urbantrips.carto.routes import read_routes + + +def from_linestring_to_h3(linestring, h3_res=8): + """ + This function takes a shapely linestring and + returns all h3 hecgrid cells that intersect that linestring + """ + lrs = np.arange(0, 1, 0.01) + points = [linestring.interpolate(i, normalized=True) for i in lrs] + coords = [(point.x, point.y) for point in points] + linestring_h3 = pd.Series( + [ + h3.geo_to_h3(lat=coord[1], lng=coord[0], resolution=h3_res) + for coord in coords + ] + ).drop_duplicates() + return linestring_h3 + + +def create_coarse_h3_from_line( + linestring: LineString, h3_res: int, route_id: int +) -> dict: + + # Reference to coarser H3 for those lines + linestring_h3 = from_linestring_to_h3(linestring, h3_res=h3_res) + + # Creeate geodataframes with hex geoms and index and LRS + gdf = gpd.GeoDataFrame( + {"h3": linestring_h3}, geometry=linestring_h3.map(geo.add_geometry), crs=4326 + ) + gdf["route_id"] = route_id + + # Create LRS for each hex index + gdf["h3_lrs"] = [ + kpi.floor_rounding(linestring.project(Point(p[::-1]), True)) + for p in gdf.h3.map(h3.h3_to_geo) + ] + + # Create section ids for each line + df_section_ids_LRS = kpi.create_route_section_ids(len(gdf)) + + # Create cut points for each section based on H3 LRS + df_section_ids_LRS_cut = df_section_ids_LRS.copy() + df_section_ids_LRS_cut.loc[0] = -0.001 + + # Use cut points to come up with a unique integer id + df_section_ids = list(range(1, len(df_section_ids_LRS_cut))) + + gdf["section_id"] = pd.cut( + gdf.h3_lrs, bins=df_section_ids_LRS_cut, labels=df_section_ids, right=True + ) + + # ESTO REEMPLAZA PARA ATRAS + gdf = gdf.sort_values("h3_lrs") + gdf["section_id"] = range(len(gdf)) + + return gdf + + +def get_demand_data( + supply_gdf: gpd.GeoDataFrame, + day_type: str, + line_id: int, + hour_range: ( + list | None + ) = None, # Not used as % of demand is not related to hour range +) -> pd.DataFrame: + + h3_res = h3.h3_get_resolution(supply_gdf.h3.iloc[0]) + + # get demand data + line_ids_where = kpi.create_line_ids_sql_filter(line_ids=[line_id]) + legs = kpi.read_legs_data_by_line_hours_and_day( + line_ids_where, hour_range=hour_range, day_type=day_type + ) + + # Add legs to same coarser H3 used in branch routes + legs["h3_o"] = legs["h3_o"].map(lambda h: geo.h3toparent(h, h3_res)) + legs["h3_d"] = legs["h3_d"].map(lambda h: geo.h3toparent(h, h3_res)) + + shared_h3 = supply_gdf.loc[supply_gdf.shared_h3, "h3"] + legs["leg_in_shared_h3"] = legs.h3_o.isin(shared_h3) & legs.h3_d.isin(shared_h3) + + return legs + + +def aggregate_demand_data( + legs: pd.DataFrame, + supply_gdf: gpd.GeoDataFrame, + base_line_id: int, + comp_line_id: int, + base_branch_id: int | str, + comp_branch_id: int | str, +) -> dict: + + # Compute total legs by h3 origin and destination + total_legs_by_h3_od = ( + legs.reindex( + columns=[ + "dia", + "id_linea", + "h3_o", + "h3_d", + "leg_in_shared_h3", + "factor_expansion_linea", + ] + ) + .groupby( + ["dia", "id_linea", "h3_o", "h3_d", "leg_in_shared_h3"], as_index=False + ) + .sum() + ) + + # Get only legs that could have been done in this branch + legs_within_branch = ( + total_legs_by_h3_od.merge( + supply_gdf.drop("geometry", axis=1), + left_on=["h3_o"], + right_on=["h3"], + how="inner", + ) + .merge( + supply_gdf.drop("geometry", axis=1), + left_on=["h3_d"], + right_on=["h3"], + how="inner", + ) + .reindex( + columns=[ + "dia", + "id_linea", + "h3_o", + "h3_d", + "leg_in_shared_h3", + "factor_expansion_linea", + "h3_lrs_x", + "h3_lrs_y", + "section_id_x", + "section_id_y", + ] + ) + .rename(columns={"section_id_x": "o_proj", "section_id_y": "d_proj"}) + ) + + total_demand = legs_within_branch.factor_expansion_linea.sum() + line_id = legs_within_branch.id_linea.iloc[0] + day = legs_within_branch.dia.iloc[0] + + configs = utils.leer_configs_generales() + use_branches = configs["lineas_contienen_ramales"] + conn_insumos = utils.iniciar_conexion_db(tipo="insumos") + + line_metadata = pd.read_sql( + f"select id_linea, nombre_linea from metadata_lineas where id_linea in ({base_line_id},{comp_line_id})", + conn_insumos, + dtype={"id_linea": int}, + ) + + base_line_name = line_metadata.loc[ + line_metadata.id_linea == base_line_id, "nombre_linea" + ].item() + comp_line_name = line_metadata.loc[ + line_metadata.id_linea == comp_line_id, "nombre_linea" + ].item() + + if use_branches: + # get line id base on branch + metadata = pd.read_sql( + f"select id_linea,id_ramal,nombre_ramal from metadata_ramales where id_ramal in ({base_branch_id},{comp_branch_id})", + conn_insumos, + dtype={"id_linea": int, "id_ramal": int}, + ) + + base_branch_name = metadata.loc[ + metadata.id_ramal == base_branch_id, "nombre_ramal" + ].item() + comp_branch_name = metadata.loc[ + metadata.id_ramal == comp_branch_id, "nombre_ramal" + ].item() + + demand_base_branch_str = ( + f"que podria recorrer este ramal {base_branch_name} (id {base_branch_id}) " + ) + demand_comp_branch_str = f"ramal {comp_branch_name} (id {comp_branch_id})" + + else: + demand_base_branch_str = " " + demand_comp_branch_str = " " + conn_insumos.close() + + shared_demand = round( + legs_within_branch.loc[ + legs_within_branch.leg_in_shared_h3, "factor_expansion_linea" + ].sum() + / total_demand + * 100, + 1, + ) + output_text = ( + f"La demanda total para la linea {base_line_name} (id {line_id}) {demand_base_branch_str}es: {int(total_demand)} etapas " + f"de las cuales el {shared_demand} % comparte OD con la linea {comp_line_name} (id {comp_line_id}) {demand_comp_branch_str}\n\n" + ) + update_overlapping_table_demand( + day, + base_line_id, + base_branch_id, + comp_line_id, + comp_branch_id, + res_h3=h3.h3_get_resolution(supply_gdf.h3.iloc[0]), + base_v_comp=shared_demand, + ) + return {"data": legs_within_branch, "output_text": output_text} + + +def demand_by_section_id(legs_within_branch): + total_demand = legs_within_branch.factor_expansion_linea.sum() + + # Add direction to use for which sections id traversed + legs_within_branch["sentido"] = [ + "ida" if row.o_proj <= row.d_proj else "vuelta" + for _, row in legs_within_branch.iterrows() + ] + + # remove legs with no origin or destination projected + legs_within_branch = legs_within_branch.dropna(subset=["o_proj", "d_proj"]) + + # Create df with all traversed sections + legs_dict = legs_within_branch.to_dict("records") + leg_route_sections_df = pd.concat(map(kpi.build_leg_route_sections_df, legs_dict)) + + # Compute total demand by section id + demand_by_section_id = leg_route_sections_df.groupby( + ["section_id"], as_index=False + ).agg(total_legs=("factor_expansion_linea", "sum")) + + demand_by_section_id["prop_demand"] = ( + demand_by_section_id.total_legs / total_demand * 100 + ) + + return demand_by_section_id + + +def update_overlapping_table_supply( + day, + base_line_id, + base_branch_id, + comp_line_id, + comp_branch_id, + res_h3, + base_v_comp, + comp_v_base, +): + conn_data = utils.iniciar_conexion_db(tipo="data") + # Update db + delete_q = f""" + delete from overlapping + where dia = '{day}' + and base_line_id = {base_line_id} + and base_branch_id = {base_branch_id} + and comp_line_id = {comp_line_id} + and comp_branch_id = {comp_branch_id} + and res_h3 = {res_h3} + and type_overlap = "oferta" + ; + """ + conn_data.execute(delete_q) + conn_data.commit() + + delete_q = f""" + delete from overlapping + where dia = '{day}' + and base_line_id = {comp_line_id} + and base_branch_id = {comp_branch_id} + and comp_line_id = {base_line_id} + and comp_branch_id = {base_branch_id} + and res_h3 = {res_h3} + and type_overlap = "oferta" + ; + """ + conn_data.execute(delete_q) + conn_data.commit() + + insert_q = f""" + insert into overlapping (dia,base_line_id,base_branch_id,comp_line_id,comp_branch_id,res_h3,overlap, type_overlap) + values + ('{day}',{base_line_id},{base_branch_id},{comp_line_id},{comp_branch_id},{res_h3},{base_v_comp},'oferta'), + ('{day}',{comp_line_id},{comp_branch_id},{base_line_id},{base_branch_id},{res_h3},{comp_v_base},'oferta') + ; + """ + + conn_data.execute(insert_q) + conn_data.commit() + conn_data.close() + + +def update_overlapping_table_demand( + day, base_line_id, base_branch_id, comp_line_id, comp_branch_id, res_h3, base_v_comp +): + conn_data = utils.iniciar_conexion_db(tipo="data") + # Update db + delete_q = f""" + delete from overlapping + where dia = '{day}' + and base_line_id = {base_line_id} + and base_branch_id = {base_branch_id} + and comp_line_id = {comp_line_id} + and comp_branch_id = {comp_branch_id} + and res_h3 = {res_h3} + and type_overlap = "demanda" + ; + """ + conn_data.execute(delete_q) + conn_data.commit() + + insert_q = f""" + insert into overlapping (dia,base_line_id,base_branch_id,comp_line_id,comp_branch_id,res_h3,overlap, type_overlap) + values + ('{day}',{base_line_id},{base_branch_id},{comp_line_id},{comp_branch_id},{res_h3},{base_v_comp},'demanda') + ; + """ + conn_data.execute(insert_q) + conn_data.commit() + conn_data.close() + + +def normalize_total_legs_to_dot_size(series, min_dot_size, max_dot_size): + return min_dot_size + (max_dot_size - 1) * (series - series.min()) / ( + series.max() - series.min() + ) + + +def compute_supply_overlapping( + day, base_route_id, comp_route_id, route_type, h3_res_comp +): + # Get route geoms + route_geoms = read_routes( + route_ids=[base_route_id, comp_route_id], route_type=route_type + ) + + # Crate linestring for each branch + base_route_gdf = route_geoms.loc[route_geoms.route_id == base_route_id, "geometry"] + linestring_base = base_route_gdf.item() + + # Crate linestring for each branch + comp_route_gdf = route_geoms.loc[route_geoms.route_id == comp_route_id, "geometry"] + linestring_comp = comp_route_gdf.item() + + # Turn linestring into coarse h3 indexes + base_h3 = create_coarse_h3_from_line( + linestring=linestring_base, h3_res=h3_res_comp, route_id=base_route_id + ) + comp_h3 = create_coarse_h3_from_line( + linestring=linestring_comp, h3_res=h3_res_comp, route_id=comp_route_id + ) + + # Compute overlapping between those h3 indexes + branch_overlapping = base_h3.reindex( + columns=["h3", "route_id", "section_id"] + ).merge( + comp_h3.reindex(columns=["h3", "route_id", "section_id"]), + on="h3", + how="outer", + suffixes=("_base", "_comp"), + ) + + # classify each h3 index as shared or not + overlapping_mask = (branch_overlapping.route_id_base.notna()) & ( + branch_overlapping.route_id_comp.notna() + ) + overlapping_indexes = overlapping_mask.sum() + overlapping_h3 = branch_overlapping.loc[overlapping_mask, "h3"] + base_h3["shared_h3"] = base_h3.h3.isin(overlapping_h3) + comp_h3["shared_h3"] = comp_h3.h3.isin(overlapping_h3) + + # Compute % of shred h3 + base_v_comp = round(overlapping_indexes / len(base_h3) * 100, 1) + comp_v_base = round(overlapping_indexes / len(comp_h3) * 100, 1) + + configs = utils.leer_configs_generales() + use_branches = configs["lineas_contienen_ramales"] + + if use_branches: + # get line id base on branch + conn_insumos = utils.iniciar_conexion_db(tipo="insumos") + metadata = pd.read_sql( + f"select id_linea,id_ramal,nombre_ramal from metadata_ramales where id_ramal in ({base_route_id},{comp_route_id})", + conn_insumos, + dtype={"id_linea": int, "id_ramal": int}, + ) + conn_insumos.close() + base_line_id = metadata.loc[ + metadata.id_ramal == base_route_id, "id_linea" + ].item() + comp_line_id = metadata.loc[ + metadata.id_ramal == comp_route_id, "id_linea" + ].item() + + base_branch_name = metadata.loc[ + metadata.id_ramal == base_route_id, "nombre_ramal" + ].item() + comp_branch_name = metadata.loc[ + metadata.id_ramal == comp_route_id, "nombre_ramal" + ].item() + + base_branch_id = base_route_id + comp_branch_id = comp_route_id + + output_text_base_v_comp = ( + f"El {base_v_comp} % del recorrido del ramal base {base_branch_name} " + f" se superpone con el del ramal de comparación {comp_branch_name}\n\n" + ) + output_text_comp_v_base = ( + f"Por otro lado {comp_v_base} % del recorrido del ramal {comp_branch_name} " + f" se superpone con el del ramal {base_branch_name}\n\n" + ) + + else: + base_line_id = base_route_id + comp_line_id = comp_route_id + base_branch_id = "NULL" + comp_branch_id = "NULL" + + metadata = pd.read_sql( + f"select id_linea, nombre_linea from metadata_lineas where id_linea in ({base_route_id},{comp_route_id})", + conn_insumos, + dtype={"id_linea": int}, + ) + + base_line_name = metadata.loc[ + metadata.id_linea == base_route_id, "nombre_linea" + ].item() + comp_line_name = metadata.loc[ + metadata.id_linea == comp_route_id, "nombre_linea" + ].item() + + output_text_base_v_comp = ( + f"El {base_v_comp} % del recorrido de la linea base {base_line_name}" + " se superpone con el del ramal de comparación {comp_line_name}\n\n" + ) + output_text_comp_v_base = ( + f"Por otro lado {comp_v_base} % del recorrido del ramal {comp_line_name}" + " se superpone con el del ramal {base_line_name}\n\n" + ) + + update_overlapping_table_supply( + day=day, + base_line_id=base_line_id, + base_branch_id=base_branch_id, + comp_line_id=comp_line_id, + comp_branch_id=comp_branch_id, + res_h3=h3_res_comp, + base_v_comp=base_v_comp, + comp_v_base=comp_v_base, + ) + + return { + "base": {"line": base_route_gdf, "h3": base_h3}, + "comp": {"line": comp_route_gdf, "h3": comp_h3}, + "text_base_v_comp": output_text_base_v_comp, + "text_comp_v_base": output_text_comp_v_base, + } + + +def compute_demand_overlapping( + base_line_id, + comp_line_id, + day_type, + base_route_id, + comp_route_id, + base_gdf, + comp_gdf, +): + configs = utils.leer_configs_generales() + comp_h3_resolution = h3.h3_get_resolution(comp_gdf.h3.iloc[0]) + configs_resolution = configs["resolucion_h3"] + + if comp_h3_resolution > configs_resolution: + print( + "No puede procesarse la demanda con resolución de H3 mayor a la configurada" + ) + print("Se recomienda bajar la resolución de H3 de la línea de comparación") + print(f"Resolucion para solapamiento de demanda {comp_h3_resolution}") + print(f"Resolucion configurada {configs_resolution}") + return None, None + + use_branches = configs["lineas_contienen_ramales"] + + if use_branches: + base_branch_id = base_route_id + comp_branch_id = comp_route_id + else: + base_branch_id = "NULL" + comp_branch_id = "NULL" + + base_legs = get_demand_data( + supply_gdf=base_gdf, day_type=day_type, line_id=base_line_id + ) + comp_legs = get_demand_data( + supply_gdf=comp_gdf, day_type=day_type, line_id=comp_line_id + ) + + base_demand_dict = aggregate_demand_data( + legs=base_legs, + supply_gdf=base_gdf, + base_line_id=base_line_id, + comp_line_id=comp_line_id, + base_branch_id=base_branch_id, + comp_branch_id=comp_branch_id, + ) + comp_demand_dict = aggregate_demand_data( + legs=comp_legs, + supply_gdf=comp_gdf, + base_line_id=comp_line_id, + comp_line_id=base_line_id, + base_branch_id=comp_branch_id, + comp_branch_id=base_branch_id, + ) + + return {"base": base_demand_dict, "comp": comp_demand_dict} + + +def get_route_combinations(base_line_id, comp_line_id): + """ + Retrieve route ID combinations and metadata based on the given line IDs. + This function fetches configuration settings to determine whether to use branches or lines. + It then reads metadata from a database and computes all possible combinations of route IDs + between the specified base and comparison line IDs. + Args: + base_line_id (int): The ID of the base line. + comp_line_id (int): The ID of the comparison line. + Returns: + dict: A dictionary containing: + - "route_id_combinations" (list of tuples): Combinations of route IDs. + - "metadata" (DataFrame): Metadata of the routes. + - "route_type" (str): Type of routes used ("branches" or "lines"). + """ + + # Obtiene del archivo de configuración si se deben usar ramales o lineas + configs = utils.leer_configs_generales() + use_branches = configs["lineas_contienen_ramales"] + conn_insumos = utils.iniciar_conexion_db(tipo="insumos") + + # Lee los datos de los ramales + metadata = pd.read_sql( + f"select id_linea,id_ramal from metadata_ramales where id_linea in ({base_line_id},{comp_line_id})", + conn_insumos, + dtype={"id_linea": int, "id_ramal": int}, + ) + + if use_branches: + route_type = "branches" + + # Computa todas las posibles combinaciones de ramales entre esas dos lineas + route_id_combinations = list(itertools.combinations(metadata["id_ramal"], 2)) + base_route_id_combinations = list( + itertools.combinations( + metadata.loc[metadata.id_linea == base_line_id, "id_ramal"], 2 + ) + ) + comp_line_id_combinations = list( + itertools.combinations( + metadata.loc[metadata.id_linea == comp_line_id, "id_ramal"], 2 + ) + ) + route_id_combinations = [ + combination + for combination in route_id_combinations + if ( + (combination not in base_route_id_combinations) + and (combination not in comp_line_id_combinations) + ) + ] + + metadata = pd.read_sql( + f"select * from metadata_ramales where id_linea in ({base_line_id},{comp_line_id})", + conn_insumos, + dtype={"id_linea": int, "id_ramal": int}, + ) + + else: + route_type = "lines" + route_id_combinations = [(base_line_id, comp_line_id)] + + return { + "route_id_combinations": route_id_combinations, + "metadata": metadata, + "route_type": route_type, + } + + +def get_route_ids_from_combination(base_line_id, comp_line_id, route_id_combination): + # Obtiene del archivo de configuración si se deben usar ramales o lineas + configs = utils.leer_configs_generales() + use_branches = configs["lineas_contienen_ramales"] + + conn_insumos = utils.iniciar_conexion_db(tipo="insumos") + + q = f"""select id_linea,id_ramal from metadata_ramales + where id_linea in ({base_line_id},{comp_line_id})""" + # Lee los datos de los ramales + metadata = pd.read_sql( + q, + conn_insumos, + dtype={"id_linea": int, "id_ramal": int}, + ) + + q = f"""select id_linea, nombre_linea from metadata_lineas + where id_linea in ({base_line_id},{comp_line_id})""" + # Lee los datos de las lineas + metadata_lineas = pd.read_sql( + q, + conn_insumos, + dtype={"id_linea": int}, + ) + + # crea un id de ruta unico de ramal o linea en funcion de si esta configurado + # para usar ramales o lineas + if use_branches: + q = f""" + select * from metadata_ramales where id_ramal in {route_id_combination} + """ + metadata_branches = pd.read_sql( + q, + conn_insumos, + dtype={"id_linea": int, "id_ramal": int}, + ) + if ( + route_id_combination[0] + in metadata.loc[metadata.id_linea == base_line_id, "id_ramal"].values + ): + base_route_id = route_id_combination[0] + comp_route_id = route_id_combination[1] + + else: + base_route_id = route_id_combination[1] + comp_route_id = route_id_combination[0] + + nombre_ramal_base = metadata_branches.loc[ + metadata_branches.id_ramal == base_route_id, "nombre_ramal" + ].item() + nombre_ramal_comp = metadata_branches.loc[ + metadata_branches.id_ramal == comp_route_id, "nombre_ramal" + ].item() + + base_route_str = f"ramal {nombre_ramal_base} (id {base_route_id})" + comp_route_str = f"ramal {nombre_ramal_comp} (id {comp_route_id})" + + else: + base_route_id, comp_route_id = route_id_combination + base_route_str = "" + comp_route_str = "" + + nombre_linea_base = metadata_lineas.loc[ + metadata_lineas.id_linea == base_line_id, "nombre_linea" + ].item() + nombre_linea_comp = metadata_lineas.loc[ + metadata_lineas.id_linea == comp_line_id, "nombre_linea" + ].item() + + print( + f"Tomando como linea base la linea {nombre_linea_base} (id {base_line_id}) " + + base_route_str + ) + print( + f"Tomando como linea comparacion la linea {nombre_linea_comp} (id {comp_line_id}) " + + comp_route_str + ) + return base_route_id, comp_route_id diff --git a/urbantrips/run_interactive_tools.py b/urbantrips/run_interactive_tools.py new file mode 100644 index 0000000..6722980 --- /dev/null +++ b/urbantrips/run_interactive_tools.py @@ -0,0 +1,250 @@ +import pandas as pd +import streamlit as st +from streamlit_folium import st_folium +from urbantrips.utils.utils import iniciar_conexion_db +from urbantrips.utils import utils +from urbantrips.kpi import overlapping as ovl +from urbantrips.viz import overlapping as ovl_viz + +st.set_page_config(layout="wide") + + +# --- Función para levantar tablas SQL y almacenar en session_state --- +def cargar_tabla_sql(tabla_sql, tipo_conexion="dash", query=""): + if f"{tabla_sql}_{tipo_conexion}" not in st.session_state: + conn = iniciar_conexion_db(tipo=tipo_conexion) + try: + query = query or f"SELECT * FROM {tabla_sql}" + tabla = pd.read_sql_query(query, conn) + st.session_state[f"{tabla_sql}_{tipo_conexion}"] = tabla + except Exception: + st.error(f"{tabla_sql} no existe") + st.session_state[f"{tabla_sql}_{tipo_conexion}"] = pd.DataFrame() + finally: + conn.close() + return st.session_state[f"{tabla_sql}_{tipo_conexion}"] + + +# --- Cargar configuraciones y conexiones en session_state --- +if "configs" not in st.session_state: + st.session_state.configs = utils.leer_configs_generales() + +configs = st.session_state.configs +alias = configs["alias_db_data"] +use_branches = configs["lineas_contienen_ramales"] +metadata_lineas = cargar_tabla_sql("metadata_lineas", "insumos")[ + ["id_linea", "nombre_linea"] +] +conn_insumos = iniciar_conexion_db(tipo="insumos") + +# --- Inicializar variables en session_state --- +for var in [ + "id_linea_1", + "nombre_linea_1", + "branch_id_1", + "branch_name_1", + "id_linea_2", + "nombre_linea_2", + "branch_id_2", + "branch_name_2", +]: + if var not in st.session_state: + st.session_state[var] = None + + +# --- Función para seleccionar líneas y ramales y almacenarlos en session_state --- +def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_insumos): + texto_a_buscar = st.text_input( + f"Ingrese el texto a buscar para {nombre_columna}", key=key_input + ) + if texto_a_buscar: + if f"df_filtrado_{texto_a_buscar}_{branch_key}" not in st.session_state: + st.session_state[f"df_filtrado_{texto_a_buscar}_{branch_key}"] = ( + metadata_lineas[ + metadata_lineas.apply( + lambda row: row.astype(str) + .str.contains(texto_a_buscar, case=False, na=False) + .any(), + axis=1, + ) + ] + ) + df_filtrado = st.session_state[f"df_filtrado_{texto_a_buscar}_{branch_key}"] + + if not df_filtrado.empty: + opciones = df_filtrado.apply( + lambda row: f"{row['nombre_linea']}", axis=1 + ).tolist() + seleccion_texto = st.selectbox( + f"Seleccione una línea de colectivo para {nombre_columna}", + opciones, + key=key_select, + ) + st.session_state[f"seleccion_{branch_key}"] = df_filtrado.iloc[ + opciones.index(seleccion_texto) + ] + + if use_branches: + if ( + f"metadata_branches_{st.session_state[f'seleccion_{branch_key}']['id_linea']}" + not in st.session_state + ): + st.session_state[ + f"metadata_branches_{st.session_state[f'seleccion_{branch_key}']['id_linea']}" + ] = pd.read_sql( + f"SELECT * FROM metadata_ramales WHERE id_linea = {st.session_state[f'seleccion_{branch_key}']['id_linea']}", + conn_insumos, + ) + metadata_branches = st.session_state[ + f"metadata_branches_{st.session_state[f'seleccion_{branch_key}']['id_linea']}" + ] + + selected_branch = st.selectbox( + "Seleccione un ramal", + metadata_branches.nombre_ramal.unique(), + key=f"branch_{branch_key}", + ) + st.session_state[f"seleccion_{branch_key}"]["branch_id"] = ( + metadata_branches.loc[ + metadata_branches.nombre_ramal == selected_branch, "id_ramal" + ].values[0] + ) + st.session_state[f"seleccion_{branch_key}"][ + "branch_name" + ] = selected_branch + else: + st.warning("No se encontró ninguna coincidencia.") + + +# --- Selección de líneas y ramales con almacenamiento en session_state --- +with st.expander("Seleccionar líneas", expanded=True): + col1, col2, col3 = st.columns([1, 3, 3]) + + with col1: + if st.button("Comparar líneas"): + for i in [1, 2]: + if f"seleccion_{i}" in st.session_state: + st.session_state[f"id_linea_{i}"] = st.session_state[ + f"seleccion_{i}" + ]["id_linea"] + st.session_state[f"nombre_linea_{i}"] = st.session_state[ + f"seleccion_{i}" + ]["nombre_linea"] + st.session_state[f"branch_id_{i}"] = st.session_state[ + f"seleccion_{i}" + ].get("branch_id") + st.session_state[f"branch_name_{i}"] = st.session_state[ + f"seleccion_{i}" + ].get("branch_name") + st.write( + f"Línea {i} guardada:", + st.session_state[f"nombre_linea_{i}"], + "ramal", + ( + st.session_state[f"branch_name_{i}"] + if st.session_state[f"branch_name_{i}"] + else "N/A" + ), + ) + else: + st.write( + f"No hay ninguna línea seleccionada para guardar como Línea {i}." + ) + + with col2: + st.subheader("Línea base:") + seleccionar_linea("Línea base", "base_input", "base_select", "1", conn_insumos) + with col3: + st.subheader("Línea comparación:") + seleccionar_linea( + "Línea comparación", "comp_input", "comp_select", "2", conn_insumos + ) + +# --- Comparación de líneas --- +with st.expander("Comparación de líneas", expanded=True): + col1, col2 = st.columns([2, 2]) + + if st.session_state.id_linea_1 and st.session_state.id_linea_2: + base_route_id, comp_route_id = int(st.session_state.branch_id_1), int( + st.session_state.branch_id_2 + ) + + # Evita cálculos repetidos si ya se han realizado para las mismas líneas + if f"overlapping_dict_{base_route_id}_{comp_route_id}" not in st.session_state: + + overlapping_dict = ovl.compute_supply_overlapping( + "weekday", + base_route_id, + comp_route_id, + "branches" if use_branches else "lines", + 8, + ) + st.session_state[f"overlapping_dict_{base_route_id}_{comp_route_id}"] = ( + overlapping_dict + ) + st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] = ( + overlapping_dict["text_base_v_comp"] + ) + st.session_state[f"supply_overlapping_{comp_route_id}_{base_route_id}"] = ( + overlapping_dict["text_comp_v_base"] + ) + + overlapping_dict = st.session_state[ + f"overlapping_dict_{base_route_id}_{comp_route_id}" + ] + + # Renderiza el primer mapa + f = ovl_viz.plot_interactive_supply_overlapping(overlapping_dict) + # Muestra la salida solo en col1 + with col1: + st_folium(f, width=800, height=600) + col1.write( + st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] + ) + col1.write( + st.session_state[f"supply_overlapping_{comp_route_id}_{base_route_id}"] + ) + + # Cálculo y visualización de la demanda, si no se ha realizado previamente + if ( + f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" + not in st.session_state + ): + demand_overlapping = ovl.compute_demand_overlapping( + st.session_state.id_linea_1, + st.session_state.id_linea_2, + "weekday", + base_route_id, + comp_route_id, + overlapping_dict["base"]["h3"], + overlapping_dict["comp"]["h3"], + ) + st.session_state[ + f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" + ] = demand_overlapping + + st.session_state[f"demand_overlapping_{base_route_id}_{comp_route_id}"] = ( + demand_overlapping["base"]["output_text"] + ) + st.session_state[f"demand_overlapping_{comp_route_id}_{base_route_id}"] = ( + demand_overlapping["comp"]["output_text"] + ) + + demand_overlapping = st.session_state[ + f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" + ] + base_demand = demand_overlapping["base"]["data"] + comp_demand = demand_overlapping["comp"]["data"] + + # Renderiza el segundo mapa y muestra el texto justo después del mapa en col2 + fig = ovl_viz.plot_interactive_demand_overlapping( + base_demand, comp_demand, overlapping_dict + ) + with col2: + st_folium(fig, width=800, height=600) + col2.write( + st.session_state[f"demand_overlapping_{base_route_id}_{comp_route_id}"] + ) # Muestra la segunda salida justo después del mapa + col2.write( + st.session_state[f"demand_overlapping_{comp_route_id}_{base_route_id}"] + ) # Muestra la segunda salida justo después del mapa diff --git a/urbantrips/viz/overlapping.py b/urbantrips/viz/overlapping.py index 3ce29b2..281d630 100644 --- a/urbantrips/viz/overlapping.py +++ b/urbantrips/viz/overlapping.py @@ -43,7 +43,7 @@ def plot_interactive_supply_overlapping(overlapping_dict): mean_x = np.mean(base_route_gdf.item().coords.xy[0]) mean_y = np.mean(base_route_gdf.item().coords.xy[1]) - fig = folium.Figure(width=1000, height=600) + fig = folium.Figure(width=800, height=600) m = folium.Map(location=(mean_y, mean_x), zoom_start=11, tiles="cartodbpositron") base_gdf.explore( @@ -158,8 +158,12 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di comp_origins["total_legs"], min_dot_size, max_dot_size ) - fig = folium.Figure(width=1000, height=600) - m = folium.Map(location=(-34.606, -58.436), zoom_start=11, tiles="cartodbpositron") + # get mean coords to center map + mean_x = np.mean(base_route_gdf.item().coords.xy[0]) + mean_y = np.mean(base_route_gdf.item().coords.xy[1]) + + fig = folium.Figure(width=800, height=600) + m = folium.Map(location=(mean_y, mean_x), zoom_start=11, tiles="cartodbpositron") base_gdf.explore( column="total_legs", From 3be6acc330b3d6ef48d9f78857028aa38851c41a Mon Sep 17 00:00:00 2001 From: alephcero Date: Fri, 1 Nov 2024 13:30:20 -0300 Subject: [PATCH 04/18] Fixes doc --- docs/source/inputs.rst | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/docs/source/inputs.rst b/docs/source/inputs.rst index 68431a0..b9465c4 100644 --- a/docs/source/inputs.rst +++ b/docs/source/inputs.rst @@ -226,23 +226,15 @@ Polígonos de interés Tiempos de viaje entre estaciones --------------------- +--------------------------------- .. list-table:: :widths: 25 25 50 :header-rows: 1 - * - id_o - - id_linea_o - - id_ramal_o - - lat_o - - lon_o - - id_d - - id_linea_d - - id_ramal_d - - lat_d - - lon_d - - travel_time_min + * - Campo + - Tipo de dato + - Descripción * - *id_o* - int - **Obligatorio**. id de la estación de origen. From 07c6482c3e98f43aa5b59b35f8c920b16f83894a Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Thu, 7 Nov 2024 17:48:26 -0300 Subject: [PATCH 05/18] Compute pandana distance for each gps pair #172 (#173) --- configs/configuraciones_generales.yaml | 1 + data/data_ciudad/gps_amba_test.csv | 23 ++--- urbantrips/datamodel/transactions.py | 132 +++++++++++++++++-------- urbantrips/process_transactions.py | 22 ++--- urbantrips/tests/test_unit_tests.py | 5 +- urbantrips/utils/utils.py | 1 - 6 files changed, 119 insertions(+), 65 deletions(-) diff --git a/configs/configuraciones_generales.yaml b/configs/configuraciones_generales.yaml index 8721c0d..ab28df8 100755 --- a/configs/configuraciones_generales.yaml +++ b/configs/configuraciones_generales.yaml @@ -59,6 +59,7 @@ nombres_variables_gps: longitud_gps: velocity_gps: servicios_gps: # Indica cuando se abre y cierra un servicio + distance_gps: # Información para procesamiento de líneas nombre_archivo_informacion_lineas: "lineas_amba_test.csv" # Archivo .csv con lineas, debe contener ("id_linea", "nombre_linea", "modo") diff --git a/data/data_ciudad/gps_amba_test.csv b/data/data_ciudad/gps_amba_test.csv index 055b84b..e35eda1 100644 --- a/data/data_ciudad/gps_amba_test.csv +++ b/data/data_ciudad/gps_amba_test.csv @@ -11,14 +11,15 @@ id_gps,id_linea_gps,id_ramal_gps,interno_gps,fecha_gps,longitud_gps,latitud_gps 10,48,48,1012,11/09/2019 10:38:00,-58.404664194069,-34.5982359810398 11,48,48,1012,11/09/2019 10:42:00,-58.4024122858345,-34.5944978133705 12,48,48,1012,11/09/2019 10:48:00,-58.3999351867765,-34.5891833099371 -13,48,48,4024,11/09/2019 12:04:00,-58.4012863317172,-34.5920657524773 -14,48,48,4024,11/09/2019 12:10:00,-58.403493201787,-34.5980107902163 -15,48,48,4024,11/09/2019 12:14:00,-58.408582514397,-34.598055828381 -16,48,48,4024,11/09/2019 12:18:00,-58.4147977811242,-34.597920713887 -17,48,48,4024,11/09/2019 12:22:00,-58.4224092309568,-34.5977405612282 -18,48,48,4024,11/09/2019 12:26:00,-58.4307412914244,-34.5940023935589 -19,48,48,4024,11/09/2019 12:30:00,-58.4360107566931,-34.5905344548778 -20,48,48,4024,11/09/2019 12:34:00,-58.4414603746206,-34.5927413249476 -21,48,48,4024,11/09/2019 12:38:00,-58.4474504505244,-34.5920657524773 -22,48,48,4024,11/09/2019 12:42:00,-58.4509634273702,-34.5885077374668 -23,48,48,4024,11/09/2019 12:46:00,-58.4556023583332,-34.5832382721981 +13,48,48,4024,11/09/2019 12:03:00,-58.4012863317172,-34.5920657524773 +14,48,48,4024,11/09/2019 12:04:00,-58.4012863317172,-34.5920657524773 +15,48,48,4024,11/09/2019 12:10:00,-58.403493201787,-34.5980107902163 +16,48,48,4024,11/09/2019 12:14:00,-58.408582514397,-34.598055828381 +17,48,48,4024,11/09/2019 12:18:00,-58.4147977811242,-34.597920713887 +18,48,48,4024,11/09/2019 12:22:00,-58.4224092309568,-34.5977405612282 +19,48,48,4024,11/09/2019 12:26:00,-58.4307412914244,-34.5940023935589 +20,48,48,4024,11/09/2019 12:30:00,-58.4360107566931,-34.5905344548778 +21,48,48,4024,11/09/2019 12:34:00,-58.4414603746206,-34.5927413249476 +22,48,48,4024,11/09/2019 12:38:00,-58.4474504505244,-34.5920657524773 +23,48,48,4024,11/09/2019 12:42:00,-58.4509634273702,-34.5885077374668 +24,48,48,4024,11/09/2019 12:46:00,-58.4556023583332,-34.5832382721981 diff --git a/urbantrips/datamodel/transactions.py b/urbantrips/datamodel/transactions.py index 97e3e14..4c4a42b 100644 --- a/urbantrips/datamodel/transactions.py +++ b/urbantrips/datamodel/transactions.py @@ -3,7 +3,7 @@ import pandas as pd import geopandas as gpd import warnings -import time +from urbantrips.carto.carto import compute_distances_osm from shapely.geometry import Point from urbantrips.geo import geo @@ -154,7 +154,7 @@ def create_transactions( prop_na = modos_ausentes_configs.sum() / len(trx) if prop_na > 0.15: - w_str = f" {round(prop_na * 100,1)} por ciento las transacciones" + w_str = f" {round(prop_na * 100, 1)} por ciento las transacciones" w_str = w_str + " tienen un modo que no coincide con " w_str = w_str + " los modos estandarizados en el archivo de " w_str = w_str + "configuracion" @@ -186,9 +186,9 @@ def create_transactions( print(f"Subiendo {len(trx)} registros a la db") - if not "genero" in trx.columns: + if "genero" not in trx.columns: trx["genero"] = "-" - if not "tarifa" in trx.columns: + if "tarifa" not in trx.columns: trx["tarifa"] = "-" trx["genero"] = trx["genero"].fillna("-") trx["tarifa"] = trx["tarifa"].fillna("-") @@ -323,7 +323,7 @@ def convertir_fechas(df, formato_fecha, crear_hora=False): checkeo = df["fecha"].isna().sum() / len(df) if checkeo > 0.8: warnings.warn( - f"Eliminando {round((checkeo * 100),2)} por ciento de registros" + f"Eliminando {round((checkeo * 100), 2)} por ciento de registros" + " por mala conversion de fechas de acuerdo" + " al formato provisto en configs" + " Verifique el formato de fecha en configuración" @@ -340,7 +340,7 @@ def convertir_fechas(df, formato_fecha, crear_hora=False): checkeo = df["fecha"].isna().sum() / len(df) print( - f"Infiriendo el formato se pierden {round((checkeo * 100),2)}" + f"Infiriendo el formato se pierden {round((checkeo * 100), 2)}" + "por ciento de registros" ) @@ -441,16 +441,16 @@ def eliminar_trx_fuera_bbox(trx): original = len(trx) - zonificaciones = levanto_tabla_sql("zonificaciones", tabla_tipo='insumos') - zonificaciones = zonificaciones[zonificaciones.zona!='Zona_voi'] + zonificaciones = levanto_tabla_sql("zonificaciones", tabla_tipo="insumos") + zonificaciones = zonificaciones[zonificaciones.zona != "Zona_voi"] if len(zonificaciones) > 0: trx["geometry"] = trx.apply( lambda row: Point(row["longitud"], row["latitud"]), axis=1 ) trx = gpd.GeoDataFrame(trx, geometry="geometry", crs=4326) - zonificaciones['dissolve_column'] = 1 - zonificaciones = zonificaciones.dissolve(by='dissolve_column') + zonificaciones["dissolve_column"] = 1 + zonificaciones = zonificaciones.dissolve(by="dissolve_column") trx = ( gpd.sjoin(zonificaciones[["geometry"]], trx) @@ -482,9 +482,10 @@ def eliminar_trx_fuera_bbox(trx): limpio = len(trx) print(f"--Se borraron {original-limpio} registros") - assert ( - len(trx) > 0 - ), "Se borraron todos los registros, verifique el 'filtro_latlong_bbox' en configuraciones_generales.yaml" + assert len(trx) > 0, ( + "Se borraron todos los registros, verifique el 'filtro_latlong_bbox' en " + + "configuraciones_generales.yaml" + ) return trx @@ -630,9 +631,9 @@ def geolocalizar_trx( cols = ["id_linea", "interno"] trx_eco = trx_eco.dropna(subset=cols) - if not "genero" in trx_eco.columns: + if "genero" not in trx_eco.columns: trx_eco["genero"] = "" - if not "tarifa" in trx_eco.columns: + if "tarifa" not in trx_eco.columns: trx_eco["tarifa"] = "" cols = [ @@ -698,8 +699,8 @@ def geolocalizar_trx( select t.id,t.id_original, t.id_tarjeta, datetime(t.fecha, 'unixepoch') as fecha, t.dia,t.tiempo,t.hora, t.modo, t.id_linea, - t.interno, t.orden, t.genero, t.tarifa as tarifa, g.latitud, g.longitud, - (t.fecha - g.fecha) / 60 as delta_trx_gps_min, + t.interno, t.orden, t.genero, t.tarifa as tarifa, g.latitud, + g.longitud, (t.fecha - g.fecha) / 60 as delta_trx_gps_min, t.factor_expansion, ROW_NUMBER() OVER( PARTITION BY t."id" @@ -811,8 +812,11 @@ def process_and_upload_gps_table( "Revisar el configs para servicios_gps" ) - # compute distance between gps points - gps = compute_distance_km_gps(gps) + # compute distance between gps points if there is no distance provided + if gps["distance"].isna().all(): + gps = compute_distance_km_gps(gps, use_pandana=True) + else: + gps = gps.rename(columns={"distance": "distance_km"}) # if branches are not present, add branch id as the same as line if not configs["lineas_contienen_ramales"]: @@ -829,7 +833,6 @@ def process_and_upload_gps_table( "latitud", "longitud", "velocity", - "distance", "service_type", "distance_km", "h3", @@ -883,30 +886,79 @@ def get_veh_expansion_from_gps(gps): @duracion -def compute_distance_km_gps(gps_df): +def compute_distance_km_gps(gps, use_pandana=False): + """ + Computes the distance in kilometers between GPS points using either H3 hexagons + or Pandana. + + Parameters: + gps (pd.DataFrame): A DataFrame containing GPS data with columns 'latitud', + longitud', 'dia', 'id_linea', 'interno', and 'fecha'. + use_pandana (bool): If True, computes distances using Pandana and OpenStreetMap + data. If False, computes distances using H3 hexagons. Default is False. + + Returns: + pd.DataFrame: The input DataFrame with an additional column 'distance_km' + representing the computed distances between GPS points. + """ + # Assign h3 to gps + print("Computing distances for gps") res = 11 - distancia_entre_hex = h3.edge_length(resolution=res, unit="km") - distancia_entre_hex = distancia_entre_hex * 2 + configs = leer_configs_generales() + if configs["lineas_contienen_ramales"]: + order_cols = ["dia", "id_linea", "id_ramal", "interno", "fecha"] + reindex_cols = ["dia", "id_linea", "id_ramal", "interno", "h3"] + else: + order_cols = ["dia", "id_linea", "interno", "fecha"] + reindex_cols = ["dia", "id_linea", "interno", "h3"] - # Georeferenciar con h3 - gps_df["h3"] = gps_df.apply( - geo.h3_from_row, axis=1, args=(res, "latitud", "longitud") - ) + gps["h3"] = gps.apply(geo.h3_from_row, axis=1, args=(res, "latitud", "longitud")) - gps_df = gps_df.sort_values(["dia", "id_linea", "interno", "fecha"]).reset_index(drop=True) + # order by day, line, vehicle and date + gps = gps.sort_values(order_cols).reset_index(drop=True) - # Producir un lag con respecto al siguiente posicionamiento gps - gps_df["h3_lag"] = ( - gps_df.reindex(columns=["dia", "id_linea", "interno", "h3"]) - .groupby(["dia", "id_linea", "interno"]) - .shift(-1) + # Assign to each gps point the h3 of the following gps point + gps["h3_lag"] = ( + gps.reindex(columns=reindex_cols).groupby(reindex_cols[:-1]).shift(1) ) + gps = gps.dropna(subset=["h3", "h3_lag"]) + gps["delta_fecha"] = ( + gps.reindex(columns=order_cols).groupby(order_cols[:-1]).diff().fillna(0) + ) + + if use_pandana: + # compute distances with pandana + temp_df = gps.reindex(columns=["h3", "h3_lag"]).drop_duplicates().dropna() + temp_df = temp_df[temp_df.h3 != temp_df.h3_lag].reset_index(drop=True) + + distances = compute_distances_osm( + temp_df, + h3_o="h3", + h3_d="h3_lag", + processing="pandana", + modes=["drive"], + use_parallel=True, + ) + + distances = distances.rename( + columns={"distance_osm_drive": "distance_km"} + ).reindex(columns=["h3", "h3_lag", "distance_km"]) + gps = gps.merge(distances, on=["h3", "h3_lag"], how="left") + gps["distance_km"] = gps["distance_km"].fillna(0) + + else: + # compute h3 distance + distancia_entre_hex = h3.edge_length(resolution=res, unit="km") + distancia_entre_hex = distancia_entre_hex * 2 + gps_dict = gps.to_dict("records") + gps.loc[:, ["distance_km"]] = list(map(geo.distancia_h3, gps_dict)) + gps.loc[:, ["distance_km"]] = gps["distance_km"] * distancia_entre_hex + + percentile_99 = gps["delta_fecha"].quantile(0.995) + gps.loc[gps.delta_fecha > percentile_99, "distance_km"] = 0 + + # remove h3_lag + gps = gps.drop(["h3_lag", "delta_fecha"], axis=1) - # Calcular distancia h3 - gps_df = gps_df.dropna(subset=["h3", "h3_lag"]) - gps_dict = gps_df.to_dict("records") - gps_df.loc[:, ["distance_km"]] = list(map(geo.distancia_h3, gps_dict)) - gps_df.loc[:, ["distance_km"]] = gps_df["distance_km"] * distancia_entre_hex - gps_df = gps_df.drop(["h3_lag"], axis=1) - return gps_df + return gps diff --git a/urbantrips/process_transactions.py b/urbantrips/process_transactions.py index 4e7c4fc..7bedd31 100644 --- a/urbantrips/process_transactions.py +++ b/urbantrips/process_transactions.py @@ -38,19 +38,19 @@ def main(): } # Compute tolerance in h3 ring - ring_size = geo.get_h3_buffer_ring_size( - resolucion_h3, tolerancia_parada_destino - ) + ring_size = geo.get_h3_buffer_ring_size(resolucion_h3, tolerancia_parada_destino) # Produce transaction table - trx.create_transactions(geolocalizar_trx_config, - nombre_archivo_trx, - nombres_variables_trx, - formato_fecha, - col_hora, - tipo_trx_invalidas, - nombre_archivo_gps, - nombres_variables_gps) + trx.create_transactions( + geolocalizar_trx_config, + nombre_archivo_trx, + nombres_variables_trx, + formato_fecha, + col_hora, + tipo_trx_invalidas, + nombre_archivo_gps, + nombres_variables_gps, + ) # Turn transactions into legs legs.create_legs_from_transactions(trx_order_params) diff --git a/urbantrips/tests/test_unit_tests.py b/urbantrips/tests/test_unit_tests.py index 8f3da46..34cbd3d 100644 --- a/urbantrips/tests/test_unit_tests.py +++ b/urbantrips/tests/test_unit_tests.py @@ -767,6 +767,7 @@ def test_gps(matriz_validacion_test_amba): "fecha_gps": "fecha_gps", "latitud_gps": "latitud_gps", "longitud_gps": "longitud_gps", + "distance_gps": None, } trx_order_params = { "criterio": "fecha_completa", @@ -807,7 +808,7 @@ def test_gps(matriz_validacion_test_amba): assert gps_latlong.latitud.item() == trx_latlong.latitud.item() assert gps_latlong.longitud.item() == trx_latlong.longitud.item() - gps_latlong = gps.loc[gps.id_original == 13, ["latitud", "longitud"]] + gps_latlong = gps.loc[gps.id_original == 14, ["latitud", "longitud"]] trx_latlong = trx.loc[trx.id_original == "2189304", ["latitud", "longitud"]] assert gps_latlong.latitud.item() == trx_latlong.latitud.item() @@ -845,7 +846,7 @@ def test_gps(matriz_validacion_test_amba): kpi_df = pd.read_sql("select * from kpi_by_day_line;", conn_data) - assert round(kpi_df.tot_km.iloc[0]) == 16 + assert round(kpi_df.tot_km.iloc[0]) == 13 assert kpi_df.tot_veh.iloc[0] == 2 assert kpi_df.dmt_mean.iloc[0] == mean_distances assert kpi_df.tot_pax.iloc[0] == tot_pax diff --git a/urbantrips/utils/utils.py b/urbantrips/utils/utils.py index 8c4e4b2..b930c81 100644 --- a/urbantrips/utils/utils.py +++ b/urbantrips/utils/utils.py @@ -935,7 +935,6 @@ def create_gps_table(): latitud FLOAT, longitud FLOAT, velocity float, - distance float, service_type text, distance_km float, h3 text From 5c6c71fc78c3343a5b8b26faf221a9faf5028266 Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Thu, 7 Nov 2024 18:10:03 -0300 Subject: [PATCH 06/18] Dev dash zonas (#175) - lineas de deseo - dash - indicadores --------- Co-authored-by: Sebastian Anapolsky --- urbantrips/dashboard/dash_utils.py | 38 +- .../pages/2_Indicadores de oferta.py | 2 +- .../pages/3_L\303\255neas de Deseo.py" | 584 +++++++++++------- urbantrips/dashboard/pages/4_Poligonos.py | 565 ++++++++++------- .../pages/5_An\303\241lisis de zonas.py" | 208 +++++++ urbantrips/kpi/overlapping.py | 8 +- urbantrips/lineas_deseo/lineas_deseo.py | 216 +++++-- urbantrips/run_interactive_tools.py | 34 +- urbantrips/utils/utils.py | 76 ++- urbantrips/viz/viz.py | 77 +-- 10 files changed, 1201 insertions(+), 607 deletions(-) create mode 100644 "urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" diff --git a/urbantrips/dashboard/dash_utils.py b/urbantrips/dashboard/dash_utils.py index 4538343..26efa84 100644 --- a/urbantrips/dashboard/dash_utils.py +++ b/urbantrips/dashboard/dash_utils.py @@ -141,39 +141,29 @@ def normalize_vars(tabla): @st.cache_data -def levanto_tabla_sql(tabla_sql, - custom_query=False, - tabla_tipo='dash'): +def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): conn = iniciar_conexion_db(tipo=tabla_tipo) try: - if not custom_query: - tabla = pd.read_sql_query( - f""" - SELECT * - FROM {tabla_sql} - """, - conn, - ) - else: - tabla = pd.read_sql_query( - custom_query, - conn, - ) + if len(query) == 0: + query = f""" + SELECT * + FROM {tabla_sql} + """ + tabla = pd.read_sql_query( query, conn ) except: - print(f'{tabla_sql} no existe') + print(f"{tabla_sql} no existe") tabla = pd.DataFrame([]) conn.close() if len(tabla) > 0: - if 'wkt' in tabla.columns: + if "wkt" in tabla.columns: tabla["geometry"] = tabla.wkt.apply(wkt.loads) - tabla = gpd.GeoDataFrame(tabla, - crs=4326) - tabla = tabla.drop(['wkt'], axis=1) + tabla = gpd.GeoDataFrame(tabla, crs=4326) + tabla = tabla.drop(["wkt"], axis=1) tabla = normalize_vars(tabla) @@ -211,7 +201,7 @@ def create_linestring_od(df, for _, row in df.iterrows()] # Create a GeoDataFrame - gdf = gpd.GeoDataFrame(df, geometry=geometry) + gdf = gpd.GeoDataFrame(df, geometry=geometry, crs=4326) return gdf @@ -319,7 +309,7 @@ def creo_bubble_od(df, 'rango_hora', 'distancia']).factor_expansion_linea.transform('sum') geometry = [Point(xy) for xy in zip(orig[lon], orig[lat])] - orig = gpd.GeoDataFrame(orig, geometry=geometry, crs="EPSG:4326") + orig = gpd.GeoDataFrame(orig, geometry=geometry, crs=4326) orig['viajes_porc'] = ( orig.factor_expansion_linea / orig.tot * 100).round(1) orig = orig.rename(columns={od: 'od', lat: 'lat', lon: 'lon'}) @@ -352,7 +342,7 @@ def create_linestring(row): df['geometry'] = df.apply(create_linestring, axis=1) # Convert DataFrame to GeoDataFrame - gdf = gpd.GeoDataFrame(df, geometry='geometry') + gdf = gpd.GeoDataFrame(df, geometry='geometry', crs=4326) return gdf diff --git a/urbantrips/dashboard/pages/2_Indicadores de oferta.py b/urbantrips/dashboard/pages/2_Indicadores de oferta.py index bdf5946..57d2fc0 100644 --- a/urbantrips/dashboard/pages/2_Indicadores de oferta.py +++ b/urbantrips/dashboard/pages/2_Indicadores de oferta.py @@ -553,7 +553,7 @@ def traigo_nombre_lineas(df): and lat_o is not NULL ; """ matriz = levanto_tabla_sql(tabla_sql='matrices_linea', - custom_query=custom_query, + query=custom_query, ) matriz = create_linestring_od(matriz) diff --git "a/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" "b/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" index face905..1f1bb11 100644 --- "a/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" +++ "b/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" @@ -1,17 +1,21 @@ import streamlit as st import pandas as pd +import geopandas as gpd import folium -from streamlit_folium import folium_static +from streamlit_folium import st_folium import mapclassify import plotly.express as px from folium import Figure +from shapely import wkt from dash_utils import ( levanto_tabla_sql, get_logo, create_data_folium, traigo_indicadores, - extract_hex_colors_from_cmap -) + extract_hex_colors_from_cmap, + iniciar_conexion_db, normalize_vars +) +from streamlit_folium import folium_static def crear_mapa_lineas_deseo(df_viajes, df_etapas, zonif, @@ -28,19 +32,19 @@ def crear_mapa_lineas_deseo(df_viajes, m = '' if (len(df_viajes) > 0) | (len(df_etapas) > 0) | (len(origenes) > 0) | (len(destinos) > 0): if len(df_etapas) > 0: - y_val = etapas.geometry.representative_point().y.mean() - x_val = etapas.geometry.representative_point().x.mean() + y_val = df_etapas.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = df_etapas.sample(100, replace=True).geometry.representative_point().x.mean() elif len(df_viajes) > 0: - y_val = viajes.geometry.representative_point().y.mean() - x_val = viajes.geometry.representative_point().x.mean() + y_val = df_viajes.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = df_viajes.sample(100, replace=True).geometry.representative_point().x.mean() elif len(origenes) > 0: - y_val = origenes.geometry.representative_point().y.mean() - x_val = origenes.geometry.representative_point().x.mean() + y_val = origenes.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = origenes.sample(100, replace=True).geometry.representative_point().x.mean() elif len(destinos) > 0: - y_val = destinos.geometry.representative_point().y.mean() - x_val = destinos.geometry.representative_point().x.mean() + y_val = destinos.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = destinos.sample(100, replace=True).geometry.representative_point().x.mean() - fig = Figure(width=2000, height=2000) + fig = Figure(width=800, height=600) m = folium.Map(location=[y_val, x_val], zoom_start=10, tiles='cartodbpositron') @@ -194,6 +198,34 @@ def crear_mapa_lineas_deseo(df_viajes, return m +def levanto_tabla_sql_local(tabla_sql, tabla_tipo="dash", query=''): + + conn = iniciar_conexion_db(tipo=tabla_tipo) + + try: + if len(query) == 0: + query = f""" + SELECT * + FROM {tabla_sql} + """ + + tabla = pd.read_sql_query( query, conn ) + except: + print(f"{tabla_sql} no existe") + tabla = pd.DataFrame([]) + + conn.close() + + if len(tabla) > 0: + if "wkt" in tabla.columns: + tabla["geometry"] = tabla.wkt.apply(wkt.loads) + tabla = gpd.GeoDataFrame(tabla, crs=4326) + tabla = tabla.drop(["wkt"], axis=1) + + tabla = normalize_vars(tabla) + + return tabla + def traigo_socio_indicadores(socio_indicadores): df = socio_indicadores[socio_indicadores.tabla=='viajes-genero-tarifa'].copy() @@ -219,42 +251,90 @@ def traigo_socio_indicadores(socio_indicadores): return totals, totals_porc, avg_distances, avg_times, avg_velocity, modos_genero_abs, modos_genero_porc, modos_tarifa_abs, modos_tarifa_porc, avg_viajes, avg_etapas, avg_tiempo_entre_viajes +# Función para detectar cambios +def hay_cambios_en_filtros(current, last): + return current != last st.set_page_config(layout="wide") logo = get_logo() st.image(logo) - with st.expander('Líneas de Deseo', expanded=True): col1, col2 = st.columns([1, 4]) - etapas_all = levanto_tabla_sql('agg_etapas') - matrices_all = levanto_tabla_sql('agg_matrices') - zonificaciones = levanto_tabla_sql('zonificaciones') - socio_indicadores = levanto_tabla_sql('socio_indicadores') + variables = [ + 'last_filters', 'last_options', 'data_cargada', 'etapas_lst', 'matrices_all', 'etapas_all', + 'matrices_', 'etapas_', 'etapas', 'viajes', 'matriz', 'origenes', 'destinos', + 'general', 'modal', 'distancias', 'mes', 'tipo_dia', 'zona', 'transferencia', + 'modo_agregado', 'rango_hora', 'distancia', 'socio_indicadores_', 'general_', 'modal_', 'distancias_' + ] + + # Inicializar todas las variables con None si no existen en session_state + for var in variables: + if var not in st.session_state: + st.session_state[var] = '' + + etapas_lst_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT mes FROM agg_etapas;') - if len(etapas_all) > 0: - etapas_all = etapas_all[etapas_all.factor_expansion_linea > 0].copy() + + # st.session_state.etapas = traigo() + + if len(etapas_lst_) > 0: + + zonificaciones = levanto_tabla_sql('zonificaciones') + socio_indicadores = levanto_tabla_sql('socio_indicadores') + desc_tipo_dia_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT tipo_dia FROM agg_etapas;') + desc_zona_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT zona FROM agg_etapas;') + modos_list_all_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT modo_agregado FROM agg_etapas;') + rango_hora_all_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT rango_hora FROM agg_etapas;') + distancia_all_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT distancia FROM agg_etapas;') + + + # st.session_state.etapas_all = st.session_state.etapas_all[st.session_state.etapas_all.factor_expansion_linea > 0].copy() general, modal, distancias = traigo_indicadores('all') - etapas_lst = ['Todos'] + etapas_all.mes.unique().tolist() - desc_mes = col1.selectbox( - 'Mes', options=etapas_lst) + # Inicializar valores de `st.session_state` solo si no existen + if 'last_filters' not in st.session_state: + st.session_state.last_filters = { + 'mes': 'Todos', + 'tipo_dia': None, + 'zona': None, + 'transferencia': 'Todos', + 'modo_agregado': 'Todos', + 'rango_hora': 'Todos', + 'distancia': 'Todas' + } + + if 'data_cargada' not in st.session_state: + st.session_state.data_cargada = False - desc_tipo_dia = col1.selectbox( - 'Tipo día', options=etapas_all.tipo_dia.unique()) - - desc_zona = col1.selectbox( - 'Zonificación', options=etapas_all.zona.unique()) - zonif = zonificaciones[zonificaciones.zona == desc_zona] + # Opciones de los filtros en Streamlit + st.session_state.etapas_lst = ['Todos'] + etapas_lst_.mes.unique().tolist() + desc_mes = col1.selectbox('Mes', options=st.session_state.etapas_lst, index=1) + + desc_tipo_dia = col1.selectbox('Tipo día', options=desc_tipo_dia_.tipo_dia.unique()) + desc_zona = col1.selectbox('Zonificación', options=desc_zona_.zona.unique()) + transf_list_all = ['Todos', 'Con transferencia', 'Sin transferencia'] + transf_list = col1.selectbox('Transferencias', options=transf_list_all) + + modos_list_all = ['Todos'] + modos_list_all_[modos_list_all_.modo_agregado != '99'].modo_agregado.unique().tolist() + # modos_list = col1.selectbox('Modos', options=[text.capitalize() for text in modos_list_all]) + modos_list = col1.selectbox('Modos', options=[text for text in modos_list_all]) + + rango_hora_all = ['Todos'] + rango_hora_all_[rango_hora_all_.rango_hora != '99'].rango_hora.unique().tolist() + # rango_hora = col1.selectbox('Rango hora', options=[text.capitalize() for text in rango_hora_all]) + rango_hora = col1.selectbox('Rango hora', options=[text for text in rango_hora_all]) + + distancia_all = ['Todas'] + distancia_all_[distancia_all_.distancia != '99'].distancia.unique().tolist() + distancia = col1.selectbox('Distancia', options=distancia_all) desc_etapas = col1.checkbox( - 'Etapas', value=True) + 'Etapas', value=False) desc_viajes = col1.checkbox( - 'Viajes', value=False) + 'Viajes', value=True) desc_origenes = col1.checkbox( ':blue[Origenes]', value=False) @@ -262,204 +342,235 @@ def traigo_socio_indicadores(socio_indicadores): desc_destinos = col1.checkbox( ':orange[Destinos]', value=False) - transf_list_all = ['Todos', 'Con transferencia', 'Sin transferencia'] - transf_list = col1.selectbox( - 'Transferencias', options=transf_list_all) - - modos_list_all = ['Todos']+etapas_all[etapas_all.modo_agregado != - '99'].modo_agregado.unique().tolist() - modos_list = [text.capitalize() for text in modos_list_all] - modos_list = col1.selectbox( - 'Modos', options=modos_list_all) - - rango_hora_all = ['Todos']+etapas_all[etapas_all.rango_hora != - '99'].rango_hora.unique().tolist() - rango_hora = [text.capitalize() for text in rango_hora_all] - rango_hora = col1.selectbox( - 'Rango hora', options=rango_hora_all) - - distancia_all = ['Todas']+etapas_all[etapas_all.distancia != - '99'].distancia.unique().tolist() - distancia = col1.selectbox( - 'Distancia', options=distancia_all) - - if desc_mes != 'Todos': - etapas_ = etapas_all[(etapas_all.zona == desc_zona)&(etapas_all.mes==desc_mes)&(etapas_all.tipo_dia==desc_tipo_dia)].copy() - matrices_ = matrices_all[(matrices_all.zona == desc_zona)&(matrices_all.mes==desc_mes)&(matrices_all.tipo_dia==desc_tipo_dia)].copy() - socio_indicadores_ = socio_indicadores[(socio_indicadores.mes==desc_mes)&(socio_indicadores.tipo_dia==desc_tipo_dia)].copy() - - - + desc_zonif = col1.checkbox( + 'Mostrar zonificación', value=True) + if desc_zonif: + zonif = zonificaciones[zonificaciones.zona == desc_zona] else: - etapas_ = etapas_all[(etapas_all.zona == desc_zona)&(etapas_all.tipo_dia==desc_tipo_dia)].copy() - matrices_ = matrices_all[(matrices_all.zona == desc_zona)&(matrices_all.tipo_dia==desc_tipo_dia)].copy() - socio_indicadores_ = socio_indicadores[(socio_indicadores.tipo_dia==desc_tipo_dia)].copy() + zonif = '' + + # Construye el diccionario de filtros actual + current_filters = { + 'mes': None if desc_mes == 'Todos' else desc_mes, + 'tipo_dia': desc_tipo_dia, + 'zona': None if desc_zona == 'Todos' else desc_zona, + 'transferencia': None if transf_list == 'Todos' else (1 if transf_list == 'Con transferencia' else 0), + 'modo_agregado': None if modos_list == 'Todos' else modos_list, + 'rango_hora': None if rango_hora == 'Todos' else rango_hora, + 'distancia': None if distancia == 'Todas' else distancia, + } + current_options = { 'desc_etapas': desc_etapas, + 'desc_viajes': desc_viajes, + 'desc_origenes': desc_origenes, + 'desc_destinos': desc_destinos, + 'desc_zonif': desc_zonif, } + - # col2.write(etapas_.columns.tolist()) - # col2.write(matrices_.columns.tolist()) - # col2.write(socio_indicadores_.columns.tolist()) + + # Solo cargar datos si hay cambios en los filtros + if hay_cambios_en_filtros(current_filters, st.session_state.last_filters): - # col2.write(etapas_) - # col2.write(matrices_) - # col2.write(socio_indicadores_) + query = "" + conditions = " AND ".join(f"{key} = '{value}'" for key, value in current_filters.items() if value is not None) + if conditions: + query += f" WHERE {conditions}" - etapas_ = etapas_.groupby(["tipo_dia", "zona", "inicio_norm", "transfer1_norm", "transfer2_norm", "fin_norm", "transferencia", "modo_agregado", "rango_hora", "genero", "tarifa", "distancia"], as_index=False)[[ - "distance_osm_drive", "distance_osm_drive_etapas", "travel_time_min", "travel_speed", "lat1_norm", "lon1_norm", "lat2_norm", "lon2_norm", "lat3_norm", "lon3_norm", "lat4_norm", "lon4_norm", "factor_expansion_linea" - ]] .mean().round(2) - - - matrices_ = matrices_.groupby(["id_polygon", "tipo_dia", "zona", "inicio", "fin", "transferencia", "modo_agregado", "rango_hora", "genero", "tarifa", "distancia", "orden_origen", "orden_destino", "Origen", "Destino", ], as_index=False)[[ - "lat1", "lon1", "lat4", "lon4", "distance_osm_drive", "travel_time_min", "travel_speed", "factor_expansion_linea" - ]] .mean().round(2) + st.session_state.matrices_ = levanto_tabla_sql_local('agg_matrices', tabla_tipo='dash', query=f"SELECT * FROM agg_matrices{query}") + st.session_state.etapas_ = levanto_tabla_sql_local('agg_etapas', tabla_tipo='dash', query=f"SELECT * FROM agg_etapas{query}") + - socio_indicadores_ = socio_indicadores_.groupby(["tabla", "tipo_dia", "Genero", "Tarifa", "Modo"], as_index=False)[[ - "Distancia", "Tiempo de viaje", "Velocidad", "Etapas promedio", "Viajes promedio", "Tiempo entre viajes", "factor_expansion_linea" - ]] .mean().round(2) + if len(st.session_state.matrices_)==0: + col2.write('No hay datos para mostrar') + else: + if desc_mes != 'Todos': + st.session_state.socio_indicadores_ = socio_indicadores[(socio_indicadores.mes==desc_mes)&(socio_indicadores.tipo_dia==desc_tipo_dia)].copy() - + else: + st.session_state.socio_indicadores_ = socio_indicadores[(socio_indicadores.tipo_dia==desc_tipo_dia)].copy() + + st.session_state.etapas_ = st.session_state.etapas_.groupby(["tipo_dia", + "zona", + "inicio_norm", + "transfer1_norm", + "transfer2_norm", + "fin_norm", + "transferencia", + "modo_agregado", + "rango_hora", + "genero", + "tarifa", + "distancia"], as_index=False)[[ + "distance_osm_drive", + "distance_osm_drive_etapas", + "travel_time_min", + "travel_speed", + "lat1_norm", + "lon1_norm", + "lat2_norm", + "lon2_norm", "lat3_norm", "lon3_norm", "lat4_norm", "lon4_norm", "factor_expansion_linea" + ]] .mean().round(2) + + + st.session_state.matrices_ = st.session_state.matrices_.groupby(["id_polygon", + "tipo_dia", + "zona", + "inicio", + "fin", + "transferencia", + "modo_agregado", + "rango_hora", + "genero", + "tarifa", + "distancia", + "orden_origen", + "orden_destino", + "Origen", + "Destino", ], as_index=False)[[ + "lat1", + "lon1", + "lat4", "lon4", "distance_osm_drive", "travel_time_min", "travel_speed", "factor_expansion_linea"]] .mean().round(2) + + st.session_state.socio_indicadores_ = st.session_state.socio_indicadores_.groupby(["tabla", "tipo_dia", "Genero", "Tarifa", "Modo"], as_index=False)[[ + "Distancia", "Tiempo de viaje", "Velocidad", "Etapas promedio", "Viajes promedio", "Tiempo entre viajes", "factor_expansion_linea" + ]] .mean().round(2) + + + st.session_state.general_ = general.loc[general.mes==desc_mes, ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') + st.session_state.modal_ = modal.loc[modal.mes==desc_mes, ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') + st.session_state.distancias_ = distancias.loc[distancias.mes==desc_mes, ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') - general_ = general[general.mes==desc_mes] - modal_ = modal[modal.mes==desc_mes] - distancias_ = distancias[distancias.mes==desc_mes] + if transf_list == 'Todos': + st.session_state.desc_transfers = True + else: + st.session_state.desc_transfers = False + # if transf_list == 'Con transferencia': + # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.transferencia == 1)] + # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.transferencia == 1)] + # elif transf_list == 'Sin transferencia': + # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.transferencia == 0)] + # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.transferencia == 0)] + # else: + # st.session_state.etapas_ = pd.DataFrame([]) + # st.session_state.matrices_ = pd.DataFrame([]) + if modos_list == 'Todos': + st.session_state.desc_modos = True + else: + st.session_state.desc_modos = False + # st.session_state.etapas_ = st.session_state.etapas_[ + # (st.session_state.etapas_.modo_agregado.str.lower() == modos_list.lower())] + # st.session_state.matrices_ = st.session_state.matrices_[ + # (st.session_state.matrices_.modo_agregado.str.lower() == modos_list.lower())] + if rango_hora == 'Todos': + st.session_state.desc_horas = True + else: + st.session_state.desc_horas = False + # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.rango_hora == rango_hora)] + # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.rango_hora == rango_hora)] - general_ = general.loc[general.mes==desc_mes, ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') - modal_ = modal.loc[modal.mes==desc_mes, ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') - distancias_ = distancias.loc[distancias.mes==desc_mes, ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') - - if transf_list == 'Todos': - desc_transfers = True - else: - desc_transfers = False - if transf_list == 'Con transferencia': - etapas_ = etapas_[(etapas_.transferencia == 1)] - matrices_ = matrices_[(matrices_.transferencia == 1)] - elif transf_list == 'Sin transferencia': - etapas_ = etapas_[(etapas_.transferencia == 0)] - matrices_ = matrices_[(matrices_.transferencia == 0)] - else: - etapas_ = pd.DataFrame([]) - matrices_ = pd.DataFrame([]) - - if modos_list == 'Todos': - desc_modos = True - else: - desc_modos = False - etapas_ = etapas_[ - (etapas_.modo_agregado.str.lower() == modos_list.lower())] - matrices_ = matrices_[ - (matrices_.modo_agregado.str.lower() == modos_list.lower())] - - if rango_hora == 'Todos': - desc_horas = True - else: - desc_horas = False - etapas_ = etapas_[(etapas_.rango_hora == rango_hora)] - matrices_ = matrices_[(matrices_.rango_hora == rango_hora)] - - if distancia == 'Todas': - desc_distancia = True + if distancia == 'Todas': + st.session_state.desc_distancia = True + else: + st.session_state.desc_distancia = False + # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.distancia == distancia)] + # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.distancia == distancia)] + + st.session_state.agg_cols_etapas = ['zona', + 'inicio_norm', + 'transfer1_norm', + 'transfer2_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] + st.session_state.agg_cols_viajes = ['zona', + 'inicio_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] + + if len(st.session_state.etapas_)==0: + col2.write('No hay datos para mostrar') else: - desc_distancia = False - etapas_ = etapas_[(etapas_.distancia == distancia)] - matrices_ = matrices_[(matrices_.distancia == distancia)] - - agg_cols_etapas = ['zona', - 'inicio_norm', - 'transfer1_norm', - 'transfer2_norm', - 'fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'distancia'] - agg_cols_viajes = ['zona', - 'inicio_norm', - 'fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'distancia'] - - etapas, viajes, matriz, origenes, destinos = create_data_folium(etapas_, - matrices_, - agg_transferencias=desc_transfers, - agg_modo=desc_modos, - agg_hora=desc_horas, - agg_distancia=desc_distancia, - agg_cols_etapas=agg_cols_etapas, - agg_cols_viajes=agg_cols_viajes) - - etapas = etapas[etapas.inicio_norm != etapas.fin_norm].copy() - viajes = viajes[viajes.inicio_norm != viajes.fin_norm].copy() - - if not desc_etapas: - etapas = pd.DataFrame([]) - - if not desc_viajes: - viajes = pd.DataFrame([]) - - if not desc_origenes: - origenes = pd.DataFrame([]) - - if not desc_destinos: - destinos = pd.DataFrame([]) - - desc_zonif = col1.checkbox( - 'Mostrar zonificación', value=False) - if not desc_zonif: - zonif = '' - - if not desc_origenes: - origenes = '' - if not desc_destinos: - destinos = '' - - if (len(etapas) > 0) | (len(viajes) > 0) | (len(origenes) > 0) | (len(destinos) > 0): - - map = crear_mapa_lineas_deseo(df_viajes=viajes, - df_etapas=etapas, - zonif=zonif, - origenes=origenes, - destinos=destinos, - var_fex='factor_expansion_linea', - cmap_viajes='Blues', - cmap_etapas='Greens', - map_title='Líneas de Deseo', - savefile='', - k_jenks=5) - - with col2: - # st_map = st_folium(map, width=1200, height=1000) # - folium_static(map, width=1500, height=1000) - else: - matriz = pd.DataFrame([]) - col2.text('No hay datos para mostrar') - col2.text('Verifique que los procesos se corrieron correctamente') + if not st.session_state.data_cargada or \ + hay_cambios_en_filtros(current_options, st.session_state.last_options) or \ + hay_cambios_en_filtros(current_filters, st.session_state.last_filters): + + # Actualiza los filtros en `session_state` para detectar cambios futuros + st.session_state.last_filters = current_filters.copy() + st.session_state.last_options = current_options.copy() + st.session_state.data_cargada = True + + st.session_state.etapas, st.session_state.viajes, st.session_state.matriz, st.session_state.origenes, st.session_state.destinos = create_data_folium(st.session_state.etapas_, + st.session_state.matrices_, + agg_transferencias=st.session_state.desc_transfers, + agg_modo=st.session_state.desc_modos, + agg_hora=st.session_state.desc_horas, + agg_distancia=st.session_state.desc_distancia, + agg_cols_etapas=st.session_state.agg_cols_etapas, + agg_cols_viajes=st.session_state.agg_cols_viajes) + + st.session_state.etapas = st.session_state.etapas[st.session_state.etapas.inicio_norm != st.session_state.etapas.fin_norm].copy() + st.session_state.viajes = st.session_state.viajes[st.session_state.viajes.inicio_norm != st.session_state.viajes.fin_norm].copy() + + if not desc_etapas: + st.session_state.etapas = pd.DataFrame([]) + + if not desc_viajes: + st.session_state.viajes = pd.DataFrame([]) + + if not desc_origenes: + st.session_state.origenes = pd.DataFrame([]) + + if not desc_destinos: + st.session_state.destinos = pd.DataFrame([]) + if (len(st.session_state.etapas) > 0) | (len(st.session_state.viajes) > 0) | (len(st.session_state.origenes) > 0) | (len(st.session_state.destinos) > 0): + + m = crear_mapa_lineas_deseo(df_viajes=st.session_state.viajes, + df_etapas=st.session_state.etapas, + zonif=zonif, + origenes=st.session_state.origenes, + destinos=st.session_state.destinos, + var_fex='factor_expansion_linea', + cmap_viajes='Blues', + cmap_etapas='Greens', + map_title='Líneas de Deseo', + savefile='', + k_jenks=5) + if m: + st.session_state.map = m + + if st.session_state.map: + with col2: + folium_static(st.session_state.map, width=1000, height=800) + else: + col2.text("No hay datos suficientes para mostrar el mapa.") + + - else: - matriz = pd.DataFrame([]) - col2.text('No hay datos para mostrar') with st.expander('Indicadores'): col1, col2, col3 = st.columns([2, 2, 2]) - if len(etapas_all) > 0: - col1.table(general_) - col2.table(modal_) - col3.table(distancias_) + if len(st.session_state.etapas_) > 0: + col1.table(st.session_state.general_) + col2.table(st.session_state.modal_) + col3.table(st.session_state.distancias_) with st.expander('Matrices'): col1, col2 = st.columns([1, 4]) - if len(matriz) > 0: + if len(st.session_state.matriz) > 0: - # col2.table(matriz) + # col2.table(st.session_state.matriz) tipo_matriz = col1.selectbox( 'Variable', options=['Viajes', 'Distancia promedio (kms)', 'Tiempo promedio (min)', 'Velocidad promedio (km/h)']) @@ -474,45 +585,44 @@ def traigo_socio_indicadores(socio_indicadores): var_matriz = 'travel_time_min' if tipo_matriz == 'Velocidad promedio (km/h)': var_matriz = 'travel_speed' - - if len(matriz) > 0: - od_heatmap = pd.crosstab( - index=matriz['Origen'], - columns=matriz['Destino'], - values=matriz[var_matriz], - aggfunc="sum", - normalize=normalize, - ) - - if normalize: - od_heatmap = (od_heatmap * 100).round(2) - else: - od_heatmap = od_heatmap.round(0) - - od_heatmap = od_heatmap.reset_index() - od_heatmap['Origen'] = od_heatmap['Origen'].str[4:] - od_heatmap = od_heatmap.set_index('Origen') - od_heatmap.columns = [i[4:] for i in od_heatmap.columns] - - fig = px.imshow(od_heatmap, text_auto=True, - color_continuous_scale='Blues',) - - fig.update_coloraxes(showscale=False) - - if len(od_heatmap) <= 20: - fig.update_layout(width=800, height=800) - elif (len(od_heatmap) > 20) & (len(od_heatmap) <= 40): - fig.update_layout(width=1100, height=1100) - elif len(od_heatmap) > 40: - fig.update_layout(width=1400, height=1400) - - col2.plotly_chart(fig) + + od_heatmap = pd.crosstab( + index=st.session_state.matriz['Origen'], + columns=st.session_state.matriz['Destino'], + values=st.session_state.matriz[var_matriz], + aggfunc="sum", + normalize=normalize, + ) + + if normalize: + od_heatmap = (od_heatmap * 100).round(2) + else: + od_heatmap = od_heatmap.round(0) + + od_heatmap = od_heatmap.reset_index() + od_heatmap['Origen'] = od_heatmap['Origen'].str[4:] + od_heatmap = od_heatmap.set_index('Origen') + od_heatmap.columns = [i[4:] for i in od_heatmap.columns] + + fig = px.imshow(od_heatmap, text_auto=True, + color_continuous_scale='Blues',) + + fig.update_coloraxes(showscale=False) + + if len(od_heatmap) <= 20: + fig.update_layout(width=1000, height=1000) + elif (len(od_heatmap) > 20) & (len(od_heatmap) <= 40): + fig.update_layout(width=1000, height=1000) + elif len(od_heatmap) > 40: + fig.update_layout(width=1000, height=1000) + + col2.plotly_chart(fig) else: col2.text('No hay datos para mostrar') with st.expander('Género y tarifas'): col1, col2, col3, col4 = st.columns([1, 2, 2, 2]) - totals, totals_porc, avg_distances, avg_times, avg_velocity, modos_genero_abs, modos_genero_porc, modos_tarifa_abs, modos_tarifa_porc, avg_viajes, avg_etapas, avg_tiempo_entre_viajes = traigo_socio_indicadores(socio_indicadores_) + totals, totals_porc, avg_distances, avg_times, avg_velocity, modos_genero_abs, modos_genero_porc, modos_tarifa_abs, modos_tarifa_porc, avg_viajes, avg_etapas, avg_tiempo_entre_viajes = traigo_socio_indicadores(st.session_state.socio_indicadores_) col2.markdown("

Total de viajes por género y tarifa

", unsafe_allow_html=True) col2.table(totals) diff --git a/urbantrips/dashboard/pages/4_Poligonos.py b/urbantrips/dashboard/pages/4_Poligonos.py index 4efb71e..4c7750a 100644 --- a/urbantrips/dashboard/pages/4_Poligonos.py +++ b/urbantrips/dashboard/pages/4_Poligonos.py @@ -1,16 +1,21 @@ import streamlit as st import pandas as pd +import geopandas as gpd import folium -from streamlit_folium import folium_static +from streamlit_folium import st_folium import mapclassify import plotly.express as px from folium import Figure +from shapely import wkt from dash_utils import ( levanto_tabla_sql, get_logo, create_data_folium, traigo_indicadores, - extract_hex_colors_from_cmap + extract_hex_colors_from_cmap, + iniciar_conexion_db, normalize_vars + ) +from streamlit_folium import folium_static def crear_mapa_poligonos(df_viajes, df_etapas, @@ -29,9 +34,9 @@ def crear_mapa_poligonos(df_viajes, m = '' if (len(df_viajes) > 0) | (len(df_etapas) > 0) | (len(origenes) > 0) | (len(destinos) > 0): - fig = Figure(width=2000, height=2000) - m = folium.Map(location=[poly.geometry.representative_point().y.mean( - ), poly.geometry.representative_point().x.mean()], zoom_start=10, tiles='cartodbpositron') + fig = Figure(width=800, height=600) + m = folium.Map(location=[poly.sample(100, replace=True).geometry.representative_point().y.mean( + ), poly.sample(100, replace=True).geometry.representative_point().x.mean()], zoom_start=9, tiles='cartodbpositron') colors_viajes = extract_hex_colors_from_cmap( cmap='viridis_r', n=k_jenks) @@ -203,37 +208,150 @@ def crear_mapa_poligonos(df_viajes, return m +def levanto_tabla_sql_local(tabla_sql, tabla_tipo="dash", query=''): -st.set_page_config(layout="wide") + conn = iniciar_conexion_db(tipo=tabla_tipo) + + try: + if len(query) == 0: + query = f""" + SELECT * + FROM {tabla_sql} + """ + + tabla = pd.read_sql_query( query, conn ) + except: + print(f"{tabla_sql} no existe") + tabla = pd.DataFrame([]) + + conn.close() + + if len(tabla) > 0: + if "wkt" in tabla.columns: + tabla["geometry"] = tabla.wkt.apply(wkt.loads) + tabla = gpd.GeoDataFrame(tabla, crs=4326) + tabla = tabla.drop(["wkt"], axis=1) + + tabla = normalize_vars(tabla) + return tabla + +def traigo_socio_indicadores(socio_indicadores): + + df = socio_indicadores[socio_indicadores.tabla=='viajes-genero-tarifa'].copy() + totals = pd.crosstab(values=df.factor_expansion_linea, columns=df.Genero, index=df.Tarifa, aggfunc='sum', margins=True, margins_name='Total', normalize=False).fillna(0).round().astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) + totals_porc = (pd.crosstab(values=df.factor_expansion_linea, columns=df.Genero, index=df.Tarifa, aggfunc='sum', margins=True, margins_name='Total', normalize=True) * 100).round(2) + + modos = socio_indicadores[socio_indicadores.tabla=='etapas-genero-modo'].copy() + modos_genero_abs = pd.crosstab(values=modos.factor_expansion_linea, index=[modos.Genero], columns=modos.Modo, aggfunc='sum', normalize=False, margins=True, margins_name='Total').fillna(0).astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) + modos_genero_porc = (pd.crosstab(values=modos.factor_expansion_linea, index=modos.Genero, columns=modos.Modo, aggfunc='sum', normalize=True, margins=True, margins_name='Total') * 100).round(2) + + modos = socio_indicadores[socio_indicadores.tabla=='etapas-tarifa-modo'].copy() + modos_tarifa_abs = pd.crosstab(values=modos.factor_expansion_linea, index=[modos.Tarifa], columns=modos.Modo, aggfunc='sum', normalize=False, margins=True, margins_name='Total').fillna(0).astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) + modos_tarifa_porc = (pd.crosstab(values=modos.factor_expansion_linea, index=modos.Tarifa, columns=modos.Modo, aggfunc='sum', normalize=True, margins=True, margins_name='Total') * 100).round(2) + + avg_distances = pd.crosstab(values=df.Distancia, columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_times = pd.crosstab(values=df['Tiempo de viaje'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_velocity = pd.crosstab(values=df['Velocidad'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_etapas = pd.crosstab(values=df['Etapas promedio'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).round(2).fillna('') + user = socio_indicadores[socio_indicadores.tabla=='usuario-genero-tarifa'].copy() + avg_viajes = pd.crosstab(values=user['Viajes promedio'], index=[user.Tarifa], columns=user.Genero, margins=True, margins_name='Total', aggfunc=lambda x: (x * user.loc[x.index, 'factor_expansion_linea']).sum() / user.loc[x.index, 'factor_expansion_linea'].sum(),).round(2).fillna('') + + avg_tiempo_entre_viajes = pd.crosstab(values=df['Tiempo entre viajes'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + + return totals, totals_porc, avg_distances, avg_times, avg_velocity, modos_genero_abs, modos_genero_porc, modos_tarifa_abs, modos_tarifa_porc, avg_viajes, avg_etapas, avg_tiempo_entre_viajes + +# Función para detectar cambios +def hay_cambios_en_filtros(current, last): + return current != last + + +#--- +st.set_page_config(layout="wide") logo = get_logo() st.image(logo) - -poligonos = levanto_tabla_sql('poligonos') -etapas_all = levanto_tabla_sql('poly_etapas') -matrices_all = levanto_tabla_sql('poly_matrices') -zonificaciones = levanto_tabla_sql('zonificaciones') -general_ = '' -with st.expander('Polígonos', expanded=True): +with st.expander('Líneas de Deseo', expanded=True): col1, col2 = st.columns([1, 4]) - if (len(poligonos) > 0) & (len(etapas_all) > 0): - + variables = [ + 'last_filters', 'last_options', 'data_cargada', 'etapas_lst', 'matrices_all', 'etapas_all', + 'matrices_', 'etapas_', 'etapas', 'viajes', 'matriz', 'origenes', 'destinos', + 'general', 'modal', 'distancias', 'mes', 'tipo_dia', 'zona', 'transferencia', + 'modo_agregado', 'rango_hora', 'distancia', 'socio_indicadores_', 'general_', 'modal_', 'distancias_', 'zonif', 'desc_transfers', 'desc_modos', 'desc_horas', 'desc_distancia', 'agg_cols_etapas', 'agg_cols_viajes' + ] + + # Inicializar todas las variables con None si no existen en session_state + for var in variables: + if var not in st.session_state: + st.session_state[var] = '' + + etapas_lst_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT mes FROM poly_etapas;') + poligonos = levanto_tabla_sql('poligonos') + + # st.session_state.etapas = traigo() + + if (len(poligonos)>0) & (len(etapas_lst_) > 0): + + zonificaciones = levanto_tabla_sql('zonificaciones') + socio_indicadores = levanto_tabla_sql('socio_indicadores') + desc_tipo_dia_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT tipo_dia FROM poly_etapas;') + desc_zona_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT zona FROM poly_etapas;') + modos_list_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT modo_agregado FROM poly_etapas;') + rango_hora_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT rango_hora FROM poly_etapas;') + distancia_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT distancia FROM poly_etapas;') + desc_poly_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT id_polygon FROM poly_etapas;') + + + # st.session_state.etapas_all = st.session_state.etapas_all[st.session_state.etapas_all.factor_expansion_linea > 0].copy() general, modal, distancias = traigo_indicadores('poligonos') - - desc_poly = col1.selectbox( - 'Polígono', options=etapas_all.id_polygon.unique()) - desc_zona = col1.selectbox( - 'Zonificación', options=etapas_all.zona.unique()) - zonif = zonificaciones[zonificaciones.zona == desc_zona] + + # Inicializar valores de `st.session_state` solo si no existen + if 'last_filters' not in st.session_state: + st.session_state.last_filters = { + 'mes': 'Todos', + 'tipo_dia': None, + 'zona': None, + 'transferencia': 'Todos', + 'modo_agregado': 'Todos', + 'rango_hora': 'Todos', + 'distancia': 'Todas' + } + + if 'data_cargada' not in st.session_state: + st.session_state.data_cargada = False + + # Opciones de los filtros en Streamlit + # st.session_state.etapas_lst = ['Todos'] + etapas_lst_.mes.unique().tolist() + st.session_state.etapas_lst = etapas_lst_.mes.unique().tolist() + desc_mes = col1.selectbox('Mes', options=st.session_state.etapas_lst) + + desc_tipo_dia = col1.selectbox('Tipo día', options=desc_tipo_dia_.tipo_dia.unique()) + + st.session_state.desc_poly = col1.selectbox( + 'Polígono', options=desc_poly_all_.id_polygon.unique()) + + desc_zona = col1.selectbox('Zonificación', options=desc_zona_.zona.unique()) + transf_list_all = ['Todos', 'Con transferencia', 'Sin transferencia'] + transf_list = col1.selectbox('Transferencias', options=transf_list_all) + + modos_list_all = ['Todos'] + modos_list_all_[modos_list_all_.modo_agregado != '99'].modo_agregado.unique().tolist() + # modos_list = col1.selectbox('Modos', options=[text.capitalize() for text in modos_list_all]) + modos_list = col1.selectbox('Modos', options=[text for text in modos_list_all]) + + rango_hora_all = ['Todos'] + rango_hora_all_[rango_hora_all_.rango_hora != '99'].rango_hora.unique().tolist() + # rango_hora = col1.selectbox('Rango hora', options=[text.capitalize() for text in rango_hora_all]) + rango_hora = col1.selectbox('Rango hora', options=[text for text in rango_hora_all]) + + distancia_all = ['Todas'] + distancia_all_[distancia_all_.distancia != '99'].distancia.unique().tolist() + distancia = col1.selectbox('Distancia', options=distancia_all) desc_etapas = col1.checkbox( - label='Etapas', value=True) + 'Etapas', value=False) desc_viajes = col1.checkbox( - 'Viajes', value=False) + 'Viajes', value=True) desc_origenes = col1.checkbox( ':blue[Origenes]', value=False) @@ -241,182 +359,199 @@ def crear_mapa_poligonos(df_viajes, desc_destinos = col1.checkbox( ':orange[Destinos]', value=False) - transf_list_all = ['Todos', 'Con transferencia', 'Sin transferencia'] - transf_list = col1.selectbox( - 'Transferencias', options=transf_list_all) - - modos_list_all = ['Todos']+etapas_all[etapas_all.modo_agregado != - '99'].modo_agregado.unique().tolist() - modos_list = [text.capitalize() for text in modos_list_all] - modos_list = col1.selectbox( - 'Modos', options=modos_list_all) - - rango_hora_all = [ - 'Todos']+etapas_all[etapas_all.rango_hora != '99'].rango_hora.unique().tolist() - rango_hora = [text.capitalize() for text in rango_hora_all] - rango_hora = col1.selectbox( - 'Rango hora', options=rango_hora_all) - - distancia_all = [ - 'Todas']+etapas_all[etapas_all.distancia != '99'].distancia.unique().tolist() - distancia = col1.selectbox( - 'Distancia', options=distancia_all) - - etapas_ = etapas_all[(etapas_all.id_polygon == desc_poly) & - (etapas_all.zona == desc_zona)].copy() - matrices_ = matrices_all[(matrices_all.id_polygon == desc_poly) & - (matrices_all.zona == desc_zona)].copy() - - general_ = general.loc[general.id_polygon == desc_poly, [ - 'Tipo', 'Indicador', 'Valor']].set_index('Tipo') - modal_ = modal.loc[modal.id_polygon == desc_poly, [ - 'Tipo', 'Indicador', 'Valor']].set_index('Tipo') - distancias_ = distancias.loc[distancias.id_polygon == desc_poly, [ - 'Tipo', 'Indicador', 'Valor']].set_index('Tipo') - - if transf_list == 'Todos': - desc_transfers = True + desc_zonif = col1.checkbox( + 'Mostrar zonificación', value=False) + if desc_zonif: + st.session_state.zonif = zonificaciones[zonificaciones.zona == desc_zona] else: - desc_transfers = False - if transf_list == 'Con transferencia': - etapas_ = etapas_[(etapas_.transferencia == 1)] - matrices_ = matrices_[(matrices_.transferencia == 1)] - elif transf_list == 'Sin transferencia': - etapas_ = etapas_[(etapas_.transferencia == 0)] - matrices_ = matrices_[(matrices_.transferencia == 0)] - else: - etapas_ = pd.DataFrame([]) - matrices_ = pd.DataFrame([]) + st.session_state.zonif = '' - if modos_list == 'Todos': - desc_modos = True - else: - desc_modos = False - etapas_ = etapas_[ - (etapas_.modo_agregado.str.lower() == modos_list.lower())] - matrices_ = matrices_[ - (matrices_.modo_agregado.str.lower() == modos_list.lower())] - - if rango_hora == 'Todos': - desc_horas = True - else: - desc_horas = False - etapas_ = etapas_[(etapas_.rango_hora == rango_hora)] - matrices_ = matrices_[(matrices_.rango_hora == rango_hora)] + st.session_state.show_poly = col1.checkbox( + 'Mostrar polígono', value=True) - if distancia == 'Todas': - desc_distancia = True + st.session_state.poly = poligonos[(poligonos.id == st.session_state.desc_poly)] + + if st.session_state.poly['tipo'].values[0] == 'cuenca': + desc_cuenca = col1.checkbox( + 'OD en cuenca', value=False) else: - desc_distancia = False - etapas_ = etapas_[(etapas_.distancia == distancia)] - matrices_ = matrices_[(matrices_.distancia == distancia)] - - agg_cols_etapas = ['id_polygon', - 'zona', - 'inicio_norm', - 'transfer1_norm', - 'transfer2_norm', - 'fin_norm', - 'poly_inicio_norm', - 'poly_transfer1_norm', - 'poly_transfer2_norm', - 'poly_fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'distancia'] - agg_cols_viajes = ['id_polygon', - 'zona', - 'inicio_norm', - 'fin_norm', - 'poly_inicio_norm', - 'poly_fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'distancia'] - - etapas, viajes, matriz, origenes, destinos = create_data_folium(etapas_, - matrices_, - agg_transferencias=desc_transfers, - agg_modo=desc_modos, - agg_hora=desc_horas, - agg_distancia=desc_distancia, - agg_cols_etapas=agg_cols_etapas, - agg_cols_viajes=agg_cols_viajes) - - if not desc_etapas: - etapas = pd.DataFrame([]) - - if not desc_viajes: - viajes = pd.DataFrame([]) - - if not desc_origenes: - origenes = pd.DataFrame([]) - - if not desc_destinos: - destinos = pd.DataFrame([]) + desc_cuenca = False + + + + + # Construye el diccionario de filtros actual + current_filters = { + 'mes': None if desc_mes == 'Todos' else desc_mes, + 'tipo_dia': desc_tipo_dia, + 'zona': None if desc_zona == 'Todos' else desc_zona, + 'transferencia': None if transf_list == 'Todos' else (1 if transf_list == 'Con transferencia' else 0), + 'modo_agregado': None if modos_list == 'Todos' else modos_list, + 'rango_hora': None if rango_hora == 'Todos' else rango_hora, + 'distancia': None if distancia == 'Todas' else distancia, + 'coincidencias': None if desc_cuenca == False else True, + 'id_polygon': st.session_state.desc_poly, + } + current_options = { 'desc_etapas': desc_etapas, + 'desc_viajes': desc_viajes, + 'desc_origenes': desc_origenes, + 'desc_destinos': desc_destinos, + 'desc_zonif': desc_zonif, + 'show_poly' : st.session_state.show_poly, + 'desc_cuenca': desc_cuenca + } + + + + # Solo cargar datos si hay cambios en los filtros + if hay_cambios_en_filtros(current_filters, st.session_state.last_filters): + + query = "" + conditions = " AND ".join(f"{key} = '{value}'" for key, value in current_filters.items() if value is not None) + if conditions: + query += f" WHERE {conditions}" - desc_zonif = col1.checkbox( - 'Mostrar zonificación', value=False) - if not desc_zonif: - zonif = '' + st.session_state.matrices_ = levanto_tabla_sql_local('poly_matrices', tabla_tipo='dash', query=f"SELECT * FROM poly_matrices{query}") + st.session_state.etapas_ = levanto_tabla_sql_local('poly_etapas', tabla_tipo='dash', query=f"SELECT * FROM poly_etapas{query}") - show_poly = col1.checkbox( - 'Mostrar polígono', value=True) + if len(st.session_state.etapas_)==0: + col2.write('No hay datos para mostrar') + else: - poly = poligonos[poligonos.id == desc_poly] - - if not desc_origenes: - origenes = '' - if not desc_destinos: - destinos = '' - - if (len(etapas) > 0) | (len(viajes) > 0) | (len(origenes) > 0) | (len(destinos) > 0): - - map = crear_mapa_poligonos(df_viajes=viajes, - df_etapas=etapas, - poly=poly, - zonif=zonif, - origenes=origenes, - destinos=destinos, - var_fex='factor_expansion_linea', - cmap_viajes='Blues', - cmap_etapas='Greens', - map_title=desc_poly, - savefile='', - k_jenks=5, - show_poly=show_poly) - - with col2: - # st_map = st_folium(map, width=1200, height=1000) # - folium_static(map, width=1500, height=1000) + if desc_mes != 'Todos': + st.session_state.socio_indicadores_ = socio_indicadores[(socio_indicadores.mes==desc_mes)&(socio_indicadores.tipo_dia==desc_tipo_dia)].copy() + + else: + st.session_state.socio_indicadores_ = socio_indicadores[(socio_indicadores.tipo_dia==desc_tipo_dia)].copy() + + st.session_state.socio_indicadores_ = st.session_state.socio_indicadores_.groupby(["tabla", "tipo_dia", "Genero", "Tarifa", "Modo"], as_index=False)[[ + "Distancia", "Tiempo de viaje", "Velocidad", "Etapas promedio", "Viajes promedio", "Tiempo entre viajes", "factor_expansion_linea" + ]] .mean().round(2) + + st.session_state.general_ = general.loc[(general.id_polygon==st.session_state.desc_poly)&(general.mes==desc_mes)&(general.tipo_dia==desc_tipo_dia), ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') + st.session_state.modal_ = modal.loc[(modal.id_polygon==st.session_state.desc_poly)&(modal.mes==desc_mes)&(modal.tipo_dia==desc_tipo_dia), ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') + st.session_state.distancias_ = distancias.loc[(distancias.id_polygon==st.session_state.desc_poly)&(distancias.mes==desc_mes)&(distancias.tipo_dia==desc_tipo_dia), ['Tipo', 'Indicador', 'Valor']].set_index('Tipo') + + if transf_list == 'Todos': + st.session_state.desc_transfers = True + else: + st.session_state.desc_transfers = False + + if modos_list == 'Todos': + st.session_state.desc_modos = True + else: + st.session_state.desc_modos = False + + if rango_hora == 'Todos': + st.session_state.desc_horas = True + else: + st.session_state.desc_horas = False + + if distancia == 'Todas': + st.session_state.desc_distancia = True + else: + st.session_state.desc_distancia = False + + + st.session_state.agg_cols_etapas = ['zona', + 'inicio_norm', + 'transfer1_norm', + 'transfer2_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] + st.session_state.agg_cols_viajes = ['zona', + 'inicio_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] + + if len(st.session_state.etapas_)==0: + col2.write('No hay datos para mostrar') else: - matriz = pd.DataFrame([]) - col2.text('No hay datos para mostrar') - - else: - matriz = pd.DataFrame([]) - - col2.text('No hay datos para mostrar') + if not st.session_state.data_cargada or \ + hay_cambios_en_filtros(current_options, st.session_state.last_options) or \ + hay_cambios_en_filtros(current_filters, st.session_state.last_filters): + + # Actualiza los filtros en `session_state` para detectar cambios futuros + st.session_state.last_filters = current_filters.copy() + st.session_state.last_options = current_options.copy() + st.session_state.data_cargada = True + + + st.session_state.etapas, st.session_state.viajes, st.session_state.matriz, st.session_state.origenes, st.session_state.destinos = create_data_folium(st.session_state.etapas_, + st.session_state.matrices_, + agg_transferencias=st.session_state.desc_transfers, + agg_modo=st.session_state.desc_modos, + agg_hora=st.session_state.desc_horas, + agg_distancia=st.session_state.desc_distancia, + agg_cols_etapas=st.session_state.agg_cols_etapas, + agg_cols_viajes=st.session_state.agg_cols_viajes) + + + + st.session_state.etapas = st.session_state.etapas[st.session_state.etapas.inicio_norm != st.session_state.etapas.fin_norm].copy() + st.session_state.viajes = st.session_state.viajes[st.session_state.viajes.inicio_norm != st.session_state.viajes.fin_norm].copy() + + if not desc_etapas: + st.session_state.etapas = pd.DataFrame([]) + + if not desc_viajes: + st.session_state.viajes = pd.DataFrame([]) + + if not desc_origenes: + st.session_state.origenes = pd.DataFrame([]) + + if not desc_destinos: + st.session_state.destinos = pd.DataFrame([]) + + if (len(st.session_state.etapas) > 0) | (len(st.session_state.viajes) > 0) | (len(st.session_state.origenes) > 0) | (len(st.session_state.destinos) > 0): + + m = crear_mapa_poligonos(df_viajes=st.session_state.viajes, + df_etapas=st.session_state.etapas, + poly=st.session_state.poly, + zonif=st.session_state.zonif, + origenes=st.session_state.origenes, + destinos=st.session_state.destinos, + var_fex='factor_expansion_linea', + cmap_viajes='Blues', + cmap_etapas='Greens', + map_title=st.session_state.desc_poly, + savefile='', + k_jenks=5, + show_poly=st.session_state.show_poly) + if m: + st.session_state.map = m + + if st.session_state.map: + with col2: + folium_static(st.session_state.map, width=1000, height=800) + else: + col2.text("No hay datos suficientes para mostrar el mapa.") + + with st.expander('Indicadores'): col1, col2, col3 = st.columns([2, 2, 2]) - if len(general_) > 0: - col1.table(general_) - col2.table(modal_) - col3.table(distancias_) - else: - col2.text('No hay datos para mostrar') + + if len(st.session_state.etapas_) > 0: + col1.table(st.session_state.general_) + col2.table(st.session_state.modal_) + col3.table(st.session_state.distancias_) with st.expander('Matrices'): col1, col2 = st.columns([1, 4]) + if len(st.session_state.matriz) > 0: - if len(matriz) > 0: - + # col2.table(st.session_state.matriz) + tipo_matriz = col1.selectbox( 'Variable', options=['Viajes', 'Distancia promedio (kms)', 'Tiempo promedio (min)', 'Velocidad promedio (km/h)']) @@ -430,38 +565,40 @@ def crear_mapa_poligonos(df_viajes, var_matriz = 'travel_time_min' if tipo_matriz == 'Velocidad promedio (km/h)': var_matriz = 'travel_speed' - - - if len(matriz) > 0: - od_heatmap = pd.crosstab( - index=matriz['Origen'], - columns=matriz['Destino'], - values=matriz['factor_expansion_linea'], - aggfunc="sum", - normalize=normalize, - ) - if normalize: - od_heatmap = (od_heatmap * 100).round(1) - else: - od_heatmap = od_heatmap.round(0) - - od_heatmap = od_heatmap.reset_index() - od_heatmap['Origen'] = od_heatmap['Origen'].str[4:] - od_heatmap = od_heatmap.set_index('Origen') - od_heatmap.columns = [i[4:] for i in od_heatmap.columns] - - fig = px.imshow(od_heatmap, text_auto=True, - color_continuous_scale='Blues',) - - fig.update_coloraxes(showscale=False) - - if len(matriz) <= 20: - fig.update_layout(width=800, height=800) - elif (len(matriz) > 20) & (len(od_heatmap) <= 40): - fig.update_layout(width=1000, height=1000) - elif len(matriz) > 40: - fig.update_layout(width=1400, height=800) - - col2.plotly_chart(fig) + + od_heatmap = pd.crosstab( + index=st.session_state.matriz['Origen'], + columns=st.session_state.matriz['Destino'], + values=st.session_state.matriz[var_matriz], + aggfunc="sum", + normalize=normalize, + ) + + if normalize: + od_heatmap = (od_heatmap * 100).round(2) + else: + od_heatmap = od_heatmap.round(0) + + od_heatmap = od_heatmap.reset_index() + od_heatmap['Origen'] = od_heatmap['Origen'].str[4:] + od_heatmap = od_heatmap.set_index('Origen') + od_heatmap.columns = [i[4:] for i in od_heatmap.columns] + + fig = px.imshow(od_heatmap, text_auto=True, + color_continuous_scale='Blues',) + + fig.update_coloraxes(showscale=False) + + if len(od_heatmap) <= 20: + fig.update_layout(width=1000, height=1000) + elif (len(od_heatmap) > 20) & (len(od_heatmap) <= 40): + fig.update_layout(width=1000, height=1000) + elif len(od_heatmap) > 40: + fig.update_layout(width=1000, height=1000) + + col2.plotly_chart(fig) else: col2.text('No hay datos para mostrar') + + + diff --git "a/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" "b/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" new file mode 100644 index 0000000..35a7436 --- /dev/null +++ "b/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" @@ -0,0 +1,208 @@ +import pandas as pd +import streamlit as st +import h3 +from shapely.geometry import Polygon, shape, mapping +from shapely.ops import unary_union +import geopandas as gpd +from streamlit_folium import st_folium +import folium +import json +from folium import plugins +from shapely import wkt +from dash_utils import ( + iniciar_conexion_db, get_logo +) +from streamlit_folium import folium_static + + +def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): + + conn = iniciar_conexion_db(tipo=tabla_tipo) + + try: + if len(query) == 0: + query = f""" + SELECT * + FROM {tabla_sql} + """ + + tabla = pd.read_sql_query( query, conn ) + except: + print(f"{tabla_sql} no existe") + tabla = pd.DataFrame([]) + + conn.close() + + if len(tabla) > 0: + if "wkt" in tabla.columns: + tabla["geometry"] = tabla.wkt.apply(wkt.loads) + tabla = gpd.GeoDataFrame(tabla, crs=4326) + tabla = tabla.drop(["wkt"], axis=1) + + return tabla + +@st.cache_data +def traigo_mes_dia(): + mes_dia = levanto_tabla_sql('etapas_agregadas', 'dash', 'SELECT DISTINCT mes, tipo_dia FROM etapas_agregadas;') + mes = mes_dia.mes.values.tolist() + tipo_dia = mes_dia.tipo_dia.values.tolist() + return mes, tipo_dia + +# Convert geometry to H3 indices +def get_h3_indices_in_geometry(geometry, resolution): + geojson = mapping(geometry) + h3_indices = list(h3.polyfill(geojson, resolution, geo_json_conformant=True)) + return h3_indices + +# Convert H3 indices to GeoDataFrame +def h3_indices_to_gdf(h3_indices): + hex_geometries = [Polygon(h3.h3_to_geo_boundary(h, geo_json=True)) for h in h3_indices] + return gpd.GeoDataFrame({'h3_index': h3_indices}, geometry=hex_geometries, crs='EPSG:4326') + +# Initialize session state for zones +if 'zona_1' not in st.session_state: + st.session_state['zona_1'] = [] +if 'zona_2' not in st.session_state: + st.session_state['zona_2'] = [] + +def main(): + + + st.set_page_config(layout="wide") + logo = get_logo() + st.image(logo) + + mes_lst, tipo_dia_lst = traigo_mes_dia() + + with st.expander('Selecciono zonas', expanded=True): + col1, col2 = st.columns([1, 4]) + + # # Sidebar controls + # resolution = col1.slider("Selecciona la Resolución H3", min_value=0, max_value=15, value=8, step=1) + resolution = 8 + + # Initialize Folium map + m = folium.Map(location=[-34.593, -58.451], zoom_start=10) + draw = plugins.Draw( + export=False, + draw_options={'polygon': True, 'rectangle': True}, + edit_options={'edit': True, 'remove': True} + ) + draw.add_to(m) + + # Display map with drawing tools + with col2: + output = st_folium(m, width=700, height=700, key='map') + + # Handle user drawing + if output.get('last_active_drawing'): + geometry_data = output['last_active_drawing']['geometry'] + geometry = shape(geometry_data) + h3_indices = get_h3_indices_in_geometry(geometry, resolution) + + # Save hexagons to session state based on button clicks + if col1.button("Guardar en Zona 1"): + st.session_state['zona_1'].extend(h3_indices) + if col1.button("Guardar en Zona 2"): + st.session_state['zona_2'].extend(h3_indices) + + zona1 = st.session_state['zona_1'] + zona2 = st.session_state['zona_2'] + + + + # Convertir la lista de índices H3 a una cadena en formato de lista de Python + zona1_str = json.dumps(zona1) + col2.code(zona1_str, language='python') + + zona2_str = json.dumps(zona2) + col2.code(zona2_str, language='python') + + with st.expander('Resultados', expanded=True): + col1, col2, col3, col4 = st.columns([1, 2, 2, 3]) + zona1 = st.session_state['zona_1'] + zona2 = st.session_state['zona_2'] + + # mes_lst = ['Todos'] + etapas_all.mes.unique().tolist() + desc_mes = col1.selectbox( + 'Mes', options=mes_lst) + + desc_tipo_dia = col1.selectbox( + 'Tipo dia', options=tipo_dia_lst) + + + if len(zona1) > 0 and len(zona2) > 0: + h3_values = ", ".join(f"'{item}'" for item in zona1 + zona2) + ## Etapas + query = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" + etapas = levanto_tabla_sql('etapas_agregadas', tabla_tipo='dash', query=query) + + etapas['Zona_1'] = '' + etapas['Zona_2'] = '' + etapas.loc[etapas.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' + etapas.loc[etapas.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' + etapas.loc[etapas.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' + etapas.loc[etapas.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' + etapas = etapas[(etapas.Zona_1 != '') & (etapas.Zona_2 != '') & (etapas.Zona_1 != etapas.Zona_2) & (etapas.Zona_1 != etapas.Zona_2)] + + + zonasod_e = etapas.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes'}) + zonasod_e['Viajes'] = zonasod_e['Viajes'].astype(int) + + + modos_e = etapas.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes', + 'nombre_linea': 'Línea', + 'modo': 'Modo'}) + modos_e['Viajes'] = modos_e['Viajes'].astype(int) + col2.write('Etapas') + col2.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) + col2.markdown(modos_e.to_html(index=False), unsafe_allow_html=True) + + + ## Viajes + query = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" + viajes = levanto_tabla_sql('viajes_agregados', tabla_tipo='dash', query=query) + + viajes['Zona_1'] = '' + viajes['Zona_2'] = '' + viajes.loc[viajes.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' + viajes.loc[viajes.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' + viajes.loc[viajes.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' + viajes.loc[viajes.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' + viajes = viajes[(viajes.Zona_1 != '') & (viajes.Zona_2 != '') & (viajes.Zona_1 != viajes.Zona_2) & (viajes.Zona_1 != viajes.Zona_2)] + + + zonasod_e = viajes.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes'}) + zonasod_e['Viajes'] = zonasod_e['Viajes'].astype(int) + + modos_v = viajes.groupby(['modo'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + + modos_v['Viajes'] = modos_v['Viajes'].astype(int) + col3.write('Viajes') + col3.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) + col3.markdown(modos_v.to_html(index=False), unsafe_allow_html=True) + + ## Mapa + + # Create unified geometry for each zone + def zona_to_geometry(h3_list): + polygons = [Polygon(h3.h3_to_geo_boundary(h3_index, geo_json=True)) for h3_index in h3_list] + return unary_union(polygons) + + geometry_zona1 = zona_to_geometry(st.session_state['zona_1']) + geometry_zona2 = zona_to_geometry(st.session_state['zona_2']) + gdf = gpd.GeoDataFrame({ + 'zona': ['Zona 1', 'Zona 2'], + 'geometry': [geometry_zona1, geometry_zona2] + }, crs="EPSG:4326") + + # Plot the zones on a new Folium map + m2 = folium.Map(location=[gdf.geometry.centroid.y.mean(), gdf.geometry.centroid.x.mean()], zoom_start=10) + folium.GeoJson(gdf, name="GeoData").add_to(m2) + + with col4: + st_folium(m2, width=700, height=700) + +if __name__ == '__main__': + main() diff --git a/urbantrips/kpi/overlapping.py b/urbantrips/kpi/overlapping.py index 0c1f557..78c8236 100644 --- a/urbantrips/kpi/overlapping.py +++ b/urbantrips/kpi/overlapping.py @@ -431,12 +431,18 @@ def compute_supply_overlapping( base_branch_id = "NULL" comp_branch_id = "NULL" + + + + + + conn_insumos = utils.iniciar_conexion_db(tipo="insumos") metadata = pd.read_sql( f"select id_linea, nombre_linea from metadata_lineas where id_linea in ({base_route_id},{comp_route_id})", conn_insumos, dtype={"id_linea": int}, ) - + conn_insumos.close() base_line_name = metadata.loc[ metadata.id_linea == base_route_id, "nombre_linea" ].item() diff --git a/urbantrips/lineas_deseo/lineas_deseo.py b/urbantrips/lineas_deseo/lineas_deseo.py index 69d8ad5..de12b4e 100644 --- a/urbantrips/lineas_deseo/lineas_deseo.py +++ b/urbantrips/lineas_deseo/lineas_deseo.py @@ -2,7 +2,7 @@ import geopandas as gpd import numpy as np import os -from urbantrips.utils.utils import iniciar_conexion_db, levanto_tabla_sql +from urbantrips.utils.utils import iniciar_conexion_db, levanto_tabla_sql, guardar_tabla_sql from urbantrips.geo.geo import normalizo_lat_lon from urbantrips.utils.utils import traigo_tabla_zonas, calculate_weighted_means from urbantrips.geo.geo import h3_to_lat_lon, h3toparent, h3_to_geodataframe, point_to_h3, create_h3_gdf @@ -118,85 +118,90 @@ def format_dataframe(df): return df -def construyo_indicadores(viajes): +def construyo_indicadores(viajes, poligonos=False): + + if poligonos: + nombre_tabla = 'poly_indicadores' + else: + nombre_tabla = 'agg_indicadores' if 'id_polygon' not in viajes.columns: viajes['id_polygon'] = 'NONE' - ind1 = viajes.groupby(['id_polygon', 'dia', 'mes'], as_index=False).factor_expansion_linea.sum( - ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes'], as_index=False).Valor.mean().round() + ind1 = viajes.groupby(['id_polygon', 'dia', 'mes', 'tipo_dia'], as_index=False).factor_expansion_linea.sum( + ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia'], as_index=False).Valor.mean().round() ind1['Indicador'] = 'Cantidad de Viajes' ind1['Valor'] = ind1.Valor.astype(int) ind1['Tipo'] = 'General' ind1['type_val'] = 'int' - ind2 = viajes[viajes.transferencia == 1].groupby(['id_polygon', 'dia', 'mes'], as_index=False).factor_expansion_linea.sum( - ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes'], as_index=False).Valor.mean().round() + ind2 = viajes[viajes.transferencia == 1].groupby(['id_polygon', 'dia', 'mes', 'tipo_dia'], as_index=False).factor_expansion_linea.sum( + ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia'], as_index=False).Valor.mean().round() ind2['Indicador'] = 'Cantidad de Viajes con Transferencia' - ind2 = ind2.merge(ind1[['id_polygon', 'mes', 'Valor']].rename( + ind2 = ind2.merge(ind1[['id_polygon', 'mes', 'tipo_dia', 'Valor']].rename( columns={'Valor': 'Tot'}), how='left') ind2['Valor'] = (ind2['Valor'] / ind2['Tot'] * 100).round(2) ind2['Tipo'] = 'General' ind2['type_val'] = 'percentage' - ind3 = viajes.groupby(['id_polygon', 'dia', 'mes', 'rango_hora'], as_index=False).factor_expansion_linea.sum( - ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'rango_hora'], as_index=False).Valor.mean().round() + ind3 = viajes.groupby(['id_polygon', 'dia', 'mes', 'tipo_dia', 'rango_hora'], as_index=False).factor_expansion_linea.sum( + ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia', 'rango_hora'], as_index=False).Valor.mean().round() ind3['Indicador'] = 'Cantidad de Según Rango Horas' - ind3['Tot'] = ind3.groupby(['id_polygon', 'mes']).Valor.transform('sum') + ind3['Tot'] = ind3.groupby(['id_polygon', 'mes', 'tipo_dia']).Valor.transform('sum') ind3['Valor'] = (ind3['Valor'] / ind3['Tot'] * 100).round(2) ind3['Indicador'] = 'Cantidad de Viajes de '+ind3['rango_hora']+'hs' ind3['Tipo'] = 'General' ind3['type_val'] = 'percentage' - ind4 = viajes.groupby(['id_polygon', 'dia', 'mes', 'modo'], as_index=False).factor_expansion_linea.sum( - ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'modo'], as_index=False).Valor.mean().round() + ind4 = viajes.groupby(['id_polygon', 'dia', 'mes', 'tipo_dia', 'modo'], as_index=False).factor_expansion_linea.sum( + ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia', 'modo'], as_index=False).Valor.mean().round() ind4['Indicador'] = 'Partición Modal' - ind4['Tot'] = ind4.groupby(['id_polygon', 'mes']).Valor.transform('sum') + ind4['Tot'] = ind4.groupby(['id_polygon', 'mes', 'tipo_dia']).Valor.transform('sum') ind4['Valor'] = (ind4['Valor'] / ind4['Tot'] * 100).round(2) ind4 = ind4.sort_values(['id_polygon', 'Valor'], ascending=False) ind4['Indicador'] = ind4['modo'] ind4['Tipo'] = 'Modal' ind4['type_val'] = 'percentage' - ind9 = viajes.groupby(['id_polygon', 'dia', 'mes', 'distancia'], as_index=False).factor_expansion_linea.sum( - ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'distancia'], as_index=False).Valor.mean().round() + ind9 = viajes.groupby(['id_polygon', 'dia', 'mes', 'tipo_dia', 'distancia'], as_index=False).factor_expansion_linea.sum( + ).round(0).rename(columns={'factor_expansion_linea': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia', 'distancia'], as_index=False).Valor.mean().round() ind9['Indicador'] = 'Partición Modal' - ind9['Tot'] = ind9.groupby(['id_polygon', 'mes']).Valor.transform('sum') + ind9['Tot'] = ind9.groupby(['id_polygon', 'mes', 'tipo_dia']).Valor.transform('sum') ind9['Valor'] = (ind9['Valor'] / ind9['Tot'] * 100).round(2) ind9 = ind9.sort_values(['id_polygon', 'Valor'], ascending=False) ind9['Indicador'] = 'Cantidad de '+ind9['distancia'] ind9['Tipo'] = 'General' ind9['type_val'] = 'percentage' - ind5 = viajes.groupby(['id_polygon', 'dia', 'mes', 'id_tarjeta'], - as_index=False).factor_expansion_linea.first().groupby(['id_polygon', 'dia', 'mes'], - as_index=False).factor_expansion_linea.sum().groupby(['id_polygon', 'mes'], + ind5 = viajes.groupby(['id_polygon', 'dia', 'mes', 'tipo_dia', 'id_tarjeta'], + as_index=False).factor_expansion_linea.first().groupby(['id_polygon', 'dia', 'mes', 'tipo_dia'], + as_index=False).factor_expansion_linea.sum().groupby(['id_polygon', 'mes', 'tipo_dia'], as_index=False).factor_expansion_linea.mean().round().rename(columns={'factor_expansion_linea': 'Valor'}) ind5['Indicador'] = 'Cantidad de Usuarios' ind5['Tipo'] = 'General' ind5['type_val'] = 'int' ind6 = calculate_weighted_means(viajes, - aggregate_cols=['id_polygon', 'dia', 'mes'], + aggregate_cols=['id_polygon', 'dia', 'mes', 'tipo_dia'], weighted_mean_cols=['distance_osm_drive'], - weight_col='factor_expansion_linea').rename(columns={'distance_osm_drive': 'Valor'}).groupby(['id_polygon', 'mes'], as_index=False).Valor.mean().round(2) + weight_col='factor_expansion_linea').rename(columns={'distance_osm_drive': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia'], as_index=False).Valor.mean().round(2) ind6['Tipo'] = 'Distancias' ind6['Indicador'] = 'Distancia Promedio (kms)' ind6['type_val'] = 'float' ind7 = calculate_weighted_means(viajes, - aggregate_cols=['id_polygon', 'dia', 'mes', 'modo'], + aggregate_cols=['id_polygon', 'dia', 'mes', 'tipo_dia', 'modo'], weighted_mean_cols=['distance_osm_drive'], - weight_col='factor_expansion_linea').rename(columns={'distance_osm_drive': 'Valor'}).groupby(['id_polygon', 'mes', 'modo'], as_index=False).Valor.mean().round(2) + weight_col='factor_expansion_linea').rename(columns={'distance_osm_drive': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia', 'modo'], as_index=False).Valor.mean().round(2) ind7['Tipo'] = 'Distancias' ind7['Indicador'] = 'Distancia Promedio (' + ind7.modo + ') (kms)' ind7['type_val'] = 'float' ind8 = calculate_weighted_means(viajes, - aggregate_cols=['id_polygon', 'dia', 'mes', 'distancia'], + aggregate_cols=['id_polygon', 'dia', 'mes', 'tipo_dia', 'distancia'], weighted_mean_cols=['distance_osm_drive'], - weight_col='factor_expansion_linea').rename(columns={'distance_osm_drive': 'Valor'}).groupby(['id_polygon', 'mes', 'distancia'], as_index=False).Valor.mean().round(2) + weight_col='factor_expansion_linea').rename(columns={'distance_osm_drive': 'Valor'}).groupby(['id_polygon', 'mes', 'tipo_dia', 'distancia'], as_index=False).Valor.mean().round(2) ind8['Tipo'] = 'Distancias' ind8['Indicador'] = 'Distancia Promedio ' + ind8.distancia ind8['type_val'] = 'float' @@ -204,15 +209,34 @@ def construyo_indicadores(viajes): indicadores = pd.concat( [ind1, ind5, ind2, ind3, ind6, ind9, ind7, ind8, ind4]) + tupla_mes = tuple(indicadores.mes.unique().tolist() + ['Todos']) + if len(tupla_mes) == 1: + query = f""" + SELECT * + FROM {nombre_tabla} + WHERE mes != '{tupla_mes[0]}' + """ + else: + query = f""" + SELECT * + FROM {nombre_tabla} + WHERE mes NOT IN {tupla_mes} + """ + + indicadores_ant = levanto_tabla_sql(nombre_tabla, 'dash', query=query) + + indicadores = pd.concat([indicadores[['id_polygon', 'mes', 'tipo_dia', 'Tipo', 'Indicador', 'type_val', 'Valor']], + indicadores_ant], ignore_index=True) + indicadores_todos = indicadores.groupby(['id_polygon', 'Tipo', 'Indicador', 'type_val'], as_index=False).Valor.mean().round(2) indicadores_todos['mes'] = 'Todos' indicadores = pd.concat([indicadores, indicadores_todos]) indicadores = format_dataframe(indicadores) - indicadores = indicadores[['id_polygon', 'mes', 'Tipo', 'Indicador', 'Valor_str']].rename( + indicadores = indicadores[['id_polygon', 'mes', 'tipo_dia', 'Tipo', 'Indicador', 'Valor_str']].rename( columns={'Valor_str': 'Valor'}) - indicadores = indicadores.sort_values(['id_polygon', 'mes', 'Tipo', 'Indicador']) + indicadores = indicadores.sort_values(['id_polygon', 'mes', 'tipo_dia', 'Tipo', 'Indicador']) return indicadores @@ -287,13 +311,18 @@ def select_cases_from_polygons(etapas, viajes, polygons, res=8): gdf_hexs = select_h3_from_polygon(poly, res=res, viz=False) + gdf_hexs = gdf_hexs[['id', 'h3']].rename( columns={'h3': 'h3_o', 'id': 'id_polygon'}) seleccionar = etapas.merge(gdf_hexs, on='h3_o')[ - ['dia', 'id_tarjeta', 'id_viaje', 'id_polygon']].drop_duplicates() - + ['dia', 'id_tarjeta', 'id_viaje', 'id_polygon']] + seleccionar = seleccionar.groupby(['dia', 'id_tarjeta', 'id_viaje', 'id_polygon'], as_index=False).size() + seleccionar['coincidencias'] = 'False' + seleccionar.loc[seleccionar['size']>1, 'coincidencias'] = 'True' + seleccionar = seleccionar.drop(['size'], axis=1) + tmp = etapas.merge(seleccionar) etapas_selec = pd.concat([etapas_selec, @@ -761,6 +790,18 @@ def crea_socio_indicadores(etapas, viajes): return socio_indicadores +def preparo_etapas_agregadas(etapas, viajes): + e_agg = etapas.groupby(['dia', 'mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo', 'id_linea'], as_index=False).factor_expansion_linea.sum() + e_agg = e_agg.groupby(['mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo', 'id_linea'], as_index=False).factor_expansion_linea.mean() + e_agg = e_agg[e_agg.h3_o!=e_agg.h3_d] + lineas = levanto_tabla_sql('metadata_lineas', 'insumos') + e_agg = e_agg.merge(lineas[['id_linea', 'nombre_linea']]) + + v_agg = viajes.groupby(['dia', 'mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo'], as_index=False).factor_expansion_linea.sum() + v_agg = v_agg.groupby(['mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo'], as_index=False).factor_expansion_linea.mean() + v_agg = v_agg[v_agg.h3_o!=v_agg.h3_d] + + return e_agg, v_agg def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos='', res=6): @@ -773,6 +814,9 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' poligonos = pd.DataFrame([['NONE', 'NONE']], columns=['id', 'tipo']) etapas_selec['id_polygon'] = 'NONE' viajes_selec['id_polygon'] = 'NONE' + etapas_selec['coincidencias'] = 'NONE' + viajes_selec['coincidencias'] = 'NONE' + etapas_selec = etapas_selec[etapas_selec.distance_osm_drive.notna()].copy() etapas_selec = etapas_selec.rename( @@ -844,6 +888,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'factor_expansion_linea']] etapas_all['etapa_max'] = etapas_all.groupby( ['dia', 'id_tarjeta', 'id_viaje']).id_etapa.transform('max') @@ -873,6 +918,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'factor_expansion_linea']] etapas_all['ultimo_viaje'] = 0 @@ -887,6 +933,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'factor_expansion_linea', 'ultimo_viaje']] @@ -919,6 +966,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'factor_expansion_linea', 'polygon']].rename(columns={'h3': 'h3_inicio', 'polygon': 'poly_inicio'}) @@ -962,6 +1010,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'factor_expansion_linea']] @@ -1111,7 +1160,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'poly_inicio_norm', 'poly_transfer1_norm', 'poly_transfer2_norm', 'poly_fin_norm', 'lon1', 'lat1', 'lon2', 'lat2', 'lon3', 'lat3', 'lon4', 'lat4', 'lon1_norm', 'lat1_norm', 'lon2_norm', 'lat2_norm', 'lon3_norm', 'lat3_norm', 'lon4_norm', 'lat4_norm', - 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'distancia', + 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'coincidencias', 'distancia', 'distance_osm_drive', 'distance_osm_drive_etapas', 'travel_time_min', 'travel_speed', 'factor_expansion_linea']] @@ -1119,7 +1168,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' etapas_sin_agrupar = etapas_agrupadas_all.copy() aggregate_cols = ['id_polygon', 'dia', 'mes', 'tipo_dia', 'zona', 'inicio', 'fin', 'poly_inicio', - 'poly_fin', 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'distancia'] + 'poly_fin', 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'coincidencias', 'distancia'] viajes_matrices = construyo_matrices(etapas_sin_agrupar, aggregate_cols, zonificaciones, @@ -1146,6 +1195,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'distancia'] weighted_mean_cols = ['distance_osm_drive', @@ -1239,6 +1289,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'distancia', ] weighted_mean_cols=['distance_osm_drive', 'distance_osm_drive_etapas', @@ -1286,6 +1337,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'rango_hora', 'genero', 'tarifa', + 'coincidencias', 'distancia', 'orden_origen', 'orden_destino', @@ -1330,17 +1382,27 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' ['poly_inicio', 'poly_fin'], axis=1) + if len(poligonos[poligonos.tipo=='cuenca'])>0: + + etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_inicio_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_inicio_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio_norm']+' (cuenca)' + etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer1_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer1_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer1_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer1_norm']+' (cuenca)' + etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer2_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer2_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer2_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer2_norm']+' (cuenca)' + etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_fin_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_fin_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin_norm']+' (cuenca)' + viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Origen'] = viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Origen']+' (cuenca)' + viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Destino'] = viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Destino']+' (cuenca)' + viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio'] = viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio']+' (cuenca)' + viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin'] = viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin']+' (cuenca)' return etapas_agrupadas_all, etapas_sin_agrupar, viajes_matrices, zonificaciones -def proceso_poligonos(): +def proceso_poligonos(check_configs=True): print('Procesa polígonos') - - check_config() - carto.guardo_zonificaciones() - carto.create_zones_table() + if check_configs: + check_config() + carto.guardo_zonificaciones() + carto.create_zones_table() zonificaciones = levanto_tabla_sql('zonificaciones') @@ -1350,36 +1412,40 @@ def proceso_poligonos(): print('identifica viajes en polígonos') # Read trips and jorneys etapas, viajes = load_and_process_data() - # # Select cases based fron polygon + # Select cases based fron polygon etapas_selec, viajes_selec, polygons, polygons_h3 = select_cases_from_polygons( etapas[etapas.od_validado == 1], viajes[viajes.od_validado == 1], poligonos, res=8) etapas_agrupadas, etapas_sin_agrupar, viajes_matrices, zonificaciones = preparo_lineas_deseo( etapas_selec, viajes_selec, polygons_h3, poligonos=poligonos, res=[6]) - indicadores = construyo_indicadores(viajes_selec) - - conn_dash = iniciar_conexion_db(tipo='dash') - etapas_agrupadas = etapas_agrupadas.fillna(0) - etapas_agrupadas.to_sql("poly_etapas", - conn_dash, if_exists="replace", index=False,) + indicadores = construyo_indicadores(viajes_selec, poligonos=True) - viajes_matrices.to_sql("poly_matrices", - conn_dash, if_exists="replace", index=False,) - indicadores.to_sql("poly_indicadores", - conn_dash, if_exists="replace", index=False,) + etapas_agrupadas = etapas_agrupadas.fillna(0) + guardar_tabla_sql(etapas_agrupadas, + 'poly_etapas', + 'dash', + {'mes': etapas_agrupadas.mes.unique().tolist()}) - conn_dash.close() + guardar_tabla_sql(viajes_matrices, + 'poly_matrices', + 'dash', + {'mes': viajes_matrices.mes.unique().tolist()}) + guardar_tabla_sql(indicadores, + 'poly_indicadores', + 'dash', + {'mes': indicadores.mes.unique().tolist()}) -def proceso_lineas_deseo(): +def proceso_lineas_deseo(check_configs=False): print('Procesa etapas') - check_config() - carto.guardo_zonificaciones() - carto.create_zones_table() + if check_configs: + check_config() + carto.guardo_zonificaciones() + carto.create_zones_table() zonificaciones = levanto_tabla_sql('zonificaciones') zonificaciones['lat'] = zonificaciones.geometry.representative_point().y @@ -1390,27 +1456,41 @@ def proceso_lineas_deseo(): etapas_agrupadas, etapas_sin_agrupar, viajes_matrices, zonificaciones = preparo_lineas_deseo( etapas, viajes, res=[6]) - indicadores = construyo_indicadores(viajes) + indicadores = construyo_indicadores(viajes, poligonos=False) socio_indicadores = crea_socio_indicadores(etapas, viajes) print('Guardo datos para dashboard') - conn_dash = iniciar_conexion_db(tipo='dash') etapas_agrupadas = etapas_agrupadas.fillna(0) - etapas_agrupadas.to_sql("agg_etapas", - conn_dash, if_exists="replace", index=False,) - - viajes_matrices.to_sql("agg_matrices", - conn_dash, if_exists="replace", index=False,) - - indicadores.to_sql("agg_indicadores", - conn_dash, if_exists="replace", index=False,) - - socio_indicadores.to_sql("socio_indicadores", - conn_dash, if_exists="replace", index=False,) - - - conn_dash.close() + guardar_tabla_sql(etapas_agrupadas, + 'agg_etapas', + 'dash', + {'mes': etapas_agrupadas.mes.unique().tolist()}) + + guardar_tabla_sql(viajes_matrices, + 'agg_matrices', + 'dash', + {'mes': viajes_matrices.mes.unique().tolist()}) + guardar_tabla_sql(indicadores, + 'agg_indicadores', + 'dash', + {'mes': indicadores.mes.unique().tolist()}) + + guardar_tabla_sql(socio_indicadores, + 'socio_indicadores', + 'dash', + {'mes': socio_indicadores.mes.unique().tolist()}) + + e_agg, v_agg = preparo_etapas_agregadas(etapas, viajes) + guardar_tabla_sql(e_agg, + 'etapas_agregadas', + 'dash', + {'mes': e_agg.mes.unique().tolist()}) + + guardar_tabla_sql(v_agg, + 'viajes_agregados', + 'dash', + {'mes': v_agg.mes.unique().tolist()}) imprimo_matrices_od() diff --git a/urbantrips/run_interactive_tools.py b/urbantrips/run_interactive_tools.py index 6722980..de003c9 100644 --- a/urbantrips/run_interactive_tools.py +++ b/urbantrips/run_interactive_tools.py @@ -5,6 +5,7 @@ from urbantrips.utils import utils from urbantrips.kpi import overlapping as ovl from urbantrips.viz import overlapping as ovl_viz +from streamlit_folium import folium_static st.set_page_config(layout="wide") @@ -115,7 +116,7 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in else: st.warning("No se encontró ninguna coincidencia.") - +# st.set_page_config(layout="wide") # --- Selección de líneas y ramales con almacenamiento en session_state --- with st.expander("Seleccionar líneas", expanded=True): col1, col2, col3 = st.columns([1, 3, 3]) @@ -163,12 +164,17 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in # --- Comparación de líneas --- with st.expander("Comparación de líneas", expanded=True): col1, col2 = st.columns([2, 2]) - + if st.session_state.id_linea_1 and st.session_state.id_linea_2: - base_route_id, comp_route_id = int(st.session_state.branch_id_1), int( - st.session_state.branch_id_2 - ) - + if use_branches: + base_route_id, comp_route_id = int(st.session_state.branch_id_1), int( + st.session_state.branch_id_2 + ) + else: + base_route_id, comp_route_id = int(st.session_state.id_linea_1), int( + st.session_state.id_linea_2 + ) + # Evita cálculos repetidos si ya se han realizado para las mismas líneas if f"overlapping_dict_{base_route_id}_{comp_route_id}" not in st.session_state: @@ -197,13 +203,13 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in f = ovl_viz.plot_interactive_supply_overlapping(overlapping_dict) # Muestra la salida solo en col1 with col1: - st_folium(f, width=800, height=600) - col1.write( + folium_static(f, width=800, height=600) + st.write( st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] - ) - col1.write( + ) + st.write( st.session_state[f"supply_overlapping_{comp_route_id}_{base_route_id}"] - ) + ) # Cálculo y visualización de la demanda, si no se ha realizado previamente if ( @@ -241,10 +247,10 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in base_demand, comp_demand, overlapping_dict ) with col2: - st_folium(fig, width=800, height=600) - col2.write( + folium_static(fig, width=800, height=600) + st.write( st.session_state[f"demand_overlapping_{base_route_id}_{comp_route_id}"] ) # Muestra la segunda salida justo después del mapa - col2.write( + st.write( st.session_state[f"demand_overlapping_{comp_route_id}_{base_route_id}"] ) # Muestra la segunda salida justo después del mapa diff --git a/urbantrips/utils/utils.py b/urbantrips/utils/utils.py index b930c81..affd192 100644 --- a/urbantrips/utils/utils.py +++ b/urbantrips/utils/utils.py @@ -12,7 +12,6 @@ import datetime from shapely import wkt - def duracion(f): @wraps(f) def wrap(*args, **kw): @@ -1427,6 +1426,7 @@ def traigo_tabla_zonas(): def normalize_vars(tabla): if "dia" in tabla.columns: + tabla['dia'] = '' tabla.loc[tabla.dia == "weekday", "dia"] = "Día hábil" tabla.loc[tabla.dia == "weekend", "dia"] = "Fin de semana" if "day_type" in tabla.columns: @@ -1442,26 +1442,29 @@ def normalize_vars(tabla): return tabla -def levanto_tabla_sql(tabla_sql, tabla_tipo="dash"): +def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): conn = iniciar_conexion_db(tipo=tabla_tipo) - try: - tabla = pd.read_sql_query( - f""" - SELECT * - FROM {tabla_sql} - """, - conn, - ) - except: + cursor = conn.cursor() + cursor.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{tabla_sql}'") + table_exists = cursor.fetchone() is not None + + # Si la tabla existe y se han proporcionado filtros, elimina los registros que coincidan + if not table_exists: print(f"{tabla_sql} no existe") tabla = pd.DataFrame([]) + else: + if len(query) == 0: + query = f""" + SELECT * + FROM {tabla_sql} + """ + tabla = pd.read_sql_query( query, conn ) conn.close() if len(tabla) > 0: - if "wkt" in tabla.columns: tabla["geometry"] = tabla.wkt.apply(wkt.loads) tabla = gpd.GeoDataFrame(tabla, crs=4326) @@ -1533,3 +1536,52 @@ def delete_data_from_table_run_days(table_name): conn_data.execute(query) conn_data.commit() conn_data.close() + + + + +def guardar_tabla_sql(df, table_name, tabla_tipo='dash', filtros=None): + """ + Guarda un DataFrame en una base de datos SQLite. + + Parámetros: + df (pd.DataFrame): DataFrame que se desea guardar. + conn (sqlite3.Connection): Conexión a la base de datos SQLite. + table_name (str): Nombre de la tabla en la base de datos. + filtros (dict, optional): Diccionario de filtros para eliminar registros. Las claves son los nombres + de los campos y los valores pueden ser un valor único o una lista de valores. + """ + # Verifica si la tabla existe en la base de datos + + conn = iniciar_conexion_db(tipo=tabla_tipo) + + cursor = conn.cursor() + cursor.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}'") + table_exists = cursor.fetchone() is not None + + # Si la tabla existe y se han proporcionado filtros, elimina los registros que coincidan + if table_exists and filtros: + condiciones = [] + valores = [] + + # Construir las condiciones y los valores para cada filtro + for campo, valor in filtros.items(): + if isinstance(valor, list): + # Si el valor es una lista, usamos la cláusula IN + condiciones.append(f"{campo} IN ({','.join(['?'] * len(valor))})") + valores.extend(valor) + else: + # Si el valor es único, usamos una condición simple + condiciones.append(f"{campo} = ?") + valores.append(valor) + + # Ejecutar la eliminación con las condiciones construidas + where_clause = " AND ".join(condiciones) + cursor.execute(f"DELETE FROM {table_name} WHERE {where_clause}", valores) + conn.commit() + + + # Guarda el DataFrame en la base de datos, crea la tabla si no existe + df.to_sql(table_name, conn, if_exists='append', index=False) + conn.close() + print(f"Datos guardados exitosamente {table_name}.") diff --git a/urbantrips/viz/viz.py b/urbantrips/viz/viz.py index bba06f5..0a47121 100755 --- a/urbantrips/viz/viz.py +++ b/urbantrips/viz/viz.py @@ -488,7 +488,7 @@ def viz_etapas_x_tramo_recorrido( + "-" + f" {id_linea_str} (id_linea: {line_id})" ) - f.suptitle(title, fontsize=18) + f.suptitle(title) # Matching bar plot with route direction flecha_eo_xy = (0.4, 1.1) @@ -2574,37 +2574,43 @@ def plot_dispatched_services_by_line_day(df): print("Creando plot de servicios despachados por linea", "id linea:", line_id) - f, ax = plt.subplots(figsize=(8, 6)) - sns.barplot(data=df, x="hora", y="servicios", hue="id_linea", ax=ax) - - ax.get_legend().remove() - ax.set_xlabel("Hora") - ax.set_ylabel("Cantidad de servicios despachados") - - f.suptitle( - f"Cantidad de servicios despachados por hora y dí­a", - fontdict={"size": 18, "weight": "bold"}, - ) - ax.set_title( - f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", - fontdict={"fontsize": 11}, - ) - - ax.spines.right.set_visible(False) - ax.spines.top.set_visible(False) - ax.spines.bottom.set_visible(False) - ax.spines.left.set_visible(False) - ax.spines.left.set_position(("outward", 10)) - ax.spines.bottom.set_position(("outward", 10)) - - ax.grid(axis="y") - - for frm in ["png", "pdf"]: - archivo = f"servicios_despachados_id_linea_{line_id}_{day}.{frm}" - db_path = os.path.join("resultados", frm, archivo) - f.savefig(db_path, dpi=300) - plt.close() + try: + f, ax = plt.subplots(figsize=(8, 6)) + sns.barplot(data=df, x="hora", y="servicios", hue="id_linea", ax=ax) + + ax.get_legend().remove() + ax.set_xlabel("Hora") + ax.set_ylabel("Cantidad de servicios despachados") + + f.suptitle( + f"Cantidad de servicios despachados por hora y día" ) + + ax.set_title( + f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", + fontdict={"fontsize": 11}, + ) + # ax.set_title( + # f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", + # fontdict={"fontsize": 11}, + # ) + + ax.spines.right.set_visible(False) + ax.spines.top.set_visible(False) + ax.spines.bottom.set_visible(False) + ax.spines.left.set_visible(False) + ax.spines.left.set_position(("outward", 10)) + ax.spines.bottom.set_position(("outward", 10)) + + ax.grid(axis="y") + + for frm in ["png", "pdf"]: + archivo = f"servicios_despachados_id_linea_{line_id}_{day}.{frm}" + db_path = os.path.join("resultados", frm, archivo) + f.savefig(db_path, dpi=300) + plt.close() + except: + print('ERROR') def plot_basic_kpi_wrapper(): sns.set_style("whitegrid") @@ -2733,14 +2739,13 @@ def plot_basic_kpi(kpi_by_line_hr, standarize_supply_demand=False, *args, **kwar ax.set_ylabel(ylabel_str) f.suptitle( - f"Indicadores de oferta y demanda estadarizados", - fontdict={"size": 18, "weight": "bold"}, - ) - + f"Indicadores de oferta y demanda estadarizados") + ax.set_title( - f"{id_linea_str} id linea: {line_id} - Dia: {day_str} - Mes: {mes}", + f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", fontdict={"fontsize": 11}, ) + # Add a footnote below and to the right side of the chart ax_note = ax.annotate( From b6120bdd89c7bc31d708706912f7df210558cd2d Mon Sep 17 00:00:00 2001 From: alephcero Date: Fri, 8 Nov 2024 14:23:39 -0300 Subject: [PATCH 07/18] Add init to lineas_deseo --- urbantrips/lineas_deseo/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 urbantrips/lineas_deseo/__init__.py diff --git a/urbantrips/lineas_deseo/__init__.py b/urbantrips/lineas_deseo/__init__.py new file mode 100644 index 0000000..e69de29 From e08c83a3f39e9a07e91940b7aa9b4ce13db7f887 Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Tue, 12 Nov 2024 12:24:54 -0300 Subject: [PATCH 08/18] Store overlapping data in csv file in interactive plots and notebooks #177 (#179) * Use linestring buffer to create h3 route in from_linestring_to_h3 * Add data and h3 res to interactive tools for overlapping --- notebooks/Overlapping.ipynb | 23 ++++--- urbantrips/kpi/overlapping.py | 36 ++++------ urbantrips/run_interactive_tools.py | 39 ++++++++--- urbantrips/utils/utils.py | 30 ++++---- urbantrips/viz/overlapping.py | 103 +++++++++++++++++++++++++++- 5 files changed, 174 insertions(+), 57 deletions(-) diff --git a/notebooks/Overlapping.ipynb b/notebooks/Overlapping.ipynb index 9c3821b..f31db77 100644 --- a/notebooks/Overlapping.ipynb +++ b/notebooks/Overlapping.ipynb @@ -2,17 +2,14 @@ "cells": [ { "cell_type": "code", - "execution_count": 11, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import os\n", "import pandas as pd\n", "import geopandas as gpd\n", - "import folium\n", - "import itertools\n", "from pathlib import Path\n", - "\n", "# Obtiene la ruta actual y obtiene la ruta de la libreria\n", "current_path = Path.cwd()\n", "URBANTRIPS_PATH = current_path.parent\n", @@ -39,13 +36,13 @@ "# Se leen los datos de las lineas\n", "metadata_lineas = pd.read_sql(\"select id_linea,nombre_linea, modo from metadata_lineas;\", conn_insumos)\n", "# Se puede buscar por nombre de linea que contenga alguna palabra o numero\n", - "metadata_lineas[metadata_lineas.nombre_linea.str.contains(\"22\") #reemplazar 17 por lo que se desee buscar en el nombre de la linea\n", + "metadata_lineas[metadata_lineas.nombre_linea.str.contains(\"68\") #reemplazar 17 por lo que se desee buscar en el nombre de la linea\n", " ]" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -62,7 +59,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -149,11 +146,21 @@ "outputs": [], "source": [ "# Se visualiza la superposicion de la demanda de la linea base con la de la linea de comparacion\n", - "fig = ovl_viz.plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_dict)\n", + "demand_overlapping_fig = ovl_viz.plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_dict)\n", + "fig = demand_overlapping_fig['fig']\n", "fig.save(f\"resultados/html/{alias}_demand_overlapping_base_{base_route_id}_comp_{comp_route_id}_h3_{h3_res_comp}.html\")\n", "fig" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "demand_overlapping_fig['comp_gdf_to_db']" + ] + }, { "cell_type": "code", "execution_count": null, diff --git a/urbantrips/kpi/overlapping.py b/urbantrips/kpi/overlapping.py index 78c8236..793ac83 100644 --- a/urbantrips/kpi/overlapping.py +++ b/urbantrips/kpi/overlapping.py @@ -4,7 +4,7 @@ from shapely.geometry import Point, LineString import h3 import itertools - +import shapely from urbantrips.geo import geo from urbantrips.kpi import kpi from urbantrips.utils import utils @@ -16,16 +16,13 @@ def from_linestring_to_h3(linestring, h3_res=8): This function takes a shapely linestring and returns all h3 hecgrid cells that intersect that linestring """ - lrs = np.arange(0, 1, 0.01) - points = [linestring.interpolate(i, normalized=True) for i in lrs] - coords = [(point.x, point.y) for point in points] - linestring_h3 = pd.Series( - [ - h3.geo_to_h3(lat=coord[1], lng=coord[0], resolution=h3_res) - for coord in coords - ] - ).drop_duplicates() - return linestring_h3 + linestring_buffer = linestring.buffer(0.002) + linestring_buffer_geojson = eval(shapely.to_geojson(linestring_buffer)) + + linestring_h3 = h3.polyfill(linestring_buffer_geojson, 10, geo_json_conformant=True) + + linestring_h3 = {h3.h3_to_parent(h, h3_res) for h in linestring_h3} + return pd.Series(list(linestring_h3)).drop_duplicates() def create_coarse_h3_from_line( @@ -264,7 +261,7 @@ def update_overlapping_table_supply( conn_data = utils.iniciar_conexion_db(tipo="data") # Update db delete_q = f""" - delete from overlapping + delete from overlapping_by_route where dia = '{day}' and base_line_id = {base_line_id} and base_branch_id = {base_branch_id} @@ -278,7 +275,7 @@ def update_overlapping_table_supply( conn_data.commit() delete_q = f""" - delete from overlapping + delete from overlapping_by_route where dia = '{day}' and base_line_id = {comp_line_id} and base_branch_id = {comp_branch_id} @@ -292,7 +289,8 @@ def update_overlapping_table_supply( conn_data.commit() insert_q = f""" - insert into overlapping (dia,base_line_id,base_branch_id,comp_line_id,comp_branch_id,res_h3,overlap, type_overlap) + insert into overlapping_by_route (dia,base_line_id,base_branch_id,comp_line_id, + comp_branch_id,res_h3,overlap, type_overlap) values ('{day}',{base_line_id},{base_branch_id},{comp_line_id},{comp_branch_id},{res_h3},{base_v_comp},'oferta'), ('{day}',{comp_line_id},{comp_branch_id},{base_line_id},{base_branch_id},{res_h3},{comp_v_base},'oferta') @@ -310,7 +308,7 @@ def update_overlapping_table_demand( conn_data = utils.iniciar_conexion_db(tipo="data") # Update db delete_q = f""" - delete from overlapping + delete from overlapping_by_route where dia = '{day}' and base_line_id = {base_line_id} and base_branch_id = {base_branch_id} @@ -324,7 +322,8 @@ def update_overlapping_table_demand( conn_data.commit() insert_q = f""" - insert into overlapping (dia,base_line_id,base_branch_id,comp_line_id,comp_branch_id,res_h3,overlap, type_overlap) + insert into overlapping_by_route (dia,base_line_id,base_branch_id,comp_line_id, + comp_branch_id,res_h3,overlap, type_overlap) values ('{day}',{base_line_id},{base_branch_id},{comp_line_id},{comp_branch_id},{res_h3},{base_v_comp},'demanda') ; @@ -431,11 +430,6 @@ def compute_supply_overlapping( base_branch_id = "NULL" comp_branch_id = "NULL" - - - - - conn_insumos = utils.iniciar_conexion_db(tipo="insumos") metadata = pd.read_sql( f"select id_linea, nombre_linea from metadata_lineas where id_linea in ({base_route_id},{comp_route_id})", diff --git a/urbantrips/run_interactive_tools.py b/urbantrips/run_interactive_tools.py index de003c9..eb1738c 100644 --- a/urbantrips/run_interactive_tools.py +++ b/urbantrips/run_interactive_tools.py @@ -116,12 +116,15 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in else: st.warning("No se encontró ninguna coincidencia.") + # st.set_page_config(layout="wide") # --- Selección de líneas y ramales con almacenamiento en session_state --- with st.expander("Seleccionar líneas", expanded=True): col1, col2, col3 = st.columns([1, 3, 3]) with col1: + h3_res_comp = st.slider("Resolución H3", min_value=7, max_value=9, value=8) + if st.button("Comparar líneas"): for i in [1, 2]: if f"seleccion_{i}" in st.session_state: @@ -164,7 +167,7 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in # --- Comparación de líneas --- with st.expander("Comparación de líneas", expanded=True): col1, col2 = st.columns([2, 2]) - + if st.session_state.id_linea_1 and st.session_state.id_linea_2: if use_branches: base_route_id, comp_route_id = int(st.session_state.branch_id_1), int( @@ -174,20 +177,23 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in base_route_id, comp_route_id = int(st.session_state.id_linea_1), int( st.session_state.id_linea_2 ) - + # Evita cálculos repetidos si ya se han realizado para las mismas líneas - if f"overlapping_dict_{base_route_id}_{comp_route_id}" not in st.session_state: + if ( + f"overlapping_dict_{base_route_id}_{comp_route_id}_res{h3_res_comp}" + not in st.session_state + ): overlapping_dict = ovl.compute_supply_overlapping( "weekday", base_route_id, comp_route_id, "branches" if use_branches else "lines", - 8, - ) - st.session_state[f"overlapping_dict_{base_route_id}_{comp_route_id}"] = ( - overlapping_dict + h3_res_comp, ) + st.session_state[ + f"overlapping_dict_{base_route_id}_{comp_route_id}_res{h3_res_comp}" + ] = overlapping_dict st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] = ( overlapping_dict["text_base_v_comp"] ) @@ -196,7 +202,7 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in ) overlapping_dict = st.session_state[ - f"overlapping_dict_{base_route_id}_{comp_route_id}" + f"overlapping_dict_{base_route_id}_{comp_route_id}_res{h3_res_comp}" ] # Renderiza el primer mapa @@ -205,10 +211,10 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in with col1: folium_static(f, width=800, height=600) st.write( - st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] + st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] ) st.write( - st.session_state[f"supply_overlapping_{comp_route_id}_{base_route_id}"] + st.session_state[f"supply_overlapping_{comp_route_id}_{base_route_id}"] ) # Cálculo y visualización de la demanda, si no se ha realizado previamente @@ -243,9 +249,13 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in comp_demand = demand_overlapping["comp"]["data"] # Renderiza el segundo mapa y muestra el texto justo después del mapa en col2 - fig = ovl_viz.plot_interactive_demand_overlapping( + demand_overlapping_fig = ovl_viz.plot_interactive_demand_overlapping( base_demand, comp_demand, overlapping_dict ) + fig = demand_overlapping_fig["fig"] + base_gdf_to_db = demand_overlapping_fig["base_gdf_to_db"] + comp_gdf_to_db = demand_overlapping_fig["comp_gdf_to_db"] + with col2: folium_static(fig, width=800, height=600) st.write( @@ -254,3 +264,10 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in st.write( st.session_state[f"demand_overlapping_{comp_route_id}_{base_route_id}"] ) # Muestra la segunda salida justo después del mapa + +with st.expander("Exportar datos", expanded=True): + col1_db, col2_db = st.columns([2, 2]) + if col1_db.checkbox("Ver datos recorrido base"): + col1_db.write(base_gdf_to_db) + if col2_db.checkbox("Ver datos recorrido comparacion"): + col2_db.write(comp_gdf_to_db) diff --git a/urbantrips/utils/utils.py b/urbantrips/utils/utils.py index affd192..dee1959 100644 --- a/urbantrips/utils/utils.py +++ b/urbantrips/utils/utils.py @@ -12,6 +12,7 @@ import datetime from shapely import wkt + def duracion(f): @wraps(f) def wrap(*args, **kw): @@ -1304,7 +1305,7 @@ def create_kpi_tables(): conn_data.execute( """ - CREATE TABLE IF NOT EXISTS overlapping + CREATE TABLE IF NOT EXISTS overlapping_by_route ( dia text not null, base_line_id int not null, @@ -1426,7 +1427,7 @@ def traigo_tabla_zonas(): def normalize_vars(tabla): if "dia" in tabla.columns: - tabla['dia'] = '' + tabla["dia"] = "" tabla.loc[tabla.dia == "weekday", "dia"] = "Día hábil" tabla.loc[tabla.dia == "weekend", "dia"] = "Fin de semana" if "day_type" in tabla.columns: @@ -1442,12 +1443,14 @@ def normalize_vars(tabla): return tabla -def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): +def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=""): conn = iniciar_conexion_db(tipo=tabla_tipo) cursor = conn.cursor() - cursor.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{tabla_sql}'") + cursor.execute( + f"SELECT name FROM sqlite_master WHERE type='table' AND name='{tabla_sql}'" + ) table_exists = cursor.fetchone() is not None # Si la tabla existe y se han proporcionado filtros, elimina los registros que coincidan @@ -1459,8 +1462,8 @@ def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): query = f""" SELECT * FROM {tabla_sql} - """ - tabla = pd.read_sql_query( query, conn ) + """ + tabla = pd.read_sql_query(query, conn) conn.close() @@ -1538,9 +1541,7 @@ def delete_data_from_table_run_days(table_name): conn_data.close() - - -def guardar_tabla_sql(df, table_name, tabla_tipo='dash', filtros=None): +def guardar_tabla_sql(df, table_name, tabla_tipo="dash", filtros=None): """ Guarda un DataFrame en una base de datos SQLite. @@ -1554,9 +1555,11 @@ def guardar_tabla_sql(df, table_name, tabla_tipo='dash', filtros=None): # Verifica si la tabla existe en la base de datos conn = iniciar_conexion_db(tipo=tabla_tipo) - + cursor = conn.cursor() - cursor.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}'") + cursor.execute( + f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}'" + ) table_exists = cursor.fetchone() is not None # Si la tabla existe y se han proporcionado filtros, elimina los registros que coincidan @@ -1579,9 +1582,8 @@ def guardar_tabla_sql(df, table_name, tabla_tipo='dash', filtros=None): where_clause = " AND ".join(condiciones) cursor.execute(f"DELETE FROM {table_name} WHERE {where_clause}", valores) conn.commit() - - + # Guarda el DataFrame en la base de datos, crea la tabla si no existe - df.to_sql(table_name, conn, if_exists='append', index=False) + df.to_sql(table_name, conn, if_exists="append", index=False) conn.close() print(f"Datos guardados exitosamente {table_name}.") diff --git a/urbantrips/viz/overlapping.py b/urbantrips/viz/overlapping.py index 281d630..9820ff2 100644 --- a/urbantrips/viz/overlapping.py +++ b/urbantrips/viz/overlapping.py @@ -5,6 +5,8 @@ from urbantrips.geo import geo from urbantrips.kpi import overlapping as ovl from urbantrips.utils.utils import leer_configs_generales, iniciar_conexion_db +from shapely import wkt +import h3 def get_route_metadata(route_id): @@ -96,11 +98,13 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di .groupby("h3_o", as_index=False) .agg(total_legs=("factor_expansion_linea", "sum")) ) + base_destinations = ( base_demand.reindex(columns=["h3_d", "factor_expansion_linea"]) .groupby("h3_d", as_index=False) .agg(total_legs=("factor_expansion_linea", "sum")) ) + base_origins = gpd.GeoDataFrame( base_origins, geometry=base_origins.h3_o.map(geo.create_point_from_h3), crs=4326 ) @@ -109,6 +113,8 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di geometry=base_destinations.h3_d.map(geo.create_point_from_h3), crs=4326, ) + base_origins["total_legs"] = base_origins["total_legs"].astype(int) + base_destinations["total_legs"] = base_destinations["total_legs"].astype(int) comp_origins = ( comp_demand.reindex(columns=["h3_o", "factor_expansion_linea"]) @@ -129,6 +135,9 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di crs=4326, ) + comp_origins["total_legs"] = comp_origins["total_legs"].astype(int) + comp_destinations["total_legs"] = comp_destinations["total_legs"].astype(int) + # compute demand by section id base_demand_by_section = ovl.demand_by_section_id(base_demand) comp_demand_by_section = ovl.demand_by_section_id(comp_demand) @@ -157,6 +166,90 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di comp_origins["total_legs_normalized"] = ovl.normalize_total_legs_to_dot_size( comp_origins["total_legs"], min_dot_size, max_dot_size ) + base_gdf["demand_total"] = base_gdf["total_legs"].astype(int).copy() + base_gdf["demand_prop"] = base_gdf["prop_demand"].round(1).copy() + comp_gdf["demand_total"] = comp_gdf["total_legs"].astype(int).copy() + comp_gdf["demand_prop"] = comp_gdf["prop_demand"].round(1).copy() + base_gdf = base_gdf.drop(columns=["total_legs", "prop_demand"]) + comp_gdf = comp_gdf.drop(columns=["total_legs", "prop_demand"]) + + # export data + base_gdf_to_db = base_gdf.copy() + + base_gdf_to_db["h3_res"] = h3.h3_get_resolution(base_gdf_to_db["h3"].iloc[0]) + base_gdf_to_db["x"] = base_gdf_to_db.geometry.centroid.x + base_gdf_to_db["y"] = base_gdf_to_db.geometry.centroid.y + base_gdf_to_db["type_route"] = "base" + base_gdf_to_db["wkt"] = base_gdf_to_db["geometry"].apply(lambda geom: geom.wkt) + base_gdf_to_db = base_gdf_to_db.reindex( + columns=[ + "route_id", + "type_route", + "h3", + "h3_res", + "wkt", + "x", + "y", + "demand_total", + "demand_prop", + ] + ) + base_gdf_to_db = base_gdf_to_db.merge( + base_origins.reindex(columns=["h3_o", "total_legs"]), + left_on="h3", + right_on="h3_o", + how="left", + ) + base_gdf_to_db = base_gdf_to_db.rename(columns={"total_legs": "origins"}).drop( + columns=["h3_o"] + ) + base_gdf_to_db = base_gdf_to_db.merge( + base_destinations.reindex(columns=["h3_d", "total_legs"]), + left_on="h3", + right_on="h3_d", + how="left", + ) + base_gdf_to_db = base_gdf_to_db.rename(columns={"total_legs": "destinations"}).drop( + columns=["h3_d"] + ) + + comp_gdf_to_db = comp_gdf.copy() + comp_gdf_to_db["h3_res"] = h3.h3_get_resolution(comp_gdf_to_db["h3"].iloc[0]) + comp_gdf_to_db["x"] = comp_gdf_to_db.geometry.centroid.x + comp_gdf_to_db["y"] = comp_gdf_to_db.geometry.centroid.y + comp_gdf_to_db["type_route"] = "comp" + comp_gdf_to_db["wkt"] = comp_gdf_to_db["geometry"].apply(lambda geom: geom.wkt) + comp_gdf_to_db = comp_gdf_to_db.reindex( + columns=[ + "route_id", + "type_route", + "h3", + "h3_res", + "wkt", + "x", + "y", + "demand_total", + "demand_prop", + ] + ) + comp_gdf_to_db = comp_gdf_to_db.merge( + comp_origins.reindex(columns=["h3_o", "total_legs"]), + left_on="h3", + right_on="h3_o", + how="left", + ) + comp_gdf_to_db = comp_gdf_to_db.rename(columns={"total_legs": "origins"}).drop( + columns=["h3_o"] + ) + comp_gdf_to_db = comp_gdf_to_db.merge( + comp_destinations.reindex(columns=["h3_d", "total_legs"]), + left_on="h3", + right_on="h3_d", + how="left", + ) + comp_gdf_to_db = comp_gdf_to_db.rename(columns={"total_legs": "destinations"}).drop( + columns=["h3_d"] + ) # get mean coords to center map mean_x = np.mean(base_route_gdf.item().coords.xy[0]) @@ -166,7 +259,7 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di m = folium.Map(location=(mean_y, mean_x), zoom_start=11, tiles="cartodbpositron") base_gdf.explore( - column="total_legs", + column="demand_total", tiles="CartoDB positron", m=m, name=f"Demanda ruta base - {base_route_metadata}", @@ -201,7 +294,7 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di ) comp_gdf.explore( - column="total_legs", + column="demand_total", tiles="CartoDB positron", m=m, name=f"Demanda ruta comp - {comp_route_metadata}", @@ -238,4 +331,8 @@ def plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_di folium.LayerControl(name="Leyenda").add_to(m) fig.add_child(m) - return fig + return { + "fig": fig, + "base_gdf_to_db": base_gdf_to_db, + "comp_gdf_to_db": comp_gdf_to_db, + } From 33242685fda6d5c839a66109b5dff0a237dba718 Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Tue, 12 Nov 2024 12:36:33 -0300 Subject: [PATCH 09/18] Dev test02 (#180) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * dash fix centra mapa en zonas * correcciones en el dash - nueva funcionalidad en dash de zonas - optimización de uso de tablas - transferencias * Update lineas_deseo.py * Create __init__.py --------- Co-authored-by: Sebastian Anapolsky --- urbantrips/dashboard/dash_utils.py | 245 ++++++++++++------ .../pages/3_L\303\255neas de Deseo.py" | 232 ++++++++++------- urbantrips/dashboard/pages/4_Poligonos.py | 73 +++--- .../pages/5_An\303\241lisis de zonas.py" | 158 +++++++++-- urbantrips/lineas_deseo/lineas_deseo.py | 8 +- 5 files changed, 469 insertions(+), 247 deletions(-) diff --git a/urbantrips/dashboard/dash_utils.py b/urbantrips/dashboard/dash_utils.py index 26efa84..300e23f 100644 --- a/urbantrips/dashboard/dash_utils.py +++ b/urbantrips/dashboard/dash_utils.py @@ -354,60 +354,124 @@ def create_data_folium(etapas, agg_hora=False, agg_distancia=False, agg_cols_etapas=[], - agg_cols_viajes=[]): - - etapas = calculate_weighted_means_ods(etapas, - agg_cols_etapas, - ['distance_osm_drive', 'lat1_norm', 'lon1_norm', 'lat2_norm', - 'lon2_norm', 'lat3_norm', 'lon3_norm', 'lat4_norm', 'lon4_norm'], - - 'factor_expansion_linea', - agg_transferencias=agg_transferencias, - agg_modo=agg_modo, - agg_hora=agg_hora, - agg_distancia=agg_distancia, - zero_to_nan=['lat1_norm', 'lon1_norm', 'lat2_norm', 'lon2_norm', 'lat3_norm', 'lon3_norm', 'lat4_norm', 'lon4_norm']) - - etapas[['lat1_norm', - 'lon1_norm', - 'lat2_norm', - 'lon2_norm', - 'lat3_norm', - 'lon3_norm', - 'lat4_norm', - 'lon4_norm']] = etapas[['lat1_norm', - 'lon1_norm', - 'lat2_norm', - 'lon2_norm', - 'lat3_norm', - 'lon3_norm', - 'lat4_norm', - 'lon4_norm']].fillna(0) - - viajes = calculate_weighted_means_ods(etapas, - agg_cols_viajes, - ['distance_osm_drive', - 'lat1_norm', - 'lon1_norm', - 'lat4_norm', - 'lon4_norm'], - 'factor_expansion_linea', - agg_transferencias=agg_transferencias, - agg_modo=agg_modo, - agg_hora=agg_hora, - agg_distancia=agg_distancia, - zero_to_nan=['lat1_norm', 'lon1_norm', 'lat4_norm', 'lon4_norm']) - viajes[['lat1_norm', - 'lon1_norm', - 'lat4_norm', - 'lon4_norm']] = viajes[['lat1_norm', - 'lon1_norm', - 'lat4_norm', - 'lon4_norm']].fillna(0) - - if 'id_polygon' not in viajes_matrices.columns: - viajes_matrices['id_polygon'] = 'NONE' + agg_cols_viajes=[], + desc_etapas = True, + desc_viajes = True, + desc_origenes = True, + desc_destinos = True, + desc_transferencias = False): + + + if desc_transferencias: + + t1 = etapas.loc[etapas.transfer1_norm!='', ['zona', + 'transfer1_norm', + 'lat2_norm', + 'lon2_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia', + 'factor_expansion_linea',]].rename(columns={'transfer1_norm':'transfer', 'lat2_norm':'lat_norm', 'lon2_norm':'lon_norm'}) + t2 = etapas.loc[etapas.transfer2_norm!='', ['zona', + 'transfer2_norm', + 'lat3_norm', + 'lon3_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia', + 'factor_expansion_linea',]].rename(columns={'transfer2_norm':'transfer', 'lat3_norm':'lat_norm', 'lon3_norm':'lon_norm'}) + transferencias = pd.concat([t1,t2], ignore_index=True) + transferencias['id_polygon'] = 'NONE' + + trans_cols_o = ['id_polygon', + 'zona', + 'transfer', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] + + transferencias = creo_bubble_od(transferencias, + aggregate_cols=trans_cols_o, + weighted_mean_cols=['lat_norm', 'lon_norm'], + weight_col='factor_expansion_linea', + agg_transferencias=agg_transferencias, + agg_modo=agg_modo, + agg_hora=agg_hora, + agg_distancia=agg_distancia, + od='transfer', + lat='lat_norm', + lon='lon_norm') + else: + transferencias = pd.DataFrame([]) + + if desc_etapas | desc_transferencias: + etapas = calculate_weighted_means_ods(etapas, + agg_cols_etapas, + ['distance_osm_drive', 'lat1_norm', 'lon1_norm', 'lat2_norm', + 'lon2_norm', 'lat3_norm', 'lon3_norm', 'lat4_norm', 'lon4_norm'], + 'factor_expansion_linea', + agg_transferencias=agg_transferencias, + agg_modo=agg_modo, + agg_hora=agg_hora, + agg_distancia=agg_distancia, + zero_to_nan=['lat1_norm', 'lon1_norm', 'lat2_norm', 'lon2_norm', 'lat3_norm', 'lon3_norm', 'lat4_norm', 'lon4_norm']) + + etapas[['lat1_norm', + 'lon1_norm', + 'lat2_norm', + 'lon2_norm', + 'lat3_norm', + 'lon3_norm', + 'lat4_norm', + 'lon4_norm']] = etapas[['lat1_norm', + 'lon1_norm', + 'lat2_norm', + 'lon2_norm', + 'lat3_norm', + 'lon3_norm', + 'lat4_norm', + 'lon4_norm']].fillna(0) + + etapas = df_to_linestrings(etapas, + lat_cols=['lat1_norm', 'lat2_norm', 'lat3_norm', 'lat4_norm'], lon_cols=['lon1_norm', 'lon2_norm', 'lon3_norm', 'lon4_norm']) + etapas = etapas[etapas.inicio_norm != etapas.fin_norm].copy() + + if desc_viajes: + viajes = calculate_weighted_means_ods(etapas, + agg_cols_viajes, + ['distance_osm_drive', + 'lat1_norm', + 'lon1_norm', + 'lat4_norm', + 'lon4_norm'], + 'factor_expansion_linea', + agg_transferencias=agg_transferencias, + agg_modo=agg_modo, + agg_hora=agg_hora, + agg_distancia=agg_distancia, + zero_to_nan=['lat1_norm', 'lon1_norm', 'lat4_norm', 'lon4_norm']) + viajes[['lat1_norm', + 'lon1_norm', + 'lat4_norm', + 'lon4_norm']] = viajes[['lat1_norm', + 'lon1_norm', + 'lat4_norm', + 'lon4_norm']].fillna(0) + + if 'id_polygon' not in viajes_matrices.columns: + viajes_matrices['id_polygon'] = 'NONE' + + viajes = df_to_linestrings(viajes, + lat_cols=['lat1_norm', 'lat4_norm'], lon_cols=['lon1_norm', 'lon4_norm']) + + viajes = viajes[viajes.inicio_norm != viajes.fin_norm].copy() + else: + viajes = pd.DataFrame([]) + matriz = agg_matriz(viajes_matrices, aggregate_cols=['id_polygon', 'zona', 'Origen', 'Destino', 'transferencia', 'modo_agregado', 'rango_hora', 'distancia'], @@ -429,37 +493,41 @@ def create_data_folium(etapas, bubble_cols_d = ['id_polygon', 'zona', 'fin', 'transferencia', 'modo_agregado', 'rango_hora', 'distancia'] - origen = creo_bubble_od(viajes_matrices, - aggregate_cols=bubble_cols_o, - weighted_mean_cols=['lat1', 'lon1'], - weight_col='factor_expansion_linea', - agg_transferencias=agg_transferencias, - agg_modo=agg_modo, - agg_hora=agg_hora, - agg_distancia=agg_distancia, - od='inicio', - lat='lat1', - lon='lon1') - - destino = creo_bubble_od(viajes_matrices, - aggregate_cols=bubble_cols_d, - weighted_mean_cols=['lat4', 'lon4'], - weight_col='factor_expansion_linea', - agg_transferencias=agg_transferencias, - agg_modo=agg_modo, - agg_hora=agg_hora, - agg_distancia=agg_distancia, - od='fin', - lat='lat4', - lon='lon4') - - etapas = df_to_linestrings(etapas, - lat_cols=['lat1_norm', 'lat2_norm', 'lat3_norm', 'lat4_norm'], lon_cols=['lon1_norm', 'lon2_norm', 'lon3_norm', 'lon4_norm']) + if desc_origenes: + origen = creo_bubble_od(viajes_matrices, + aggregate_cols=bubble_cols_o, + weighted_mean_cols=['lat1', 'lon1'], + weight_col='factor_expansion_linea', + agg_transferencias=agg_transferencias, + agg_modo=agg_modo, + agg_hora=agg_hora, + agg_distancia=agg_distancia, + od='inicio', + lat='lat1', + lon='lon1') + else: + origen = pd.DataFrame([]) + + if desc_destinos: + destino = creo_bubble_od(viajes_matrices, + aggregate_cols=bubble_cols_d, + weighted_mean_cols=['lat4', 'lon4'], + weight_col='factor_expansion_linea', + agg_transferencias=agg_transferencias, + agg_modo=agg_modo, + agg_hora=agg_hora, + agg_distancia=agg_distancia, + od='fin', + lat='lat4', + lon='lon4') + else: + destino = pd.DataFrame([]) + + if not desc_etapas: + etapas = pd.DataFrame([]) - viajes = df_to_linestrings(viajes, - lat_cols=['lat1_norm', 'lat4_norm'], lon_cols=['lon1_norm', 'lon4_norm']) - return etapas, viajes, matriz, origen, destino + return etapas, viajes, matriz, origen, destino, transferencias @st.cache_data @@ -518,4 +586,15 @@ def extract_hex_colors_from_cmap(cmap, n=5): # Convert the colors to hex format hex_colors = [mcolors.rgb2hex(color) for color in colors] - return hex_colors \ No newline at end of file + return hex_colors + +@st.cache_data +def bring_latlon(): + try: + latlon = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT lat1_norm, lon1_norm FROM agg_etapas ORDER BY RANDOM() LIMIT 100;') + lat = latlon['lat1_norm'].mean() + lon = latlon['lon1_norm'].mean() + latlon = [lat, lon] + except: + latlon = [-34.593, -58.451] + return latlon \ No newline at end of file diff --git "a/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" "b/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" index 1f1bb11..bf57c32 100644 --- "a/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" +++ "b/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" @@ -2,7 +2,7 @@ import pandas as pd import geopandas as gpd import folium -from streamlit_folium import st_folium +from streamlit_folium import st_folium, folium_static import mapclassify import plotly.express as px from folium import Figure @@ -11,41 +11,48 @@ levanto_tabla_sql, get_logo, create_data_folium, traigo_indicadores, extract_hex_colors_from_cmap, - iniciar_conexion_db, normalize_vars - + iniciar_conexion_db, normalize_vars, + bring_latlon ) -from streamlit_folium import folium_static def crear_mapa_lineas_deseo(df_viajes, df_etapas, zonif, origenes, destinos, + transferencias, var_fex, cmap_viajes='Blues', cmap_etapas='Greens', map_title='', savefile='', k_jenks=5, - ): + latlon=''): m = '' - if (len(df_viajes) > 0) | (len(df_etapas) > 0) | (len(origenes) > 0) | (len(destinos) > 0): - if len(df_etapas) > 0: - y_val = df_etapas.sample(100, replace=True).geometry.representative_point().y.mean() - x_val = df_etapas.sample(100, replace=True).geometry.representative_point().x.mean() - elif len(df_viajes) > 0: - y_val = df_viajes.sample(100, replace=True).geometry.representative_point().y.mean() - x_val = df_viajes.sample(100, replace=True).geometry.representative_point().x.mean() - elif len(origenes) > 0: - y_val = origenes.sample(100, replace=True).geometry.representative_point().y.mean() - x_val = origenes.sample(100, replace=True).geometry.representative_point().x.mean() - elif len(destinos) > 0: - y_val = destinos.sample(100, replace=True).geometry.representative_point().y.mean() - x_val = destinos.sample(100, replace=True).geometry.representative_point().x.mean() + # if (len(df_viajes) > 0) | (len(df_etapas) > 0) | (len(origenes) > 0) | (len(destinos) > 0) | (len(transferencias) > 0) | (desc_zonif): + if True: + if len(latlon) == 0: + if len(df_etapas) > 0: + y_val = df_etapas.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = df_etapas.sample(100, replace=True).geometry.representative_point().x.mean() + elif len(df_viajes) > 0: + y_val = df_viajes.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = df_viajes.sample(100, replace=True).geometry.representative_point().x.mean() + elif len(origenes) > 0: + y_val = origenes.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = origenes.sample(100, replace=True).geometry.representative_point().x.mean() + elif len(destinos) > 0: + y_val = destinos.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = destinos.sample(100, replace=True).geometry.representative_point().x.mean() + elif len(transferencias) > 0: + y_val = transferencias.sample(100, replace=True).geometry.representative_point().y.mean() + x_val = transferencias.sample(100, replace=True).geometry.representative_point().x.mean() + + latlon = [y_val, x_val] fig = Figure(width=800, height=600) - m = folium.Map(location=[y_val, x_val], + m = folium.Map(location=latlon, zoom_start=10, tiles='cartodbpositron') colors_viajes = extract_hex_colors_from_cmap( @@ -176,6 +183,37 @@ def crear_mapa_lineas_deseo(df_viajes, n += 1 line_w += 5 + if len(transferencias) > 0: + try: + bins = [transferencias['factor_expansion_linea'].min()-1] + \ + mapclassify.FisherJenks( + transferencias['factor_expansion_linea'], k=5).bins.tolist() + except ValueError: + bins = [transferencias['factor_expansion_linea'].min()-1] + \ + mapclassify.FisherJenks( + transferencias['factor_expansion_linea'], k=5-3).bins.tolist() + + range_bins = range(0, len(bins)-1) + bins_labels = [ + f'{int(bins[n])} a {int(bins[n+1])} transferencias' for n in range_bins] + + transferencias['cuts'] = pd.cut( + transferencias['factor_expansion_linea'], bins=bins, labels=bins_labels) + + n = 0 + line_w = 10 + for i in bins_labels: + + transferencias[transferencias.cuts == i].explore( + m=m, + color="#FF0000", + style_kwds={'fillOpacity': 0.1, 'weight': line_w}, + name=i, + tooltip=False, + ) + n += 1 + line_w += 5 + # Agrego zonificación if len(zonif) > 0: geojson = zonif.to_json() @@ -194,7 +232,7 @@ def crear_mapa_lineas_deseo(df_viajes, fields=['id'], labels=False, sticky=False) ).add_to(m) - folium.LayerControl(name='xxx').add_to(m) + folium.LayerControl(name='mapa').add_to(m) return m @@ -330,11 +368,16 @@ def hay_cambios_en_filtros(current, last): distancia_all = ['Todas'] + distancia_all_[distancia_all_.distancia != '99'].distancia.unique().tolist() distancia = col1.selectbox('Distancia', options=distancia_all) - desc_etapas = col1.checkbox( - 'Etapas', value=False) - - desc_viajes = col1.checkbox( - 'Viajes', value=True) + desc_et_vi = col1.selectbox('Datos de', options=['Etapas', 'Viajes', 'Ninguno'], index=1) + if desc_et_vi == 'Viajes': + desc_viajes = True + desc_etapas = False + elif desc_et_vi == 'Etapas': + desc_viajes = False + desc_etapas = True + else: + desc_viajes = False + desc_etapas = False desc_origenes = col1.checkbox( ':blue[Origenes]', value=False) @@ -342,6 +385,9 @@ def hay_cambios_en_filtros(current, last): desc_destinos = col1.checkbox( ':orange[Destinos]', value=False) + desc_transferencias = col1.checkbox( + ':red[Transferencias]', value=False) + desc_zonif = col1.checkbox( 'Mostrar zonificación', value=True) if desc_zonif: @@ -359,10 +405,13 @@ def hay_cambios_en_filtros(current, last): 'rango_hora': None if rango_hora == 'Todos' else rango_hora, 'distancia': None if distancia == 'Todas' else distancia, } + current_options = { 'desc_etapas': desc_etapas, 'desc_viajes': desc_viajes, 'desc_origenes': desc_origenes, 'desc_destinos': desc_destinos, + 'desc_et_vi': desc_et_vi, + 'desc_transferencias': desc_transferencias, 'desc_zonif': desc_zonif, } @@ -445,55 +494,38 @@ def hay_cambios_en_filtros(current, last): st.session_state.desc_transfers = True else: st.session_state.desc_transfers = False - # if transf_list == 'Con transferencia': - # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.transferencia == 1)] - # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.transferencia == 1)] - # elif transf_list == 'Sin transferencia': - # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.transferencia == 0)] - # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.transferencia == 0)] - # else: - # st.session_state.etapas_ = pd.DataFrame([]) - # st.session_state.matrices_ = pd.DataFrame([]) - + if modos_list == 'Todos': st.session_state.desc_modos = True else: st.session_state.desc_modos = False - # st.session_state.etapas_ = st.session_state.etapas_[ - # (st.session_state.etapas_.modo_agregado.str.lower() == modos_list.lower())] - # st.session_state.matrices_ = st.session_state.matrices_[ - # (st.session_state.matrices_.modo_agregado.str.lower() == modos_list.lower())] if rango_hora == 'Todos': st.session_state.desc_horas = True else: st.session_state.desc_horas = False - # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.rango_hora == rango_hora)] - # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.rango_hora == rango_hora)] if distancia == 'Todas': st.session_state.desc_distancia = True else: st.session_state.desc_distancia = False - # st.session_state.etapas_ = st.session_state.etapas_[(st.session_state.etapas_.distancia == distancia)] - # st.session_state.matrices_ = st.session_state.matrices_[(st.session_state.matrices_.distancia == distancia)] st.session_state.agg_cols_etapas = ['zona', - 'inicio_norm', - 'transfer1_norm', - 'transfer2_norm', - 'fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'distancia'] + 'inicio_norm', + 'transfer1_norm', + 'transfer2_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] st.session_state.agg_cols_viajes = ['zona', - 'inicio_norm', - 'fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'distancia'] + 'inicio_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'distancia'] if len(st.session_state.etapas_)==0: col2.write('No hay datos para mostrar') @@ -508,53 +540,57 @@ def hay_cambios_en_filtros(current, last): st.session_state.last_options = current_options.copy() st.session_state.data_cargada = True - st.session_state.etapas, st.session_state.viajes, st.session_state.matriz, st.session_state.origenes, st.session_state.destinos = create_data_folium(st.session_state.etapas_, - st.session_state.matrices_, - agg_transferencias=st.session_state.desc_transfers, - agg_modo=st.session_state.desc_modos, - agg_hora=st.session_state.desc_horas, - agg_distancia=st.session_state.desc_distancia, - agg_cols_etapas=st.session_state.agg_cols_etapas, - agg_cols_viajes=st.session_state.agg_cols_viajes) - - st.session_state.etapas = st.session_state.etapas[st.session_state.etapas.inicio_norm != st.session_state.etapas.fin_norm].copy() - st.session_state.viajes = st.session_state.viajes[st.session_state.viajes.inicio_norm != st.session_state.viajes.fin_norm].copy() - - if not desc_etapas: - st.session_state.etapas = pd.DataFrame([]) - - if not desc_viajes: - st.session_state.viajes = pd.DataFrame([]) - - if not desc_origenes: - st.session_state.origenes = pd.DataFrame([]) - - if not desc_destinos: - st.session_state.destinos = pd.DataFrame([]) - - if (len(st.session_state.etapas) > 0) | (len(st.session_state.viajes) > 0) | (len(st.session_state.origenes) > 0) | (len(st.session_state.destinos) > 0): - - m = crear_mapa_lineas_deseo(df_viajes=st.session_state.viajes, - df_etapas=st.session_state.etapas, - zonif=zonif, - origenes=st.session_state.origenes, - destinos=st.session_state.destinos, - var_fex='factor_expansion_linea', - cmap_viajes='Blues', - cmap_etapas='Greens', - map_title='Líneas de Deseo', - savefile='', - k_jenks=5) - if m: - st.session_state.map = m + st.session_state.etapas, \ + st.session_state.viajes, \ + st.session_state.matriz, \ + st.session_state.origenes, \ + st.session_state.destinos, \ + st.session_state.transferencias = create_data_folium(st.session_state.etapas_, + st.session_state.matrices_, + agg_transferencias=st.session_state.desc_transfers, + agg_modo=st.session_state.desc_modos, + agg_hora=st.session_state.desc_horas, + agg_distancia=st.session_state.desc_distancia, + agg_cols_etapas=st.session_state.agg_cols_etapas, + agg_cols_viajes=st.session_state.agg_cols_viajes, + desc_etapas=desc_etapas, + desc_viajes=desc_viajes, + desc_origenes=desc_origenes, + desc_destinos=desc_destinos, + desc_transferencias=desc_transferencias) + + + if ((len(st.session_state.etapas) > 0) \ + | (len(st.session_state.viajes) > 0) \ + | (len(st.session_state.origenes) > 0) \ + | (len(st.session_state.destinos) > 0) \ + | (len(st.session_state.transferencias) > 0))\ + | (desc_zonif): + + latlon = bring_latlon() + st.session_state.map = crear_mapa_lineas_deseo(df_viajes=st.session_state.viajes, + df_etapas=st.session_state.etapas, + zonif=zonif, + origenes=st.session_state.origenes, + destinos=st.session_state.destinos, + transferencias=st.session_state.transferencias, + var_fex='factor_expansion_linea', + cmap_viajes='Blues', + cmap_etapas='Greens', + map_title='Líneas de Deseo', + savefile='', + k_jenks=5, + latlon=latlon) + if st.session_state.map: with col2: folium_static(st.session_state.map, width=1000, height=800) + # output = st_folium(st.session_state.map, width=1000, height=800, key='m', returned_objects=["center"]) else: col2.text("No hay datos suficientes para mostrar el mapa.") - - + else: + col2.text("No hay datos suficientes para mostrar el mapa.") with st.expander('Indicadores'): diff --git a/urbantrips/dashboard/pages/4_Poligonos.py b/urbantrips/dashboard/pages/4_Poligonos.py index 4c7750a..2a56783 100644 --- a/urbantrips/dashboard/pages/4_Poligonos.py +++ b/urbantrips/dashboard/pages/4_Poligonos.py @@ -35,8 +35,8 @@ def crear_mapa_poligonos(df_viajes, if (len(df_viajes) > 0) | (len(df_etapas) > 0) | (len(origenes) > 0) | (len(destinos) > 0): fig = Figure(width=800, height=600) - m = folium.Map(location=[poly.sample(100, replace=True).geometry.representative_point().y.mean( - ), poly.sample(100, replace=True).geometry.representative_point().x.mean()], zoom_start=9, tiles='cartodbpositron') + m = folium.Map(location=[poly.geometry.representative_point().y.mean( + ), poly.geometry.representative_point().x.mean()], zoom_start=9, tiles='cartodbpositron') colors_viajes = extract_hex_colors_from_cmap( cmap='viridis_r', n=k_jenks) @@ -347,11 +347,16 @@ def hay_cambios_en_filtros(current, last): distancia_all = ['Todas'] + distancia_all_[distancia_all_.distancia != '99'].distancia.unique().tolist() distancia = col1.selectbox('Distancia', options=distancia_all) - desc_etapas = col1.checkbox( - 'Etapas', value=False) - - desc_viajes = col1.checkbox( - 'Viajes', value=True) + desc_et_vi = col1.selectbox('Datos de', options=['Etapas', 'Viajes', 'Ninguno'], index=1) + if desc_et_vi == 'Viajes': + desc_viajes = True + desc_etapas = False + elif desc_et_vi == 'Etapas': + desc_viajes = False + desc_etapas = True + else: + desc_viajes = False + desc_etapas = False desc_origenes = col1.checkbox( ':blue[Origenes]', value=False) @@ -398,7 +403,8 @@ def hay_cambios_en_filtros(current, last): 'desc_destinos': desc_destinos, 'desc_zonif': desc_zonif, 'show_poly' : st.session_state.show_poly, - 'desc_cuenca': desc_cuenca + 'desc_cuenca': desc_cuenca, + 'desc_et_vi': desc_et_vi } @@ -484,40 +490,34 @@ def hay_cambios_en_filtros(current, last): st.session_state.data_cargada = True - st.session_state.etapas, st.session_state.viajes, st.session_state.matriz, st.session_state.origenes, st.session_state.destinos = create_data_folium(st.session_state.etapas_, - st.session_state.matrices_, - agg_transferencias=st.session_state.desc_transfers, - agg_modo=st.session_state.desc_modos, - agg_hora=st.session_state.desc_horas, - agg_distancia=st.session_state.desc_distancia, - agg_cols_etapas=st.session_state.agg_cols_etapas, - agg_cols_viajes=st.session_state.agg_cols_viajes) - - - - st.session_state.etapas = st.session_state.etapas[st.session_state.etapas.inicio_norm != st.session_state.etapas.fin_norm].copy() - st.session_state.viajes = st.session_state.viajes[st.session_state.viajes.inicio_norm != st.session_state.viajes.fin_norm].copy() - - if not desc_etapas: - st.session_state.etapas = pd.DataFrame([]) - - if not desc_viajes: - st.session_state.viajes = pd.DataFrame([]) - - if not desc_origenes: - st.session_state.origenes = pd.DataFrame([]) - - if not desc_destinos: - st.session_state.destinos = pd.DataFrame([]) + st.session_state.etapas, \ + st.session_state.viajes, \ + st.session_state.matriz, \ + st.session_state.origenes, \ + st.session_state.destinos, \ + st.session_state.transferencias = create_data_folium(st.session_state.etapas_, + st.session_state.matrices_, + agg_transferencias=st.session_state.desc_transfers, + agg_modo=st.session_state.desc_modos, + agg_hora=st.session_state.desc_horas, + agg_distancia=st.session_state.desc_distancia, + agg_cols_etapas=st.session_state.agg_cols_etapas, + agg_cols_viajes=st.session_state.agg_cols_viajes, + desc_etapas=desc_etapas, + desc_viajes=desc_viajes, + desc_origenes=desc_origenes, + desc_destinos=desc_destinos, + desc_transferencias=False + ) - if (len(st.session_state.etapas) > 0) | (len(st.session_state.viajes) > 0) | (len(st.session_state.origenes) > 0) | (len(st.session_state.destinos) > 0): + if (len(st.session_state.etapas) > 0) | (len(st.session_state.viajes) > 0) | (len(st.session_state.origenes) > 0) | (len(st.session_state.destinos) > 0) | (len(st.session_state.transferencias) > 0) | (desc_zonif): m = crear_mapa_poligonos(df_viajes=st.session_state.viajes, df_etapas=st.session_state.etapas, poly=st.session_state.poly, zonif=st.session_state.zonif, origenes=st.session_state.origenes, - destinos=st.session_state.destinos, + destinos=st.session_state.destinos, var_fex='factor_expansion_linea', cmap_viajes='Blues', cmap_etapas='Greens', @@ -534,9 +534,6 @@ def hay_cambios_en_filtros(current, last): else: col2.text("No hay datos suficientes para mostrar el mapa.") - - - with st.expander('Indicadores'): col1, col2, col3 = st.columns([2, 2, 2]) diff --git "a/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" "b/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" index 35a7436..3f58e68 100644 --- "a/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" +++ "b/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" @@ -10,12 +10,12 @@ from folium import plugins from shapely import wkt from dash_utils import ( - iniciar_conexion_db, get_logo + iniciar_conexion_db, get_logo, bring_latlon ) from streamlit_folium import folium_static +pd.options.display.float_format = '{:,.0f}'.format - -def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): +def levanto_tabla_sql_local(tabla_sql, tabla_tipo="dash", query=''): conn = iniciar_conexion_db(tipo=tabla_tipo) @@ -43,7 +43,7 @@ def levanto_tabla_sql(tabla_sql, tabla_tipo="dash", query=''): @st.cache_data def traigo_mes_dia(): - mes_dia = levanto_tabla_sql('etapas_agregadas', 'dash', 'SELECT DISTINCT mes, tipo_dia FROM etapas_agregadas;') + mes_dia = levanto_tabla_sql_local('etapas_agregadas', 'dash', 'SELECT DISTINCT mes, tipo_dia FROM etapas_agregadas;') mes = mes_dia.mes.values.tolist() tipo_dia = mes_dia.tipo_dia.values.tolist() return mes, tipo_dia @@ -72,6 +72,7 @@ def main(): logo = get_logo() st.image(logo) + latlon = bring_latlon() mes_lst, tipo_dia_lst = traigo_mes_dia() with st.expander('Selecciono zonas', expanded=True): @@ -82,7 +83,7 @@ def main(): resolution = 8 # Initialize Folium map - m = folium.Map(location=[-34.593, -58.451], zoom_start=10) + m = folium.Map(location=latlon, zoom_start=10) draw = plugins.Draw( export=False, draw_options={'polygon': True, 'rectangle': True}, @@ -118,8 +119,8 @@ def main(): zona2_str = json.dumps(zona2) col2.code(zona2_str, language='python') - with st.expander('Resultados', expanded=True): - col1, col2, col3, col4 = st.columns([1, 2, 2, 3]) + with st.expander('Zonas', expanded=False): + col1, col2, col3, col4, col5 = st.columns([1, 2, 2, 2, 2]) zona1 = st.session_state['zona_1'] zona2 = st.session_state['zona_2'] @@ -130,12 +131,100 @@ def main(): desc_tipo_dia = col1.selectbox( 'Tipo dia', options=tipo_dia_lst) + if len(zona1) > 0: + h3_values1 = ", ".join(f"'{item}'" for item in zona1) + ## Etapas + query1 = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values1}));" + etapas1 = levanto_tabla_sql_local('etapas_agregadas', tabla_tipo='dash', query=query1) + etapas1['Zona_1'] = 'Zona 1' + + ## Viajes + query1 = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values1}) );" + viajes1 = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query1) + viajes1['Zona_1'] = 'Zona 1' + + modos_e1 = etapas1.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', + 'nombre_linea': 'Línea', 'modo': 'Modo'}) + + modos_v1 = viajes1.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + + # Calculate the total and append as a new row + total_row1e = pd.DataFrame({ + 'Modo': ['Total'], + 'Línea': ['-'], + 'Etapas': [modos_e1['Etapas'].sum()] + }) + modos_e1 = pd.concat([modos_e1, total_row1e], ignore_index=True) + + + # Calculate the total and append as a new row + total_row1 = pd.DataFrame({ + 'Modo': ['Total'], + 'Viajes': [modos_v1['Viajes'].sum()] + }) + modos_v1 = pd.concat([modos_v1, total_row1], ignore_index=True) + + col2.title('Zona 1') + col2.write('Etapas') + modos_e1['Etapas'] = modos_e1['Etapas'].round() + col2.dataframe(modos_e1.set_index('Modo'), height=400, width=400) + col3.title('') + col3.write('Viajes') + modos_v1['Viajes'] = modos_v1['Viajes'].round() + col3.dataframe(modos_v1.set_index('Modo'), height=400, width=300) + if len(zona2) > 0: + h3_values2 = ", ".join(f"'{item}'" for item in zona2) + ## Etapas + query2 = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values2}));" + etapas2 = levanto_tabla_sql_local('etapas_agregadas', tabla_tipo='dash', query=query2) + etapas2['Zona_2'] = 'Zona 2' + + ## Viajes + query2 = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values2}) );" + viajes2 = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query2) + viajes2['Zona_2'] = 'Zona 2' + + modos_e2 = etapas2.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', + 'nombre_linea': 'Línea', 'modo': 'Modo'}) + + modos_v2 = viajes2.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + # Calculate the total and append as a new row + total_row2e = pd.DataFrame({ + 'Modo': ['Total'], + 'Línea': ['-'], + 'Etapas': [modos_e2['Etapas'].sum()] + }) + modos_e2 = pd.concat([modos_e2, total_row2e], ignore_index=True) + + # Calculate the total and append as a new row + total_row2 = pd.DataFrame({ + 'Modo': ['Total'], + 'Viajes': [modos_v2['Viajes'].sum()] + }) + modos_v2 = pd.concat([modos_v2, total_row2], ignore_index=True) + + + col4.title('Zona 2') + col4.write('Etapas') + modos_e2['Etapas'] = modos_e2['Etapas'].round() + col4.dataframe(modos_e2.set_index('Modo'), height=400, width=400) + + modos_v2['Viajes'] = modos_v2['Viajes'].round() + col5.title('') + col5.write('Viajes') + # col5.markdown(modos_v2.to_html(index=False), unsafe_allow_html=True) + col5.dataframe(modos_v2.set_index('Modo'), height=400, width=300) + + with st.expander('Viajes entre zonas', expanded=True): + col1, col2, col3, col4 = st.columns([1, 2, 2, 3]) if len(zona1) > 0 and len(zona2) > 0: h3_values = ", ".join(f"'{item}'" for item in zona1 + zona2) ## Etapas query = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" - etapas = levanto_tabla_sql('etapas_agregadas', tabla_tipo='dash', query=query) + etapas = levanto_tabla_sql_local('etapas_agregadas', tabla_tipo='dash', query=query) etapas['Zona_1'] = '' etapas['Zona_2'] = '' @@ -145,23 +234,32 @@ def main(): etapas.loc[etapas.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' etapas = etapas[(etapas.Zona_1 != '') & (etapas.Zona_2 != '') & (etapas.Zona_1 != etapas.Zona_2) & (etapas.Zona_1 != etapas.Zona_2)] - - zonasod_e = etapas.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes'}) - zonasod_e['Viajes'] = zonasod_e['Viajes'].astype(int) + etapas = etapas.fillna('') + + zonasod_e = etapas.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas'}) - modos_e = etapas.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes', + modos_e = etapas.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', 'nombre_linea': 'Línea', 'modo': 'Modo'}) - modos_e['Viajes'] = modos_e['Viajes'].astype(int) - col2.write('Etapas') - col2.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) - col2.markdown(modos_e.to_html(index=False), unsafe_allow_html=True) + # Calculate the total and append as a new row + total_rowe = pd.DataFrame({ + 'Modo': ['Total'], + 'Línea': ['-'], + 'Etapas': [modos_e['Etapas'].sum()] + }) + modos_e = pd.concat([modos_e, total_rowe], ignore_index=True) + + modos_e['Etapas'] = modos_e['Etapas'].round() + col2.write('Etapas') + col2.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) + col2.dataframe(modos_e.set_index('Modo'), height=500, width=400) + ## Viajes query = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" - viajes = levanto_tabla_sql('viajes_agregados', tabla_tipo='dash', query=query) + viajes = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query) viajes['Zona_1'] = '' viajes['Zona_2'] = '' @@ -170,18 +268,26 @@ def main(): viajes.loc[viajes.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' viajes.loc[viajes.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' viajes = viajes[(viajes.Zona_1 != '') & (viajes.Zona_2 != '') & (viajes.Zona_1 != viajes.Zona_2) & (viajes.Zona_1 != viajes.Zona_2)] - - zonasod_e = viajes.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes'}) - zonasod_e['Viajes'] = zonasod_e['Viajes'].astype(int) + zonasod_v = viajes.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes'}) + - modos_v = viajes.groupby(['modo'], as_index=False).factor_expansion_linea.sum().round().rename(columns={'factor_expansion_linea':'Viajes', - 'modo': 'Modo'}) - modos_v['Viajes'] = modos_v['Viajes'].astype(int) + modos_v = viajes.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + + # Calculate the total and append as a new row + total_row = pd.DataFrame({ + 'Modo': ['Total'], + 'Viajes': [modos_v['Viajes'].sum()] + }) + modos_v = pd.concat([modos_v, total_row], ignore_index=True) + col3.write('Viajes') - col3.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) - col3.markdown(modos_v.to_html(index=False), unsafe_allow_html=True) + col3.markdown(zonasod_v.to_html(index=False), unsafe_allow_html=True) + modos_v['Viajes'] = modos_v['Viajes'].round() + # col3.markdown(modos_v.to_html(index=False), unsafe_allow_html=True) + col3.dataframe(modos_v.set_index('Modo'), height=500, width=300) ## Mapa @@ -202,7 +308,7 @@ def zona_to_geometry(h3_list): folium.GeoJson(gdf, name="GeoData").add_to(m2) with col4: - st_folium(m2, width=700, height=700) + output2 = st_folium(m2, width=700, height=700) if __name__ == '__main__': main() diff --git a/urbantrips/lineas_deseo/lineas_deseo.py b/urbantrips/lineas_deseo/lineas_deseo.py index de12b4e..9d059b5 100644 --- a/urbantrips/lineas_deseo/lineas_deseo.py +++ b/urbantrips/lineas_deseo/lineas_deseo.py @@ -8,7 +8,7 @@ from urbantrips.geo.geo import h3_to_lat_lon, h3toparent, h3_to_geodataframe, point_to_h3, create_h3_gdf from urbantrips.utils.check_configs import check_config from shapely.geometry import Point -from urbantrips.utils.utils import leer_alias +from urbantrips.utils.utils import leer_alias, leer_configs_generales from urbantrips.carto import carto @@ -1409,12 +1409,16 @@ def proceso_poligonos(check_configs=True): poligonos = levanto_tabla_sql('poligonos') if len(poligonos) > 0: + + configs = leer_configs_generales() + res = configs['resolucion_h3'] + print('identifica viajes en polígonos') # Read trips and jorneys etapas, viajes = load_and_process_data() # Select cases based fron polygon etapas_selec, viajes_selec, polygons, polygons_h3 = select_cases_from_polygons( - etapas[etapas.od_validado == 1], viajes[viajes.od_validado == 1], poligonos, res=8) + etapas[etapas.od_validado == 1], viajes[viajes.od_validado == 1], poligonos, res=res) etapas_agrupadas, etapas_sin_agrupar, viajes_matrices, zonificaciones = preparo_lineas_deseo( etapas_selec, viajes_selec, polygons_h3, poligonos=poligonos, res=[6]) From d0550dc77580e41fa6ec1cb373307520224adc5f Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Thu, 14 Nov 2024 15:20:00 -0300 Subject: [PATCH 10/18] Fixes #181 (#182) * Handle errors en overlapping --- notebooks/Overlapping.ipynb | 56 ++++++--------- urbantrips/kpi/overlapping.py | 22 +++++- urbantrips/run_interactive_tools.py | 108 +++++++++++++++++----------- urbantrips/viz/overlapping.py | 9 ++- 4 files changed, 113 insertions(+), 82 deletions(-) diff --git a/notebooks/Overlapping.ipynb b/notebooks/Overlapping.ipynb index f31db77..b53daa5 100644 --- a/notebooks/Overlapping.ipynb +++ b/notebooks/Overlapping.ipynb @@ -36,7 +36,7 @@ "# Se leen los datos de las lineas\n", "metadata_lineas = pd.read_sql(\"select id_linea,nombre_linea, modo from metadata_lineas;\", conn_insumos)\n", "# Se puede buscar por nombre de linea que contenga alguna palabra o numero\n", - "metadata_lineas[metadata_lineas.nombre_linea.str.contains(\"68\") #reemplazar 17 por lo que se desee buscar en el nombre de la linea\n", + "metadata_lineas[metadata_lineas.nombre_linea.str.contains(\"17\") #reemplazar 17 por lo que se desee buscar en el nombre de la linea\n", " ]" ] }, @@ -90,7 +90,7 @@ "outputs": [], "source": [ "# get routes from the combination\n", - "base_route_id, comp_route_id = ovl.get_route_ids_from_combination(base_line_id, comp_line_id, route_id_combination)\n" + "base_route_id, comp_route_id = ovl.get_route_ids_from_combination(base_line_id, comp_line_id, route_id_combination)" ] }, { @@ -112,53 +112,39 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "# Se visualiza la superposicion de la oferta de la linea base con la de la linea de comparacion\n", "f = ovl_viz.plot_interactive_supply_overlapping(overlapping_dict)\n", - "f.save(f\"resultados/html/{alias}_supply_overlapping_base_{base_route_id}_comp_{comp_route_id}_h3_{h3_res_comp}.html\")\n", + "if f is not None:\n", + " f.save(f\"resultados/html/{alias}_supply_overlapping_base_{base_route_id}_comp_{comp_route_id}_h3_{h3_res_comp}.html\")\n", "f" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ - "# Calcula la demanda de la linea base y la de comparacion\n", - "demand_overlapping = ovl.compute_demand_overlapping(base_line_id,comp_line_id,day,\n", - " base_route_id,comp_route_id,\n", - " base_gdf,comp_gdf)\n", + "if (base_gdf is not None) and (comp_gdf is not None):\n", + " # Calcula la demanda de la linea base y la de comparacion\n", + " demand_overlapping = ovl.compute_demand_overlapping(base_line_id,comp_line_id,day,\n", + " base_route_id,comp_route_id,\n", + " base_gdf,comp_gdf)\n", "\n", - "base_demand = demand_overlapping[\"base\"][\"data\"]\n", - "comp_demand = demand_overlapping[\"comp\"][\"data\"]\n", - "print(demand_overlapping[\"base\"][\"output_text\"])\n", - "print(demand_overlapping[\"comp\"][\"output_text\"])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Se visualiza la superposicion de la demanda de la linea base con la de la linea de comparacion\n", - "demand_overlapping_fig = ovl_viz.plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_dict)\n", - "fig = demand_overlapping_fig['fig']\n", - "fig.save(f\"resultados/html/{alias}_demand_overlapping_base_{base_route_id}_comp_{comp_route_id}_h3_{h3_res_comp}.html\")\n", - "fig" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "demand_overlapping_fig['comp_gdf_to_db']" + " base_demand = demand_overlapping[\"base\"][\"data\"]\n", + " comp_demand = demand_overlapping[\"comp\"][\"data\"]\n", + " print(demand_overlapping[\"base\"][\"output_text\"])\n", + " print(demand_overlapping[\"comp\"][\"output_text\"])\n", + "\n", + " # Se visualiza la superposicion de la demanda de la linea base con la de la linea de comparacion\n", + " demand_overlapping_fig = ovl_viz.plot_interactive_demand_overlapping(base_demand, comp_demand, overlapping_dict)\n", + " fig = demand_overlapping_fig['fig']\n", + " fig.save(f\"resultados/html/{alias}_demand_overlapping_base_{base_route_id}_comp_{comp_route_id}_h3_{h3_res_comp}.html\")\n", + " fig" ] }, { diff --git a/urbantrips/kpi/overlapping.py b/urbantrips/kpi/overlapping.py index 793ac83..de241f9 100644 --- a/urbantrips/kpi/overlapping.py +++ b/urbantrips/kpi/overlapping.py @@ -349,11 +349,27 @@ def compute_supply_overlapping( # Crate linestring for each branch base_route_gdf = route_geoms.loc[route_geoms.route_id == base_route_id, "geometry"] - linestring_base = base_route_gdf.item() - # Crate linestring for each branch comp_route_gdf = route_geoms.loc[route_geoms.route_id == comp_route_id, "geometry"] - linestring_comp = comp_route_gdf.item() + + if (len(base_route_gdf) == 0) or (len(comp_route_gdf) == 0): + error_str = ( + "No es posible la comparación de oferta para esta combinación de rutas. " + ) + if len(base_route_gdf) == 0: + error_str += f"Ruta base {base_route_id} no encontrada. " + if len(comp_route_gdf) == 0: + error_str += f"Ruta comp {comp_route_id} no encontrada. " + return { + "base": {"line": None, "h3": None}, + "comp": {"line": None, "h3": None}, + "text_base_v_comp": error_str, + "text_comp_v_base": error_str, + } + + else: + linestring_base = base_route_gdf.item() + linestring_comp = comp_route_gdf.item() # Turn linestring into coarse h3 indexes base_h3 = create_coarse_h3_from_line( diff --git a/urbantrips/run_interactive_tools.py b/urbantrips/run_interactive_tools.py index eb1738c..38e0c1c 100644 --- a/urbantrips/run_interactive_tools.py +++ b/urbantrips/run_interactive_tools.py @@ -31,6 +31,7 @@ def cargar_tabla_sql(tabla_sql, tipo_conexion="dash", query=""): st.session_state.configs = utils.leer_configs_generales() configs = st.session_state.configs +h3_legs_res = configs["resolucion_h3"] alias = configs["alias_db_data"] use_branches = configs["lineas_contienen_ramales"] metadata_lineas = cargar_tabla_sql("metadata_lineas", "insumos")[ @@ -123,7 +124,9 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in col1, col2, col3 = st.columns([1, 3, 3]) with col1: - h3_res_comp = st.slider("Resolución H3", min_value=7, max_value=9, value=8) + h3_res_comp = st.slider( + "Resolución H3", min_value=7, max_value=h3_legs_res, value=h3_legs_res + ) if st.button("Comparar líneas"): for i in [1, 2]: @@ -209,61 +212,82 @@ def seleccionar_linea(nombre_columna, key_input, key_select, branch_key, conn_in f = ovl_viz.plot_interactive_supply_overlapping(overlapping_dict) # Muestra la salida solo en col1 with col1: - folium_static(f, width=800, height=600) - st.write( - st.session_state[f"supply_overlapping_{base_route_id}_{comp_route_id}"] - ) - st.write( - st.session_state[f"supply_overlapping_{comp_route_id}_{base_route_id}"] - ) + if f is not None: + folium_static(f, width=800, height=600) + st.write( + st.session_state[ + f"supply_overlapping_{base_route_id}_{comp_route_id}" + ] + ) + st.write( + st.session_state[ + f"supply_overlapping_{comp_route_id}_{base_route_id}" + ] + ) + else: + st.error(overlapping_dict["text_base_v_comp"]) # Cálculo y visualización de la demanda, si no se ha realizado previamente if ( f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" not in st.session_state ): - demand_overlapping = ovl.compute_demand_overlapping( - st.session_state.id_linea_1, - st.session_state.id_linea_2, - "weekday", - base_route_id, - comp_route_id, - overlapping_dict["base"]["h3"], - overlapping_dict["comp"]["h3"], - ) - st.session_state[ - f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" - ] = demand_overlapping + base_gdf = overlapping_dict["base"]["h3"] + comp_gdf = overlapping_dict["comp"]["h3"] + if (base_gdf is not None) and (comp_gdf is not None): + demand_overlapping = ovl.compute_demand_overlapping( + st.session_state.id_linea_1, + st.session_state.id_linea_2, + "weekday", + base_route_id, + comp_route_id, + base_gdf, + comp_gdf, + ) + st.session_state[ + f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" + ] = demand_overlapping - st.session_state[f"demand_overlapping_{base_route_id}_{comp_route_id}"] = ( - demand_overlapping["base"]["output_text"] - ) - st.session_state[f"demand_overlapping_{comp_route_id}_{base_route_id}"] = ( - demand_overlapping["comp"]["output_text"] - ) + st.session_state[ + f"demand_overlapping_{base_route_id}_{comp_route_id}" + ] = demand_overlapping["base"]["output_text"] + st.session_state[ + f"demand_overlapping_{comp_route_id}_{base_route_id}" + ] = demand_overlapping["comp"]["output_text"] + else: + st.session_state[ + f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" + ] = None demand_overlapping = st.session_state[ f"base_demand_comp_demand_{base_route_id}_{comp_route_id}" ] - base_demand = demand_overlapping["base"]["data"] - comp_demand = demand_overlapping["comp"]["data"] # Renderiza el segundo mapa y muestra el texto justo después del mapa en col2 - demand_overlapping_fig = ovl_viz.plot_interactive_demand_overlapping( - base_demand, comp_demand, overlapping_dict - ) - fig = demand_overlapping_fig["fig"] - base_gdf_to_db = demand_overlapping_fig["base_gdf_to_db"] - comp_gdf_to_db = demand_overlapping_fig["comp_gdf_to_db"] + if demand_overlapping is not None: + base_demand = demand_overlapping["base"]["data"] + comp_demand = demand_overlapping["comp"]["data"] + + demand_overlapping_fig = ovl_viz.plot_interactive_demand_overlapping( + base_demand, comp_demand, overlapping_dict + ) + fig = demand_overlapping_fig["fig"] + base_gdf_to_db = demand_overlapping_fig["base_gdf_to_db"] + comp_gdf_to_db = demand_overlapping_fig["comp_gdf_to_db"] + + with col2: + folium_static(fig, width=800, height=600) + st.write( + st.session_state[ + f"demand_overlapping_{base_route_id}_{comp_route_id}" + ] + ) # Muestra la segunda salida justo después del mapa + st.write( + st.session_state[ + f"demand_overlapping_{comp_route_id}_{base_route_id}" + ] + ) # Muestra la segunda salida justo después del mapa - with col2: - folium_static(fig, width=800, height=600) - st.write( - st.session_state[f"demand_overlapping_{base_route_id}_{comp_route_id}"] - ) # Muestra la segunda salida justo después del mapa - st.write( - st.session_state[f"demand_overlapping_{comp_route_id}_{base_route_id}"] - ) # Muestra la segunda salida justo después del mapa with st.expander("Exportar datos", expanded=True): col1_db, col2_db = st.columns([2, 2]) diff --git a/urbantrips/viz/overlapping.py b/urbantrips/viz/overlapping.py index 9820ff2..faec06c 100644 --- a/urbantrips/viz/overlapping.py +++ b/urbantrips/viz/overlapping.py @@ -30,8 +30,13 @@ def get_route_metadata(route_id): def plot_interactive_supply_overlapping(overlapping_dict): - base_route_id = overlapping_dict["base"]["h3"].route_id.unique()[0] - comp_route_id = overlapping_dict["comp"]["h3"].route_id.unique()[0] + base_h3 = overlapping_dict["base"]["h3"] + comp_h3 = overlapping_dict["comp"]["h3"] + if (base_h3 is None) or (comp_h3 is None): + return None + + base_route_id = base_h3.route_id.unique()[0] + comp_route_id = comp_h3.overlapping_dict["comp"]["h3"].route_id.unique()[0] base_route_metadata = get_route_metadata(base_route_id) comp_route_metadata = get_route_metadata(comp_route_id) From 3e8ee880b1ebf77afbd528d856f4f14819dbaad7 Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Tue, 19 Nov 2024 15:19:17 -0300 Subject: [PATCH 11/18] Dev test03 (#183) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Lineas de deseo and dash - modificación en líneas de deseo para que guarde cada procesamiento de polígono/zona para minimizar un poco el uso de memoria - Arreglos en el dash: se agregó filtro por zona en lineas de deseo y polígonos, indicadores de trasbordos en zonas. --------- Co-authored-by: Sebastian Anapolsky --- .../configuraciones_generales_2019_m1.yaml | 22 +- urbantrips/dashboard/dash_utils.py | 35 +- .../pages/3_L\303\255neas de Deseo.py" | 172 +++-- urbantrips/dashboard/pages/4_Poligonos.py | 43 +- .../pages/5_An\303\241lisis de zonas.py" | 340 ++++----- urbantrips/lineas_deseo/lineas_deseo.py | 646 ++++++++++-------- 6 files changed, 723 insertions(+), 535 deletions(-) diff --git a/configs/configuraciones_generales_2019_m1.yaml b/configs/configuraciones_generales_2019_m1.yaml index c87cf83..73162a1 100644 --- a/configs/configuraciones_generales_2019_m1.yaml +++ b/configs/configuraciones_generales_2019_m1.yaml @@ -94,19 +94,9 @@ filtro_latlong_bbox: # Zonificaciones zonificaciones: - geo1: "coronas.geojson" - var1: "Corona" + geo1: "partidos.geojson" + var1: "Partido" orden1: [ - "CABA", - "Primer cordón", - "Segundo cordón", - "Tercer cordón", - "RMBA", - ] - - geo2: "partidos.geojson" - var2: "Partido" - orden2: [ "Comuna 1", "Comuna 2", "Comuna 3", @@ -172,9 +162,9 @@ zonificaciones: "Zárate", ] - geo3: "partidos.geojson" - var3: "Zona" - orden3: [ + geo2: "partidos.geojson" + var2: "Zona" + orden2: [ "CABA", "Sur", "Oeste", @@ -190,7 +180,7 @@ zonificaciones: var5: orden5: -poligonos: # Especificar una capa geográfica de polígonos en formato .geojson. El archivo requiere las siguientes columnas: ['id', 'tipo', 'geometry']. 'id' es el id o nombre del polígono, tipo puede ser 'poligono' o 'cuenca'. +poligonos: "poligonos.geojson" # Especificar una capa geográfica de polígonos en formato .geojson. El archivo requiere las siguientes columnas: ['id', 'tipo', 'geometry']. 'id' es el id o nombre del polígono, tipo puede ser 'poligono' o 'cuenca'. tiempos_viaje_estaciones: # Especificar una tabla de tiempo de viaje en minutos entre estaciones para modos sin gps diff --git a/urbantrips/dashboard/dash_utils.py b/urbantrips/dashboard/dash_utils.py index 300e23f..7c9b7c5 100644 --- a/urbantrips/dashboard/dash_utils.py +++ b/urbantrips/dashboard/dash_utils.py @@ -30,7 +30,7 @@ def leer_configs_generales(): return config -def leer_alias(tipo='data'): +def leer_alias(tipo='dash'): """ Esta funcion toma un tipo de datos (data o insumos) y devuelve el alias seteado en el archivo de congifuracion @@ -53,7 +53,7 @@ def leer_alias(tipo='data'): return alias -def traigo_db_path(tipo='data'): +def traigo_db_path(tipo='dash'): """ Esta funcion toma un tipo de datos (data o insumos) y devuelve el path a una base de datos con esa informacion @@ -62,12 +62,13 @@ def traigo_db_path(tipo='data'): raise ValueError('tipo invalido: %s' % tipo) alias = leer_alias(tipo) + db_path = os.path.join("data", "db", f"{alias}{tipo}.sqlite") return db_path -def iniciar_conexion_db(tipo='data'): +def iniciar_conexion_db(tipo='dash'): """" Esta funcion toma un tipo de datos (data o insumos) y devuelve una conexion sqlite a la db @@ -76,6 +77,7 @@ def iniciar_conexion_db(tipo='data'): assert os.path.isfile( db_path), f'No existe la base de datos para el dashboard en {db_path}' conn = sqlite3.connect(db_path, timeout=10) + return conn # Calculate weighted mean, handling division by zero or empty inputs @@ -597,4 +599,29 @@ def bring_latlon(): latlon = [lat, lon] except: latlon = [-34.593, -58.451] - return latlon \ No newline at end of file + return latlon + +@st.cache_data +def traigo_zonas_values(tipo = 'etapas'): + + if tipo == 'etapas': + table = 'agg_etapas' + else: + table = 'poly_etapas' + + + query = f""" + SELECT DISTINCT zona, inicio_norm FROM {table} + UNION + SELECT DISTINCT zona, transfer1_norm FROM {table} + UNION + SELECT DISTINCT zona, transfer2_norm FROM {table} + UNION + SELECT DISTINCT zona, fin_norm FROM {table}; + """ + zonas_values = etapas=levanto_tabla_sql(table, 'dash', query) + zonas_values = zonas_values[(zonas_values.inicio_norm!='')& + (zonas_values.inicio_norm.notna())& + (zonas_values.inicio_norm!=' (cuenca)')].sort_values(['zona', 'inicio_norm']).rename(columns={'inicio_norm':'Nombre'}) + + return zonas_values \ No newline at end of file diff --git "a/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" "b/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" index bf57c32..8d1bc33 100644 --- "a/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" +++ "b/urbantrips/dashboard/pages/3_L\303\255neas de Deseo.py" @@ -1,5 +1,6 @@ import streamlit as st import pandas as pd +import numpy as np import geopandas as gpd import folium from streamlit_folium import st_folium, folium_static @@ -12,7 +13,7 @@ create_data_folium, traigo_indicadores, extract_hex_colors_from_cmap, iniciar_conexion_db, normalize_vars, - bring_latlon + bring_latlon, traigo_zonas_values ) def crear_mapa_lineas_deseo(df_viajes, @@ -265,27 +266,51 @@ def levanto_tabla_sql_local(tabla_sql, tabla_tipo="dash", query=''): return tabla def traigo_socio_indicadores(socio_indicadores): - - df = socio_indicadores[socio_indicadores.tabla=='viajes-genero-tarifa'].copy() - totals = pd.crosstab(values=df.factor_expansion_linea, columns=df.Genero, index=df.Tarifa, aggfunc='sum', margins=True, margins_name='Total', normalize=False).fillna(0).round().astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) - totals_porc = (pd.crosstab(values=df.factor_expansion_linea, columns=df.Genero, index=df.Tarifa, aggfunc='sum', margins=True, margins_name='Total', normalize=True) * 100).round(2) - - modos = socio_indicadores[socio_indicadores.tabla=='etapas-genero-modo'].copy() - modos_genero_abs = pd.crosstab(values=modos.factor_expansion_linea, index=[modos.Genero], columns=modos.Modo, aggfunc='sum', normalize=False, margins=True, margins_name='Total').fillna(0).astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) - modos_genero_porc = (pd.crosstab(values=modos.factor_expansion_linea, index=modos.Genero, columns=modos.Modo, aggfunc='sum', normalize=True, margins=True, margins_name='Total') * 100).round(2) + totals = None + totals_porc = 0 + avg_distances = 0 + avg_times = 0 + avg_velocity = 0 + modos_genero_abs = 0 + modos_genero_porc = 0 + modos_tarifa_abs = 0 + modos_tarifa_porc = 0 + avg_viajes = 0 + avg_etapas = 0 + avg_tiempo_entre_viajes = 0 + + if len(socio_indicadores) > 0: + + df = socio_indicadores[socio_indicadores.tabla=='viajes-genero-tarifa'].copy() + totals = pd.crosstab(values=df.factor_expansion_linea, columns=df.Genero, index=df.Tarifa, aggfunc='sum', margins=True, margins_name='Total', normalize=False).fillna(0).round().astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) + totals_porc = (pd.crosstab(values=df.factor_expansion_linea, columns=df.Genero, index=df.Tarifa, aggfunc='sum', margins=True, margins_name='Total', normalize=True) * 100).round(2) + + modos = socio_indicadores[socio_indicadores.tabla=='etapas-genero-modo'].copy() + modos_genero_abs = pd.crosstab(values=modos.factor_expansion_linea, index=[modos.Genero], columns=modos.Modo, aggfunc='sum', normalize=False, margins=True, margins_name='Total').fillna(0).astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) + modos_genero_porc = (pd.crosstab(values=modos.factor_expansion_linea, index=modos.Genero, columns=modos.Modo, aggfunc='sum', normalize=True, margins=True, margins_name='Total') * 100).round(2) + + modos = socio_indicadores[socio_indicadores.tabla=='etapas-tarifa-modo'].copy() + modos_tarifa_abs = pd.crosstab(values=modos.factor_expansion_linea, index=[modos.Tarifa], columns=modos.Modo, aggfunc='sum', normalize=False, margins=True, margins_name='Total').fillna(0).astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) + modos_tarifa_porc = (pd.crosstab(values=modos.factor_expansion_linea, index=modos.Tarifa, columns=modos.Modo, aggfunc='sum', normalize=True, margins=True, margins_name='Total') * 100).round(2) + + avg_distances = pd.crosstab(values=df.Distancia, columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_times = pd.crosstab(values=df['Tiempo de viaje'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_velocity = pd.crosstab(values=df['Velocidad'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_etapas = pd.crosstab(values=df['Etapas promedio'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).round(2).fillna('') + user = socio_indicadores[socio_indicadores.tabla=='usuario-genero-tarifa'].copy() + avg_viajes = pd.crosstab(values=user['Viajes promedio'], + index=[user.Tarifa], + columns=user.Genero, + margins=True, + margins_name='Total', + aggfunc=lambda x: (x * user.loc[x.index, 'factor_expansion_linea']).sum() / user.loc[x.index, 'factor_expansion_linea'].sum(),).round(2).fillna('') - modos = socio_indicadores[socio_indicadores.tabla=='etapas-tarifa-modo'].copy() - modos_tarifa_abs = pd.crosstab(values=modos.factor_expansion_linea, index=[modos.Tarifa], columns=modos.Modo, aggfunc='sum', normalize=False, margins=True, margins_name='Total').fillna(0).astype(int).apply(lambda col: col.map(lambda x: f'{x:,.0f}'.replace(',', '.'))) - modos_tarifa_porc = (pd.crosstab(values=modos.factor_expansion_linea, index=modos.Tarifa, columns=modos.Modo, aggfunc='sum', normalize=True, margins=True, margins_name='Total') * 100).round(2) - - avg_distances = pd.crosstab(values=df.Distancia, columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) - avg_times = pd.crosstab(values=df['Tiempo de viaje'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) - avg_velocity = pd.crosstab(values=df['Velocidad'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) - avg_etapas = pd.crosstab(values=df['Etapas promedio'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).round(2).fillna('') - user = socio_indicadores[socio_indicadores.tabla=='usuario-genero-tarifa'].copy() - avg_viajes = pd.crosstab(values=user['Viajes promedio'], index=[user.Tarifa], columns=user.Genero, margins=True, margins_name='Total', aggfunc=lambda x: (x * user.loc[x.index, 'factor_expansion_linea']).sum() / user.loc[x.index, 'factor_expansion_linea'].sum(),).round(2).fillna('') - - avg_tiempo_entre_viajes = pd.crosstab(values=df['Tiempo entre viajes'], columns=df.Genero, index=df.Tarifa, margins=True, margins_name='Total',aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) + avg_tiempo_entre_viajes = pd.crosstab(values=df['Tiempo entre viajes'], + columns=df.Genero, + index=df.Tarifa, + margins=True, + margins_name='Total', + aggfunc=lambda x: (x * df.loc[x.index, 'factor_expansion_linea']).sum() / df.loc[x.index, 'factor_expansion_linea'].sum(), ).fillna(0).round(2) return totals, totals_porc, avg_distances, avg_times, avg_velocity, modos_genero_abs, modos_genero_porc, modos_tarifa_abs, modos_tarifa_porc, avg_viajes, avg_etapas, avg_tiempo_entre_viajes @@ -315,20 +340,18 @@ def hay_cambios_en_filtros(current, last): st.session_state[var] = '' etapas_lst_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT mes FROM agg_etapas;') - - - # st.session_state.etapas = traigo() - + if len(etapas_lst_) > 0: zonificaciones = levanto_tabla_sql('zonificaciones') socio_indicadores = levanto_tabla_sql('socio_indicadores') desc_tipo_dia_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT tipo_dia FROM agg_etapas;') - desc_zona_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT zona FROM agg_etapas;') + desc_zona_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT zona FROM agg_etapas;').sort_values('zona') modos_list_all_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT modo_agregado FROM agg_etapas;') rango_hora_all_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT rango_hora FROM agg_etapas;') distancia_all_ = levanto_tabla_sql('agg_etapas', 'dash', 'SELECT DISTINCT distancia FROM agg_etapas;') - + zonas_values = traigo_zonas_values('etapas') + # st.session_state.etapas_all = st.session_state.etapas_all[st.session_state.etapas_all.factor_expansion_linea > 0].copy() general, modal, distancias = traigo_indicadores('all') @@ -342,7 +365,8 @@ def hay_cambios_en_filtros(current, last): 'transferencia': 'Todos', 'modo_agregado': 'Todos', 'rango_hora': 'Todos', - 'distancia': 'Todas' + 'distancia': 'Todas', + 'desc_zonas_values':'Todos' } if 'data_cargada' not in st.session_state: @@ -362,7 +386,6 @@ def hay_cambios_en_filtros(current, last): modos_list = col1.selectbox('Modos', options=[text for text in modos_list_all]) rango_hora_all = ['Todos'] + rango_hora_all_[rango_hora_all_.rango_hora != '99'].rango_hora.unique().tolist() - # rango_hora = col1.selectbox('Rango hora', options=[text.capitalize() for text in rango_hora_all]) rango_hora = col1.selectbox('Rango hora', options=[text for text in rango_hora_all]) distancia_all = ['Todas'] + distancia_all_[distancia_all_.distancia != '99'].distancia.unique().tolist() @@ -379,6 +402,10 @@ def hay_cambios_en_filtros(current, last): desc_viajes = False desc_etapas = False + zonas_values_all = ['Todos'] + zonas_values[zonas_values.zona == desc_zona].Nombre.unique().tolist() + desc_zonas_values = col1.selectbox('Filtro', options=zonas_values_all) + + desc_origenes = col1.checkbox( ':blue[Origenes]', value=False) @@ -394,6 +421,8 @@ def hay_cambios_en_filtros(current, last): zonif = zonificaciones[zonificaciones.zona == desc_zona] else: zonif = '' + + mtabla = col2.checkbox('Mostrar tabla', value=False) # Construye el diccionario de filtros actual current_filters = { @@ -404,6 +433,7 @@ def hay_cambios_en_filtros(current, last): 'modo_agregado': None if modos_list == 'Todos' else modos_list, 'rango_hora': None if rango_hora == 'Todos' else rango_hora, 'distancia': None if distancia == 'Todas' else distancia, + 'desc_zonas_values': None if desc_zonas_values == 'Todos' else desc_zonas_values, } current_options = { 'desc_etapas': desc_etapas, @@ -412,7 +442,8 @@ def hay_cambios_en_filtros(current, last): 'desc_destinos': desc_destinos, 'desc_et_vi': desc_et_vi, 'desc_transferencias': desc_transferencias, - 'desc_zonif': desc_zonif, } + 'desc_zonif': desc_zonif, + 'mtabla': mtabla} @@ -420,14 +451,20 @@ def hay_cambios_en_filtros(current, last): if hay_cambios_en_filtros(current_filters, st.session_state.last_filters): query = "" - conditions = " AND ".join(f"{key} = '{value}'" for key, value in current_filters.items() if value is not None) + conditions = " AND ".join(f"{key} = '{value}'" for key, value in current_filters.items() if (value is not None)&(key != 'desc_zonas_values')) if conditions: query += f" WHERE {conditions}" - st.session_state.matrices_ = levanto_tabla_sql_local('agg_matrices', tabla_tipo='dash', query=f"SELECT * FROM agg_matrices{query}") - st.session_state.etapas_ = levanto_tabla_sql_local('agg_etapas', tabla_tipo='dash', query=f"SELECT * FROM agg_etapas{query}") - + conditions_etapas = '' + conditions_matrices = '' + if desc_zonas_values != 'Todos': + conditions_etapas = f" AND (inicio_norm = '{desc_zonas_values}' OR transfer1_norm = '{desc_zonas_values}' OR transfer2_norm = '{desc_zonas_values}' OR fin_norm = '{desc_zonas_values}')" + conditions_matrices = f" AND (inicio = '{desc_zonas_values}' OR fin = '{desc_zonas_values}')" + query_etapas = query + conditions_etapas + query_matrices = query + conditions_matrices + st.session_state.etapas_ = levanto_tabla_sql_local('agg_etapas', tabla_tipo='dash', query=f"SELECT * FROM agg_etapas{query_etapas}") + st.session_state.matrices_ = levanto_tabla_sql_local('agg_matrices', tabla_tipo='dash', query=f"SELECT * FROM agg_matrices{query_matrices}") if len(st.session_state.matrices_)==0: col2.write('No hay datos para mostrar') @@ -587,6 +624,9 @@ def hay_cambios_en_filtros(current, last): with col2: folium_static(st.session_state.map, width=1000, height=800) # output = st_folium(st.session_state.map, width=1000, height=800, key='m', returned_objects=["center"]) + if mtabla: + col2.dataframe(st.session_state.etapas_[['inicio_norm', 'transfer1_norm', 'transfer2_norm', 'fin_norm', 'factor_expansion_linea']]) # + else: col2.text("No hay datos suficientes para mostrar el mapa.") else: @@ -660,37 +700,41 @@ def hay_cambios_en_filtros(current, last): col1, col2, col3, col4 = st.columns([1, 2, 2, 2]) totals, totals_porc, avg_distances, avg_times, avg_velocity, modos_genero_abs, modos_genero_porc, modos_tarifa_abs, modos_tarifa_porc, avg_viajes, avg_etapas, avg_tiempo_entre_viajes = traigo_socio_indicadores(st.session_state.socio_indicadores_) - col2.markdown("

Total de viajes por género y tarifa

", unsafe_allow_html=True) - col2.table(totals) - col3.markdown("

Porcentaje de viajes por género y tarifa

", unsafe_allow_html=True) - col3.table(totals_porc.round(2).astype(str)) - - col2.markdown("

Cantidad promedio de viajes por género y tarifa

", unsafe_allow_html=True) - col2.table(avg_viajes.round(2).astype(str)) - col3.markdown("

Cantidad promedio de etapas por género y tarifa

", unsafe_allow_html=True) - col3.table(avg_etapas.round(2).astype(str)) + if totals is not None: + col2.markdown("

Total de viajes por género y tarifa

", unsafe_allow_html=True) + col2.table(totals) + col3.markdown("

Porcentaje de viajes por género y tarifa

", unsafe_allow_html=True) + col3.table(totals_porc.round(2).astype(str)) - col2.markdown("

Total de etapas por género y modo

", unsafe_allow_html=True) - col2.table(modos_genero_abs) - col3.markdown("

Porcentaje de etapas por género y modo

", unsafe_allow_html=True) - col3.table(modos_genero_porc.round(2).astype(str)) - - col2.markdown("

Total de etapas por tarifa y modo

", unsafe_allow_html=True) - col2.table(modos_tarifa_abs) - col3.markdown("

Porcentaje de etapas por tarifa y modo

", unsafe_allow_html=True) - col3.table(modos_tarifa_porc.round(2).astype(str)) - - col2.markdown("

Distancias promedio (kms)

", unsafe_allow_html=True) - col2.table(avg_distances.round(2).astype(str)) - - col3.markdown("

Tiempos promedio (minutos)

", unsafe_allow_html=True) - col3.table(avg_times.round(2).astype(str)) - - col2.markdown("

Velocidades promedio (kms/hora)

", unsafe_allow_html=True) - col2.table(avg_velocity.round(2).astype(str)) - - col3.markdown("

Tiempos promedio entre viajes (minutos)

", unsafe_allow_html=True) - col3.table(avg_tiempo_entre_viajes.round(2).astype(str)) + col2.markdown("

Cantidad promedio de viajes por género y tarifa

", unsafe_allow_html=True) + col2.table(avg_viajes.round(2).astype(str)) + col3.markdown("

Cantidad promedio de etapas por género y tarifa

", unsafe_allow_html=True) + col3.table(avg_etapas.round(2).astype(str)) + + + col2.markdown("

Total de etapas por género y modo

", unsafe_allow_html=True) + col2.table(modos_genero_abs) + col3.markdown("

Porcentaje de etapas por género y modo

", unsafe_allow_html=True) + col3.table(modos_genero_porc.round(2).astype(str)) + + col2.markdown("

Total de etapas por tarifa y modo

", unsafe_allow_html=True) + col2.table(modos_tarifa_abs) + col3.markdown("

Porcentaje de etapas por tarifa y modo

", unsafe_allow_html=True) + col3.table(modos_tarifa_porc.round(2).astype(str)) + + col2.markdown("

Distancias promedio (kms)

", unsafe_allow_html=True) + col2.table(avg_distances.round(2).astype(str)) + + col3.markdown("

Tiempos promedio (minutos)

", unsafe_allow_html=True) + col3.table(avg_times.round(2).astype(str)) + + col2.markdown("

Velocidades promedio (kms/hora)

", unsafe_allow_html=True) + col2.table(avg_velocity.round(2).astype(str)) + + col3.markdown("

Tiempos promedio entre viajes (minutos)

", unsafe_allow_html=True) + col3.table(avg_tiempo_entre_viajes.round(2).astype(str)) + else: + col2.write('No hay datos para mostrar') diff --git a/urbantrips/dashboard/pages/4_Poligonos.py b/urbantrips/dashboard/pages/4_Poligonos.py index 2a56783..43b82e2 100644 --- a/urbantrips/dashboard/pages/4_Poligonos.py +++ b/urbantrips/dashboard/pages/4_Poligonos.py @@ -11,8 +11,8 @@ levanto_tabla_sql, get_logo, create_data_folium, traigo_indicadores, extract_hex_colors_from_cmap, - iniciar_conexion_db, normalize_vars - + iniciar_conexion_db, normalize_vars, + traigo_zonas_values ) from streamlit_folium import folium_static @@ -297,12 +297,12 @@ def hay_cambios_en_filtros(current, last): zonificaciones = levanto_tabla_sql('zonificaciones') socio_indicadores = levanto_tabla_sql('socio_indicadores') desc_tipo_dia_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT tipo_dia FROM poly_etapas;') - desc_zona_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT zona FROM poly_etapas;') + desc_zona_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT zona FROM poly_etapas;').sort_values('zona') modos_list_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT modo_agregado FROM poly_etapas;') rango_hora_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT rango_hora FROM poly_etapas;') distancia_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT distancia FROM poly_etapas;') desc_poly_all_ = levanto_tabla_sql('poly_etapas', 'dash', 'SELECT DISTINCT id_polygon FROM poly_etapas;') - + zonas_values = traigo_zonas_values('poligonos') # st.session_state.etapas_all = st.session_state.etapas_all[st.session_state.etapas_all.factor_expansion_linea > 0].copy() general, modal, distancias = traigo_indicadores('poligonos') @@ -316,11 +316,13 @@ def hay_cambios_en_filtros(current, last): 'transferencia': 'Todos', 'modo_agregado': 'Todos', 'rango_hora': 'Todos', - 'distancia': 'Todas' + 'distancia': 'Todas', + 'desc_zonas_values':'Todos' } if 'data_cargada' not in st.session_state: st.session_state.data_cargada = False + # Opciones de los filtros en Streamlit # st.session_state.etapas_lst = ['Todos'] + etapas_lst_.mes.unique().tolist() @@ -358,6 +360,9 @@ def hay_cambios_en_filtros(current, last): desc_viajes = False desc_etapas = False + zonas_values_all = ['Todos'] + zonas_values[zonas_values.zona == desc_zona].Nombre.unique().tolist() + desc_zonas_values = col1.selectbox('Filtro', options=zonas_values_all) + desc_origenes = col1.checkbox( ':blue[Origenes]', value=False) @@ -383,7 +388,7 @@ def hay_cambios_en_filtros(current, last): desc_cuenca = False - + mtabla = col2.checkbox('Mostrar tabla', value=False) # Construye el diccionario de filtros actual current_filters = { @@ -396,6 +401,7 @@ def hay_cambios_en_filtros(current, last): 'distancia': None if distancia == 'Todas' else distancia, 'coincidencias': None if desc_cuenca == False else True, 'id_polygon': st.session_state.desc_poly, + 'desc_zonas_values': None if desc_zonas_values == 'Todos' else desc_zonas_values, } current_options = { 'desc_etapas': desc_etapas, 'desc_viajes': desc_viajes, @@ -404,7 +410,8 @@ def hay_cambios_en_filtros(current, last): 'desc_zonif': desc_zonif, 'show_poly' : st.session_state.show_poly, 'desc_cuenca': desc_cuenca, - 'desc_et_vi': desc_et_vi + 'desc_et_vi': desc_et_vi, + 'mtabla': mtabla } @@ -413,12 +420,22 @@ def hay_cambios_en_filtros(current, last): if hay_cambios_en_filtros(current_filters, st.session_state.last_filters): query = "" - conditions = " AND ".join(f"{key} = '{value}'" for key, value in current_filters.items() if value is not None) + conditions = " AND ".join(f"{key} = '{value}'" for key, value in current_filters.items() if (value is not None)&(key != 'desc_zonas_values')) if conditions: query += f" WHERE {conditions}" + + conditions_etapas = '' + conditions_matrices = '' + if desc_zonas_values != 'Todos': + conditions_etapas = f" AND (inicio_norm = '{desc_zonas_values}' OR transfer1_norm = '{desc_zonas_values}' OR transfer2_norm = '{desc_zonas_values}' OR fin_norm = '{desc_zonas_values}')" + conditions_matrices = f" AND (inicio = '{desc_zonas_values}' OR fin = '{desc_zonas_values}')" + query_etapas = query + conditions_etapas + query_matrices = query + conditions_matrices + + + st.session_state.etapas_ = levanto_tabla_sql_local('poly_etapas', tabla_tipo='dash', query=f"SELECT * FROM poly_etapas{query_etapas}") + st.session_state.matrices_ = levanto_tabla_sql_local('poly_matrices', tabla_tipo='dash', query=f"SELECT * FROM poly_matrices{query_matrices}") - st.session_state.matrices_ = levanto_tabla_sql_local('poly_matrices', tabla_tipo='dash', query=f"SELECT * FROM poly_matrices{query}") - st.session_state.etapas_ = levanto_tabla_sql_local('poly_etapas', tabla_tipo='dash', query=f"SELECT * FROM poly_etapas{query}") if len(st.session_state.etapas_)==0: col2.write('No hay datos para mostrar') @@ -531,6 +548,12 @@ def hay_cambios_en_filtros(current, last): if st.session_state.map: with col2: folium_static(st.session_state.map, width=1000, height=800) + + + if mtabla: + col2.dataframe(st.session_state.etapas_[['inicio_norm', 'transfer1_norm', 'transfer2_norm', 'fin_norm', 'factor_expansion_linea']]) + + else: col2.text("No hay datos suficientes para mostrar el mapa.") diff --git "a/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" "b/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" index 3f58e68..18f6c69 100644 --- "a/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" +++ "b/urbantrips/dashboard/pages/5_An\303\241lisis de zonas.py" @@ -136,86 +136,89 @@ def main(): ## Etapas query1 = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values1}));" etapas1 = levanto_tabla_sql_local('etapas_agregadas', tabla_tipo='dash', query=query1) - etapas1['Zona_1'] = 'Zona 1' - ## Viajes - query1 = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values1}) );" - viajes1 = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query1) - viajes1['Zona_1'] = 'Zona 1' - - modos_e1 = etapas1.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', - 'nombre_linea': 'Línea', 'modo': 'Modo'}) - - modos_v1 = viajes1.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', - 'modo': 'Modo'}) - - # Calculate the total and append as a new row - total_row1e = pd.DataFrame({ - 'Modo': ['Total'], - 'Línea': ['-'], - 'Etapas': [modos_e1['Etapas'].sum()] - }) - modos_e1 = pd.concat([modos_e1, total_row1e], ignore_index=True) - - - # Calculate the total and append as a new row - total_row1 = pd.DataFrame({ - 'Modo': ['Total'], - 'Viajes': [modos_v1['Viajes'].sum()] - }) - modos_v1 = pd.concat([modos_v1, total_row1], ignore_index=True) - - col2.title('Zona 1') - col2.write('Etapas') - modos_e1['Etapas'] = modos_e1['Etapas'].round() - col2.dataframe(modos_e1.set_index('Modo'), height=400, width=400) - col3.title('') - col3.write('Viajes') - modos_v1['Viajes'] = modos_v1['Viajes'].round() - col3.dataframe(modos_v1.set_index('Modo'), height=400, width=300) + if len(etapas1) > 0: + etapas1['Zona_1'] = 'Zona 1' + + ## Viajes + query1 = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values1}) );" + viajes1 = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query1) + viajes1['Zona_1'] = 'Zona 1' + + modos_e1 = etapas1.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', + 'nombre_linea': 'Línea', 'modo': 'Modo'}) + + modos_v1 = viajes1.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + + # Calculate the total and append as a new row + total_row1e = pd.DataFrame({ + 'Modo': ['Total'], + 'Línea': ['-'], + 'Etapas': [modos_e1['Etapas'].sum()] + }) + modos_e1 = pd.concat([modos_e1, total_row1e], ignore_index=True) + + + # Calculate the total and append as a new row + total_row1 = pd.DataFrame({ + 'Modo': ['Total'], + 'Viajes': [modos_v1['Viajes'].sum()] + }) + modos_v1 = pd.concat([modos_v1, total_row1], ignore_index=True) + + col2.title('Zona 1') + col2.write('Etapas') + modos_e1['Etapas'] = modos_e1['Etapas'].round() + col2.dataframe(modos_e1.set_index('Modo'), height=400, width=400) + col3.title('') + col3.write('Viajes') + modos_v1['Viajes'] = modos_v1['Viajes'].round() + col3.dataframe(modos_v1.set_index('Modo'), height=400, width=300) if len(zona2) > 0: h3_values2 = ", ".join(f"'{item}'" for item in zona2) ## Etapas query2 = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values2}));" etapas2 = levanto_tabla_sql_local('etapas_agregadas', tabla_tipo='dash', query=query2) - etapas2['Zona_2'] = 'Zona 2' - - ## Viajes - query2 = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values2}) );" - viajes2 = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query2) - viajes2['Zona_2'] = 'Zona 2' - - modos_e2 = etapas2.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', - 'nombre_linea': 'Línea', 'modo': 'Modo'}) - - modos_v2 = viajes2.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', - 'modo': 'Modo'}) - # Calculate the total and append as a new row - total_row2e = pd.DataFrame({ - 'Modo': ['Total'], - 'Línea': ['-'], - 'Etapas': [modos_e2['Etapas'].sum()] - }) - modos_e2 = pd.concat([modos_e2, total_row2e], ignore_index=True) - - # Calculate the total and append as a new row - total_row2 = pd.DataFrame({ - 'Modo': ['Total'], - 'Viajes': [modos_v2['Viajes'].sum()] - }) - modos_v2 = pd.concat([modos_v2, total_row2], ignore_index=True) - - - col4.title('Zona 2') - col4.write('Etapas') - modos_e2['Etapas'] = modos_e2['Etapas'].round() - col4.dataframe(modos_e2.set_index('Modo'), height=400, width=400) - - modos_v2['Viajes'] = modos_v2['Viajes'].round() - col5.title('') - col5.write('Viajes') - # col5.markdown(modos_v2.to_html(index=False), unsafe_allow_html=True) - col5.dataframe(modos_v2.set_index('Modo'), height=400, width=300) + if len(etapas2) > 0: + etapas2['Zona_2'] = 'Zona 2' + + ## Viajes + query2 = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values2}) );" + viajes2 = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query2) + viajes2['Zona_2'] = 'Zona 2' + + modos_e2 = etapas2.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', + 'nombre_linea': 'Línea', 'modo': 'Modo'}) + + modos_v2 = viajes2.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + # Calculate the total and append as a new row + total_row2e = pd.DataFrame({ + 'Modo': ['Total'], + 'Línea': ['-'], + 'Etapas': [modos_e2['Etapas'].sum()] + }) + modos_e2 = pd.concat([modos_e2, total_row2e], ignore_index=True) + + # Calculate the total and append as a new row + total_row2 = pd.DataFrame({ + 'Modo': ['Total'], + 'Viajes': [modos_v2['Viajes'].sum()] + }) + modos_v2 = pd.concat([modos_v2, total_row2], ignore_index=True) + + + col4.title('Zona 2') + col4.write('Etapas') + modos_e2['Etapas'] = modos_e2['Etapas'].round() + col4.dataframe(modos_e2.set_index('Modo'), height=400, width=400) + + modos_v2['Viajes'] = modos_v2['Viajes'].round() + col5.title('') + col5.write('Viajes') + # col5.markdown(modos_v2.to_html(index=False), unsafe_allow_html=True) + col5.dataframe(modos_v2.set_index('Modo'), height=400, width=300) with st.expander('Viajes entre zonas', expanded=True): col1, col2, col3, col4 = st.columns([1, 2, 2, 3]) @@ -225,90 +228,123 @@ def main(): ## Etapas query = f"SELECT * FROM etapas_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" etapas = levanto_tabla_sql_local('etapas_agregadas', tabla_tipo='dash', query=query) - - etapas['Zona_1'] = '' - etapas['Zona_2'] = '' - etapas.loc[etapas.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' - etapas.loc[etapas.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' - etapas.loc[etapas.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' - etapas.loc[etapas.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' - etapas = etapas[(etapas.Zona_1 != '') & (etapas.Zona_2 != '') & (etapas.Zona_1 != etapas.Zona_2) & (etapas.Zona_1 != etapas.Zona_2)] - - etapas = etapas.fillna('') - - zonasod_e = etapas.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas'}) - - modos_e = etapas.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', - 'nombre_linea': 'Línea', - 'modo': 'Modo'}) - # Calculate the total and append as a new row - total_rowe = pd.DataFrame({ - 'Modo': ['Total'], - 'Línea': ['-'], - 'Etapas': [modos_e['Etapas'].sum()] - }) - modos_e = pd.concat([modos_e, total_rowe], ignore_index=True) - - modos_e['Etapas'] = modos_e['Etapas'].round() + if len(etapas) > 0: - col2.write('Etapas') - col2.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) - col2.dataframe(modos_e.set_index('Modo'), height=500, width=400) - - - ## Viajes - query = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" - viajes = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query) + etapas['Zona_1'] = '' + etapas['Zona_2'] = '' + etapas.loc[etapas.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' + etapas.loc[etapas.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' + etapas.loc[etapas.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' + etapas.loc[etapas.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' + etapas = etapas[(etapas.Zona_1 != '') & (etapas.Zona_2 != '') & (etapas.Zona_1 != etapas.Zona_2)] + + etapas = etapas.fillna('') + + zonasod_e = etapas.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas'}) + + + modos_e = etapas.groupby(['modo', 'nombre_linea'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Etapas', + 'nombre_linea': 'Línea', + 'modo': 'Modo'}) + + col2.write(zonasod_e) + + # Calculate the total and append as a new row + total_rowe = pd.DataFrame({ + 'Modo': ['Total'], + 'Línea': ['-'], + 'Etapas': [modos_e['Etapas'].sum()] + }) + modos_e = pd.concat([modos_e, total_rowe], ignore_index=True) + + modos_e['Etapas'] = modos_e['Etapas'].round() + + col2.write('Etapas') + col2.markdown(zonasod_e.to_html(index=False), unsafe_allow_html=True) + col2.dataframe(modos_e.set_index('Modo'), height=500, width=400) + + + ## Viajes + h3_values = ", ".join(f"'{item}'" for item in zona1 + zona2) + query = f"SELECT * FROM viajes_agregados WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" + viajes = levanto_tabla_sql_local('viajes_agregados', tabla_tipo='dash', query=query) + + viajes['Zona_1'] = '' + viajes['Zona_2'] = '' + viajes.loc[viajes.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' + viajes.loc[viajes.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' + viajes.loc[viajes.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' + viajes.loc[viajes.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' + viajes = viajes[(viajes.Zona_1 != '') & (viajes.Zona_2 != '') & (viajes.Zona_1 != viajes.Zona_2)] + + zonasod_v = viajes.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes'}) + + + + modos_v = viajes.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo': 'Modo'}) + + # Calculate the total and append as a new row + total_row = pd.DataFrame({ + 'Modo': ['Total'], + 'Viajes': [modos_v['Viajes'].sum()] + }) + modos_v = pd.concat([modos_v, total_row], ignore_index=True) + + col3.write('Viajes') + col3.markdown(zonasod_v.to_html(index=False), unsafe_allow_html=True) + modos_v['Viajes'] = modos_v['Viajes'].round() + # col3.markdown(modos_v.to_html(index=False), unsafe_allow_html=True) + col3.dataframe(modos_v.set_index('Modo'), height=500, width=300) + + ## Mapa + + # Create unified geometry for each zone + def zona_to_geometry(h3_list): + polygons = [Polygon(h3.h3_to_geo_boundary(h3_index, geo_json=True)) for h3_index in h3_list] + return unary_union(polygons) + + geometry_zona1 = zona_to_geometry(st.session_state['zona_1']) + geometry_zona2 = zona_to_geometry(st.session_state['zona_2']) + gdf = gpd.GeoDataFrame({ + 'zona': ['Zona 1', 'Zona 2'], + 'geometry': [geometry_zona1, geometry_zona2] + }, crs="EPSG:4326") + + # Plot the zones on a new Folium map + m2 = folium.Map(location=[gdf.geometry.centroid.y.mean(), gdf.geometry.centroid.x.mean()], zoom_start=10) + folium.GeoJson(gdf, name="GeoData").add_to(m2) + + with col4: + output2 = st_folium(m2, width=700, height=700) + + with st.expander('Viajes con transferencias', expanded=False): + col1, col2 = st.columns([1, 3]) + ## Transferencias + h3_values = ", ".join(f"'{item}'" for item in zona1 + zona2) + query = f"SELECT * FROM transferencias_agregadas WHERE mes = '{desc_mes}' AND tipo_dia = '{desc_tipo_dia}' AND (h3_o IN ({h3_values}) OR h3_d IN ({h3_values}));" + transferencias = levanto_tabla_sql_local('transferencias_agregadas', tabla_tipo='dash', query=query) + + if len(transferencias) > 0: + + transferencias['Zona_1'] = '' + transferencias['Zona_2'] = '' + transferencias.loc[transferencias.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' + transferencias.loc[transferencias.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' + transferencias.loc[transferencias.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' + transferencias.loc[transferencias.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' + transferencias = transferencias[(transferencias.Zona_1 != '') & (transferencias.Zona_2 != '') & (transferencias.Zona_1 != transferencias.Zona_2)] - viajes['Zona_1'] = '' - viajes['Zona_2'] = '' - viajes.loc[viajes.h3_o.isin(zona1), 'Zona_1'] = 'Zona 1' - viajes.loc[viajes.h3_o.isin(zona2), 'Zona_1'] = 'Zona 2' - viajes.loc[viajes.h3_d.isin(zona1), 'Zona_2'] = 'Zona 1' - viajes.loc[viajes.h3_d.isin(zona2), 'Zona_2'] = 'Zona 2' - viajes = viajes[(viajes.Zona_1 != '') & (viajes.Zona_2 != '') & (viajes.Zona_1 != viajes.Zona_2) & (viajes.Zona_1 != viajes.Zona_2)] - - zonasod_v = viajes.groupby(['Zona_1', 'Zona_2'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes'}) - - - - modos_v = viajes.groupby(['modo'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', - 'modo': 'Modo'}) + transferencias = transferencias.fillna('') - # Calculate the total and append as a new row - total_row = pd.DataFrame({ - 'Modo': ['Total'], - 'Viajes': [modos_v['Viajes'].sum()] - }) - modos_v = pd.concat([modos_v, total_row], ignore_index=True) + transferencias = transferencias.groupby(['modo', + 'seq_lineas'], as_index=False).factor_expansion_linea.sum().rename(columns={'factor_expansion_linea':'Viajes', + 'modo':'Modo', 'seq_lineas':'Líneas'}).sort_values('Viajes', ascending=False) + transferencias['Viajes'] = transferencias['Viajes'].astype(int) - col3.write('Viajes') - col3.markdown(zonasod_v.to_html(index=False), unsafe_allow_html=True) - modos_v['Viajes'] = modos_v['Viajes'].round() - # col3.markdown(modos_v.to_html(index=False), unsafe_allow_html=True) - col3.dataframe(modos_v.set_index('Modo'), height=500, width=300) - - ## Mapa - - # Create unified geometry for each zone - def zona_to_geometry(h3_list): - polygons = [Polygon(h3.h3_to_geo_boundary(h3_index, geo_json=True)) for h3_index in h3_list] - return unary_union(polygons) - - geometry_zona1 = zona_to_geometry(st.session_state['zona_1']) - geometry_zona2 = zona_to_geometry(st.session_state['zona_2']) - gdf = gpd.GeoDataFrame({ - 'zona': ['Zona 1', 'Zona 2'], - 'geometry': [geometry_zona1, geometry_zona2] - }, crs="EPSG:4326") - - # Plot the zones on a new Folium map - m2 = folium.Map(location=[gdf.geometry.centroid.y.mean(), gdf.geometry.centroid.x.mean()], zoom_start=10) - folium.GeoJson(gdf, name="GeoData").add_to(m2) + col2.dataframe(transferencias.set_index('Modo'), height=500, width=500) - with col4: - output2 = st_folium(m2, width=700, height=700) if __name__ == '__main__': main() diff --git a/urbantrips/lineas_deseo/lineas_deseo.py b/urbantrips/lineas_deseo/lineas_deseo.py index 9d059b5..04599e8 100644 --- a/urbantrips/lineas_deseo/lineas_deseo.py +++ b/urbantrips/lineas_deseo/lineas_deseo.py @@ -800,8 +800,22 @@ def preparo_etapas_agregadas(etapas, viajes): v_agg = viajes.groupby(['dia', 'mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo'], as_index=False).factor_expansion_linea.sum() v_agg = v_agg.groupby(['mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo'], as_index=False).factor_expansion_linea.mean() v_agg = v_agg[v_agg.h3_o!=v_agg.h3_d] + + etapas['etapas_max'] = etapas.groupby(['dia', 'id_tarjeta', 'id_viaje']).id_etapa.transform('max') + transfers = etapas.loc[(etapas.etapas_max>1), ['dia', 'id_tarjeta', 'id_viaje', 'id_etapa', 'etapas_max', 'id_linea', 'h3_o', 'h3_d', 'factor_expansion_linea']] + transfers = transfers.merge(lineas[['id_linea', 'nombre_linea']], how='left') + transfers = transfers.pivot(index=['dia', 'id_tarjeta', 'id_viaje'], columns='id_etapa', values='nombre_linea').reset_index().fillna('') + transfers['seq_lineas'] = '' + for i in range(1, etapas.etapas_max.max()+1): + transfers['seq_lineas'] += transfers[i] + ' -- ' + transfers['seq_lineas'] = transfers['seq_lineas'].str.replace(' -- -- ', '') + + transfers['seq_lineas'] = transfers.seq_lineas.str[:-4] + transfers = viajes.merge(transfers[['dia', 'id_tarjeta', 'id_viaje', 'seq_lineas']]) + transfers = transfers.groupby(['dia', 'mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo', 'seq_lineas'], as_index=False).factor_expansion_linea.sum() + transfers = transfers.groupby(['mes', 'tipo_dia', 'h3_o', 'h3_d', 'modo', 'seq_lineas'], as_index=False).factor_expansion_linea.mean() - return e_agg, v_agg + return e_agg, v_agg, transfers def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos='', res=6): @@ -816,15 +830,17 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' viajes_selec['id_polygon'] = 'NONE' etapas_selec['coincidencias'] = 'NONE' viajes_selec['coincidencias'] = 'NONE' - - etapas_selec = etapas_selec[etapas_selec.distance_osm_drive.notna()].copy() + #### etapas_selec = etapas_selec[etapas_selec.distance_osm_drive.notna()].copy() + etapas_selec = etapas_selec.rename( columns={'distance_osm_drive': 'distance_osm_drive_etapas'}) distancias_all = etapas_selec.groupby( ['id_polygon', 'dia', 'id_tarjeta', 'id_viaje'], as_index=False)[['distance_osm_drive_etapas']].sum() + distancias_all = distancias_all.merge(viajes_selec.loc[viajes_selec.od_validado == 1, [ - 'id_polygon', 'dia', 'id_tarjeta', 'id_viaje', 'distance_osm_drive', 'travel_time_min', 'travel_speed']]) + 'id_polygon', 'dia', 'id_tarjeta', 'id_viaje', 'distance_osm_drive', 'travel_time_min', 'travel_speed']]) # + distancias_all['distancia'] = 'Viajes cortos (<=5kms)' distancias_all.loc[(distancias_all.distance_osm_drive > 5), 'distancia'] = 'Viajes largos (>5kms)' @@ -866,16 +882,11 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' etapas_selec.loc[(etapas_selec.hora >= 17) & ( etapas_selec.hora <= 24), 'rango_hora'] = '17-24' - etapas_agrupadas_all = pd.DataFrame([]) - gpd_viajes_agrupados_all = pd.DataFrame([]) - for id_polygon in polygons_h3.id_polygon.unique(): poly_h3 = polygons_h3[polygons_h3.id_polygon == id_polygon] poly = poligonos[poligonos.id == id_polygon] tipo_poly = poly.tipo.values[0] - print('') - print(f'Polígono {id_polygon} - Tipo: {tipo_poly}') # Preparo Etapas con inicio, transferencias y fin del viaje etapas_all = etapas_selec.loc[(etapas_selec.id_polygon == id_polygon), ['dia', @@ -940,8 +951,7 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' etapas_all = pd.concat([etapas_all, ultimo_viaje]).sort_values( ['dia', 'id_tarjeta', 'id_viaje', 'id_etapa']).reset_index(drop=True) - etapas_all['tipo_viaje'] = 'Transfer_' + \ - (etapas_all['id_etapa']-1).astype(str) + etapas_all['tipo_viaje'] = 'Transfer_' + (etapas_all['id_etapa']-1).astype(str) etapas_all.loc[etapas_all.ultimo_viaje == 1, 'tipo_viaje'] = 'Fin' etapas_all.loc[etapas_all.id_etapa == 1, 'tipo_viaje'] = 'Inicio' @@ -1012,10 +1022,10 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' 'tarifa', 'coincidencias', 'factor_expansion_linea']] - - for zona in zonas: + print('') + print(f'Polígono {id_polygon} - Tipo: {tipo_poly} - Zona: {zona}') if id_polygon != 'NONE': # print(id_polygon, zona) @@ -1136,264 +1146,320 @@ def preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3='', poligonos=' etapas_agrupadas_zon = normalizo_zona(etapas_agrupadas_zon, zonificaciones[zonificaciones.zona == zona].copy()) - etapas_agrupadas_all = pd.concat( - [etapas_agrupadas_all, etapas_agrupadas_zon], ignore_index=True) - - etapas_agrupadas_all['transferencia'] = 0 - etapas_agrupadas_all.loc[(etapas_agrupadas_all.transfer1_norm != '') | ( - etapas_agrupadas_all.transfer2_norm != ''), 'transferencia'] = 1 - - etapas_agrupadas_all = etapas_agrupadas_all.merge( - distancias_all, how='left') - - etapas_agrupadas_all['tipo_dia_'] = pd.to_datetime(etapas_agrupadas_all.dia).dt.weekday.astype(str).copy() - etapas_agrupadas_all['tipo_dia'] = 'Hábil' - etapas_agrupadas_all.loc[etapas_agrupadas_all.tipo_dia_.astype(int)>=5, 'tipo_dia'] = 'Fin de Semana' - etapas_agrupadas_all = etapas_agrupadas_all.drop(['tipo_dia_'], axis=1) - etapas_agrupadas_all['mes'] = etapas_agrupadas_all.dia.str[:7] - - etapas_agrupadas_all = etapas_agrupadas_all[['id_polygon', 'zona', 'dia', 'mes', 'tipo_dia', 'id_tarjeta', 'id_viaje', - 'h3_inicio', 'h3_transfer1', 'h3_transfer2', 'h3_fin', - 'inicio', 'transfer1', 'transfer2', 'fin', - 'poly_inicio', 'poly_transfer1', 'poly_transfer2', 'poly_fin', - 'inicio_norm', 'transfer1_norm', 'transfer2_norm', 'fin_norm', - 'poly_inicio_norm', 'poly_transfer1_norm', 'poly_transfer2_norm', 'poly_fin_norm', - 'lon1', 'lat1', 'lon2', 'lat2', 'lon3', 'lat3', 'lon4', 'lat4', - 'lon1_norm', 'lat1_norm', 'lon2_norm', 'lat2_norm', 'lon3_norm', 'lat3_norm', 'lon4_norm', 'lat4_norm', - 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'coincidencias', 'distancia', - 'distance_osm_drive', 'distance_osm_drive_etapas', - 'travel_time_min', 'travel_speed', - 'factor_expansion_linea']] - - etapas_sin_agrupar = etapas_agrupadas_all.copy() - - aggregate_cols = ['id_polygon', 'dia', 'mes', 'tipo_dia', 'zona', 'inicio', 'fin', 'poly_inicio', - 'poly_fin', 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'coincidencias', 'distancia'] - viajes_matrices = construyo_matrices(etapas_sin_agrupar, - aggregate_cols, - zonificaciones, - False, - False, - False) - - # Agrupación de viajes - aggregate_cols = ['id_polygon', - 'dia', - 'mes', - 'tipo_dia', - 'zona', - 'inicio_norm', - 'transfer1_norm', - 'transfer2_norm', - 'fin_norm', - 'poly_inicio_norm', - 'poly_transfer1_norm', - 'poly_transfer2_norm', - 'poly_fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'genero', - 'tarifa', - 'coincidencias', - 'distancia'] - - weighted_mean_cols = ['distance_osm_drive', - 'distance_osm_drive_etapas', - 'travel_time_min', - 'travel_speed', - 'lat1_norm', - 'lon1_norm', - 'lat2_norm', - 'lon2_norm', - 'lat3_norm', - 'lon3_norm', - 'lat4_norm', - 'lon4_norm'] - - weight_col = 'factor_expansion_linea' - - zero_to_nan = ['lat1_norm', - 'lon1_norm', - 'lat2_norm', - 'lon2_norm', - 'lat3_norm', - 'lon3_norm', - 'lat4_norm', - 'lon4_norm'] - - etapas_agrupadas_all = agrupar_viajes(etapas_agrupadas_all, - aggregate_cols, - weighted_mean_cols, - weight_col, - zero_to_nan, - agg_transferencias=False, - agg_modo=False, - agg_hora=False, - agg_distancia=False) - - zonificaciones['lat'] = zonificaciones.geometry.representative_point().y - zonificaciones['lon'] = zonificaciones.geometry.representative_point().x + ### etapas_agrupadas_zon = pd.concat( + ### [etapas_agrupadas_zon, etapas_agrupadas_zon], ignore_index=True) - n = 1 - poly_lst = ['poly_inicio', 'poly_transfer1', 'poly_transfer2', 'poly_fin'] - for i in ['inicio', 'transfer1', 'transfer2', 'fin']: - etapas_agrupadas_all = etapas_agrupadas_all.merge(zonificaciones[['zona', 'id', 'lat', 'lon']].rename(columns={'id': f'{i}_norm', 'lat': f'lat{n}_norm_tmp', 'lon': f'lon{n}_norm_tmp'}), - how='left', - on=['zona', f'{i}_norm']) - etapas_agrupadas_all.loc[etapas_agrupadas_all[f'{poly_lst[n-1]}_norm'] == '', - f'lat{n}_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all[f'{poly_lst[n-1]}_norm'] == '', f'lat{n}_norm_tmp'] - etapas_agrupadas_all.loc[etapas_agrupadas_all[f'{poly_lst[n-1]}_norm'] == '', - f'lon{n}_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all[f'{poly_lst[n-1]}_norm'] == '', f'lon{n}_norm_tmp'] - - etapas_agrupadas_all = etapas_agrupadas_all.drop( - [f'lat{n}_norm_tmp', f'lon{n}_norm_tmp'], axis=1) - - if (n == 1) | (n == 4): - viajes_matrices = viajes_matrices.merge(zonificaciones[['zona', 'id', 'lat', 'lon']].rename(columns={'id': f'{i}', 'lat': f'lat{n}_tmp', 'lon': f'lon{n}_tmp'}), - how='left', - on=['zona', f'{i}']) - viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', - f'lat{n}'] = viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', f'lat{n}_tmp'] - viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', - f'lon{n}'] = viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', f'lon{n}_tmp'] - viajes_matrices = viajes_matrices.drop( - [f'lat{n}_tmp', f'lon{n}_tmp'], axis=1) - - n += 1 - - - - # # Agrupar a nivel de mes y corregir factor de expansión - sum_viajes = etapas_agrupadas_all.groupby(['dia', - 'mes', - 'tipo_dia', - 'zona'], as_index=False).factor_expansion_linea.sum().groupby(['mes', - 'tipo_dia', - 'zona'], as_index=False).factor_expansion_linea.mean().round() + etapas_agrupadas_zon['transferencia'] = 0 + etapas_agrupadas_zon.loc[(etapas_agrupadas_zon.transfer1_norm != '') | ( + etapas_agrupadas_zon.transfer2_norm != ''), 'transferencia'] = 1 - aggregate_cols = ['mes', - 'tipo_dia', - 'id_polygon', - 'poly_inicio_norm', - 'poly_transfer1_norm', - 'poly_transfer2_norm', - 'poly_fin_norm', - 'zona', - 'inicio_norm', - 'transfer1_norm', - 'transfer2_norm', - 'fin_norm', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'genero', - 'tarifa', - 'coincidencias', - 'distancia', ] - weighted_mean_cols=['distance_osm_drive', - 'distance_osm_drive_etapas', - 'travel_time_min', - 'travel_speed', - 'lat1_norm', - 'lon1_norm', - 'lat2_norm', - 'lon2_norm', - 'lat3_norm', - 'lon3_norm', - 'lat4_norm', - 'lon4_norm'] - - etapas_agrupadas_all = calculate_weighted_means(etapas_agrupadas_all, - aggregate_cols=aggregate_cols, - weighted_mean_cols=weighted_mean_cols, - weight_col='factor_expansion_linea', - zero_to_nan=zero_to_nan, - var_fex_summed=False) + etapas_agrupadas_zon = etapas_agrupadas_zon.merge( + distancias_all, how='left') + + etapas_agrupadas_zon['tipo_dia_'] = pd.to_datetime(etapas_agrupadas_zon.dia).dt.weekday.astype(str).copy() + etapas_agrupadas_zon['tipo_dia'] = 'Hábil' + etapas_agrupadas_zon.loc[etapas_agrupadas_zon.tipo_dia_.astype(int)>=5, 'tipo_dia'] = 'Fin de Semana' + etapas_agrupadas_zon = etapas_agrupadas_zon.drop(['tipo_dia_'], axis=1) + etapas_agrupadas_zon['mes'] = etapas_agrupadas_zon.dia.str[:7] + + etapas_agrupadas_zon = etapas_agrupadas_zon[['id_polygon', 'zona', 'dia', 'mes', 'tipo_dia', 'id_tarjeta', 'id_viaje', + 'h3_inicio', 'h3_transfer1', 'h3_transfer2', 'h3_fin', + 'inicio', 'transfer1', 'transfer2', 'fin', + 'poly_inicio', 'poly_transfer1', 'poly_transfer2', 'poly_fin', + 'inicio_norm', 'transfer1_norm', 'transfer2_norm', 'fin_norm', + 'poly_inicio_norm', 'poly_transfer1_norm', 'poly_transfer2_norm', 'poly_fin_norm', + 'lon1', 'lat1', 'lon2', 'lat2', 'lon3', 'lat3', 'lon4', 'lat4', + 'lon1_norm', 'lat1_norm', 'lon2_norm', 'lat2_norm', 'lon3_norm', 'lat3_norm', 'lon4_norm', 'lat4_norm', + 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'coincidencias', 'distancia', + 'distance_osm_drive', 'distance_osm_drive_etapas', + 'travel_time_min', 'travel_speed', + 'factor_expansion_linea']] + + aggregate_cols = ['id_polygon', 'dia', 'mes', 'tipo_dia', 'zona', 'inicio', 'fin', 'poly_inicio', + 'poly_fin', 'transferencia', 'modo_agregado', 'rango_hora', 'genero', 'tarifa', 'coincidencias', 'distancia'] + viajes_matrices = construyo_matrices(etapas_agrupadas_zon, + aggregate_cols, + zonificaciones, + False, + False, + False) + + # Agrupación de viajes + aggregate_cols = ['id_polygon', + 'dia', + 'mes', + 'tipo_dia', + 'zona', + 'inicio_norm', + 'transfer1_norm', + 'transfer2_norm', + 'fin_norm', + 'poly_inicio_norm', + 'poly_transfer1_norm', + 'poly_transfer2_norm', + 'poly_fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'genero', + 'tarifa', + 'coincidencias', + 'distancia'] + + weighted_mean_cols = ['distance_osm_drive', + 'distance_osm_drive_etapas', + 'travel_time_min', + 'travel_speed', + 'lat1_norm', + 'lon1_norm', + 'lat2_norm', + 'lon2_norm', + 'lat3_norm', + 'lon3_norm', + 'lat4_norm', + 'lon4_norm'] + + weight_col = 'factor_expansion_linea' + + zero_to_nan = ['lat1_norm', + 'lon1_norm', + 'lat2_norm', + 'lon2_norm', + 'lat3_norm', + 'lon3_norm', + 'lat4_norm', + 'lon4_norm'] + + etapas_agrupadas_zon = agrupar_viajes(etapas_agrupadas_zon, + aggregate_cols, + weighted_mean_cols, + weight_col, + zero_to_nan, + agg_transferencias=False, + agg_modo=False, + agg_hora=False, + agg_distancia=False) + + zonificaciones['lat'] = zonificaciones.geometry.representative_point().y + zonificaciones['lon'] = zonificaciones.geometry.representative_point().x + + n = 1 + poly_lst = ['poly_inicio', 'poly_transfer1', 'poly_transfer2', 'poly_fin'] + for i in ['inicio', 'transfer1', 'transfer2', 'fin']: + etapas_agrupadas_zon = etapas_agrupadas_zon.merge(zonificaciones[['zona', 'id', 'lat', 'lon']].rename(columns={'id': f'{i}_norm', 'lat': f'lat{n}_norm_tmp', 'lon': f'lon{n}_norm_tmp'}), + how='left', + on=['zona', f'{i}_norm']) + etapas_agrupadas_zon.loc[etapas_agrupadas_zon[f'{poly_lst[n-1]}_norm'] == '', + f'lat{n}_norm'] = etapas_agrupadas_zon.loc[etapas_agrupadas_zon[f'{poly_lst[n-1]}_norm'] == '', f'lat{n}_norm_tmp'] + etapas_agrupadas_zon.loc[etapas_agrupadas_zon[f'{poly_lst[n-1]}_norm'] == '', + f'lon{n}_norm'] = etapas_agrupadas_zon.loc[etapas_agrupadas_zon[f'{poly_lst[n-1]}_norm'] == '', f'lon{n}_norm_tmp'] + + etapas_agrupadas_zon = etapas_agrupadas_zon.drop( + [f'lat{n}_norm_tmp', f'lon{n}_norm_tmp'], axis=1) + + if (n == 1) | (n == 4): + viajes_matrices = viajes_matrices.merge(zonificaciones[['zona', 'id', 'lat', 'lon']].rename(columns={'id': f'{i}', 'lat': f'lat{n}_tmp', 'lon': f'lon{n}_tmp'}), + how='left', + on=['zona', f'{i}']) + viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', + f'lat{n}'] = viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', f'lat{n}_tmp'] + viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', + f'lon{n}'] = viajes_matrices.loc[viajes_matrices[f'{poly_lst[n-1]}'] == '', f'lon{n}_tmp'] + viajes_matrices = viajes_matrices.drop( + [f'lat{n}_tmp', f'lon{n}_tmp'], axis=1) + + n += 1 + + + + # # Agrupar a nivel de mes y corregir factor de expansión + sum_viajes = etapas_agrupadas_zon.groupby(['dia', + 'mes', + 'tipo_dia', + 'zona'], as_index=False).factor_expansion_linea.sum().groupby(['mes', + 'tipo_dia', + 'zona'], as_index=False).factor_expansion_linea.mean().round() + + aggregate_cols = ['mes', + 'tipo_dia', + 'id_polygon', + 'poly_inicio_norm', + 'poly_transfer1_norm', + 'poly_transfer2_norm', + 'poly_fin_norm', + 'zona', + 'inicio_norm', + 'transfer1_norm', + 'transfer2_norm', + 'fin_norm', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'genero', + 'tarifa', + 'coincidencias', + 'distancia', ] + weighted_mean_cols=['distance_osm_drive', + 'distance_osm_drive_etapas', + 'travel_time_min', + 'travel_speed', + 'lat1_norm', + 'lon1_norm', + 'lat2_norm', + 'lon2_norm', + 'lat3_norm', + 'lon3_norm', + 'lat4_norm', + 'lon4_norm'] + + etapas_agrupadas_zon = calculate_weighted_means(etapas_agrupadas_zon, + aggregate_cols=aggregate_cols, + weighted_mean_cols=weighted_mean_cols, + weight_col='factor_expansion_linea', + zero_to_nan=zero_to_nan, + var_fex_summed=False) + + + sum_viajes['factor_expansion_linea'] = 1 - (sum_viajes['factor_expansion_linea'] / etapas_agrupadas_zon.groupby(['mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.sum().factor_expansion_linea ) + sum_viajes = sum_viajes.rename(columns={'factor_expansion_linea':'factor_correccion'}) + + etapas_agrupadas_zon = etapas_agrupadas_zon.merge(sum_viajes) + etapas_agrupadas_zon['factor_expansion_linea2'] = etapas_agrupadas_zon['factor_expansion_linea'] * etapas_agrupadas_zon['factor_correccion'] + etapas_agrupadas_zon['factor_expansion_linea2'] = etapas_agrupadas_zon['factor_expansion_linea'] - etapas_agrupadas_zon['factor_expansion_linea2'] + etapas_agrupadas_zon = etapas_agrupadas_zon.drop(['factor_correccion', 'factor_expansion_linea'], axis=1) + etapas_agrupadas_zon = etapas_agrupadas_zon.rename(columns={'factor_expansion_linea2':'factor_expansion_linea'}) + + # # Agrupar a nivel de mes y corregir factor de expansión + sum_viajes = viajes_matrices.groupby(['dia', 'mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.sum().groupby(['mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.mean() + + aggregate_cols = ['id_polygon', + 'poly_inicio', + 'poly_fin', + 'mes', + 'tipo_dia', + 'zona', + 'inicio', + 'fin', + 'transferencia', + 'modo_agregado', + 'rango_hora', + 'genero', + 'tarifa', + 'coincidencias', + 'distancia', + 'orden_origen', + 'orden_destino', + 'Origen', + 'Destino'] + weighted_mean_cols = ['lat1', + 'lon1', + 'lat4', + 'lon4', + 'distance_osm_drive', + 'travel_time_min', + 'travel_speed',] + zero_to_nan = ['lat1', + 'lon1', + 'lat4', + 'lon4'] + + viajes_matrices = calculate_weighted_means(viajes_matrices, + aggregate_cols=aggregate_cols, + weighted_mean_cols=weighted_mean_cols, + weight_col='factor_expansion_linea', + zero_to_nan=zero_to_nan, + var_fex_summed=False) + + sum_viajes['factor_expansion_linea'] = 1 - (sum_viajes['factor_expansion_linea'] / viajes_matrices.groupby(['mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.sum().factor_expansion_linea ) + sum_viajes = sum_viajes.rename(columns={'factor_expansion_linea':'factor_correccion'}) + + viajes_matrices = viajes_matrices.merge(sum_viajes) + viajes_matrices['factor_expansion_linea2'] = viajes_matrices['factor_expansion_linea'] * viajes_matrices['factor_correccion'] + viajes_matrices['factor_expansion_linea2'] = viajes_matrices['factor_expansion_linea'] - viajes_matrices['factor_expansion_linea2'] + viajes_matrices = viajes_matrices.drop(['factor_correccion', 'factor_expansion_linea'], axis=1) + viajes_matrices = viajes_matrices.rename(columns={'factor_expansion_linea2':'factor_expansion_linea'}) + + if len(poligonos[poligonos.tipo=='cuenca'])>0: + + etapas_agrupadas_zon.loc[ + etapas_agrupadas_zon.poly_inicio_norm.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'inicio_norm'] = etapas_agrupadas_zon.loc[ + etapas_agrupadas_zon.poly_inicio_norm.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio_norm']+' (cuenca)' + etapas_agrupadas_zon.loc[ + etapas_agrupadas_zon.poly_transfer1_norm.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'transfer1_norm'] = etapas_agrupadas_zon.loc[ + etapas_agrupadas_zon.poly_transfer1_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer1_norm']+' (cuenca)' + etapas_agrupadas_zon.loc[ + etapas_agrupadas_zon.poly_transfer2_norm.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'transfer2_norm'] = etapas_agrupadas_zon.loc[etapas_agrupadas_zon.poly_transfer2_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer2_norm']+' (cuenca)' + etapas_agrupadas_zon.loc[ + etapas_agrupadas_zon.poly_fin_norm.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'fin_norm'] = etapas_agrupadas_zon.loc[etapas_agrupadas_zon.poly_fin_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin_norm']+' (cuenca)' + viajes_matrices.loc[ + viajes_matrices.poly_inicio.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'Origen'] = viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Origen']+' (cuenca)' + viajes_matrices.loc[ + viajes_matrices.poly_fin.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'Destino'] = viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Destino']+' (cuenca)' + viajes_matrices.loc[ + viajes_matrices.poly_inicio.isin( + poligonos[poligonos.tipo=='cuenca'].id.unique()), + 'inicio'] = viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio']+' (cuenca)' + viajes_matrices.loc[ + viajes_matrices.poly_fin.isin( + poligonos[poligonos.tipo== + 'cuenca'].id.unique()), 'fin'] = viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin']+' (cuenca)' + + etapas_agrupadas_zon = etapas_agrupadas_zon.fillna(0) - sum_viajes['factor_expansion_linea'] = 1 - (sum_viajes['factor_expansion_linea'] / etapas_agrupadas_all.groupby(['mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.sum().factor_expansion_linea ) - sum_viajes = sum_viajes.rename(columns={'factor_expansion_linea':'factor_correccion'}) - - etapas_agrupadas_all = etapas_agrupadas_all.merge(sum_viajes) - etapas_agrupadas_all['factor_expansion_linea2'] = etapas_agrupadas_all['factor_expansion_linea'] * etapas_agrupadas_all['factor_correccion'] - etapas_agrupadas_all['factor_expansion_linea2'] = etapas_agrupadas_all['factor_expansion_linea'] - etapas_agrupadas_all['factor_expansion_linea2'] - etapas_agrupadas_all = etapas_agrupadas_all.drop(['factor_correccion', 'factor_expansion_linea'], axis=1) - etapas_agrupadas_all = etapas_agrupadas_all.rename(columns={'factor_expansion_linea2':'factor_expansion_linea'}) - - # # Agrupar a nivel de mes y corregir factor de expansión - sum_viajes = viajes_matrices.groupby(['dia', 'mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.sum().groupby(['mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.mean() - - aggregate_cols = ['id_polygon', - 'poly_inicio', - 'poly_fin', - 'mes', - 'tipo_dia', - 'zona', - 'inicio', - 'fin', - 'transferencia', - 'modo_agregado', - 'rango_hora', - 'genero', - 'tarifa', - 'coincidencias', - 'distancia', - 'orden_origen', - 'orden_destino', - 'Origen', - 'Destino'] - weighted_mean_cols = ['lat1', - 'lon1', - 'lat4', - 'lon4', - 'distance_osm_drive', - 'travel_time_min', - 'travel_speed',] - zero_to_nan = ['lat1', - 'lon1', - 'lat4', - 'lon4'] - - viajes_matrices = calculate_weighted_means(viajes_matrices, - aggregate_cols=aggregate_cols, - weighted_mean_cols=weighted_mean_cols, - weight_col='factor_expansion_linea', - zero_to_nan=zero_to_nan, - var_fex_summed=False) - - sum_viajes['factor_expansion_linea'] = 1 - (sum_viajes['factor_expansion_linea'] / viajes_matrices.groupby(['mes', 'tipo_dia', 'zona'], as_index=False).factor_expansion_linea.sum().factor_expansion_linea ) - sum_viajes = sum_viajes.rename(columns={'factor_expansion_linea':'factor_correccion'}) - - viajes_matrices = viajes_matrices.merge(sum_viajes) - viajes_matrices['factor_expansion_linea2'] = viajes_matrices['factor_expansion_linea'] * viajes_matrices['factor_correccion'] - viajes_matrices['factor_expansion_linea2'] = viajes_matrices['factor_expansion_linea'] - viajes_matrices['factor_expansion_linea2'] - viajes_matrices = viajes_matrices.drop(['factor_correccion', 'factor_expansion_linea'], axis=1) - viajes_matrices = viajes_matrices.rename(columns={'factor_expansion_linea2':'factor_expansion_linea'}) - - if id_polygon == 'NONE': - etapas_agrupadas_all = etapas_agrupadas_all.drop(['id_polygon', - 'poly_inicio_norm', - 'poly_transfer1_norm', - 'poly_transfer2_norm', - 'poly_fin_norm'], axis=1) - - viajes_matrices = viajes_matrices.drop( - ['poly_inicio', - 'poly_fin'], axis=1) + if id_polygon == 'NONE': + + etapas_agrupadas_zon = etapas_agrupadas_zon.drop(['id_polygon', + 'poly_inicio_norm', + 'poly_transfer1_norm', + 'poly_transfer2_norm', + 'poly_fin_norm'], axis=1) - if len(poligonos[poligonos.tipo=='cuenca'])>0: - - etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_inicio_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_inicio_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio_norm']+' (cuenca)' - etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer1_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer1_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer1_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer1_norm']+' (cuenca)' - etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer2_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer2_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_transfer2_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'transfer2_norm']+' (cuenca)' - etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_fin_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin_norm'] = etapas_agrupadas_all.loc[etapas_agrupadas_all.poly_fin_norm.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin_norm']+' (cuenca)' - viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Origen'] = viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Origen']+' (cuenca)' - viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Destino'] = viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'Destino']+' (cuenca)' - viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio'] = viajes_matrices.loc[viajes_matrices.poly_inicio.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'inicio']+' (cuenca)' - viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin'] = viajes_matrices.loc[viajes_matrices.poly_fin.isin(poligonos[poligonos.tipo=='cuenca'].id.unique()), 'fin']+' (cuenca)' - - return etapas_agrupadas_all, etapas_sin_agrupar, viajes_matrices, zonificaciones + viajes_matrices = viajes_matrices.drop( + ['poly_inicio', + 'poly_fin'], axis=1) + + guardar_tabla_sql(etapas_agrupadas_zon, + 'agg_etapas', + 'dash', + {'mes': etapas_agrupadas_zon.mes.unique().tolist(), + 'zona': etapas_agrupadas_zon.zona.unique().tolist()}) + + guardar_tabla_sql(viajes_matrices, + 'agg_matrices', + 'dash', + {'mes': viajes_matrices.mes.unique().tolist(), + 'zona': viajes_matrices.zona.unique().tolist()}) + else: + guardar_tabla_sql(etapas_agrupadas_zon, + 'poly_etapas', + 'dash', + {'mes': etapas_agrupadas_zon.mes.unique().tolist(), + 'zona': etapas_agrupadas_zon.zona.unique().tolist(), + 'id_polygon': etapas_agrupadas_zon.id_polygon.unique().tolist()}) + + guardar_tabla_sql(viajes_matrices, + 'poly_matrices', + 'dash', + {'mes': viajes_matrices.mes.unique().tolist(), + 'zona': viajes_matrices.zona.unique().tolist(), + 'id_polygon': viajes_matrices.id_polygon.unique().tolist()}) + + +### return etapas_agrupadas_zon, viajes_matrices, zonificaciones def proceso_poligonos(check_configs=True): @@ -1420,22 +1486,20 @@ def proceso_poligonos(check_configs=True): etapas_selec, viajes_selec, polygons, polygons_h3 = select_cases_from_polygons( etapas[etapas.od_validado == 1], viajes[viajes.od_validado == 1], poligonos, res=res) - etapas_agrupadas, etapas_sin_agrupar, viajes_matrices, zonificaciones = preparo_lineas_deseo( - etapas_selec, viajes_selec, polygons_h3, poligonos=poligonos, res=[6]) + preparo_lineas_deseo(etapas_selec, viajes_selec, polygons_h3, poligonos=poligonos, res=[6]) indicadores = construyo_indicadores(viajes_selec, poligonos=True) - etapas_agrupadas = etapas_agrupadas.fillna(0) - guardar_tabla_sql(etapas_agrupadas, - 'poly_etapas', - 'dash', - {'mes': etapas_agrupadas.mes.unique().tolist()}) + ## guardar_tabla_sql(etapas_agrupadas, + ## 'poly_etapas', + ## 'dash', + ## {'mes': etapas_agrupadas.mes.unique().tolist()}) - guardar_tabla_sql(viajes_matrices, - 'poly_matrices', - 'dash', - {'mes': viajes_matrices.mes.unique().tolist()}) + ## guardar_tabla_sql(viajes_matrices, + ## 'poly_matrices', + ## 'dash', + ## {'mes': viajes_matrices.mes.unique().tolist()}) guardar_tabla_sql(indicadores, 'poly_indicadores', @@ -1457,8 +1521,7 @@ def proceso_lineas_deseo(check_configs=False): etapas, viajes = load_and_process_data() - etapas_agrupadas, etapas_sin_agrupar, viajes_matrices, zonificaciones = preparo_lineas_deseo( - etapas, viajes, res=[6]) + preparo_lineas_deseo(etapas, viajes, res=[6]) indicadores = construyo_indicadores(viajes, poligonos=False) @@ -1466,16 +1529,16 @@ def proceso_lineas_deseo(check_configs=False): print('Guardo datos para dashboard') - etapas_agrupadas = etapas_agrupadas.fillna(0) - guardar_tabla_sql(etapas_agrupadas, - 'agg_etapas', - 'dash', - {'mes': etapas_agrupadas.mes.unique().tolist()}) + ## guardar_tabla_sql(etapas_agrupadas, + ## 'agg_etapas', + ## 'dash', + ## {'mes': etapas_agrupadas.mes.unique().tolist()}) + + ## guardar_tabla_sql(viajes_matrices, + ## 'agg_matrices', + ## 'dash', + ## {'mes': viajes_matrices.mes.unique().tolist()}) - guardar_tabla_sql(viajes_matrices, - 'agg_matrices', - 'dash', - {'mes': viajes_matrices.mes.unique().tolist()}) guardar_tabla_sql(indicadores, 'agg_indicadores', 'dash', @@ -1486,7 +1549,7 @@ def proceso_lineas_deseo(check_configs=False): 'dash', {'mes': socio_indicadores.mes.unique().tolist()}) - e_agg, v_agg = preparo_etapas_agregadas(etapas, viajes) + e_agg, v_agg, transfers = preparo_etapas_agregadas(etapas, viajes) guardar_tabla_sql(e_agg, 'etapas_agregadas', 'dash', @@ -1497,4 +1560,9 @@ def proceso_lineas_deseo(check_configs=False): 'dash', {'mes': v_agg.mes.unique().tolist()}) + guardar_tabla_sql(transfers, + 'transferencias_agregadas', + 'dash', + {'mes': v_agg.mes.unique().tolist()}) + imprimo_matrices_od() From 49ba3667a9e0de96a1cfb727adb386506f23ff8e Mon Sep 17 00:00:00 2001 From: alephcero Date: Thu, 21 Nov 2024 17:35:14 -0300 Subject: [PATCH 12/18] UPdate env --- requirements.txt | 58 ++++++++++++++++++++++++------------------------ setup.py | 3 +-- 2 files changed, 30 insertions(+), 31 deletions(-) diff --git a/requirements.txt b/requirements.txt index 237495b..0490eca 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,34 +1,34 @@ -contextily==1.4.0 -folium==0.14.0 -geopandas==0.14.0 -fiona==1.9.6 -h3==3.7.6 -ipython==8.16.1 -jupyterlab==4.0.6 -libpysal==4.8.0 -mapclassify==2.6.1 -matplotlib==3.8.3 +contextily==1.6.2 +folium==0.18.0 +geopandas==1.0.1 +fiona==1.10.1 +h3==3.7.7 +httpcore==1.* +ipython==8.29.0 +jupyterlab==4.3.1 +libpysal==4.12.1 +mapclassify==2.8.1 +matplotlib==3.10.0rc1 matplotlib-scalebar==0.8.1 -notebook==7.0.4 -numba==0.58.0 -numpy==1.25.2 -openpyxl==3.1.2 -osmnx==1.8.0 -pandas==2.1.1 +notebook==7.3.0rc0 +numba==0.60.0 +numpy==1.26.4 +openpyxl==3.2.0b1 +osmnx==2.0.0rc2 +pandas==2.2.3 pandana==0.7 -patsy==0.5.3 -Pillow==9.5.0 -plotly==5.17.0 -python-pptx==0.6.22 -PyYAML==6.0.1 -pysal==24.1 -seaborn==0.13.0 -shapely==2.0.1 -statsmodels==0.14.0 -streamlit==1.27.2 -streamlit-folium==0.15.0 +patsy==1.0.1 +pillow==10.4.0 +plotly==5.24.1 +python-pptx==1.0.2 +PyYAML==6.0.2 +seaborn==0.13.2 +shapely==2.0.6 +statsmodels==0.14.4 +streamlit==1.40.1 +streamlit_folium==0.23.2 weightedstats==0.4.1 -OSMnet==0.1.7 -anyio<4 +osmnet==0.1.7 +anyio==4.6.2.post1 platformdirs==4.2.2 typing_extensions==4.12.2 diff --git a/setup.py b/setup.py index 2d287da..5909754 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ 'fiona', 'h3<4', 'ipython', - 'jupyterlab', + 'jupyterlab<4.4', 'jupyter', 'libpysal', 'mapclassify', @@ -57,6 +57,5 @@ 'typing_extensions', 'weightedstats', 'OSMnet', - 'httpcore==0.13.3' ] ) From 25e2d3a3394cb011b29f0e0376a675868ce55746 Mon Sep 17 00:00:00 2001 From: alephcero Date: Thu, 21 Nov 2024 17:35:24 -0300 Subject: [PATCH 13/18] Add metadata and routes geoms to sample data --- configs/configuraciones_generales_2019_m1.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/configuraciones_generales_2019_m1.yaml b/configs/configuraciones_generales_2019_m1.yaml index 73162a1..732bc99 100644 --- a/configs/configuraciones_generales_2019_m1.yaml +++ b/configs/configuraciones_generales_2019_m1.yaml @@ -63,7 +63,7 @@ nombres_variables_gps: servicios_gps: # Indica cuando se abre y cierra un servicio # Información para procesamiento de líneas -nombre_archivo_informacion_lineas: "lineas.csv" # Archivo .csv con lineas, debe contener ("id_linea", "nombre_linea", "modo") +nombre_archivo_informacion_lineas: "metadata_amba_2019_m1.csv" # Archivo .csv con lineas, debe contener ("id_linea", "nombre_linea", "modo") lineas_contienen_ramales: False # Especificar si las líneas de colectivo contienen ramales nombre_archivo_paradas: imprimir_lineas_principales: 5 # Imprimir las lineas principales - "All" imprime todas las líneas @@ -84,7 +84,7 @@ modos: otros: # Capas geográficas con recorridos de líneas -recorridos_geojson: # archivo geojson con el trazado de las líneas de transporte público +recorridos_geojson: "recorridos_2019_linea_unica_m1.geojson" # archivo geojson con el trazado de las líneas de transporte público filtro_latlong_bbox: minx: -59.3 From b5e9d76fd2fa2829e4c5b503b2bdae845a1aff9a Mon Sep 17 00:00:00 2001 From: alephcero Date: Thu, 21 Nov 2024 17:37:23 -0300 Subject: [PATCH 14/18] Add routes and metadata for sample data --- data/data_ciudad/metadata_amba_2019_m1.csv | 1492 +++++++++++++++++ .../recorridos_2019_linea_unica_m1.geojson | 308 ++++ 2 files changed, 1800 insertions(+) create mode 100644 data/data_ciudad/metadata_amba_2019_m1.csv create mode 100644 data/data_ciudad/recorridos_2019_linea_unica_m1.geojson diff --git a/data/data_ciudad/metadata_amba_2019_m1.csv b/data/data_ciudad/metadata_amba_2019_m1.csv new file mode 100644 index 0000000..d2d470f --- /dev/null +++ b/data/data_ciudad/metadata_amba_2019_m1.csv @@ -0,0 +1,1492 @@ +id_linea,nombre_linea,modo,id_ramal,nombre_ramal,ramal,provincia,municipio,id_linea_agg,nombre_linea_agg +16,FFCC ROCA,TRE,380,CONS LA PLATA,,JN,JN,, +16,FFCC ROCA,TRE,283,CONS KORN,,JN,JN,, +16,FFCC ROCA,TRE,282,CONS BOSQUES,,JN,JN,, +16,FFCC ROCA,TRE,281,CONS EZEIZA CAN,,JN,JN,, +16,FFCC ROCA,TRE,16,CONS GUT,,JN,JN,, +44,FFCC BELGRANO SUR,TRE,403,BELG_SUR,RAMAL BELGRANO SUR MARINOS,JN,JN,, +44,FFCC BELGRANO SUR,TRE,44,BELG_SUR,RAMAL BELGRANO SUR CATAN,JN,JN,, +135,FFCC TREN DE LA COSTA,TRE,135,TDC_IDA,TDC_IDA,JN,JN,, +144,FFCC SARMIENTO,TRE,144,RAMAL_SA,RAMAL TBA SARMIENTO,JN,JN,, +144,FFCC SARMIENTO,TRE,133,RAMAL_SA,RAMAL SARMIENTO DIESEL MORENO - MERCEDES (DIESEL),JN,JN,, +144,FFCC SARMIENTO,TRE,132,RAMAL_SA,RAMAL SARMIENTO DIESEL MERLO - LOBOS (DIESEL),JN,JN,, +149,FFCC URQUIZA,TRE,149,RAMAL_U,RAMAL URQUIZA,JN,JN,, +174,FFCC MITRE,TRE,175,RAMAL_ZA,RAMAL ZARATE (DIESEL),JN,JN,, +174,FFCC MITRE,TRE,174,RAMAL_CA,RAMAL CAPILLA DEL SENOR (DIESEL),JN,JN,, +174,FFCC MITRE,TRE,172,RAMAL_MI,RAMAL MITRE,JN,JN,, +174,FFCC MITRE,TRE,160,RAMAL_TI,RAMAL TIGRE,JN,JN,, +174,FFCC MITRE,TRE,49,RAMAL_SU,RAMAL SUAREZ,JN,JN,, +196,FFCC BELGRANO NORTE,TRE,196,BELG_NOR,RAMAL GENERAL BELGRANO,JN,JN,, +284,FFCC SAN MARTIN,TRE,284,RAMAL_S_,RAMAL TREN SAN MARTIN,JN,JN,, +32,SUBTE PREMETRO,SUB,367,PREMETRO,RAMAL_PREMETRO,JN,JN,, +32,SUBTE PREMETRO,SUB,269,LINEA C,RAMAL LINEA C,JN,JN,, +32,SUBTE PREMETRO,SUB,220,LINEA H,RAMAL LINEA H,JN,JN,, +32,SUBTE PREMETRO,SUB,148,LINEA E,RAMAL LINEA E,JN,JN,, +32,SUBTE PREMETRO,SUB,54,LINEA D,RAMAL LINEA D,JN,JN,, +32,SUBTE PREMETRO,SUB,33,LINEA B,RAMAL LINEA B,JN,JN,, +32,SUBTE PREMETRO,SUB,32,LINEA A,RAMAL LINEA A,JN,JN,, +1,LINEA 244,COL,1,244A,EST MORON-RUTA 202 Y PANAMERICANA,BUENOS AIRES,PROV,, +1,LINEA 244,COL,1,244B,EST MORON-BUEN AIRE Y PANAMERICANA,BUENOS AIRES,PROV,, +1,LINEA 244,COL,1,244C,EST MORON-LAVALLE,BUENOS AIRES,PROV,, +2,LINEA 501C,COL,2,501CA,CEMENTERIO-CAMPANA,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +2,LINEA 501C,COL,2,501CB,SANTA LUCIA-LAUDA,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +2,LINEA 501C,COL,2,501CC,CEMENTERIO POR ALSINA,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +2,LINEA 501C,COL,2,501CD,B LA VICTORIA,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +2,LINEA 501C,COL,2,501CE,ESCUELA 13-JAGUEL SIGLOXX,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +2,LINEA 501C,COL,2,501CF,RAMAL COUNTRY,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +2,LINEA 501C,COL,2,501CG,ALEM-PIAL,BUENOS AIRES,ESTEBAN ECHEVERRIA,, +3,LINEA 71,COL,3,071A,PLAZA DE MISERERE (CABA) - ESTACION VILLA ADELINA (PDO DE VTE LOPEZ - PCIA DE BS AS) (por C LARRALDE y AV MAIPU),JN,JN,, +3,LINEA 71,COL,3,071B,PLAZA DE MISERERE (CABA) - ESTACION VILLA ADELINA (PDO DE VTE LOPEZ - PCIA DE BS AS) (por AUT PALAZZO),JN,JN,, +3,LINEA 71,COL,3,071C,PLAZA DE MISERERE (CABA) - ESTACION VILLA ADELINA (PDO DE VTE LOPEZ - PCIA DE BS AS) (por AVENIDA CONGRESO y AVENIDA MAIPU),JN,JN,, +4,LINEA 111,COL,4,111A,(por VILLA CONCEPCION) CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - ITALIA N 7353 (PARTIDO DE GENERAL SAN MARTIN - BS AS),JN,JN,, +4,LINEA 111,COL,4,111B,B (por AVENIDA DE LOS CONSTITUYENTES) CARLOS CALVO y AZOPARDO (CABA) - ITALIA N 7353 (PARTIDO DE GENERAL SAN MARTIN - BS AS),JN,JN,, +4,LINEA 111,COL,4,111C,(por VILLA CONCEPCION y PARAGUAY) CARLOS CALVO y AZOPARDO (CABA) - ITALIA N 7353 (PARTIDO DE GENERAL SAN MARTIN - BS AS),JN,JN,, +4,LINEA 111,COL,4,111D,D CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +4,LINEA 111,COL,4,111E,E CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA DE LOS CONSTITUYENTES y AVENIDA GENERAL PAZ (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +4,LINEA 111,COL,4,111F,F (por PARAGUAY) CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - 2 AVENIDA DE LOS CONSTITUYENTES y AVENIDA GENERAL PAZ (CABA),JN,JN,, +5,LINEA 269,COL,5,269A,MORON - LEMOS POR HOSPITAL,BUENOS AIRES,PROV,, +5,LINEA 269,COL,5,269B,MORON - LEMOS POR CRUCE CASTELAR,BUENOS AIRES,PROV,, +5,LINEA 269,COL,5,269C,EST MORON - EST MORENO,BUENOS AIRES,PROV,, +5,LINEA 269,COL,5,269D,EST MORON - VILLA LEON,BUENOS AIRES,PROV,, +5,LINEA 269,COL,5,269E,MORON - LEMOS POR LOMAS DE MARILO,BUENOS AIRES,PROV,, +5,LINEA 269,COL,5,269F,MORON - LAS CATONAS,BUENOS AIRES,PROV,, +6,LINEA 24,COL,6,024A,ESTACION VILLA DEL PARQUE - CEMENTERIO AVELLANEDA (POR CEMENTERIO),JN,JN,, +6,LINEA 24,COL,6,024B,ESTACION VILLA DEL PARQUE - CEMENTERIO AVELLANEADA (POR WILDE),JN,JN,, +6,LINEA 24,COL,6,024C,024C V DEL PARQUE-A DEL VALLE Y PATRICIOS,JN,JN,, +7,LINEA 78,COL,7,078A,CHACARITA - VILLA ADELINA (POR ESTACION BALLESTER),JN,JN,, +7,LINEA 78,COL,7,078B,CHACARITA - VILLA ADELINA (POR ESTACION CHILAVERT),JN,JN,, +7,LINEA 78,COL,7,078C,CHACARITA - LOMA HERMOSA,JN,JN,, +8,LINEA 365,COL,8,365R1,RAMAL 1 SAAVEDRA - STEFANI POR SAN MIGUEL,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R10,RAMAL 10 CARUPA - STEFANI POR CRUCE,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R11,RAMAL 11 SAAVEDRA - LUJAN POR CRUCE,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R12,RAMAL 12 SAAVEDRA - LUJAN POR SAN MIGUEL,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R13,RAMAL 13 SAAVEDRA - LUJAN POR PANAMERICANA,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R14,RAMAL 14 SAAVEDRA - B NAMUNCURA POR PANAMERICANA,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R2,RAMAL 2 SAAVEDRA - STEFANI POR RUTA 197 CRUCE,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R3,RAMAL 3 SAAVEDRA- STEFANI POR PANAMERICANA,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R4,RAMAL 4 SAAVEDRA- DERQUI POR VUCETICH,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R5,RAMAL 5 SAAVEDRA DERQUI POR SAAVEDRA LAMAS,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R6,RAMAL 6 LEMOS- LUJAN,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R7,RAMAL 7 JOSE C PAZ - DERQUI POR SAAVEDRA LAMAS,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R8,RAMAL 8 JOSE C PAZ - BNAMUNCURA,BUENOS AIRES,PROV,, +8,LINEA 365,COL,8,365R9,RAMAL 9 PANAMERICANA Y RUTA 197- STEFANI POR CRUCE,BUENOS AIRES,PROV,, +9,LINEA 87,COL,9,087A,CHACARITA - SAN MARTIN (POR AUTOPISTA),JN,JN,, +9,LINEA 87,COL,9,087B,CHACARITA - SAN MARTIN,JN,JN,, +9,LINEA 87,COL,9,087C,CHACHARITA - BARRIO SAN ISIDRO,JN,JN,, +10,LINEA 634,COL,10,634A,ESTACION MERLO GOMEZ-PALOMAR,BUENOS AIRES,MORON,, +10,LINEA 634,COL,10,634B,ALESSANDRI,BUENOS AIRES,MORON,, +10,LINEA 634,COL,10,634C,BARRIO SAN JUAN-PATAGONES Y DON BOSCO,BUENOS AIRES,MORON,, +10,LINEA 634,COL,10,634D,PALOMAR-BARRIO GAONA,BUENOS AIRES,MORON,, +11,LINEA 53,COL,11,053A,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - SAN MIGUEL (PARTIDO DE SAN MIGUEL - PROVINCIA DE BUENOS AIRES),JN,JN,, +11,LINEA 53,COL,11,053B,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - AEROPUERTO EL PALOMAR- PARTIDO DE MORON - PROVINCIA DE BUENOS A,JN,JN,, +11,LINEA 53,COL,11,053C,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - JOSE C PAZ (PARTIDO DE JOSE C PAZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +11,LINEA 53,COL,11,053D,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA NAZCA y AVENIDA RIVADAVIA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +11,LINEA 53,COL,11,053E,PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - JOSE C PAZ (PARTIDO DE JOSE C PAZ - PROVINCIA DE BS AS) EXPRESO por AUTOPISTA 25 DE MAYO,JN,JN,, +12,LINEA 140,COL,12,140A,A CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BOULOGNE (LINEA MITRE-PARTIDO DE SAN ISIDRO - PROVINCIA DE BUENOS AIRES),JN,JN,, +12,LINEA 140,COL,12,140B,B CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA ALVAREZ THOMAS y AVENIDA FEDERICO LACROZE (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +12,LINEA 140,COL,12,140C,C CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION GENERAL URQUIZA (LINEA MITRE-CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +12,LINEA 140,COL,12,140D,D CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA CONGRESO y BUCARELLI (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +13,LINEA 303,COL,13,303A,Est Moron-Colectora Pta 2 Ford,BUENOS AIRES,PROV,, +14,LINEA 504 ITUZAINGO,COL,14,504RA,RECORRIDO A,BUENOS AIRES,ITUZAINGO,, +15,LINEA 245,COL,15,245A,BARRIO LINDO,BUENOS AIRES,PROV,, +17,LINEA 127,COL,17,127A,PLAZA MARTIN FIERRO - COLECTORA PANAMERICANA Y RUTA 202,JN,JN,, +18,LINEA 394,COL,18,394R1,RECORRIDO 1,BUENOS AIRES,PROV,, +18,LINEA 394,COL,18,394R2,RECORRIDO 2,BUENOS AIRES,PROV,, +18,LINEA 394,COL,18,394R3,RECORRIDO 3,BUENOS AIRES,PROV,, +19,LINEA 395,COL,19,395A,ESTACION MORON - ITUZAINGO - VILLA LAS NACIONES,BUENOS AIRES,PROV,, +19,LINEA 395,COL,19,395B,ESTACION CASTELAR - VILLA LEON - ITUZAINGO / SANTA CECILIA,BUENOS AIRES,PROV,, +19,LINEA 395,COL,19,395C,ESTACION MORON - ITUZAINGO,BUENOS AIRES,PROV,, +20,LINEA 184,COL,20,184A,CHACARITA(CABA)-ESTVILLA ADELINA(FFCC BELGRANO NORTE) GBA,JN,JN,, +21,LINEA 219,COL,21,219R3N,RAMAL 3 NEGRO,BUENOS AIRES,PROV,, +21,LINEA 219,COL,21,219R3R,RAMAL 3 ROJO - EL CARMEN,BUENOS AIRES,PROV,, +21,LINEA 219,COL,21,219R5,RAMAL 5,BUENOS AIRES,PROV,, +22,LINEA 320,COL,22,320A,Est Moron-Est Martin Coronado,BUENOS AIRES,PROV,, +23,LINEA 390,COL,23,390A,Est Moron-Reconquista y Gral Paz,BUENOS AIRES,PROV,, +24,LINEA 36,COL,24,036A,PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA CELINA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +24,LINEA 36,COL,24,036B,PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES) - PUENTE DE LA NORIA (PARTIDO DE LOMAS DE ZAMORA - PROVINCIA DE BUENOS AIRES),JN,JN,, +25,LINEA 300,COL,25,300ANT,RAMAL A X ANTARTIDA ARGENTINA,BUENOS AIRES,PROV,, +25,LINEA 300,COL,25,300ASEV,RAMAL A POR SEVILLA,BUENOS AIRES,PROV,, +25,LINEA 300,COL,25,300B1,RAMAL B1,BUENOS AIRES,PROV,, +26,LINEA 501D,COL,26,501DA,TERMINAL-BCELESTE Y BLANCO,BUENOS AIRES,LOBOS,, +26,LINEA 501D,COL,26,501DB,LOBOS-SDORMARIA,BUENOS AIRES,LOBOS,, +27,LINEA 152,COL,27,152A,A LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - OLIVOS (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +27,LINEA 152,COL,27,152B,B LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BARTOLOME MITRE (LINEA MITRE - PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +27,LINEA 152,COL,27,152C,EXPRESO C LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - OLIVOS (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +29,LINEA 443A,COL,29,443ABA,Ramal Villa Club por Fabrica Scholnik - Est Moron-Granaderos y Vergara,BUENOS AIRES,PROV,, +29,LINEA 443A,COL,29,443ABB,RAMAL 2 - Estacion MorOn por Barrio El Libertador,BUENOS AIRES,PROV,, +29,LINEA 443A,COL,29,443ABC,443C- MORON - RUBEN DARIO,BUENOS AIRES,PROV,, +29,LINEA 443A,COL,29,443ABD,EstaciOn MorOn por Barrio Gaona,BUENOS AIRES,PROV,, +30,LINEA 222,COL,30,222A,EZEIZA - MAXIMO PAZ,BUENOS AIRES,PROV,, +31,LINEA 141,COL,31,141A,A (por PIEDRABUENA) PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA ALBERTINA (PARTIDO DE LOMAS DE ZAMORA - PROVINCIA DE BUENOS AIRES),JN,JN,, +31,LINEA 141,COL,31,141B,B (por BARRIO GENERAL SAVIO) PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA ALBERTINA (PARTIDO DE LOMAS DE ZAMORA - PROVINCIA DE BUENOS AIRES),JN,JN,, +31,LINEA 141,COL,31,141C,C EXPRESO (sobre A y B) PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA ALBERTINA (PDO DE LOMAS DE ZAMORA-GBA),JN,JN,, +34,LINEA 133,COL,34,133A,A BARRACAS (CIUDAD AUTONOMA DE BUENOS AIRES) - FLORIDA (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +34,LINEA 133,COL,34,133B,B BARRACAS (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA GAONA y AVENIDA NAZCA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +34,LINEA 133,COL,34,133C,C ESTACION GENERAL URQUIZA (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES) - FLORIDA (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +34,LINEA 133,COL,34,133D,D BARRACAS (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION DE TRANSFERENCIA DE VICENTE LOPEZ (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +35,LINEA 306,COL,35,306A,SPEGAZZINI - ROTONDA SAN JUSTO,BUENOS AIRES,PROV,, +35,LINEA 306,COL,35,306B,SPEGAZZINI PUENTE LA NORIA,BUENOS AIRES,PROV,, +35,LINEA 306,COL,35,306C,PEGAZZINI - PUENTE LA NORIA POR FAIR,BUENOS AIRES,PROV,, +35,LINEA 306,COL,35,306D,SPEGAZZINI - PUENTE LA NORIA POR FAIR - AU RICCHIERI,BUENOS AIRES,PROV,, +35,LINEA 306,COL,35,306E,PUENTE LA NORIA - EL GAUCHO TRASRADIO,BUENOS AIRES,PROV,, +35,LINEA 306,COL,35,306F,PUENTE LA NORIA - ZAIZAR,BUENOS AIRES,PROV,, +35,LINEA 306,COL,35,306G,PUENTE LA NORIA - LA ESPERANZA,BUENOS AIRES,PROV,, +36,LINEA 461,COL,36,461A,A_X BONORINO,BUENOS AIRES,PROV,, +36,LINEA 461,COL,36,461B,Troncal,BUENOS AIRES,PROV,, +37,LINEA 462,COL,37,462A,Est Moron-Uspallata y Necochea,BUENOS AIRES,PROV,, +38,LINEA 463,COL,38,463A,Barrio Destino,BUENOS AIRES,PROV,, +38,LINEA 463,COL,38,463B,Acassuso,BUENOS AIRES,PROV,, +38,LINEA 463,COL,38,463C,Desdoblamiento por Juramento,BUENOS AIRES,PROV,, +38,LINEA 463,COL,38,463D,Desdoblamiento por Ruben Dario,BUENOS AIRES,PROV,, +39,LINEA 372,COL,39,372A,RAMAL QUILMES - BOSQUES,BUENOS AIRES,PROV,, +40,LINEA 584,COL,40,584A,MONTEVIDEO Y CAMINO GRAL BELGRANO-FLORENCIO VARELA Y CALCHAQUI,BUENOS AIRES,QUILMES,, +41,LINEA 159,COL,41,159A,A-A CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - ROTONDA JUAN MARIA GUTIERREZ (PARTIDO DE FLORENCIO VARELA - PROVINCIA DE BUENOS AIRES,JN,JN,, +41,LINEA 159,COL,41,159B,B (por AV LA PLATA) CENTRO CULTURAL KIRCHNER (CABA)-ROTONDA JUAN MARIA GUTIERREZ (PARTIDO DE FLORENCIO VARELA),JN,JN,, +41,LINEA 159,COL,41,159C,C CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - PUEBLO NUEVO (PARTIDO DE BERAZATEGUI - PROVINCIA DE BUENOS AIRES),JN,JN,, +41,LINEA 159,COL,41,159D,D (por AVGENERAL BARTOLOME MITRE) CENTRO CULTURAL KIRCHNER (CABA) - CRUCE FLORENCIO VARELA (PARTIDO DE FLORENCIO VARELA) GBA,JN,JN,, +41,LINEA 159,COL,41,159E,E CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BERAZATEGUI (LINEA ROCA - PARTIDO DE BERAZATEGUI - PROVINCIA DE BUENOS AIRES),JN,JN,, +41,LINEA 159,COL,41,159F,F CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO GRAFICO (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES),JN,JN,, +41,LINEA 159,COL,41,159G,G (por GENERAL VILLEGAS) CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - CRUCE FLORENCIO VARELA (PARTIDO DE FLORENCIO VARELA - GBA,JN,JN,, +41,LINEA 159,COL,41,159H,H EXPRESO -CENTRO CULTURAL KIRCHNER (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO GRAFICO (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES),JN,JN,, +41,LINEA 159,COL,41,159I,I (por AU-BSAS-LA PLATA y ACCSUDESTE TTE GRAL JUAN DPERON) -CENTRO CULTURAL KIRCHNER(CABA)-ESTQUILMES(FFCC ROCA)-GBA,JN,JN,, +41,LINEA 159,COL,41,159J,J (por AUBS AS-LA PLATA)-Sobre R-A CENTRO CULTURAL KIRCHNER(CABA)-EST BERAZATEGUI (FFCC ROCA)-GBA,JN,JN,, +41,LINEA 159,COL,41,159K,K (por AUBSAS-LA PLATA) CENTRO CULTURAL KIRCHNER (CABA)-ex-MALTERIA HUDSON (PDO BERAZATEGUI-GBA),JN,JN,, +42,LINEA 464,COL,42,464A,Ramal por Cinturon Ecologico,BUENOS AIRES,PROV,, +42,LINEA 464,COL,42,464B,Troncal por Martin Fierro,BUENOS AIRES,PROV,, +42,LINEA 464,COL,42,464C,Ramalizacion por San Damian,BUENOS AIRES,PROV,, +42,LINEA 464,COL,42,464D,D_FELIX FRIAS,BUENOS AIRES,PROV,, +43,LINEA 505 AMBA ALMIRANTE BROWN,COL,43,505R3,R3-SAN FRANCISCO SOLANO(ALMTE BROWN)-ESTACION BURZACO(ALMTE BROWN)x VASCO NUNEZ DE BALBOA,BUENOS AIRES,ALMIRANTE BROWN,, +43,LINEA 505 AMBA ALMIRANTE BROWN,COL,43,505R4,R4-SAN FRANCISCO SOLANO(ALMTE BROWN)-ESTACION ADROGUE(ALMTE BROWN),BUENOS AIRES,ALMIRANTE BROWN,, +43,LINEA 505 AMBA ALMIRANTE BROWN,COL,43,505R5,R5-SAN FRANCISCO SOLANO(ALMTE BROWN)-ESTACION BURZACO(ALMTE BROWN)x LEROUX,BUENOS AIRES,ALMIRANTE BROWN,, +43,LINEA 505 AMBA ALMIRANTE BROWN,COL,43,505R6,R6-SAN FRANCISCO SOLANO(ALMTE BROWN)-ESTACION CLAYPOLE(ALMTE BROWN),BUENOS AIRES,ALMIRANTE BROWN,, +45,LINEA 2,COL,45,002A,ADUANA (CIUDAD AUTONOMA DE BUENOS AIRES) - LAS HERAS y AVENIDA EVA PERON (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +45,LINEA 2,COL,45,002B,CENTRAL COSTANERA SOCIEDAD ANONIMA (CIUDAD AUTONOMA DE BUENOS AIRES) - LAS HERAS y AVENIDA EVA PERON (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRE,JN,JN,, +46,LINEA 7,COL,46,007A,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - PARQUE NICOLAS AVELLANEDA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +46,LINEA 7,COL,46,007B,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO SAMORE (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +47,LINEA 501 A,COL,47,501A1,RAMAL 1,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A2,RAMAL 2,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A3,RAMAL 3,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A4-1,RAMAL 4,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A4-2,RAMAL 5,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A5,RAMAL 6,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A6,RAMAL 7,BUENOS AIRES,ALMIRANTE BROWN,, +47,LINEA 501 A,COL,47,501A7,RAMAL 8,BUENOS AIRES,ALMIRANTE BROWN,, +48,LINEA 39,COL,48,039A,CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRACAS (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +48,LINEA 39,COL,48,039B,CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRACAS (CIUDAD AUTONOMA DE BUENOS AIRES) (por COLEGIALES),JN,JN,, +48,LINEA 39,COL,48,039C,CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRACAS (CIUDAD AUTONOMA DE BUENOS AIRES) (por PALERMO VIEJO),JN,JN,, +48,LINEA 39,COL,48,039D,CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA DE LA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +48,LINEA 39,COL,48,039E,CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA DE LA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) (por COLEGIALES),JN,JN,, +48,LINEA 39,COL,48,039F,CHACARITA (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA DE LA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) (por PALERMO VIEJO),JN,JN,, +50,LINEA 102,COL,50,102A,AV PATRICIOS Y ROCHA-CASARES Y GELLY,JN,JN,, +51,LINEA OESTE,COL,51,OE-RN,OESTE RONDIN,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE10,ZONA OESTE-RAMAL 10,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE11,RAMAL 11,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE14,RAMAL 14,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE15,RAMAL 15,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE16,RAMAL 16,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE16V,RAMAL 16(V),BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE17,RAMAL 17,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE18,RAMAL 18,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE19,RAMAL 19,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE22,RAMAL 22,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE23,RAMAL 23,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE24,RAMAL 24,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE26,RAMAL 26,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE27,RAMAL 27,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE61,RAMAL 61,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE61V,RAMAL 61(V),BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE62,RAMAL 62,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE64,OESTE 64,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE65,RAMAL 65,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE66,RAMAL 66,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE81,RAMAL 81,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE83,RAMAL 83,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE84,RAMAL 84,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE85,RAMAL 85,BUENOS AIRES,LA PLATA,, +51,LINEA OESTE,COL,51,OE86,RAMAL 86,BUENOS AIRES,LA PLATA,, +52,LINEA 620,COL,52,620R1,RAMAL 1 AV GENERAL PAZ - KM 47,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R10,RAMAL10 AV GENERAL PAZ - B SAN PEDRO,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R11,RAMAL 11 AV GENERAL PAZ - GONZALEZ CATAN POR V SCASSO,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R12,RAMAL12 AV GENERAL PAZ - R MEJIA - V DORREGO,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R13,RAMAL13 AV GENERAL PAZ - R MEJIA - KM 47,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R14,RAMAL14 AV GENERAL PAZ - R MEJIA - B BORGWARD,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R2,RAMAL 2 AV GENERAL PAZ - BARRIO FORESTA,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R3,RAMAL 3 AV GENERAL PAZ - BARRIO INDEPENDENCIA,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R4,RAMAL 4 AV GENERAL PAZ - VILLA DORREGO,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R5,RAMAL 5 AV GENERAL PAZ - VILLA SCASSO POR LAFERRERE,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R6,RAMAL 6 AV GENERAL PAZ - B LOS CEIBOS,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R7,RAMAL 7 AV GENERAL PAZ - B LOS CEIBOS POR GONZALEZ CATAN,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R8,RAMAL8 AV GENERAL PAZ - KM 38 POR G CATAN Y BARRIO ESPERANZA,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620R9,RAMAL9 AV GENERAL PAZ - KM 39 POR BARRIO ESPERANZA,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620Ro1,RONDIN 1 GONZALEZ CATAN - L CEIBOS X EQUIZA,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620Ro2,RONDIN 2 GONZALEZ CATAN - LOS CEIBOS X DRAGONES,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620Ro3,RONDIN 3 G CATAN - B SAN PEDRO,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620Ro4,RONDIN 4 G CATAN - V DORREGO,BUENOS AIRES,LA MATANZA,, +52,LINEA 620,COL,52,620T,AVGRAL PAZ-RN 3 KM47700,BUENOS AIRES,LA MATANZA,, +53,LINEA 176,COL,53,176A,RAMAL 1,JN,JN,, +53,LINEA 176,COL,53,176B,176B CHACARITA-EST ESCOBAR(X PUERTA 4 Y L- TORRE),JN,JN,, +53,LINEA 176,COL,53,176C,176C CHACARITA-PILAR(X PUERTA 4),JN,JN,, +53,LINEA 176,COL,53,176D,176D CHACARITA-CRUCE JOSE C PAZ(X PUERTA 4),JN,JN,, +53,LINEA 176,COL,53,176E,176E CHACARITA-EST TORTUGUITAS(X PUERTA 4 Y BROCH),JN,JN,, +53,LINEA 176,COL,53,176F,176F CHACARITA-FONAVI(CONST Y ACCESO NORTE),JN,JN,, +53,LINEA 176,COL,53,176G,176G CHACARITA-FCA EATON(X AV SAN MARTIN Y S RITA,JN,JN,, +53,LINEA 176,COL,53,176H,176H SAN MARTIN Y GRAL PAZ-FCA EATON,JN,JN,, +53,LINEA 176,COL,53,176I,176I GRAL PAZ Y CONSTITUYENTES-C JOSE C PAZ(PTA 4),JN,JN,, +53,LINEA 176,COL,53,176J,176J SAN MARTIN Y GRAL PAZ-FONAVI,JN,JN,, +53,LINEA 176,COL,53,176K,176K CONSTITUYENTES Y GRAL PAZ-EST ESCOBAR(PTA 4),JN,JN,, +53,LINEA 176,COL,53,176L,176L CONSTITUYENTES Y GRAL PAZ-PILAR(X PUERTA 4),JN,JN,, +53,LINEA 176,COL,53,176M,176M CONSTITUYENTES Y GRAL PAZ-EST TORTUGUITAS(P4),JN,JN,, +53,LINEA 176,COL,53,176N,176N CHACARITA-EST JUAN VUCETICH(X PUERTA 4),JN,JN,, +53,LINEA 176,COL,53,176NN,176N CHACARITA-PQUE INDUSTRIAL PILAR(X PUERTA 4),JN,JN,, +55,LINEA 67,COL,55,067A,Munro (Pdo de Vicente LOpez) - Hospital Rawson (CABA),JN,JN,, +56,LINEA 68,COL,56,068A,PLAZA DE MISERERE (CABA)-ESTAC TRANSF DE TRANSP PUB DE PASAJ DE CORTA Y MEDIA DIST DE VTE LOPEZ (PDO DE VTE LOPEZ - PCIA DE BS AS)(VIADUCTO CARRANZA),JN,JN,, +56,LINEA 68,COL,56,068B,Recorrido B PLAZA DE MISERERE (CABA) - PUENTESAAVEDRA (PDO DE VICENTE LOPEZ - PCIA DE BS AS) (por VIADUCTO CARRANZA),JN,JN,, +57,LINEA 288,COL,57,288DES2,DESDOBLAMIENTO 2 PUENTE CASCALLARES - MORENO (Ramal 25),BUENOS AIRES,PROV,, +57,LINEA 288,COL,57,288T1,TRONCAL 1 PUENTE CASCALLARES - PASO DEL REY (Ramal 28),BUENOS AIRES,PROV,, +58,LINEA 218,COL,58,218R2,FRACCIONAMIENTO CIUDADELA - RUTA 3 - KM 48,BUENOS AIRES,PROV,, +58,LINEA 218,COL,58,218R3,CIUDADELA - SAN JAVIER X ORO VERDE,BUENOS AIRES,PROV,, +58,LINEA 218,COL,58,218R4,CIUDADELA - RUTA 3 KM,BUENOS AIRES,PROV,, +59,LINEA 501G,COL,59,501GR10,R10 (ARCO DE GUEMES),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR11,R11 (LA REJA GRANDE),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR12,R12 (ASUNCION),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR14,R14 (LOMAS DE MORENO X ESPANA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR15,R15 (LA VICTORIA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR16,R16 (CORTEJARENA POR VILLA ANITA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR17,R17 (LAS FLORES),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR18,R18 (LAFINUR),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR19,R19 (VILLA NUEVA - CRUCE CASTELAR),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR20,R20 (SANTA BRIGIDA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR21,R21 (VILLA NUEVA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR22,R22 (LA PROVIDENCIA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR23,R23 (CRUCE DERQUI),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR24,R24 (SAN CARLOS),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR26,R26 (LA REJA - ATALAYA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR27,R27 (BARRIO MARIANO MORENO),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR29,R29 (LOMAS DE MARILO),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR30,R30 (RIFIFI),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR31,R31 (CASASCO),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR32,R32 (FRIGORIFICO MORENO),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR33,R33 (FRIGORIFICO MINGUILLON),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR34,R34 (P DEL REY/CARREFOUR),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR36,R36 (CATONITAS),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR37,R37 (P DEL REY POR YOLY),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR38,R38 (CAMPOS DE ALVAREZ),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR4,R4 (PASO DEL REY POR BONGIOVANNI),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR40,R40 (SAN ENRIQUE - REJA GRANDE),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR41,R41 (PARQUE INDUSTRIAL),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR42,R42 (ESC TECNICA N1),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR43,R43 (EL CASCO),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR44,R44 (CUARTEL V),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR45,R45 (P REY / GNECCO),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR6,R6 (CORTEJARENA),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR7,R7 (SAN CARLOS 2),BUENOS AIRES,MORENO,, +59,LINEA 501G,COL,59,501GR8,R8 (LOMAS DE MORENO X VICTORICA),BUENOS AIRES,MORENO,, +60,LINEA 311,COL,60,311R2,RAMAL 2 MORENO - Bo LA PERLITA,BUENOS AIRES,PROV,, +60,LINEA 311,COL,60,311R3,RAMAL 3 MORENO - Bo MI BARRIO,BUENOS AIRES,PROV,, +60,LINEA 311,COL,60,311R4,RAMAL 4 MORENO - Bo LA VICTORIA,BUENOS AIRES,PROV,, +60,LINEA 311,COL,60,311R5,RAMAL 5 MORENO - PLANTA PHIFZER - COLONIA UTA,BUENOS AIRES,PROV,, +60,LINEA 311,COL,60,311TR1,TRONCAL 1 MORENO - RUTA PROV N 24,BUENOS AIRES,PROV,, +61,LINEA 284,COL,61,284R2,CIUDADELA - BO AMERICA POR EST R CASTILLO,BUENOS AIRES,PROV,, +62,LINEA 161,COL,62,161A,A-PALERMO(CABA)-CIUDADELA(PDO 3 DE FEBRERO-GBA)x FLORIDA,JN,JN,, +62,LINEA 161,COL,62,161B,B-PALERMO(CABA)-CIUDADELA(PDO 3 DE FEBRERO-GBA) x VILLA MARTELLI,JN,JN,, +63,LINEA 132,COL,63,132A,A (por AVENIDA CARABOBO) CEMENTERIO DE FLORES (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION TERMINAL DE OMNIBUS RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES,JN,JN,, +63,LINEA 132,COL,63,132B,PLAZA DE MISERERE (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION TERMINAL DE OMNIBUS RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +63,LINEA 132,COL,63,132C,B (por PLAZA PUEYRREDON) CEMENTERIO DE FLORES (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION TERMINAL DE OMNIBUS RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES,JN,JN,, +64,LINEA 136 BS AS,COL,64,136A,A (con paradas en estaciones) PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - NAVARRO (PARTIDO DE NAVARRO - PROVINCIA DE BUENOS AIRES),JN,JN,, +64,LINEA 136 BS AS,COL,64,136B,B PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - MARCOS PAZ (PARTIDO DE MARCOS PAZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +64,LINEA 136 BS AS,COL,64,136C,C PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO PARQUE SAN MARTIN (PARTIDO DE MERLO - PROVINCIA DE BUENOS AIRES),JN,JN,, +64,LINEA 136 BS AS,COL,64,136D,D LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - MARCOS PAZ (PARTIDO DE MARCOS PAZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +64,LINEA 136 BS AS,COL,64,136E,E EXPRESO-Sobre Rec A PRIMERA JUNTA (CABA) - NAVARRO (Partido DE NAVARRO - BSAS),JN,JN,, +64,LINEA 136 BS AS,COL,64,136F,F - Sobre Rec B PRIMERA JUNTA (CABA) - ESTACION CENTRAL DE MICROS MUNICIPALIDAD DE MERLO (Partido DE MERLO),JN,JN,, +64,LINEA 136 BS AS,COL,64,136G,G - Sobre la traza del Recorrido C PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION CASTELAR (Partido DE MORON - Provincia DE BUENOS AIRES),JN,JN,, +65,LINEA 325,COL,65,325RTr,CIUDADELA - BARRIO DON JUAN (LA FERRERE),BUENOS AIRES,PROV,, +66,LINEA 188,COL,66,188A,PLAZA ITALIA - ESTACION ING BUDGE,JN,JN,, +66,LINEA 188,COL,66,188B,PLAZA ITALIA - CAMINO DE CINTURA Y PROF MAXER (POR IPARRAGUIRRE),JN,JN,, +66,LINEA 188,COL,66,188C,PLAZA ITALIA - CAMINO DE CINTURA Y PROF MAXER (POR CAMINO PERON),JN,JN,, +66,LINEA 188,COL,66,188D,PLAZA ITALIA - CAMINO DE CINTURA Y PROF MAXER (POR VILLA ALBERTINA),JN,JN,, +66,LINEA 188,COL,66,188E,PLAZA ITALIA - ESTAC PUENTE LA NORIA,JN,JN,, +66,LINEA 188,COL,66,188F,PLAZA ITALIA - EVA PERON Y VILLA DE LUJAN,JN,JN,, +66,LINEA 188,COL,66,188G,NUEVA POMPEYA - ESTAC ING BUDGE / EXPRESO,JN,JN,, +66,LINEA 188,COL,66,188H,PLAZA ITALIA - CAMINO DE CINTURA Y PROF MAXER (LA NORIA) / EXPRESO,JN,JN,, +67,LINEA 391,COL,67,391A,BARRIO LA PAZ,BUENOS AIRES,PROV,, +67,LINEA 391,COL,67,391B,BARRIO SAN ATILIO,BUENOS AIRES,PROV,, +67,LINEA 391,COL,67,391C,THAMES - BARRIO SAN ATILIO,BUENOS AIRES,PROV,, +68,LINEA 98,COL,68,098A,BALNEARIO DE QUILMES (RAMAL 1),JN,JN,, +68,LINEA 98,COL,68,098B,BALNEARIO DE QUILMES (RAMAL 2),JN,JN,, +68,LINEA 98,COL,68,098C,VILLA ESPANA (POR CALCHAQUI),JN,JN,, +68,LINEA 98,COL,68,098D,VILLA ESPANA (POR GRAL ACHA),JN,JN,, +68,LINEA 98,COL,68,098E,VILLA ESPANA (RAMAL 5),JN,JN,, +68,LINEA 98,COL,68,098F,BARRIO GRAFICO,JN,JN,, +69,LINEA 378,COL,69,378R2,CIUDADELA - LAFERRERE POR PRINGLES-KM24,BUENOS AIRES,PROV,, +69,LINEA 378,COL,69,378R3,CIUDADELA-LOMA DE LOS INGLESES-SAN CAYETANO POR SAN MARTIN-LAFERRERE,BUENOS AIRES,PROV,, +69,LINEA 378,COL,69,378R4,CIUDADELA-BOINDEPENDENCIA POR SAN MARTIN-LAFERRERE-SPIRO,BUENOS AIRES,PROV,, +69,LINEA 378,COL,69,378R5,CIUDADELA - BO AMERICA POR SAN MARTIN-RCASTILLO,BUENOS AIRES,PROV,, +69,LINEA 378,COL,69,378R6,CIUDADELA-LOMA DE LOS INGLESES-SAN CAYETANO POR AUTOPISTA-LAFERRERE,BUENOS AIRES,PROV,, +69,LINEA 378,COL,69,378R7,CIUDADELA-BOINDEPENDENCIA POR AUTOPISTA-LAFERRERE,BUENOS AIRES,PROV,, +70,LINEA 22,COL,70,022A,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - CAMINO CENTENARIO y LAVALLEJA (PARTIDO DE QUILMES - PROVINCIA DE BUENOS AIRES),JN,JN,, +70,LINEA 22,COL,70,022B,ESTACION RETIRO (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION QUILMES (LINEA ROCA - PARTIDO DE QUILMES - PROVINCIA DE BUENOS AIRES),JN,JN,, +71,LINEA 163 BS AS,COL,71,163A,A-PRIMERA JUNTA(CABA)-SAN MIGUEL (GBA),JN,JN,, +71,LINEA 163 BS AS,COL,71,163B,B-LINIERS(CABA)-SAN MIGUEL(GBA),JN,JN,, +71,LINEA 163 BS AS,COL,71,163C,C-EXPRESO-PRIMERA JUNTA(CABA)-SAN MIGUEL (GBA),JN,JN,, +72,LINEA 622,COL,72,622R1,VAUNION POR EL PORVENIR - VAINSUPERABLE - VA SCASSO - LAFERRERE,BUENOS AIRES,LA MATANZA,, +72,LINEA 622,COL,72,622R2,VA DORREGO - VA INSUPERABLE,BUENOS AIRES,LA MATANZA,, +72,LINEA 622,COL,72,622R3,ESCUELA RURAL NO135 - VA INSUPERABLE,BUENOS AIRES,LA MATANZA,, +72,LINEA 622,COL,72,622R4,VA INSUPERABLE - LAFERRERE - R CASTILLO,BUENOS AIRES,LA MATANZA,, +72,LINEA 622,COL,72,622Ro5,ESCUELA RURAL NO135 - GONZALEZ CATAN,BUENOS AIRES,LA MATANZA,, +72,LINEA 622,COL,72,622Ro6,ESCUELA RURAL NO135 - A RUTA 3 KM 41,BUENOS AIRES,LA MATANZA,, +72,LINEA 622,COL,72,622Ro7,VA SCASSO - VILLA DORREGO,BUENOS AIRES,LA MATANZA,, +73,LINEA 257,COL,73,257A,Monteverde-Pasco (Recorrido Circular),BUENOS AIRES,PROV,, +73,LINEA 257,COL,73,257B,LAMADRID,BUENOS AIRES,PROV,, +74,LINEA 421,COL,74,421A,A- CAMINO DE CINTURA Y MAXER (RUTA PROVINCIAL N 4)- ESTACION AVELLANEDA (POR PUENTE LA NORIA),BUENOS AIRES,PROV,, +75,LINEA 628,COL,75,628RTr,UNIV SAN JUSTO - MENDEVILLE,BUENOS AIRES,LA MATANZA,, +76,LINEA 109,COL,76,109A,ESTACION LINIERS - CORREO CENTRAL,JN,JN,, +76,LINEA 109,COL,76,109B,109B ALVAREZ JONTE Y GAVILAN-CORREO CENTRAL,JN,JN,, +76,LINEA 109,COL,76,109C,109C ESTACION LINIERS - CORREO CENTRAL (EXPRESO=,JN,JN,, +77,LINEA 55,COL,77,055A,BARRANCAS DE BELGRANO (CIUDAD AUTONOMA DE BUENOS AIRES) - DON BOSCO y PARANA (PARTIDO DE MORON - PROVINCIA DE BUENOS AIRES) POR SAN JUSTO,JN,JN,, +77,LINEA 55,COL,77,055B,BARRANCAS DE BELGRANO (CIUDAD AUTONOMA DE BUENOS AIRES) - DON BOSCO y PARANA (PARTIDO DE MORON - PROVINCIA DE BUENOS AIRES) POR ROTONDA SAN JUSTO,JN,JN,, +77,LINEA 55,COL,77,055C,PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - ROTONDA SAN JUSTO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES) EXPRESO,JN,JN,, +78,LINEA 9,COL,78,009A,Recorrido A (por JOSE MARIA MORENO) ESTACION TERMINAL DE OMNIBUS DE RETIRO (CABA)-VILLA CARAZA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES),JN,JN,, +78,LINEA 9,COL,78,009B,Recorrido B (por CORONEL CASTRO) ESTACION TERMINAL DE OMNIBUS DE RETIRO (CABA) - VILLA CARAZA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES),JN,JN,, +78,LINEA 9,COL,78,009C,Recorrido C (por JOSE MARIA MORENO y PUENTE OLIMPICO RIBERA SUR),JN,JN,, +79,LINEA 204,COL,79,204B,CANAL SAN FERNANDO - GARIN,BUENOS AIRES,PROV,, +79,LINEA 204B,COL,79,204BA,SAN MARTIN - ESCOBAR,BUENOS AIRES,PROV,, +79,LINEA 204B,COL,79,204BB,ESCOBAR - ZARATE,BUENOS AIRES,PROV,, +79,LINEA 204B,COL,79,204BC,SAN MARTIN - ZARATE,BUENOS AIRES,PROV,, +80,LINEA 430,COL,80,430A,RINCON DE MILBERG - SAAVEDRA,BUENOS AIRES,PROV,, +81,LINEA 84,COL,81,084A,LAMARCA - PZA CONSTITUCION,JN,JN,, +82,LINEA 509D,COL,82,509D,509D-BCOPROVI-BITATI,BUENOS AIRES,ESCOBAR,, +83,LINEA 228 B,COL,83,228BA,ESCOBAR - PTE SAAVEDRA,BUENOS AIRES,PROV,, +83,LINEA 228 B,COL,83,228BB,GARIN - PUENTE SAAVEDRA,BUENOS AIRES,PROV,, +84,LINEA 722,COL,84,722A,ESTACION TORCUATO X 202 - ESTACION TORCUATO X SAN ESTACION TORCUATO X 202 ESTACION TORCUATO X SAN MARTIN,BUENOS AIRES,TIGRE,, +85,LINEA 64,COL,85,064A,LA BOCA (CABA) - ESTACION BELGRANO C (LINEA MITRE - CABA) (por HOSPITAL MILITAR),JN,JN,, +85,LINEA 64,COL,85,064B,LA BOCA (CABA) - ESTACION BELGRANO C(LINEA MITRE - CABA) (por HIPODROMO ARGENTINO),JN,JN,, +85,LINEA 64,COL,85,064C,AV PASEO COLON y AV JUAN DE GARAY - ESTACION BELGRANO C (LINEA MITRE - CABA) (por HOSPITAL MILITAR),JN,JN,, +85,LINEA 64,COL,85,064D,AV PASEO COLON y AV JUAN DE GARAY - ESTAC BELGRANO C (LINEA MITRE - CABA) (por HIPODROMO ARGENTINO),JN,JN,, +86,LINEA 503 B,COL,86,503BA,ESCOBAR - FONAVI,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BB,ESCOBAR - LAMBERTUCCI,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BC,ESCOBAR - SAN LUIS,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BD,ESCOBAR- LV-LA,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BE,503BE-SAVIO-GARIN,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BF,503BF-FONAVI-LAS LOMAS,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BG,503BG-GARIN-ARBOLEDA,BUENOS AIRES,ESCOBAR,, +86,LINEA 503 B,COL,86,503BH,503BH-LAMBERTUCCI X TAPIA,BUENOS AIRES,ESCOBAR,, +87,LINEA 580,COL,87,580A,RAMAL JALON,BUENOS AIRES,QUILMES,, +88,LINEA 514,COL,88,514A,BARRIO LINDO-ESTACION CLAYPOLE,BUENOS AIRES,ALMIRANTE BROWN,, +88,LINEA 514,COL,88,514B,LOMA VERDE-ESTACION CLAYPOLE,BUENOS AIRES,ALMIRANTE BROWN,, +88,LINEA 514,COL,88,514R4,RUTA 4 - ESTACION BURZACO,BUENOS AIRES,ALMIRANTE BROWN,, +89,LINEA 582,COL,89,582A,RAMAL C PELLEGRINI,BUENOS AIRES,QUILMES,, +89,LINEA 582,COL,89,582B,RAMAL C PELLEGRINI X 850,BUENOS AIRES,QUILMES,, +90,LINEA 10,COL,90,010A,ESTACION 3 DE FEBRERO (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA DOMINICO (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES),JN,JN,, +91,BSAS_LINEA_25,COL,91,025A,PI Y MARGALL y AVENIDA ALMIRANTE BROWN (CABA) - AV SENADOR BENITO FERRO y GENERAL LAS HERAS (PDO DE TRES DE FEBERERO-PCIA DE BS AS),JN,JN,, +92,LINEA 247,COL,92,247R2,RAMAL 2,BUENOS AIRES,PROV,, +92,LINEA 247,COL,92,247R5,RAMAL 5,BUENOS AIRES,PROV,, +92,LINEA 247,COL,92,247R7,RAMAL 7,BUENOS AIRES,PROV,, +93,LINEA 541,COL,93,541A,RECORRIDO A ESTBANFIELD - A BELLO E ITATI,BUENOS AIRES,LOMAS DE ZAMORA,, +93,LINEA 541,COL,93,541B,ESTBANFIELD - A BELLO E ITATI,BUENOS AIRES,LOMAS DE ZAMORA,, +94,LINEA 341,COL,94,341A,LAS CABANAS,BUENOS AIRES,PROV,, +94,LINEA 341,COL,94,341B,OLIVOS,BUENOS AIRES,PROV,, +94,LINEA 341,COL,94,341C,SAN MIGUEL,BUENOS AIRES,PROV,, +95,LINEA 271,COL,95,271A,RAMAL A,BUENOS AIRES,PROV,, +95,LINEA 271,COL,95,271D,RAMAL D,BUENOS AIRES,PROV,, +95,LINEA 271,COL,95,271P,RAMAL P,BUENOS AIRES,PROV,, +96,LINEA 17,COL,96,017A,WILDE - FACULTAD DE DERECHO,JN,JN,, +97,LINEA 60,COL,97,060A,A (ramal 38) BARRACAS (CABA) - ESTACION NUNEZ (LINEA MITRE - CABA),JN,JN,, +97,LINEA 60,COL,97,060B,B (ramal 38 por ALTO SAN ISIDRO y ALTO TIGRE) BARRACAS (CABA) - RINCON DE MILBERG(PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060C,C (ramal 38)BARRACAS (CABA)-ESTAC DE TRANSF DE TRANSP PUB DE PASAJEROS DE CORTA Y MEDIA DIST DE VICENTE LOPEZ (PDO DE VICENTE LOPEZ -PRCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060D,D (ramal 38 por ALTO SAN ISIDRO y ALTO TIGRE) METROBUS NORTE-CABILDO y AV CONGRESO (CABA)-RINCON DE MILBERG (TIGRE-PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060E,E (ramal 38 por AUT ING PASCUAL PALAZZO y ACC NORTE-Ramal TIGRE)BARRACAS (CABA)-RINCON DE MILBERG (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060ENIE,ENIE (ramal 60 por AV SIR ALEXANDER FLEMING y BAJO TIGRE) BARRACAS (CABA) - RINCON DE MILBERG (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060F,F (ramal 60 por ALTO SAN ISIDRO y ALTO TIGRE) BARRACAS (CABA)-RINCON DE MILBERG(PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060G,G (ramal 60)BARRACAS (CABA) - E TRANSF DE TRANSP PUB DE PASAJEROS DE CORTA Y MEDIA DIST DE VICENTE LOPEZ (PARTIDO DE VICENTE LOPEZ -PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060H,H (ramal 60 por ALTO SAN ISIDRO y BAJO TIGRE)BARRACAS (CABA)-RINCON DE MILBERG(PDO DE TIGRE-PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060I,I (ramal 60 por BAJO SAN ISIDRO,JN,JN,, +97,LINEA 60,COL,97,060J,J (ramal 60 por AUT ING PASCUAL PALAZZO yACC NORTE-Ramal TIGRE)BARRACAS (CABA) - RINCON DE MILBERG(PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060K,K (ramal 60 por AUT PALAZZO y ACC NORTE Ramal TIGRE,JN,JN,, +97,LINEA 60,COL,97,060L,L (por AUT PALAZZO y ACC NORTE-Ramal TIGRE,JN,JN,, +97,LINEA 60,COL,97,060M,M (ramal 60 por ACCESO NORTE - Ramal TIGRE y ALTO TIGRE) BARRACAS (CABA) - RINCON DE MILBERG (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060N,N (ramal 60 por ACCESO NORTE-Ramal TIGRE y ALTO TIGRE) PTE SAAVEDRA (CABA) - RINCON DE MILBERG (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060O,O (ramal 60 por AV FLEMING y BAJO TIGRE) METROBUS NORTE - CABILDO y AV CONGRESO (CABA) - RINCON DE MILBERG (PDO DE TIGRE -PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060P,P (ramal 60 por AV LARRALDE,JN,JN,, +97,LINEA 60,COL,97,060Q,Q (ramal 60 por AUT PALAZZO)BARRACAS (CABA) - ESTAC TERMINAL DE OMNIBUS DE ESCOBAR (PARTIDO DE ESCOBAR - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060R,R (ramal 60 por AUT PALAZZO y B SUR MER) METROBUS NOR-CABILDO y AV CONGRESO (CABA) - ESTAC TERM DE OMNIBUS ESCOBAR (ESCOBAR - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060S,S (ramal 60 por AUT PALAZZO y B SUR MER)BARRACAS (CABA) - ESTAC TERM DE OMNIBUS ESCOBAR (PDO DE ESCOBAR - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060T,T (ramal 60 por R PCIAL N 27 e INT LARGHI) METROBUS NORTE-CABILDO y AV CONGRESO (CABA) - ESTAC TERM DE OMNIBUS DE ESCOBAR (ESCOBAR - PCIA DE BS AS),JN,JN,, +97,LINEA 60,COL,97,060U,U (ramal 60 por LINIERS,JN,JN,, +97,LINEA 60,COL,97,060V,V (ramal 60 por AUT PALAZZO) PLAZA ITALIA (CABA) - ESTAC TERM DE OMNIBUS DE ESCOBAR (PDO DE ESCOBAR - PCIA DE BS AS)EXPRESO,JN,JN,, +97,LINEA 60,COL,97,060W,W (ramal 60 por AUT PALAZZO)-restricciOn de paradas tramo PTE SAAVEDRA - AV ALVEAR-R N 23 P ITALIA (CABA)-ET OMNIBUS DE ESCOBAR (ESCOBAR-BS AS),JN,JN,, +98,LINEA 543,COL,98,543A,RAMAL A (EstaciOn Lomas de Zamora-JUAN XXIII y C CINTURA),BUENOS AIRES,LOMAS DE ZAMORA,, +98,LINEA 543,COL,98,543B,RAMAL B (EstaciOn Lomas de Zamora - ALLARIAS - BO STA CATALINA),BUENOS AIRES,LOMAS DE ZAMORA,, +98,LINEA 543,COL,98,543C,RAMAL C (EstaciOn Lomas de Zamora-Puente de La Noria),BUENOS AIRES,LOMAS DE ZAMORA,, +99,LINEA 540 BSAS,COL,99,540A,ESTACION LOMAS DE ZAMORA-PTELA NORIA,BUENOS AIRES,LOMAS DE ZAMORA,, +100,LINEA 603,COL,100,603R1,FINOCCHIETTO Y CALCHAQUI-CALLE 119 Y CALLE 59 (RAMAL 1),BUENOS AIRES,BERAZATEGUI,, +100,LINEA 603,COL,100,603R2,RAMAL 1,BUENOS AIRES,BERAZATEGUI,, +100,LINEA 603,COL,100,603R3,RAMAL BM,BUENOS AIRES,BERAZATEGUI,, +100,LINEA 603,COL,100,603R4,RAMAL 7,BUENOS AIRES,BERAZATEGUI,, +100,LINEA 603,COL,100,603R4-PN,RAMAL 3,BUENOS AIRES,BERAZATEGUI,, +100,LINEA 603,COL,100,603R6,RAMAL 5,BUENOS AIRES,BERAZATEGUI,, +100,LINEA 603,COL,100,603R7,RAMAL 6,BUENOS AIRES,BERAZATEGUI,, +101,LINEA 126,COL,101,126A,A RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA MONSENOR RODOLFO BUFANO N 4920 (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +101,LINEA 126,COL,101,126B,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - PERIBEBUY y MOCORETA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +101,LINEA 126,COL,101,126C,C AVENIDA DIRECTORIO y AVENIDA JOSE MARIA MORENO (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA MONSENOR RODOLFO BUFANO N 4920 (PARTIDO DE LA MATANZA -,JN,JN,, +101,LINEA 126,COL,101,126D,D AVENIDA DIRECTORIO y AVENIDA JOSE MARIA MORENO (CIUDAD AUTONOMA DE BUENOS AIRES) - PERIBEBUY y MOCORETA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS,JN,JN,, +101,LINEA 126,COL,101,126E,E-EXPRESO(por AUT 25 DE MAYO - AU 1 -) - Sobre Recorrido A RETIRO (CABA) - AVENIDA MONSENOR RODOLFO BUFANO N 492(LA MATANZA),JN,JN,, +101,LINEA 126,COL,101,126F,F EXPRESO(por AU 25 DE MAYO - AU 1 -) - Sobre Recorrido B RETIRO (CABA) - PERIBEBUY y MOCORETA (PARTIDO DE LA MATANZA-BSAS),JN,JN,, +102,LINEA 70,COL,102,070A,RAMAL 1,JN,JN,, +102,LINEA 70,COL,102,070B,BARRACAS- RETIRO,JN,JN,, +103,LINEA 283,COL,103,283B1,B1,BUENOS AIRES,PROV,, +103,LINEA 283,COL,103,283B2,B2,BUENOS AIRES,PROV,, +103,LINEA 283,COL,103,283B3,B3,BUENOS AIRES,PROV,, +104,LINEA 181,COL,104,181A,MARMOL Y CONSTITUCION - RUBENS Y DEFENSA (POR LA MERCED),JN,JN,, +104,LINEA 181,COL,104,181B,MARMOL Y CONSTITUCION - RUBENS Y DEFENSA (POR PUAN),JN,JN,, +105,LINEA 295,COL,105,295R2,2- WILDE POR BOUCHARD,BUENOS AIRES,PROV,, +105,LINEA 295,COL,105,295R4,4- BARRACAS POR MAGAN,BUENOS AIRES,PROV,, +105,LINEA 295,COL,105,295R5,5- BARRACAS POR CORDOBA,BUENOS AIRES,PROV,, +105,LINEA 295,COL,105,295TR1,1- TRONCAL,BUENOS AIRES,PROV,, +106,LINEA 542 BSAS,COL,106,542P,PRINCIPAL (Puente de La Noria - EstaciOn Lomas de Zamora),BUENOS AIRES,LOMAS DE ZAMORA,, +107,LINEA 237A,COL,107,237AA1,RAMAL A1 LANZONE - MORRIS,BUENOS AIRES,PROV,, +107,LINEA 237A,COL,107,237AA2,RAMAL A2 LANZONE - RUTA 201,BUENOS AIRES,PROV,, +107,LINEA 237A,COL,107,237AB,RAMAL B LANZONE - LINIERS,BUENOS AIRES,PROV,, +107,LINEA 237A,COL,107,237AT,RAMAL T LANZONE - BEIRO,BUENOS AIRES,PROV,, +107,LINEA 237A,COL,107,237AV,RAMAL V LIBERTADOR - BEIRO,BUENOS AIRES,PROV,, +108,LINEA 619,COL,108,619,FINOCCHIETTO Y CALCHAQUI BARRIO EL PATO,BUENOS AIRES,BERAZATEGUI,, +109,LINEA 323,COL,109,323C,RAMAL C,BUENOS AIRES,PROV,, +110,LINEA 379,COL,110,379A,DARRAGUEIRA,BUENOS AIRES,PROV,, +111,LINEA 239A,COL,111,239ARL,RAMAL W,BUENOS AIRES,PROV,, +111,LINEA 239A,COL,111,239ATS,TRONCAL S-ESTLOMAS DE ZAMORA(ALTE BROWN Y BALCARCE)-CALLE 899 Y AV RIBERENA (SFRANCISCO SOLANO),BUENOS AIRES,PROV,, +112,LINEA 160,COL,112,160A,A-CIUDAD UNIVERSITARIA(CABA)-BDON ORIONE(ALTE BROWN)x AGUAS ARG Y AALSINA,JN,JN,, +112,LINEA 160,COL,112,160B,B-CIUDAD UNIVERSITARIA(CABA)-BDON ORIONE(ALTE BROWN)x AGUAS ARG Y JOAQUIN GONZALEZ,JN,JN,, +112,LINEA 160,COL,112,160C,C-CIUDAD UNIVERSITARIA(CABA)-BDON ORIONE(ALTE BROWN)x AEROPARQUE Y AALSINA,JN,JN,, +112,LINEA 160,COL,112,160D,D-CIUDAD UNIVERSITARIA(CABA)-BDON ORIONE(ALTE BROWN)x AEROPARQUE Y JOAQUIN GONZALEZ,JN,JN,, +112,LINEA 160,COL,112,160E,E-ESTACION 3 DE FEBRERO(FFCC MITRE)CABA-BDON ORIONE (ALTE BROWN)x AALSINA,JN,JN,, +112,LINEA 160,COL,112,160F,F-EST3 DE FEBRERO(FFCC MITRE)CABA-B DON ORIONE (ALTE BROWN) x JVGONZALEZ,JN,JN,, +112,LINEA 160,COL,112,160G,G-CIUDAD UNIVERSITARIA(CABA)-NUEVA POMPEYA(CABA) xAGUAS ARG,JN,JN,, +112,LINEA 160,COL,112,160H,H-CIUDAD UNIVERSITARIA(CABA)-NUEVA POMPEYA(CABA) x AEROPARQUE,JN,JN,, +112,LINEA 160,COL,112,160I,I-NUEVA POMPEYA(CABA)-BDON ORIONE(ALTE BROWN-GBA) x AALSINA,JN,JN,, +112,LINEA 160,COL,112,160J,J-NUEVA POMPEYA(CABA)-BDON ORIONE(ALTE BROWN-GBA) x JVGONZALEZ,JN,JN,, +112,LINEA 160,COL,112,160K,K-CIUDAD UNIVERSITARIA(CABA)-ESTLANUS(FFCC ROCA) x AGUAS ARG,JN,JN,, +112,LINEA 160,COL,112,160L,L-CIUDAD UNIVERSITARIA(CABA)-ESTLANUS(FFCC ROCA) x AEROPARQUE,JN,JN,, +112,LINEA 160,COL,112,160M,M (por ADOLFO ALSINA) NUEVA POMPEYA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO DON ORIONE (PARTIDO DE ALMIRANTE BROWN - PROVINCIA DE BUENOS AIRES),JN,JN,, +112,LINEA 160,COL,112,160N,N-EXPRESO-N (por AGUAS ARGENTINAS) CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +113,LINEA 324,COL,113,324R16,324 RAMAL 16,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R2,324 RAMAL 2,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R2F,324 FRACCIONADO RAMAL 2,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R3,324 RAMAL 3,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R3F,324 FRACCIONADO RAMAL 3,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R6C,324 RAMAL 6C,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R6P,324 RAMAL 6 P,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R9,324 RAMAL 9,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324R9F,324 FRACCIONADO RAMAL 9,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324T5,324 TRONCAL 5,BUENOS AIRES,PROV,, +113,LINEA 324,COL,113,324T5F,324 FRACCIONADO TRONCAL 5,BUENOS AIRES,PROV,, +114,LINEA 278,COL,114,278A,RAMAL A,BUENOS AIRES,PROV,, +114,LINEA 278,COL,114,278B,RAMAL B,BUENOS AIRES,PROV,, +114,LINEA 278,COL,114,278S,RAMAL S,BUENOS AIRES,PROV,, +115,LINEA 585,COL,115,585A,RAMAL ROJO,BUENOS AIRES,QUILMES,, +115,LINEA 585,COL,115,585B,RAMAL VERDE,BUENOS AIRES,QUILMES,, +116,LINEA 214,COL,116,214A,TRONCAL A FRIGORIFICO POR 56,BUENOS AIRES,PROV,, +116,LINEA 214,COL,116,214B167,RAMAL B 167 Y 60 - MONTEVIDEO Y 2,BUENOS AIRES,PROV,, +116,LINEA 214,COL,116,214B64,RAMAL B POR 64 155 Y 60 - MONTEVIDEO Y 2,BUENOS AIRES,PROV,, +116,LINEA 214,COL,116,214D,RAMAL D FRIGORIFICO ARMOUR POR DIAGONAL 73,BUENOS AIRES,PROV,, +117,LINEA 134,COL,117,134A,BARRIO NICOLAS AVELLANEDA - ESTACION DEVOTO,JN,JN,, +117,LINEA 134,COL,117,134B,PEDERY AVRIVADAVIA(CF) - CANTILO Y SANABRIA (CF),JN,JN,, +118,LINEA 180,COL,118,180A,RAMAL 1,JN,JN,, +118,LINEA 180,COL,118,180B,RAMAL 2,JN,JN,, +118,LINEA 180,COL,118,180C,RAMAL 3,JN,JN,, +118,LINEA 180,COL,118,180D,RAMAL 4,JN,JN,, +118,LINEA 180,COL,118,180E,RAMAL 5,JN,JN,, +118,LINEA 180,COL,118,180F,SENGUEL ( LA MATANZA) - ALBERTI Y LARRAZ (CAPITAL),JN,JN,, +118,LINEA 180,COL,118,180G,CRIST Y CROV(LA MATANZA) - BEAUCHEF (CAPITA),JN,JN,, +118,LINEA 180,COL,118,180H,180H RAMAL H,JN,JN,, +118,LINEA 180,COL,118,180I,180I RAMAL I,JN,JN,, +119,LINEA 586,COL,119,586A,MUNICIPALIDAD DE QUILMES,BUENOS AIRES,QUILMES,, +120,LINEA 326,COL,120,326A,TRONCAL HAEDO - TROPEZON,BUENOS AIRES,PROV,, +120,LINEA 326,COL,120,326B,CIUDADELA - PALOMAR,BUENOS AIRES,PROV,, +120,LINEA 326,COL,120,326C,RAMAL BERGAMINI,BUENOS AIRES,PROV,, +121,LINEA 130,COL,121,130A,A (por MUNRO) LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BOULOGNE (LINEA BELGRANO NORTE - PARTIDO DE SAN ISIDRO - PROVINCIA DE BUENOS AIRES),JN,JN,, +121,LINEA 130,COL,121,130B,B (por AUINGENIERO PASCUAL PALAZZO) LA BOCA (CABA) - ESTACION BOULOGNE (FFCC BELGRANO NORTE - PARTIDO DE SAN ISIDRO),JN,JN,, +122,LINEA 630,COL,122,630R1,PLAZA SAN JUSTO,BUENOS AIRES,LA MATANZA,, +122,LINEA 630,COL,122,630R2,LAFERRERE POR RUTA PROVINCIAL N 21,BUENOS AIRES,LA MATANZA,, +122,LINEA 630,COL,122,630R3,LAFERRERE POR VICTOR MARTINEZ,BUENOS AIRES,LA MATANZA,, +122,LINEA 630,COL,122,630R4,ISIDRO CASANOVA,BUENOS AIRES,LA MATANZA,, +123,LINEA 506A,COL,123,506AA,DERQUI - MONTERREY,BUENOS AIRES,PILAR,, +123,LINEA 506A,COL,123,506AB,DERQUI - TORO,BUENOS AIRES,PILAR,, +124,LINEA 386,COL,124,386A,386A - TRONCAL MORON - BEIRO,BUENOS AIRES,PROV,, +124,LINEA 386,COL,124,386B,386B - FRACC - RMEJIA - BEIRO,BUENOS AIRES,PROV,, +125,LINEA 281,COL,125,281L,RAMAL L,BUENOS AIRES,PROV,, +126,LINEA 322 BS AS,COL,126,322A,MORON - MARCO PAZ,BUENOS AIRES,PROV,, +127,LINEA 510B,COL,127,510R1,ESTACION PILAR (PILAR) - PARQUE INDUSTRIAL PILAR CALLE 3 POR RUTA 8,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R10,ESTACION VILLA ASTOLFI - ESTACION PILAR (PILAR) POR GUIDO,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R11,VILLA DEL CARMEN (DEL VISO) - PARQUE INDUSTRIAL PILAR POR CALLE 24 - POR PILAR,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R2,ESTACION PILAR (PILAR) - PARQUE INDUSTRIAL PILAR CALLE 24 POR PETREL,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R3,ESTACION PILAR (PILAR) - KM 61 ALMIRANTE IRIZAR POR RUTA 8,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R4,ESTACION MANUEL ALBERTI - ESTACION PILAR (PILAR) POR PUENTE GARIN,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R5,ESTACION MANUEL ALBERTI - ESTACION PILAR (PILAR) POR DEL VISO,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R7,KM 61 ALMIRANTE IRIZAR - FATIMA POR PARQUE INDUSTRIAL,BUENOS AIRES,PILAR,, +127,LINEA 510B,COL,127,510R9,VILLA DEL CARMEN (DEL VISO) - ESTACION DEL PILAR - POR VILLA ROSA,BUENOS AIRES,PILAR,, +128,LINEA 354,COL,128,354B,RECORRIDO B,BUENOS AIRES,PROV,, +128,LINEA 354,COL,128,354F,RAMAL F,BUENOS AIRES,PROV,, +129,LINEA 293A,COL,129,293RA,RAMAL A S,BUENOS AIRES,PROV,, +130,LINEA 448,COL,130,448R1,RECORRIDO 1,BUENOS AIRES,PROV,, +130,LINEA 448,COL,130,448R2,RECORRIDO 2,BUENOS AIRES,PROV,, +130,LINEA 448,COL,130,448R3,RECORRIDO 3,BUENOS AIRES,PROV,, +130,LINEA 448,COL,130,448R4,RECORRIDO 4,BUENOS AIRES,PROV,, +131,LINEA 124,COL,131,124A,124A-FDERECHO(CABA)-9 JULIO Y CPELLEGRINI(3FEBR),JN,JN,, +131,LINEA 124,COL,131,124B,124B-FDERECHO(CABA)-BAIGORRIA Y AV NAZCA(CABA),JN,JN,, +134,LINEA 29,COL,134,029A,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - OLIVOS (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +134,LINEA 29,COL,134,029B,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - PARQUE PRESIDENTE SARMIENTO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +134,LINEA 29,COL,134,029C,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION RIVADAVIA (LINEA GENERAL BARTOLOME MITRE - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +134,LINEA 29,COL,134,029D,PLAZA DE MAYO (CABA) - ESTACION BELGRANO C (LINEA GENERAL BARTOLOME MITRE - CABA) Sobre la traza del Recorrido A,JN,JN,, +136,LINEA 146,COL,136,146A,CIUDADELA - CORREO CENTRAL,JN,JN,, +136,LINEA 146,COL,136,146B,CORREO CENTRAL - CIUDADELA,JN,JN,, +137,LINEA 741,COL,137,741A,ESTACION JOSE C PAZ - SOL Y VERDE POR CASTANEDA,BUENOS AIRES,JOSE C. PAZ,, +137,LINEA 741,COL,137,741B,ESTACION JOSE C PAZ - SOL Y VERDE POR CHACABUCO,BUENOS AIRES,JOSE C. PAZ,, +137,LINEA 741,COL,137,741C,ESTACION JOSE C PAZ - SOL Y VERDE POR VIENA,BUENOS AIRES,JOSE C. PAZ,, +138,LINEA 92,COL,138,092A,A RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO 9 DE ABRIL (PARTIDO DE ESTEBAN ECHEVERRIA - PROVINCIA DE BUENOS AIRES),JN,JN,, +138,LINEA 92,COL,138,092B,B RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - PUENTE 12 (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +138,LINEA 92,COL,138,092C,C-EXPRESO- sobre la traza del Recorrido B RETIRO (CABA) - AVENIDA EVA PERON y AVENIDA GENERAL PAZ (CABA),JN,JN,, +138,LINEA 92,COL,138,092D,D-EXPRESO- sobre la traza del Recorrido A PLAZA FLORES (CABA) - BARRIO 9 DE ABRIL (PARTIDO DE ESTEBAN ECHEVERRIA BSAS,JN,JN,, +139,LINEA 85,COL,139,085A,BALNEARIO DE QUILMES (PDO DE QUILMES - PCIA DE BS AS) - CIUDADELA NORTE (PDO DE TRES DE FEBRERO - PCIA DE BS AS) (por PUENTE AGUERO),JN,JN,, +139,LINEA 85,COL,139,085B,BALNEARIO DE QUILMES (PDO DE QUILMES - PCIA DE BS AS) - CIUDADELA NORTE (PDO DE TRES DE FEBRERO - PCIA DE BS AS) (por PUENTE GERLI),JN,JN,, +139,LINEA 85,COL,139,085C,BALNEARIO DE QUILMES (PDO DE QUILMES - PCIA DE BS AS) - CIUDADELA NORTE (PARTIDO DE TRES DE FEBRERO - PCIA DE BS AS),JN,JN,, +139,LINEA 85,COL,139,085D,POMPEYA (CABA) - CIUDADELA NORTE (PDO DE TRES DE FEBRERO - PCIA DE BS AS),JN,JN,, +140,LINEA 503H,COL,140,503HA,503HA RECORRIDO A (EX FCA MILITAR - MANZONE),BUENOS AIRES,PILAR,, +141,LINEA 371,COL,141,371A,ESTACION VIRREYES - BARRIO AVIACION,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371B,ESTACION VIRREYES - BOULOGNE X FATE,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371C,ESTACION VIRREYES - BOULOGNE X CALLE 8,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371D,ROTONDA DE ACASUSSO - ESTACION DON TORCUATO,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371E,ESTACION DON TORCUATO - PUENTE MELO,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371K,ROTONDA DE ACASUSSO - BARRIO AVIACION,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371L,ROTONDA DE ACASUSSO - BOULOGNE X FATE,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371M,ROTONDA DE ACASUSSO - BOULOGNE X CALLE 8,BUENOS AIRES,PROV,, +141,LINEA 371,COL,141,371N,ROTONDA DE ACASUSSO - DON TORCUATO - PUENTE MELO,BUENOS AIRES,PROV,, +142,LINEA 63,COL,142,063A,ESTACION BELGRANO C (LINEA GENERAL BARTOLOME MITRE - CABA) - VILLA MADERO (PDO DE LA MATANZA - PCIA DE BS AS) POR L DE LA TORRE,JN,JN,, +142,LINEA 63,COL,142,063B,ESTAC BELGRANO C (LINEA GRAL BARTOLOME MITRE-BARRANCAS DE BELGRANO - CABA)-VILLA MADERO (PDO DE LA MATANZA-PCIA DE BS AS)(por CORONEL PAGOLA),JN,JN,, +143,LINEA 12,COL,143,012A,PUENTE PUEYRREDON (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA FALUCHO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +143,LINEA 12,COL,143,012B,PLAZA DE LA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA FALUCHO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +145,LINEA 113,COL,145,113A,A (por AVENIDA BOYACA) ESTACION BELGRANO C (CIUDAD AUTONOMA DE BUENOS AIRES) - SAN JUSTO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +145,LINEA 113,COL,145,113B,B (por GENERAL GERVASIO JOSE ARTIGAS) ESTACION BELGRANO C (CIUDAD AUTONOMA DE BUENOS AIRES) - SAN JUSTO (PARTIDO DE LA MATANZA - BS AS),JN,JN,, +146,LINEA 445,COL,146,445F,ESTACION DON TORCUATO - PABLO NOGUES,BUENOS AIRES,PROV,, +146,LINEA 445,COL,146,445G,ESTACION DON TORCUATO - BELLA VISTA,BUENOS AIRES,PROV,, +147,LINEA 710,COL,147,710A,ESTACION VIRREYES - BARRIO VILLA DEL CARMEN,BUENOS AIRES,SAN FERNANDO,, +147,LINEA 710,COL,147,710B,ESTACION VIRREYES - BARRIO INFICO,BUENOS AIRES,SAN FERNANDO,, +147,LINEA 710,COL,147,710C,ESTACION VIRREYES - CALLE COLON Y AV SAN MARTIN,BUENOS AIRES,SAN FERNANDO,, +147,LINEA 710,COL,147,710D,COLON Y RIO LUJAN - AV,BUENOS AIRES,SAN FERNANDO,, +150,LINEA 21,COL,150,021A,EJERCITO DE LOS ANDES N 999 (PDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - ROTONDA DARDO ROCHA (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +150,LINEA 21,COL,150,021B,EJERCITO DE LOS ANDES N 999 (PDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - FABRICA FORD (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +150,LINEA 21,COL,150,021C,EJERCITO DE LOS ANDES N 999 (PIDO DE LOMAS DE ZAMORA - PA DE BS AS) - PTE SAAVEDRA (PO DE VICENTE LOPEZ - PCIA DE BS AS),JN,JN,, +150,LINEA 21,COL,150,021D,ESTACION LINIERS (LINEA SARMIENTO - CABA) - AUT ING PASCUAL PALAZZO e HIPOLITO YRIGOYEN - RUTA PROVINCIAL N 24 - (PDO DE TIGRE - PCIA DE BS AS),JN,JN,, +150,LINEA 21,COL,150,021E,ESTACION LINIERS (LINEA SARMIENTO - CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION TIGRE (LINEA MITRE - PARTIDO DE TIGRE - PROVINCIA DE BUENOS AIRES),JN,JN,, +150,LINEA 21,COL,150,021F,ESTACION LINIERS (LINEA SARMIENTO - CABA) - ESTACION FLORIDA (LINEA BELGRANO NORTE - PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +150,LINEA 21,COL,150,021G,ESTACION LINIERS (LINEA SARMIENTO - CABA) - CEMENTERIO DE OLIVOS (PARTIDO DE VICENTE LOPEZ -PCIA DE BS AS) (por VICENTE LOPEZ),JN,JN,, +150,LINEA 21,COL,150,021H,ESTACION LINIERS (LINEA SARMIENTO - CABA) - PUENTE SAAVEDRA (PARTIDO DE VICENTE LOPEZ - PCIA DE BS AS),JN,JN,, +150,LINEA 21,COL,150,021I,EJERCITO DE LOS ANDES N 999 (PDO DE LOMAS DE ZAMORA-PCIA DE BS AS)-PTE SAAVEDRA (PDO DE VICENTE LOPEZ-PCIA DE BS AS) (sobre Recorrido C),JN,JN,, +150,LINEA 21,COL,150,021J,EJERCITO DE LOS ANDES N 999 (PDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - FABRICA FORD (PDO DE TIGRE - PCIA DE BS AS) (sobre Recorrido B),JN,JN,, +150,LINEA 21,COL,150,021K,EJERCITO DE LOS ANDES N 999 (PDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - AUT ING PASCUAL PALAZZO y AV B MARQUEZ (PDO DE SAN ISIDRO - PCIA DE BS AS),JN,JN,, +151,LINEA 236,COL,151,236A,MORON - VILLA SPADA,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236B,EST MORON - SAN FRANCISCO,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236C,MORON - BARRIO BELGRANO,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236D,EST MORON - MARCOS PAZ,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236E,EST MORON - PONTEVEDRA,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236F,EST MORON - EST GONZALEZ CATAN,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236G,EST MORON - EST LAFERRERE,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236H,EST MORON - EST MERLO,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236I,EST MORON - BO SAN JOSE,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236J,MERLO GOMEZ-MORON POR MARINA,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236K,MERLO GOMEZ - DISTRITO MILITAR,BUENOS AIRES,PROV,, +151,LINEA 236,COL,151,236L,MERLO GOMEZ-ESTACION MORON,BUENOS AIRES,PROV,, +152,LINEA 312,COL,152,312R2,RAMAL 2 PUENTE BRANDSEN - MERLO,BUENOS AIRES,PROV,, +152,LINEA 312,COL,152,312R3,RAMAL 3 PUENTE BRANDSEN - VILLA LEON - MORENO POR S A DE PADUA,BUENOS AIRES,PROV,, +153,LINEA 45,COL,153,045A,CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) - REMEDIOS DE ESCALADA (PARTIDO DE LANUS - PROVINCIA BUENOS AIRES),JN,JN,, +153,LINEA 45,COL,153,045B,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - REMEDIOS DE ESCALADA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) EXPRESO,JN,JN,, +153,LINEA 45,COL,153,045C,CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) EXPRESO,JN,JN,, +153,LINEA 45,COL,153,045D,ESTACION RETIRO (LINEA GENERAL BELGRANO - CIUDAD AUTONOMA DE BUENOS AIRES) - CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) EXPRESO,JN,JN,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE-RO,NORTERONDINESCOLAR DES 31Y513 HAS 495 Y CENTE,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE10,NORTE10A DESDE31Y513 HASTA 14Y54,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE11,NORTE11 DESDE 31Y513 HASTA 7Y60,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE12,NORTE12 DESDE 12Y467 HASTA 14Y54,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE13,NORTE13 DESDE 28Y467 HASTA 1Y44,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE15,NORTE15 DESDE 31Y513 HASTA 1Y60,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE16,NORTE16A DESDE 31Y513 HASTA 1Y60,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE17,NORTE17A DESDE 31Y513 HASTA 7Y60,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE17V,NORTE17B DESDE 31Y513 HASTA 7Y60 X SAN JOSE,BUENOS AIRES,LA PLATA,, +154,LINEA_NORTE MUNICIPAL,COL,154,NORTE18,NORTE18A DESDE 31Y513 HASTA 7Y60,BUENOS AIRES,LA PLATA,, +155,LINEA 503A BS AS,COL,155,503R20A,R20A ESTACION DE MERLO - MARIANO ACOSTA POR RUTA,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R22,R22 ESTACION DE MERLO - MARIANO ACOSTA,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R23,R23 ESTACION DE MERLO - ESTACION DE MARIANO ACOSTA,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R24,R24 ESTACION DE MERLO - ESTACION DE MARIANO ACOSTA,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R25,R25 ESTACION DE MERLO - 20 DE JUNIO,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R26,R26 ESTACION DE MERLO - ESTACION DE MARIANO ACOSTA,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R27,R27 ESTACION DE MERLO - 20 DE JUNIO,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R28,R28 ESTACION DE MERLO - MARIANO ACOSTA,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R29,R29 ESTACION MARIANO ACOSTA - BCASCALLARES,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R30L,R30L ESTACION DE MERLO - LAGO DEL BOSQUE,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R30P,R30P ESTACION DE MERLO - BPOLICIAL,BUENOS AIRES,MERLO,, +155,LINEA 503A BS AS,COL,155,503R31,R31 ESTACION DE MERLO - BNUEVO,BUENOS AIRES,MERLO,, +156,LINEA 440,COL,156,440-1,RAMAL 01 SAN MIGUEL - GRAND BOURG,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-10,RAMAL 10 SAN MIGUEL - STEFANI,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-19,RAMAL 19 SAN MIGUEL - GRAND BOURG,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-1R1,GRAND BOURG- LEMOS,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-2,RAMAL 02 LEMOS - JOSE C PAZ,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-25,RAMAL 25 LEMOS - STEFANI,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-48,RAMAL 48 EST SAN MIGUEL - SANTA BRIGIDA,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-48R1,REFUERZO 48 EST SAN MIGUEL - JOSE C PAZ,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-52,RAMAL 52 EST SAN MIGUEL - SANTA BRIGIDA,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-6,RAMAL 06 EST SAN MIGUEL - LOS POLVORINES,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-81,RAMAL 81 STEFANI - TIERRAS ALTAS,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-82,RAMAL 82 LEMOS - TIERRAS ALTAS,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-82R1,REFUERZO 82 SAN MIGUEL - TIERRAS ALTAS,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-82R2,REFUERZO 82 SAN MIGUEL - LEMOS,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-82R3,REFUERZO 82 LEMOS - LEMOS,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-9,RAMAL 09 EST SAN MIGUEL - LOS POLVORINES,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-97,RAMAL 97 LEMOS - STEFANI,BUENOS AIRES,PROV,, +156,LINEA 440,COL,156,440-98,RAMAL 98 SAN MIGUEL - SAN MIGUEL,BUENOS AIRES,PROV,, +157,LINEA 154,COL,157,154A,RAMAL EX-154 PLAZA CONST EST LANUS,JN,JN,, +158,LINEA 19,COL,158,019A,PLAZA MISERERE (CIUDAD AUTONOMA DE BUENOS AIRES) - CARAPACHAY (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES),JN,JN,, +159,LINEA 502A,COL,159,502AA,TERMINAL-LA AGUADA,BUENOS AIRES,LOBOS,, +161,LINEA 520C,COL,161,520CA,520C RAMAL A,BUENOS AIRES,LA PLATA,, +161,LINEA 520C,COL,161,520CB,520C RAMAL B,BUENOS AIRES,LA PLATA,, +161,LINEA 520C,COL,161,520CC,520C RAMAL C,BUENOS AIRES,LA PLATA,, +161,LINEA 520C,COL,161,520CD,520C RAMAL D,BUENOS AIRES,LA PLATA,, +162,LINEA 297,COL,162,297A,ESTACION MERLO - 20 DE JUNIO,BUENOS AIRES,PROV,, +162,LINEA 297,COL,162,297B,ESTACION MERLO - UNION Y TAFI (FCO),BUENOS AIRES,PROV,, +163,LINEA 500D,COL,163,500DA,ESTACION PADUA - SAN LORENZO,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DB,ESTACION PADUA - CRUCE MARIANO ACOSTA,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DC,ESTACION PADUA - VILLA MAGDALENA-PONTEVEDRA,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DD,ESTACION PADUA - BARRIO RIVADAVIA-CAMPANILLA,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DE,ESTACION MERLO - OMBU - LASALLE,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DF,HOSPITAL H DE MALVINAS-VILLA MAGDALENA - MERLA GOMEZ X PEARSON,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DG,ESTACION MERLO - BARRIO NUEVO - MERLO GOMEZ,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DH,ESTACION PADUA - BARRIO NUEVO,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DI,ESTACION PADUA - PERICON,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DJ,ESTACION PADUA - EL CEIBO -MERLO - HTAL MALVINAS,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DK,ESTACION MERLO - LOS AROMOS - PETRACCHI- HELVECIA,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DL,ESTACION MERLO -EL CORTIJO,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DM,ESTACION MERLO - BARRIO LUCHETTI,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DN,ESTACION PADUA - BARRIO RIVADAVIA - MERLO,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DO,ESTACION PADUA -CASCALLARES,BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DP,ESTACION MERLO - SANTA ISABEL POR RUTA 40 (EX 200),BUENOS AIRES,MERLO,, +163,LINEA 500D,COL,163,500DQ,ESTACION MERLO - SANTA ISABEL POR HEREDIA,BUENOS AIRES,MERLO,, +164,LINEA 153 BS AS,COL,164,153A,ESTACION LINIERS(CABA)-AVBELLA VISTA Y MEDINA (PDO DE MERLO),JN,JN,, +165,LINEA 373,COL,165,373R1,RAMAL 1,BUENOS AIRES,PROV,, +165,LINEA 373,COL,165,373R5,RAMAL 5,BUENOS AIRES,PROV,, +166,LINEA 46,COL,166,046A,EVA PERON Y AVSAN MARTIN (L DEL MRIADOR)LA BOCA,JN,JN,, +166,LINEA 46,COL,166,046B,EVA PERON Y AVSAN MARTIN (L DEL MIRADOR)P CONST,JN,JN,, +166,LINEA 46,COL,166,046C,FVARELA Y PTEJDPERON(PDODE LA MATANZA)-PDE MENDOZA Y NECOCHEA(CABA)(EXPRESO X AUT 25 DE MAYO),JN,JN,, +167,LINEA 384,COL,167,384R2,RAMAL 2,BUENOS AIRES,PROV,, +168,LINEA 105,COL,168,105A,RAMAL GOLF,JN,JN,, +168,LINEA 105,COL,168,105B,RAMAL SANTO LUGARES,JN,JN,, +169,LINEA 253 BS AS,COL,169,253A,LIBERTAD - VILLA AMELIA - CIUDADELA,BUENOS AIRES,PROV,, +170,LINEA 321 BS AS,COL,170,321A,RAMAL A BARRIO MARINA,BUENOS AIRES,PROV,, +171,LINEA 90,COL,171,090A,090A-PLAZA CONSTIT(CABA)-AVSMARTYGRALPAZ,JN,JN,, +171,LINEA 90,COL,171,090B,090B-PLAZA CONSTIT(CABA)-EST FLACROZE(CABA),JN,JN,, +173,LINEA 570,COL,173,570R1,MOLINEDO Y ENTRE RIOS,BUENOS AIRES,AVELLANEDA,, +173,LINEA 570,COL,173,570R4,FRIAS Y MONTANA,BUENOS AIRES,AVELLANEDA,, +176,LINEA 315,COL,176,315A,TRONCALBASE PACHECO-PANAMERICANA Y RUTA 202,BUENOS AIRES,PROV,, +176,LINEA 315,COL,176,315B,JOSE C PAZ-PANAMERICANA Y RUTA 202,BUENOS AIRES,PROV,, +176,LINEA 315,COL,176,315C,CRUCE DERQUI - PANAMERICANA Y RUTA 202,BUENOS AIRES,PROV,, +176,LINEA 315,COL,176,315D,BASE PACHECO-LEMOS,BUENOS AIRES,PROV,, +176,LINEA 315,COL,176,315E,BASE PACHECO-CRUCE DERQUI,BUENOS AIRES,PROV,, +177,LINEA 168,COL,177,168A,A-LA BOCA(CABA)-SAN ISIDRO(PDO SAN ISIDRO(GBA),JN,JN,, +177,LINEA 168,COL,177,168B,B-LA BOCA(CABA)-PUENTE SAAVEDRA(PDO VTE LOPEZ)x AVCORDOBA,JN,JN,, +177,LINEA 168,COL,177,168C,C-LA BOCA(CABA)-PUENTE SAAVEDRA(PDO VTE LOPEZ)x CONCEPARENAL,JN,JN,, +177,LINEA 168,COL,177,168D,D-LA BOCA(CABA)-AVCORDOBA Y DARWIN(CABA),JN,JN,, +178,LINEA_164_AMBA,COL,178,164A,LINEA_164_AMBA,JN,JN,, +178,LINEA_164_AMBA,COL,178,164B,LINEA_164_AMBA,JN,JN,, +178,LINEA_164_AMBA,COL,178,164C,LINEA_164_AMBA,JN,JN,, +179,LINEA 723,COL,179,723A,AVIACION,BUENOS AIRES,TIGRE,, +179,LINEA 723,COL,179,723B,BANCALARI,BUENOS AIRES,TIGRE,, +179,LINEA 723,COL,179,723C,LOS DADOS,BUENOS AIRES,TIGRE,, +179,LINEA 723,COL,179,723D,ESTACION TORCUATO - NORDELTA,BUENOS AIRES,TIGRE,, +180,LINEA 65,COL,180,065A,CENTRO DE TRANSBORDO AREA PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BELGRANO C (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +180,LINEA 65,COL,180,065B,ESTACION AVELLANEDA (LINEA ROCA - PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES) - ESTACION BELGRANO C (LINEA MITRE - CABA),JN,JN,, +181,LINEA 328,COL,181,328A,RAMAL A,BUENOS AIRES,PROV,, +181,LINEA 328,COL,181,328B,RAMAL B - TRONCAL,BUENOS AIRES,PROV,, +181,LINEA 328,COL,181,328C,RAMAL B A CASEROS,BUENOS AIRES,PROV,, +181,LINEA 328,COL,181,328D,RAMAL C A CASEROS,BUENOS AIRES,PROV,, +182,LINEA 106,COL,182,106A,ESTACION LINIERS - RETIRO,JN,JN,, +183,LINEA 108,COL,183,108A,A RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - CROACIA y BERGAMINI (PARTIDO DE TRES DE FEBRERO - PROVINCIA DE BUENOS AIRES),JN,JN,, +184,LINEA_099,COL,184,099A,Av J B Justo y Gallardo (CABA) - Predio de RegulaciOn Puerto de Bs As (CABA),JN,JN,, +185,LINEA 179,COL,185,179A,RAMAL 1,JN,JN,, +185,LINEA 179,COL,185,179B,RAMAL 2,JN,JN,, +185,LINEA 179,COL,185,179C,RAMAL 3,JN,JN,, +186,LINEA 194,COL,186,194A,A-PZA MISERERE(CABA)-ZARATE(PCIA BS AS) x RP6,JN,JN,, +186,LINEA 194,COL,186,194B,B-PZA MISERERE(CABA)-ESTACION ESCOBAR(FFCC MITRE),JN,JN,, +186,LINEA 194,COL,186,194C,C-PZA MISERERE(CABA)-ESTACION MATHEU(FFCC MITRE) PDO ESCOBAR,JN,JN,, +186,LINEA 194,COL,186,194D,D-EXPRESO-PZA MISERERE(CABA)-ZARATE,JN,JN,, +186,LINEA 194,COL,186,194E,E-EXPRESO RECONV S/RECORRIDO A-PZA MISERERE(CABA)-ZARATE,JN,JN,, +186,LINEA 194,COL,186,194F,F-EXPRESO RECONV-PLAZA ITALIA(CABA)-ESTACION ESCOBAR(FFCC MITRE)GBA,JN,JN,, +186,LINEA 194,COL,186,194G,G-EXPRESO-PZA MISERERE(CABA)-ZARATE(GBA),JN,JN,, +186,LINEA 194,COL,186,194H,H-EXPRESO-PZA MISERERE(CABA)-ESTACION ESCOBAR(FFCC MITRE),JN,JN,, +186,LINEA 194,COL,186,194I,I-DIFERENCIAL-TERMINAL RETIRO(CABA)-ZARATE(GBA),JN,JN,, +186,LINEA 194,COL,186,194J,J-DIF-TERMINAL RETIRO(CABA)-LIMA (PDO ZARATE-GBA),JN,JN,, +187,LINEA 215,COL,187,215A,RAMAL B,BUENOS AIRES,PROV,, +187,LINEA 215,COL,187,215B,RAMAL A,BUENOS AIRES,PROV,, +187,LINEA 215,COL,187,215C,RAMAL C,BUENOS AIRES,PROV,, +187,LINEA 215,COL,187,215D,RAMAL D,BUENOS AIRES,PROV,, +188,LINEA 720,COL,188,720A,BENAVIDEZ POR RUTA 27 Y RUTA 9,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720B,R ROJAS - LAS TUNAS,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720C,FORD - JUNIN - CANAL,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720D,ALTE BROWN POR SAN PABLO,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720E,CARUPA - SOEVA,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720F,CHILE,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720G,ALMIRANTE BROWN,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720H,CANAL - FORD POR RUTA 27,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720I,CANAL- BARRIO EL ARCO,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720J,BENAVIDEZ - B LAS MASCOTAS,BUENOS AIRES,TIGRE,, +188,LINEA 720,COL,188,720K,CANAL - VILLA LA NATA,BUENOS AIRES,TIGRE,, +189,LINEA 200,COL,189,200A,EST GLEW - FRIG MEATEX,BUENOS AIRES,PROV,, +190,LINEA 225,COL,190,225T,RAMAL A,BUENOS AIRES,PROV,, +191,LINEA 404,COL,191,404DESD,DESDOBLAMIENTO POR BARRIO EL ROBLE,BUENOS AIRES,PROV,, +191,LINEA 404,COL,191,404TRON,TRONCAL SAN VICENTE - ESTACION GLEW,BUENOS AIRES,PROV,, +192,LINEA 414,COL,192,414A,TERMINAL OMNIBUS LA PLATA - ESTACION FFCC FLORENCIO VARELA,BUENOS AIRES,PROV,, +193,LINEA 508C,COL,193,508CE,SEMIRAPIDO - OLMOS,BUENOS AIRES,LA PLATA,, +194,LINEA 561B,COL,194,561BA,RAMAL UNICO,BUENOS AIRES,LA PLATA,, +195,LINEA 195,COL,195,195A,A-TERMINAL RETIRO(CABA)-TERMINAL DE LA PLATA(LA PLATA) x AV MITRE,JN,JN,, +195,LINEA 195,COL,195,195B,B-TERMINAL RETIRO (CABA)-TERMINAL DE LA PLATA (LA PLATA) x AV LN ALEM,JN,JN,, +195,LINEA 195,COL,195,195C,C-TERMINAL RETIRO (CABA)-TERMINAL DE LA PLATA (LA PLATA) x AV LN ALEM-AU BSAS-LA PLATA,JN,JN,, +195,LINEA 195,COL,195,195D,D-TERMINAL RETIRO-TERMINAL LA PLATA x AV LN ALEM-AU BSAS LA PLATA-CIRCUNVALACION 72,JN,JN,, +195,LINEA 195,COL,195,195E,E-PLAZA CONSTITUCION-TERMINAL LA PLATA x AU BSAS LA PLATA,JN,JN,, +195,LINEA 195,COL,195,195F,F-TERMINAL LINIERS-TERMINAL LA PLATA x PLCONSTITUCION-AU BSAS LA PLATA,JN,JN,, +195,LINEA 195,COL,195,195G,G-EXPRESO ESTACION RETIRO(FFCC BELGRANO NORTE)-TERMINAL LA PLATA x PLCONSTITUCION-AU BSAS LA PLATA,JN,JN,, +195,LINEA 195,COL,195,195H,H-ESTACION RETIRO(FFCC BELGRANO NORTE)-TERMINAL LA PLATA x AVLN ALEM-AU BSAS LA PLATA,JN,JN,, +195,LINEA 195,COL,195,195I,I-EXPRESO PLAZA CONSTITUCION-TERMINAL LA PLATA x AU BSAS LA PLATA,JN,JN,, +197,LINEA 407,COL,197,407A,BLANCO,BUENOS AIRES,PROV,, +198,LINEA 228A,COL,198,228AB,228B CENTRAL NUCLEAR ATUCHA I - ARIEL DEL PLATA,BUENOS AIRES,PROV,, +198,LINEA 228A,COL,198,228AC,228C-ZARATE-PUENTE SAAVEDRA,BUENOS AIRES,PROV,, +199,LINEA 523,COL,199,523A,ESTACION LANUS-ESTACION REMEDIOS DE ESCALADA,BUENOS AIRES,LANUS,, +200,LINEA_119_AMBA,COL,200,119A,CENTRO DE TRASBORDO DE CHACARITA-ESTACION LANUS,JN,JN,, +201,LINEA 437,COL,201,437A,AMARILLO,BUENOS AIRES,PROV,, +201,LINEA 437,COL,201,437B,AMARILLO BOULOGNE,BUENOS AIRES,PROV,, +202,LINEA 277,COL,202,277A,Troncal,BUENOS AIRES,PROV,, +203,LINEA 707,COL,203,707AZU,AZUL,BUENOS AIRES,SAN ISIDRO,, +203,LINEA 707,COL,203,707NAR,NARANJA (DESDOB C/VERDE),BUENOS AIRES,SAN ISIDRO,, +203,LINEA 707,COL,203,707R8A,RAMAL 8 (CARTEL ROJO),BUENOS AIRES,SAN ISIDRO,, +203,LINEA 707,COL,203,707R8B,RAMAL 8 (CARTEL BLANCO),BUENOS AIRES,SAN ISIDRO,, +203,LINEA 707,COL,203,707ROJ,ROJO,BUENOS AIRES,SAN ISIDRO,, +203,LINEA 707,COL,203,707VER,VERDE,BUENOS AIRES,SAN ISIDRO,, +204,LINEA 524,COL,204,524A,RAMAL 1,BUENOS AIRES,LANUS,, +205,LINEA 329,COL,205,329R2,RAMAL 2 SA DE PADUA - VILLA GRAL ZAPIOLA,BUENOS AIRES,PROV,, +205,LINEA 329,COL,205,329TR1,TRONCAL 1 SA DE PADUA - MORENO,BUENOS AIRES,PROV,, +206,LINEA 422,COL,206,422R2,RAMAL 2 MORENO - BARRIO LUCHETTI - CC BANCO PROVINCIA,BUENOS AIRES,PROV,, +206,LINEA 422,COL,206,422TR1,RAMAL 1 MORENO - GRAL RODRIGUEZ,BUENOS AIRES,PROV,, +207,LINEA 151,COL,207,151A,A PLAZA CONSTITUCION (CABA)-ESTDE TRANSFDE TRANPUBLPASAJ DE CORTA/MEDIA DISTANCIA DE VICENTE LOPEZ,JN,JN,, +208,LINEA 500C,COL,208,500CB,R2 - RUTA 7,BUENOS AIRES,LUJAN,, +208,LINEA 500C,COL,208,500CC,R3 - OLIVERA,BUENOS AIRES,LUJAN,, +209,LINEA 23,COL,209,023A,VILLA SOLDATI (CIUDAD AUTONOMA DE BUENOS AIRES) - PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +210,LINEA 501F,COL,210,501FA,R1 - PARQUE LASA,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FB,R2 - CAMINO,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FC,R3 - INST ALVEAR,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FD,R4 - LANUSSE,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FE,R5 - JUAN XXIII 1/2,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FF,R6 - JUAN XXIII H,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FG,R7 - ZAPIOLA 1/2,BUENOS AIRES,LUJAN,, +210,LINEA 501F,COL,210,501FH,R9 - ESTACION CEIBO,BUENOS AIRES,LUJAN,, +211,LINEA 5,COL,211,005A,AVENIDA PIEDRABUENA y SARAZA (CIUDAD AUTONOMA DE BUENOS AIRES) - PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +211,LINEA 5,COL,211,005B,PIEDRA BUENA,JN,JN,, +213,LINEA 150,COL,213,150A,V MADERO- HPTAL FERROVIARIO (RAMAL AERONAUTICO),JN,JN,, +213,LINEA 150,COL,213,150B,VMADERO - HPTAL FERROVIARIO (EST SAENZ),JN,JN,, +214,LINEA 502B,COL,214,502BA,R1 - OPEN DOOR,BUENOS AIRES,LUJAN,, +214,LINEA 502B,COL,214,502BB,R2 - TORRES,BUENOS AIRES,LUJAN,, +215,LINEA 503E,COL,215,503EA,503EA-SANTA MARTA-SARMIENTO,BUENOS AIRES,LUJAN,, +215,LINEA 503E,COL,215,503EB,503EB-SAN FRANCISCO-HOSTERIA,BUENOS AIRES,LUJAN,, +215,LINEA 503E,COL,215,503EC,503EC-LUJAN-VILLA RUIZ,BUENOS AIRES,LUJAN,, +216,LINEA 33,COL,216,033A,CIUDAD UNIVERSITARIA (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por BARRACAS y GENERAL MADARIAGA),JN,JN,, +216,LINEA 33,COL,216,033B,CIUDAD UNIVERSITARIA (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por BARRACAS y CEMENTERIO DE AVELLANEDA),JN,JN,, +216,LINEA 33,COL,216,033C,CIUDAD UNIVERSITARIA (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por DOCK SUD y GENERAL MADARIAGA),JN,JN,, +216,LINEA 33,COL,216,033D,CIUDAD UNIVERSITARIA (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por DOCK SUD y CEMENTERIO DE AVELANEDA),JN,JN,, +216,LINEA 33,COL,216,033E,RETIRO (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por BARRACAS y GENERAL MADARIAGA),JN,JN,, +216,LINEA 33,COL,216,033F,RETIRO (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por BARRACAS y CEMENTERIO DE AVELLANEDA),JN,JN,, +216,LINEA 33,COL,216,033G,RETIRO (CABA) -MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por DOCK SUD y GENERAL MADARIAGA),JN,JN,, +216,LINEA 33,COL,216,033H,RETIRO (CABA) - MONTE CHINGOLO (PARTIDO DE LANUS - PCIA DE BS AS) (por DOCK SUD y CEMENTERIO DE AVELANEDA),JN,JN,, +216,LINEA 33,COL,216,033I,RETIRO (CABA) - ESTACION REMEDIOS DE ESCALADA (LINEA ROCA - PARTIDO DE LANUS - PCIA DE BS AS) (Precario),JN,JN,, +217,LINEA 107,COL,217,107A,EVA PERON - CIUDAD UNIVERSITARIA,JN,JN,, +217,LINEA 107,COL,217,107B,107B CDAD UNIVERSITARIA-AV LA SALLE Y E PERON,JN,JN,, +218,LINEA 8,COL,218,008A,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - AEROPUERTO INTERNACIONAL DE EZEIZA MINISTRO PISTARINI (PARTIDO DE EZEIZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +218,LINEA 8,COL,218,008B,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - MERCADO CENTRAL DE BUENOS AIRES (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +218,LINEA 8,COL,218,008C,LA BOCA (CIUDAD AUTONOMA DE BUENOS AIRES) - LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +218,LINEA 8,COL,218,008D,(por AUTOPISTA 25 DE MAYO) AVENIDA PASEO COLON y COCHABAMBA (CABA) - ESTACION INIERS (LINEA SARMIENTO - CABA),JN,JN,, +218,LINEA 8,COL,218,008E,(por AUTOPISTA 25 DE MAYO - AU1) AVENIDA DE MAYO y PERU (CIUDAD AUTONOMA DE BUENOS AIRES) - AEROPUERTO INTERNACIONAL DE EZEIZA MINISTRO PISTARINI,JN,JN,, +219,LINEA 544,COL,219,544A,RAMAL A (EstaciOn Lomas de Zamora-AV ROSAS Y ELIZALDE (ESC 16)),BUENOS AIRES,LOMAS DE ZAMORA,, +219,LINEA 544,COL,219,544B,RAMAL B (EstaciOn Lomas de Zamora - LA RIBERA SUR Y NEWTON),BUENOS AIRES,LOMAS DE ZAMORA,, +221,LINEA 501B,COL,221,501R1,1VILLA ROSA (B LUCHETTI) - VILLA ASTOLFI,BUENOS AIRES,PILAR,, +221,LINEA 501B,COL,221,501R2,2ESTACION PILAR (FFCC SAN MARTIN) - SAN ALEJO x B NUEVO,BUENOS AIRES,PILAR,, +221,LINEA 501B,COL,221,501R3,3VILLA ROSA (BLUCHETTI) - VILLA ASTOLFI x B 9 DE JULIO,BUENOS AIRES,PILAR,, +221,LINEA 501B,COL,221,501R4,4ESTACION PILAR (FFCC SAN MARTIN)-ESTACION VILLA ROSA (FFCC BELGRANO NORTE)SNOCTURNO,BUENOS AIRES,PILAR,, +222,LINEA 343,COL,222,343A,TRONCAL CIUDADELA - PUERTO DE FRUTOS DE TIGRE,BUENOS AIRES,PROV,, +222,LINEA 343,COL,222,343B,FRACCIONADO CIUDADELA - CARUPA,BUENOS AIRES,PROV,, +223,LINEA 59,COL,223,059A,A (por ESTACION LA LUCILA)EST BS AS(LINEA BELGRANO SUR - CABA) - INT CORONEL AMARO AVALOS y DOMINGO DEACASSUSO (PIDO DE VICENTE LOPEZ - PCIA DE BS AS),JN,JN,, +223,LINEA 59,COL,223,059B,B (por BARRIO GOLF)EST BS AS(LINEA BELGRANO SUR - CABA) - INT CORONEL AMARO AVALOS y DOMINGO DE ACASSUSO (PDO DE VICENTE LOPEZ - PCIA DE BS AS),JN,JN,, +223,LINEA 59,COL,223,059C,C EST BS AS(LINEA BEL SUR-CABA)ESTAC DE TRANSF DE TRANSP PUBLICO DE PASAJEROS DE CORTA Y MEDIA DIST DE VICENTE LOPEZ (VICENTE LOPEZ - PCIA DE BS AS),JN,JN,, +223,LINEA 59,COL,223,059D,D (por AUT PTE ILLIA)-s/ la traza del Rec B EST BS AS(LINEA BEL SUR - CABA)-INT CNEL AMARO AVALOS y D DE ACASSUSO (VICENTE LOPEZ-PCIA DE BS AS)EXPRESO,JN,JN,, +224,LINEA 178,COL,224,178A,RAMAL 1,JN,JN,, +224,LINEA 178,COL,224,178B,RAMAL 2,JN,JN,, +224,LINEA 178,COL,224,178C,RAMAL 3,JN,JN,, +224,LINEA 178,COL,224,178D,RAMAL 4,JN,JN,, +224,LINEA 178,COL,224,178E,RAMAL 5,JN,JN,, +225,LINEA 505 D,COL,225,505D,LINEA 505,BUENOS AIRES,FLORENCIO VARELA,, +226,LINEA 289,COL,226,289A,CIUDADELA - EST SAN MARTIN,BUENOS AIRES,PROV,, +226,LINEA 289,COL,226,289B,RAMOS MEJIA - EST SAN MARTIN,BUENOS AIRES,PROV,, +226,LINEA 289,COL,226,289C,TRONCAL CIUDADELA - RAMOS MEJIA,BUENOS AIRES,PROV,, +227,LINEA 182,COL,227,182A,RAMAL 1,JN,JN,, +227,LINEA 182,COL,227,182B,RAMAL 2,JN,JN,, +227,LINEA 182,COL,227,182C,RAMAL 3,JN,JN,, +227,LINEA 182,COL,227,182D,182D-JRODO Y LACARRA(CAP)-ESTPALOMAR(X VBASSO),JN,JN,, +228,LINEA 304,COL,228,304A,CIUDADELA - CARUPA,BUENOS AIRES,PROV,, +229,LINEA 166,COL,229,166A,ESTACION 3 DE FEBRERO(FFCC MITRE-CABA)-ESTACION MORON(FFCC SARMIENTO(MORON),JN,JN,, +229,LINEA 166,COL,229,166B,ESTACION 3 DE FEBRERO(FFCC MITRE-CABA)-LIBERTAD(MERLO),JN,JN,, +229,LINEA 166,COL,229,166C,CIUDAD UNIVERSITARIA(CABA)-ESTACION MORON(FFCC SARMIENTO(MORON),JN,JN,, +230,LINEA 239B,COL,230,239BB,RAMAL B,BUENOS AIRES,PROV,, +230,LINEA 239B,COL,230,239BP,RAMAL P,BUENOS AIRES,PROV,, +230,LINEA 239B,COL,230,239BPR,RAMAL P ROJO,BUENOS AIRES,PROV,, +231,LINEA 670,COL,231,670A,CARTEL BLANCO,BUENOS AIRES,GENERAL SAN MARTIN,, +231,LINEA 670,COL,231,670B,CARTEL VERDE,BUENOS AIRES,GENERAL SAN MARTIN,, +231,LINEA 670,COL,231,670C,CARTEL ROJO,BUENOS AIRES,GENERAL SAN MARTIN,, +231,LINEA 670,COL,231,670D,CARTEL AZUL,BUENOS AIRES,GENERAL SAN MARTIN,, +231,LINEA 670,COL,231,670E,CARTEL AMARILLO,BUENOS AIRES,GENERAL SAN MARTIN,, +231,LINEA 670,COL,231,670F,NARANJA 3,BUENOS AIRES,GENERAL SAN MARTIN,, +231,LINEA 670,COL,231,670G,NARANJA 1-2,BUENOS AIRES,GENERAL SAN MARTIN,, +232,LINEA 263A,COL,232,263RNeg,RAMAL NEGRO,BUENOS AIRES,PROV,, +232,LINEA 263A,COL,232,263RRoj,RAMAL ROJO,BUENOS AIRES,PROV,, +232,LINEA 263A,COL,232,263RVer,RAMAL VERDE,BUENOS AIRES,PROV,, +233,LINEA 504B,COL,233,504BA,ESTACION ESCOBAR,BUENOS AIRES,ESCOBAR,, +234,LINEA 507B,COL,234,507BA,ESTACION ESCOBAR,BUENOS AIRES,ESCOBAR,, +235,LINEA 266,COL,235,266R1,RAMAL 1,BUENOS AIRES,PROV,, +235,LINEA 266,COL,235,266R2,RAMAL 2,BUENOS AIRES,PROV,, +235,LINEA 266,COL,235,266R4,RAMAL 4,BUENOS AIRES,PROV,, +235,LINEA 266,COL,235,266R6,RAMAL 6,BUENOS AIRES,PROV,, +235,LINEA 266,COL,235,266RS,RAMAL S SAN FRANCISCO SOLANO,BUENOS AIRES,PROV,, +236,LINEA 299,COL,236,299A,RAMAL A,BUENOS AIRES,PROV,, +236,LINEA 299,COL,236,299C,RAMAL C,BUENOS AIRES,PROV,, +236,LINEA 299,COL,236,299M,RAMAL M,BUENOS AIRES,PROV,, +236,LINEA 299,COL,236,299S,RAMAL S,BUENOS AIRES,PROV,, +237,LINEA 327,COL,237,327R1,RAMAL 2ESTACION PADUA - VILLA ESCOBAR,BUENOS AIRES,PROV,, +237,LINEA 327,COL,237,327R5,RAMAL 5 ESTACION PASO DEL REY - B ARCO IRIS,BUENOS AIRES,PROV,, +237,LINEA 327,COL,237,327R8,RAMAL 8 ESTACION PADUA - PASO DEL REY,BUENOS AIRES,PROV,, +237,LINEA 327,COL,237,327TRONC,TRONCAL 1 ESTACION PADUA - BARRIO GUEMES,BUENOS AIRES,PROV,, +238,LINEA 263B,COL,238,263BA,ESTACION BURZACO - VILLA ALCIRA X 837,BUENOS AIRES,PROV,, +238,LINEA 263B,COL,238,263BB,ESTACION BURZACO - VILLA ALCIRA X 835,BUENOS AIRES,PROV,, +238,LINEA 263B,COL,238,263BC,ESTACION BURZACO - VILLA ALCIRA X 844,BUENOS AIRES,PROV,, +239,LINEA 370,COL,239,370A,EST GLEW- BO LAS LOMAS,BUENOS AIRES,PROV,, +240,LINEA 336,COL,240,336A,PASO DEL REY - MORON,BUENOS AIRES,PROV,, +241,LINEA 385,COL,241,385A,ESTACION GLEW - NUMANCIA X1,BUENOS AIRES,PROV,, +241,LINEA 385,COL,241,385B,ESTACION GLEW - NUMANCIA X2,BUENOS AIRES,PROV,, +241,LINEA 385,COL,241,385C,ESTACION GLEW - X 33,BUENOS AIRES,PROV,, +241,LINEA 385,COL,241,385D,ESTACION GLEW - X 106,BUENOS AIRES,PROV,, +241,LINEA 385,COL,241,385E,ESTACION GLEW - BARRIO SAN MARTIN,BUENOS AIRES,PROV,, +242,LINEA 392,COL,242,392A,EST BELGRANO - MORON,BUENOS AIRES,PROV,, +243,LINEA 47,COL,243,047A,ESTACION FEDERICO LACROZE- AUTODROMO (POR NOGOYA),JN,JN,, +243,LINEA 47,COL,243,047B,ESTACION FEDERICO LACROZE- AUTODROMO(POR CAMARONE,JN,JN,, +244,LINEA 388,COL,244,388B,EST ALEJANDRO KORN - BRANDSEN,BUENOS AIRES,PROV,, +244,LINEA 388,COL,244,388J,EST ALEJANDRO KORN - JEPPENER,BUENOS AIRES,PROV,, +245,LINEA 403,COL,245,403A,ESTACION LOMAS DE ZAMORA - ESTACION FLORENCIO VARELA,BUENOS AIRES,PROV,, +246,LINEA 435,COL,246,435A,SAN VICENTE - LANUS,BUENOS AIRES,PROV,, +247,LINEA 88,COL,247,088A,A (por AVENIDA RIVADAVIA,JN,JN,, +247,LINEA 88,COL,247,088B,B (por AVENIDA JUAN BAUTISTA ALBERDI,JN,JN,, +247,LINEA 88,COL,247,088C,C (por AVENIDA RIVADAVIA y RUTA NACIONAL N 205) PLAZA DE MISERERE (CABA) - ESTACION CANUELAS (FFCC ROCA - BSAS),JN,JN,, +247,LINEA 88,COL,247,088D,D (por AV JUAN BAUTISTA ALBERDI y RUTA NACIONAL N 205) PLAZA DE MISERERE (CABA) - EST CANUELAS (FFCC ROCA - BS AS),JN,JN,, +247,LINEA 88,COL,247,088E,E (por AVENIDA RIVADAVIA) PLAZA DE MISERERE (CIUDAD AUTONOMA DE BUENOS AIRES) - KILOMETRO 56 - RUTA NACIONAL N 3 (PARTIDO DE CANUELAS - BSAS),JN,JN,, +247,LINEA 88,COL,247,088F,F (por AV JUAN B ALBERDI) PLAZA DE MISERERE (CABA) - KM56 - RUTA NACIONAL N 3 (PARTIDO DE CANUELAS - BSAS),JN,JN,, +247,LINEA 88,COL,247,088G,G (AV RIVADAVIA)PLAZA DE MISERERE(CABA)-KM48-AV BRIGADIER GRAL DON JUAN MANUEL DE ROSAS - RN3(LA MATANZA-BSAS),JN,JN,, +247,LINEA 88,COL,247,088H,H(AV JUAN BALBERDI)PLAZA DE MISERERE (CABA)-KM48-AVBRIGADIER GRAL DON JUAN MANUEL DE ROSAS-RN3(LA MATANZA-BSAS),JN,JN,, +247,LINEA 88,COL,247,088I,I-(AVRIVADAVIA)PLAZA DE MISERERE(CABA)-BRAYO DE SOL (KM35-AV BRIGADIER GRAL JUAN MANUEL DE ROSAS-RN3-LA MATANZA-BSAS,JN,JN,, +247,LINEA 88,COL,247,088J,J(AVJUAN BALBERDI)PLAZA DE MISERERE(CABA)-BRAYO DE SOL (KM35-AVBRIGADIER GRAL JMROSAS-RN3-MATANZA-BSAS),JN,JN,, +247,LINEA 88,COL,247,088K,K(RIVADAVIA)PLAZA DE MISERERE(CABA)-BJORGE NEWBERY (KM26-AVBRIGADIER GRAL JMROSAS-RN3-MATANZA-BSAS),JN,JN,, +247,LINEA 88,COL,247,088L,L(AVJUAN BALBERDI)PLAZA DE MISERERE(CABA)-BJORGE NEWBERY(KM26-AVBRIGADIER GRAL JMROSAS-RN3-MATANZA-BSAS),JN,JN,, +247,LINEA 88,COL,247,088M,M EXPRESO(AU25 DE MAYO y MONSENOR RBUFANO-RPN 4-CCINTURA-PLAZA DE MISERERE (CABA)-KM29-AVBRIGADIERGRALJMROSAS-RN3-MATANZA-BSAS,JN,JN,, +247,LINEA 88,COL,247,088N,N EXPRESO-AU25 DE MAYO Y AVGRAL ROJO-RP21)-PZA MISERERE(CABA)KM48-AVBRIGADIER GRAL JM ROSAS-RN3-MATANZA-BSAS,JN,JN,, +248,LINEA 228F,COL,248,228FA,PUENTE SAAVEDRA - DEL VISO - ESTACION TORO,BUENOS AIRES,PROV,, +249,LINEA 291,COL,249,291A,ESCOBAR - DIQUE LUJAN,BUENOS AIRES,PROV,, +249,LINEA 291,COL,249,291B,ESCOBAR - PILAR,BUENOS AIRES,PROV,, +249,LINEA 291,COL,249,291C,CEMENTERIO ESCOBAR- B LAS ORQUIDEAS X AMANCAY,BUENOS AIRES,PROV,, +249,LINEA 291,COL,249,291D,ESCOBAR - PILAR X COLECTORA OESTE DE PANAMERICANA,BUENOS AIRES,PROV,, +250,LINEA 548,COL,250,548A,RAMAL 1,BUENOS AIRES,LOMAS DE ZAMORA,, +251,LINEA 550 BSAS,COL,251,550B,ESTACION LOMAS DE ZAMORA-PTELA NORIA,BUENOS AIRES,LOMAS DE ZAMORA,, +251,LINEA 550 BSAS,COL,251,550H,ESTACION LOMAS DE ZAMORA-PTELA NORIA,BUENOS AIRES,LOMAS DE ZAMORA,, +251,LINEA 550 BSAS,COL,251,550J,ANTARTIDA ARG(RUTA205)-PTELA NORIA,BUENOS AIRES,LOMAS DE ZAMORA,, +252,LINEA 502,COL,252,502A,RAMAL_1,BUENOS AIRES,CANUELAS,, +253,LINEA 551 BSAS,COL,253,551N,RAMAL N (Santa Catalina-Puente de La Noria),BUENOS AIRES,LOMAS DE ZAMORA,, +253,LINEA 551 BSAS,COL,253,551P,PRINCIPAL (Puente de La Noria-EstaciOn Lomas de Zamora),BUENOS AIRES,LOMAS DE ZAMORA,, +254,LINEA 520A,COL,254,520AA,ESTACION TORO-PTE DERQUI-ESTACION DE TREN PILAR,BUENOS AIRES,PILAR,, +254,LINEA 520A,COL,254,520AB,ESTACION TORO (ESCUELA 15)-CC ALTOS DEL PILAR-por DEL VISO,BUENOS AIRES,PILAR,, +254,LINEA 520A,COL,254,520AC,ESTACION DERQUI-VILLA ROSA-ZELAYA,BUENOS AIRES,PILAR,, +254,LINEA 520A,COL,254,520AE,ESTACION TORO-ESTDE TREN PILAR (por BARRIO TOBA),BUENOS AIRES,PILAR,, +254,LINEA 520A,COL,254,520AI,ZELAYA-ESTACION DE TREN PILAR,BUENOS AIRES,PILAR,, +254,LINEA 520A,COL,254,520AJ,EST ZELAYA - CC LOS LAGARTOS - ESTACION DEL VISO EXTENCION LOGOMARSINO,BUENOS AIRES,PILAR,, +255,LINEA 552 BSAS,COL,255,552A,ESTACION BANFIELD-RUTA N4(LOMAS DE ZAMORA),BUENOS AIRES,LOMAS DE ZAMORA,, +255,LINEA 552 BSAS,COL,255,552B,ESTACION BANFIELD-QUIROGA(LOMAS DE ZAMORA),BUENOS AIRES,LOMAS DE ZAMORA,, +256,LINEA 273,COL,256,273A,RAMAL A 77 Y 134 - AV 32 Y CALLE 120,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273B11,RAMAL B 11 77 Y 134 - EST CITY BELL POR CALLE 11,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273BC,RAMAL BC 77 Y 134 - EST CITY BELL POR CANTILO,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273BEL,SEMIRAPIDO POR BELGRANO,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273BG,RAMAL BG 77 Y 134 - LABORATORIO LEDERLE,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273C,RAMAL C 77 Y 134 - GORINA POR CNOGRAL BELGRANO,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273CENT,SEMIRAPIDO POR CENTENARIO,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273D,RAMAL D 77 Y 134 - ARTURO SEGUI POR CNO CENTENAR,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273F,RAMAL F DESDE 134 Y 77 - GORINA POR CNO PARQUE C,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273G,RAMAL G 77 Y 134 - ARTURO SEGUI POR CAMINO GRAL,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273H,RAMAL H 77 Y 134 - ARCO VILLA ELISA POR CAMINO GRL BELGRANO,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273I,RAMAL I 77 Y 134 - BARRIO LAS BANDERITAS,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273R4,RAMAL 4 BELGRANO,BUENOS AIRES,PROV,, +256,LINEA 273,COL,256,273R6,RAMAL 6 CENTENARIO,BUENOS AIRES,PROV,, +257,LINEA 061,COL,257,061A,PREDIO DE REGULACION AREA PLAZA CONSTITUCION (CABA) - PREDIO DE REGULACION AREA PLAZA CONSTITUCION (CABA),JN,JN,, +258,LINEA 553 BSAS,COL,258,553E,ESTACION LOMAS DE ZAMORA-PTELA NORIA,BUENOS AIRES,LOMAS DE ZAMORA,, +258,LINEA 553 BSAS,COL,258,553O,ESTACION LOMAS DE ZAMORA-OLIMPO RUTA N4(LOMAS DE ZAMORA),BUENOS AIRES,LOMAS DE ZAMORA,, +259,LINEA 62,COL,259,062A,PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +260,LINEA 203,COL,260,203A,PUENTE SAAVEDRA - MORENO POR CANAL SAN FERNANDO,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203B,PUENTE SAAVEDRA - MORENO POR VIRREYES,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203C,PUENTE SAAVEDRA - MORENO POR PANAMERICANA,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203D,PUENTE SAAVEDRA - LUJAN POR PANAMERICANA,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203E,PUENTE SAAVEDRA - PILAR POR FORD,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203F,PUENTE SAAVEDRA - PILAR POR DEL VISO,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203G,PUENTE SAAVEDRA - PILAR POR RUTA 9,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203H,PUENTE SAAVEDRA - MAQUINISTA SAVIO,BUENOS AIRES,PROV,, +260,LINEA 203,COL,260,203I,PUENTE SAAVEDRA - PILAR POR ACCESO NORTE,BUENOS AIRES,PROV,, +261,LINEA 441,COL,261,441A,EST MORON VILLA ANGELA,BUENOS AIRES,PROV,, +261,LINEA 441,COL,261,441B,MORON - BARRIO NUEVO,BUENOS AIRES,PROV,, +261,LINEA 441,COL,261,441C,EST MORON - SAN ALBERTO,BUENOS AIRES,PROV,, +261,LINEA 441,COL,261,441D,EST CASTELAR - VILLA UDAONDO,BUENOS AIRES,PROV,, +262,LINEA 114,COL,262,114A,"Recorrido A - EstaciOn Belgrano ""C"" (FFCC Mitre) (CABA) - Terminal Puente La Noria (Pdo De Lomas de Zamora)",JN,JN,, +262,LINEA 114,COL,262,114B,"Recorrido B - EstaciOn Belgrano ""C"" (FFCC Mitre) (CABA) - Terminal Puente La Noria (Pdo De Lomas de Zamora) - (por Parque de la Ciudad)",JN,JN,, +262,LINEA 114,COL,262,114C,"Recorrido C - EstaciOn Belgrano ""C"" (FFCC Mitre) (CABA) - Av Cnel Roca y Saladillo (CABA)",JN,JN,, +263,LINEA 418,COL,263,418TRO,TRONCAL TERMINAL DE OMNIBUS LA PLATA - ESTACION BERAZATEGUI,BUENOS AIRES,PROV,, +264,LINEA 443,COL,264,443B,RAMAL B - MORON - VILLA LEON,BUENOS AIRES,PROV,, +265,LINEA 504A,COL,265,504-1,ESTMERLO-BARRIO RIVADAVIA-SARANDI Y MORENO,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-10,ESTACION MERLO-CAMINO DE LA RIVERA,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-11,ESTACION MERLO-BARRIO EL ZORZAL,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-12,BARRIO NUEVO-ESTACION MERLO,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-2,ESTACION MERLO-ROSARIO Y BELEN,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-3,ESTACION MERLO-BARRIO LA CAMPANILLA,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-4,ESTACION MERLO-BARRIO MARTIN FIERRO,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-5,ESTACION MERLO-BARRIO ARCO IRIS,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-6,BARRIO NUEVO-BARRIO ARCO IRIS-MERLO,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-7,ESTACION MERLO-ARENALES Y EL PERICON,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-8,ESTACION MERLO-DALTON Y FRAGA-ESCUELA 50,BUENOS AIRES,MERLO,, +265,LINEA 504A,COL,265,504-9,ESTACION MERLO-BARRIO SAMORE,BUENOS AIRES,MERLO,, +266,LINEA 100,COL,266,100A,ESTACION LANUS - DARSENA D,JN,JN,, +266,LINEA 100,COL,266,100B,ESTACION LANUS - DARSENA D (POR GUEMES - BELGRANO - MITRE),JN,JN,, +266,LINEA 100,COL,266,100C,LINCH Y AGUAPEY - DARSENA D,JN,JN,, +267,LINEA 338,COL,267,338A,PASCO TRONCAL,BUENOS AIRES,PROV,, +267,LINEA 338,COL,267,338B,CENTENARIO,BUENOS AIRES,PROV,, +267,LINEA 338,COL,267,338C,LLAVALLOL,BUENOS AIRES,PROV,, +267,LINEA 338,COL,267,338D,ADROGUE,BUENOS AIRES,PROV,, +267,LINEA 338,COL,267,338E,BUEN AYRE,BUENOS AIRES,PROV,, +267,LINEA 338,COL,267,338F,CAMARGO,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202A,RAMAL A,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202AST,RAMAL ASTILLEROS RIO SANTIAGO,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202B,RAMAL B,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202C,RAMAL C,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202CAB,RAMAL BERISSO - EL CARMEN,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202CAL,RAMAL BERISSO - EL CARMEN,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202D,RAMAL D,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202E,RAMAL E,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202F,RAMAL F,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202G,RAMAL G,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202H,RAMAL H,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202I,RAMAL I,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202J,RAMAL J - LA BALANDRA,BUENOS AIRES,PROV,, +268,LINEA 202,COL,268,202PRO,RAMAL PUNTA LARA POR PROPULSORA,BUENOS AIRES,PROV,, +270,LINEA 51,COL,270,051A,CONSTITUCION - CANUELAS,JN,JN,, +270,LINEA 51,COL,270,051B,LANUS - AEROP EZEIZA,JN,JN,, +270,LINEA 51,COL,270,051C,LOMAS - CANNING,JN,JN,, +270,LINEA 51,COL,270,051D,CONSTITUCION - BRANDSEN,JN,JN,, +270,LINEA 51,COL,270,051E,LOMAS - CALZADA,JN,JN,, +270,LINEA 51,COL,270,051F,051F SAN JOSE Y CONSTITUCION-RUTA NAC N 210,JN,JN,, +270,LINEA 51,COL,270,051G,051G SAN JOSE Y CONSTITUCION-ESTACION M PAZ(CANU),JN,JN,, +270,LINEA 51,COL,270,051H,051H SAN JOSE Y CONSTITUCION-ESTACION R CALZADA,JN,JN,, +271,LINEA 20,COL,271,020A,RETIRO - UNIVERSIDAD LOMAS DE ZAMORA (POR IPARAGUIRRE),JN,JN,, +271,LINEA 20,COL,271,020B,RETIRO - UNIVERSIDAD LOMAS DE ZAMORA (POR AV 9 DE JULIO),JN,JN,, +272,LINEA 74,COL,272,074A,PREDIO DE REGULACION PUERTO DE BUENOS AIRES (CIUDAD AUTONOMA DE BUENOS AIRES) - BURZACO (PARTIDO DE ALMIRANTE BROWN - PROVINCIA DE BUENOS AIRES),JN,JN,, +273,LINEA 117,COL,273,117A,ESTACION RIVADAVIA - ESTACION ING BUDGE,JN,JN,, +273,LINEA 117,COL,273,117B,IPARRAGUIRRE Y JUAN XXIII - ESTACION LINIERS,JN,JN,, +273,LINEA 117,COL,273,117C,ESTACION LINIERS - ESTACION RIVADAVIA,JN,JN,, +274,LINEA 44,COL,274,044A,PUENTE ALSINA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BELGRANO C (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +275,LINEA 86,COL,275,086A,LA BOCA (CABA) - GONZALEZ CATAN (PDO DE LA MATANZA - PCIA DE BS AS) (por LINIERS y RUTA PROVINCIAL N 21),JN,JN,, +275,LINEA 86,COL,275,086B,LA BOCA (CABA) - GONZALEZ CATAN (PDO DE LA MATANZA - PCIA DE BS AS) (por LINIERS y RUTA NACIONAL N 3),JN,JN,, +275,LINEA 86,COL,275,086C,LA BOCA (CABA) - GONZALEZ CATAN (PDO DE LA MATANZA - PCIA DE BS AS) (por PERGAMINO y RUTA NACIONAL N 3),JN,JN,, +275,LINEA 86,COL,275,086D,LA BOCA (CABA) - VILLEGAS (PDO DE LA MATANZA - PCIA DE BS AS) (por PERGAMINO),JN,JN,, +275,LINEA 86,COL,275,086E,PRIMERA JUNTA (CABA)) - ESTACION GONZALEZ CATAN (LINEA BELGRANO SUR - PDO DE LA MATANZA - PCIA DE BS AS) (por PERGAMINO y RUTA NACIONAL N 3),JN,JN,, +275,LINEA 86,COL,275,086F,PRIMERA JUNTA (CABA) - ESTACION GONZALEZ CATAN (LINEA BELGRANO SUR - PDO DE LA MATANZA - PCIA DE BS AS) (por PERGAMINO y RUTA PROVINCIAL N 21),JN,JN,, +275,LINEA 86,COL,275,086G,LA BOCA (CABA) - GONZALEZ CATAN (PDO DE LA MATANZA - PCIA DE BS AS) (por AUT 25 DE MAYO (AU1) y RUTA NACIONAL N 3,JN,JN,, +275,LINEA 86,COL,275,086H,LA BOCA (CABA) - GONZALEZ CATAN (PDO DE LA MATANZA - PCIA DE BS AS) (por AUT 25 DE MAYO y RUTA PROVINCIAL N 21),JN,JN,, +276,LINEA 79,COL,276,079A,079A - CONSTITUCION - SAN VICENTE,JN,JN,, +276,LINEA 79,COL,276,079B,079B - CONSTITUCION - GUERNICA,JN,JN,, +276,LINEA 79,COL,276,079C,079C - CONSTITUCION - NUMANCIA,JN,JN,, +276,LINEA 79,COL,276,079D,079D - CONSTITUCION - CLAYPOLE,JN,JN,, +276,LINEA 79,COL,276,079E,079E - CONSTITUCION - RAYO DE SOL,JN,JN,, +276,LINEA 79,COL,276,079F,079F - CONSTITUCION - CALZADA,JN,JN,, +276,LINEA 79,COL,276,079G,079G CONSTITUCION - SAN JOSE,JN,JN,, +276,LINEA 79,COL,276,079H,CONSTITUCION - VARELA,JN,JN,, +276,LINEA 79,COL,276,079I,079I - CONSTITUCION - ALTE BROWN,JN,JN,, +276,LINEA 79,COL,276,079J,079J - CONSTITUCION - BURZACO,JN,JN,, +276,LINEA 79,COL,276,079K,079K - PavOn y S del Estero (CABA) x Est R Calzada - B San JosE,JN,JN,, +277,LINEA 177,COL,277,177A,BURZACO POMPEYA,JN,JN,, +277,LINEA 177,COL,277,177B,177B POMPEYA-2 ABRIL Y P GOYENA (X EVA PERON),JN,JN,, +278,LINEA 721,COL,278,721A,RUTA 197 Y COLOMBIA (TIGRE)-CHUBUT Y TUYUTI(TIGRE),BUENOS AIRES,TIGRE,, +278,LINEA 721,COL,278,721B,RUTA 197 Y COLOMBIA (TIGRE)-CHUBUT Y TUYUTI(TIGRE),BUENOS AIRES,TIGRE,, +278,LINEA 721,COL,278,721C,RUTA 197 Y COLOMBIA(TIGRE)-PUERTO DE FRUTOS(TIGRE),BUENOS AIRES,TIGRE,, +278,LINEA 721,COL,278,721D,CHUBUT Y TUYUTI (TIGRE) - CARUPA (TIGRE),BUENOS AIRES,TIGRE,, +279,LINEA 193,COL,279,193A,POMPEYA- KM29,JN,JN,, +279,LINEA 193,COL,279,193B,193B-ESTSAENZ(CAP)-ESTLAFERRERE(MTZA)XESTLAFERR,JN,JN,, +279,LINEA 193,COL,279,193C,193C-ESTSAENZ(CAP)-ESTINDEPENDENCIA(MTZA),JN,JN,, +280,LINEA 148,COL,280,148A,RECORRIDO A_CONSTITUCION - CEMENTERIO FCIO VARELA,JN,JN,, +280,LINEA 148,COL,280,148B,RECORRIDO B_CONSTITUCION-PARAJE EL TROPEZON,JN,JN,, +280,LINEA 148,COL,280,148C,RECORRIDO C_CONSTITUCION-PARAJE EL ALPINO,JN,JN,, +280,LINEA 148,COL,280,148D,148D CONSTITUCION-THEVENET Y RPN 36 (X LYNCH),JN,JN,, +280,LINEA 148,COL,280,148E,RECORRIDO E_CONSTITUCION-DEL CAMPO Y AV F VARELA,JN,JN,, +280,LINEA 148,COL,280,148F,RECORRIDO F_CONSTITUCION-DARDO ROCHA Y LAVALLE,JN,JN,, +280,LINEA 148,COL,280,148G,RECORRIDO G_CONSTITUCION-EST S FCO SOLANO JLOPEZ,JN,JN,, +280,LINEA 148,COL,280,148H,RECORRIDO H_CONSTITUCION-EST S FCO SOLANO MONTEVE,JN,JN,, +280,LINEA 148,COL,280,148I,RECORRIDO I_CONSTITUCION-AV DTO ALVAREZ Y MONTEVER,JN,JN,, +280,LINEA 148,COL,280,148J,RECORRIDO J_CONSTITUCION-EST SFCO SOLANO AV FLORE,JN,JN,, +285,LINEA 406,COL,285,406A,RAMOS SAN JOSE,BUENOS AIRES,PROV,, +285,LINEA 406,COL,285,406B,RAMOS LOMAS,BUENOS AIRES,PROV,, +286,LINEA 506 AMBA ALMIRANTE BROWN,COL,286,506R1,R1 - ESTACION GLEW - TAPIN Y LARRETA,BUENOS AIRES,ALMIRANTE BROWN,, +286,LINEA 506 AMBA ALMIRANTE BROWN,COL,286,506R2,R2 - ESTACION GLEW - B GENDARMERIA,BUENOS AIRES,ALMIRANTE BROWN,, +286,LINEA 506 AMBA ALMIRANTE BROWN,COL,286,506R3,R3 - ESTACION GLEW - DONATO ALVARES Y GARAY-B SAN JOSE X BYNNON,BUENOS AIRES,ALMIRANTE BROWN,, +286,LINEA 506 AMBA ALMIRANTE BROWN,COL,286,506R4,R4 - ESTACION GLEW - DONATO ALVAREZ Y GARAY - B SAN JOSE X HOSPITAL ONATIVIA,BUENOS AIRES,ALMIRANTE BROWN,, +286,LINEA 506 AMBA ALMIRANTE BROWN,COL,286,506R5,R5 - ESTACION ADROGUE - ESTACION CLAYPOLE,BUENOS AIRES,ALMIRANTE BROWN,, +286,LINEA 506 AMBA ALMIRANTE BROWN,COL,286,506R6,R6 - ESTACION ADROGUE - DONATO ALVARES Y GARAY-BARRO SAN JOSE,BUENOS AIRES,ALMIRANTE BROWN,, +287,LINEA 318,COL,287,318A,FRACC RAMAL A EST LOMAS DE ZAMORA - EST TURDERA,BUENOS AIRES,PROV,, +287,LINEA 318,COL,287,318B,RAMAL B PUENTE LA NORIA - MONTE GRANDE,BUENOS AIRES,PROV,, +287,LINEA 318,COL,287,318C,DESDOBLAMIENTO C PUENTE LA NORIA - EST CLAYPOLE POR BURZACO,BUENOS AIRES,PROV,, +287,LINEA 318,COL,287,318D,RAMAL D PUENTE LA NORIA - RODRIGUEZ Y VIRGILIOIO,BUENOS AIRES,PROV,, +287,LINEA 318,COL,287,318E,RAMAL E ALVEAR HASTA EST ADROGUE,BUENOS AIRES,PROV,, +287,LINEA 318,COL,287,318TRONC,TRONCAL A PUENTE LA NORIA - CLAYPOLE,BUENOS AIRES,PROV,, +288,LINEA 521 AMBA ALMIRANTE BROWN,COL,288,521R1,R1 - ESTACION BURZACO - ESTACION BURZACO x PARQUE INDUSTRIAL,BUENOS AIRES,ALMIRANTE BROWN,, +289,LINEA 96,COL,289,096A,A (por AVENIDA RIVADAVIA) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - PONTEVEDRA (PARTIDO DE MERLO - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096AA,AA EXPRESO(por AUTOPISTA 25 DE MAYO - AU1) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - PONTEVEDRA (PARTIDO DE MERLO - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096AB,AB EXPRESO (por AVENIDA JUAN BALBERDI) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - PONTEVEDRA (PARTIDO DE MERLO - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096AC,AC EXPRESO (por AUTOPISTA 25 DE MAYO - AU1) CONSTITUCION (CABA) - ESTACION RAFAEL CASTILLO (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA-BS AS),JN,JN,, +289,LINEA 96,COL,289,096AD,AD EXPRESO (por AU 25 DE MAYO - AU1,JN,JN,, +289,LINEA 96,COL,289,096AE,AE EXPRESO(por AUTOPISTA 25 DE MAYO - AU1) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA SCASSO (PARTIDO DE LA MATANZA - BS AS),JN,JN,, +289,LINEA 96,COL,289,096AF,AF EXPRESO(por AV JUAN B ALBERDI) CONSTITUCION (CABA) - VILLA SCASSO (LA MATANZA - BSAS),JN,JN,, +289,LINEA 96,COL,289,096AG,AG-EXPRESO(por AUTOPISTA 25 DE MAYO - AU1) 5 CONSTITUCION (CABA) - BARRIO ESPERANZA (PARTIDO DE LA MATANZA - BSAS),JN,JN,, +289,LINEA 96,COL,289,096AH,AH EXPRESO(por AU 25 DE MAYO - AU1) CONSTITUCION (CABA) - ESTACION LAFERRERE (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA - BS AS),JN,JN,, +289,LINEA 96,COL,289,096B,B (por KILOMETRO 32 - R NAC N 3) CONSTITUCION (CABA) - ESTACION GONZALEZ CATAN (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA-PROVINCIA DE BUENOS AIRES,JN,JN,, +289,LINEA 96,COL,289,096C,C (por AV RIVADAVIA) CONSTITUCION (CABA) - ESTACION RAFAEL CASTILLO (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA - BS AS),JN,JN,, +289,LINEA 96,COL,289,096D,D (por AVENIDA RIVADAVIA) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO SAN ALBERTO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096E,CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO LA FORESTA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096F,F (por AVENIDA RIVADAVIA) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA SCASSO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096G,G (por AVENIDA RIVADAVIA) CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO ESPERANZA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096H,H (por AV RIVADAVIA y por Km 24,JN,JN,, +289,LINEA 96,COL,289,096I,I (por AVRIVADAVIA y por km 26 - R NAC N 3) CONSTITUCION (CABA) - ESTACION LAFERRERE (LINEA BELGRANO SUR- PARTIDO DE LA MATANZA - BS AS),JN,JN,, +289,LINEA 96,COL,289,096J,(por AV RIVADAVIA) PRIMERA JUNTA (CABA) - PONTEVEDRA (PARTIDO DE MERLO - BS AS),JN,JN,, +289,LINEA 96,COL,289,096K,K (por KM32 - RNAC N 3) PRIMERA JUNTA (CABA) - EST GONZALEZ CATAN (LINEA BELGRANO SUR - LA MATANZA-BS AS),JN,JN,, +289,LINEA 96,COL,289,096L,L (por AV RIVADAVIA) PRIMERA JUNTA (CABA) - ESTACION RAFAEL CASTILLO (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA - BSAS),JN,JN,, +289,LINEA 96,COL,289,096M,M (por AVENIDA RIVADAVIA) PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO SAN ALBERTO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096N,N PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO LA FORESTA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096NN,O (por AVENIDA RIVADAVIA) PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO ESPERANZA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096O,P (por AV RIVADAVIA y por KM24,JN,JN,, +289,LINEA 96,COL,289,096P,Q (por AV RIVADAVIA y por KM26 - RUTA NACIONAL N 3) PRIMERA JUNTA (CABA) - ESTACION LAFERRERE (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA -BSAS),JN,JN,, +289,LINEA 96,COL,289,096Q,Q (por AV RIVADAVIA y por KM26 - RUTA NAC N 3) PRIMERA JUNTA (CABA)-ESTACION LAFERRERE (LINEA BELGRANO- PARTIDO DE LA MATANZA -BS AS),JN,JN,, +289,LINEA 96,COL,289,096R,R LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - PONTEVEDRA (PARTIDO DE MERLO - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096S,S (por KM32 - RUTA NAC N 3) LINIERS (CABA) - ESTACION GONZALEZ CATAN (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096T,T LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION RAFAEL CASTILLO (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096U,U LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO SAN ALBERTO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096V,V LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO LA FORESTA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096W,W LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA SCASSO (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096X,X LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO ESPERANZA 4 (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +289,LINEA 96,COL,289,096Y,(por KM24,JN,JN,, +289,LINEA 96,COL,289,096Z,Z (por KM26 - RUTA NACN 3) LINIERS (CABA) - ESTACION LAFERRERE (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA -BS AS),JN,JN,, +290,LINEA 34,COL,290,034A,PALERMO (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION LINIERS (LINEA SARMIENTO - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +290,LINEA 34,COL,290,034B,CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION LINIERS (LINEA SARMIENTO - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +290,LINEA 34,COL,290,034C,AVENIDA SANTA FE y FRAY JUSTO SANTA MARIA DE ORO (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION LINIERS (LINEA SARMIENTO - CABA),JN,JN,, +290,LINEA 34,COL,290,034D,PALERMO (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION LINIERS (LINEA SARMIENTO - CIUDAD AUTONOMA DE BUENOS AIRES)EXPRESO,JN,JN,, +290,LINEA 34,COL,290,034E,CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION LINIERS (LINEA SARMIENTO - CIUDAD AUTONOMA DE BUENOS AIRES) EXPRESO,JN,JN,, +291,LINEA 449,COL,291,449A,TRONCAL ESTACION SARGENTO CABRAL,BUENOS AIRES,PROV,, +292,LINEA 93,COL,292,093A,A (por ESTACION MUNRO) MUNRO (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES) - AVELLANEDA (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES),JN,JN,, +292,LINEA 93,COL,292,093B,B (por EDUARDO SIVORI) MUNRO (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES) - AVELLANEDA (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES),JN,JN,, +292,LINEA 93,COL,292,093C,C COGHLAN (CIUDAD AUTONOMA DE BUENOS AIRES) - AVELLANEDA (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES),JN,JN,, +293,LINEA 749,COL,293,749A,BARRIO R FAVALORO (ESTACION JOSE C PAZ) ESTACION SOL Y VERDE,BUENOS AIRES,JOSE C. PAZ,, +293,LINEA 749,COL,293,749B,ESTACION JOSE C PAZ - CALLE EL MAESTRO,BUENOS AIRES,JOSE C. PAZ,, +293,LINEA 749,COL,293,749C,BARRIO FRINO - SAN AITILIO,BUENOS AIRES,JOSE C. PAZ,, +293,LINEA 749,COL,293,749D,BARRIO ACACIAS - BARRIO SARMIENTO,BUENOS AIRES,JOSE C. PAZ,, +293,LINEA 749,COL,293,749F,CEMENTERIO POR SALVATORI,BUENOS AIRES,JOSE C. PAZ,, +294,LINEA 185,COL,294,185A,185A,JN,JN,, +294,LINEA 185,COL,294,185B,185B-AVFRONTERA YAVGRAL ROCA(CAP)-AVRIV Y FONRO,JN,JN,, +294,LINEA 185,COL,294,185C,185C-AVRIV Y FONROUGE(CAP)-TOKIO Y ASUNCION(MTZA),JN,JN,, +295,LINEA 205,COL,295,205A,RAMAL 1 CIUDADELA (TRES DE FEBRERO) - PONTEVEDRA (MERLO),BUENOS AIRES,PROV,, +296,LINEA 129,COL,296,129A,Recorrido A Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129B,Recorrido B - Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129C,Recorrido C - Plaza de Miserere (CABA) - Rotonda GutiErrez (Pdo de F Varela),JN,JN,, +296,LINEA 129,COL,296,129D,Recorrido D - Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129E,Recorrido E - Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129F,Recorrido F - Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129G,Recorrido G - Plaza de Miserere (CABA) - Barrio El RocIo (Pdo de Florencio Varela),JN,JN,, +296,LINEA 129,COL,296,129H,Recorrido H - Plaza de Miserere (CABA) - Ing Allan (Pdo de Florencio Varela),JN,JN,, +296,LINEA 129,COL,296,129I,Recorrido I - Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129J,Recorrido J - Plaza ConstituciOn (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129K,Recorrido K - Plaza ConstituciOn (CABA) - Barrio MarItimo (Pdo de Berazategui),JN,JN,, +296,LINEA 129,COL,296,129L,Recorrido L - Retiro (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129M,Recorrido M - Retiro (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129N,Recorrido N - Retiro (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129NN,Recorrido N - Retiro (CABA) - EstaciOn Florencio Varela (FFCC Roca) (Pdo de Florencio Varela),JN,JN,, +296,LINEA 129,COL,296,129O,Recorrido O - EstaciOn Marcelo T de Alvear (MetrobUs) (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129P,Recorrido P - EXPRESO - Plaza de Miserere (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129Q,Recorrido Q - EXPRESO - Retiro (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +296,LINEA 129,COL,296,129R,Recorrido R - EXPRESO - EstaciOn Marcelo T de Alvear (MetrobUs) (CABA) - Tnal de Omnibus La Plata (Pdo de La Plata),JN,JN,, +297,LINEA 621,COL,297,621-R3,RAMOS MEJIA - ATALAYA - LAFERRERE,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621-R4,RAMOS MEJIA - RAFAEL CASTILLO,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R1,RAMOS MEJIA - KM38 BARRIO ESPERANZA,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R2,RAMOS MEJIA - VILLA SCASSO,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R5,RAMOS MEJIA - LA FORESTA,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R6,RAMOS MEJIA - VILLA SCASSO - LAFERRERE,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R7,RAMOS MEJIA - LAS CASITAS POR EL TALITA,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R8,RAMOS MEJIA - CIUDAD EVITA POR HOSPITAL MATERNO INFANTIL,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621R9,BO ESPERANZA KM38 - MERCADO CENTRAL,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621RND10,GONZALEZ CATAN - KM28 RUTA 3,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621RND11,RUTA 1001 - KM29 RUTA 3 POR VILLA SCASSO,BUENOS AIRES,LA MATANZA,, +297,LINEA 621,COL,297,621RND12,RAFAEL CASTILLO - ISIDRO CASANOVA,BUENOS AIRES,LA MATANZA,, +298,LINEA 276,COL,298,276A,LUJAN - CARMEN DE ARECO,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276B,PILAR - CLUB MARINA,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276C,PILAR - CEMENTERIO,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276D,PILAR - CHECHELA,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276E,PILAR - SAN ANDRES DE GILES,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276F,LUJAN - P DE LAS PALMAS,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276H,PILAR - ENTRADA EL CAZADOR,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276I,LUJAN-TRES SARGENTOS,BUENOS AIRES,PROV,, +298,LINEA 276,COL,298,276J,ENTRADA CAZADOR-SANDRES DE GILES,BUENOS AIRES,PROV,, +299,LINEA 91,COL,299,091A,A(por BARRIO PRESIDENTE SARMIENTO) RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLEGAS (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +299,LINEA 91,COL,299,091B,B(por JUAN RAVA) RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLEGAS (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +299,LINEA 91,COL,299,091C,C (por JUAN RAVA) NUEVA POMPEYA (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLEGAS (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +299,LINEA 91,COL,299,091D,D (por BARRIO PRESIDENTE SARMIENTO) PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLEGAS (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES,JN,JN,, +299,LINEA 91,COL,299,091E,E (por JUAN RAVA) PLAZA CONSTITUCION (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLEGAS (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +299,LINEA 91,COL,299,091F,F-EXPRESO- (por AUTOPISTA 25 DE MAYO - AU1) BERNARDO DE IRIGOYEN y AVENIDA INDEPENDENCIA (CABA) - VILLEGAS (PARTIDO DE LA MATANZA - BSAS),JN,JN,, +300,LINEA 143,COL,300,143A,A (por UNANUE) PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - TAPIALES (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +300,LINEA 143,COL,300,143B,B (por SOLDADO JUAN RAVA) PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - TAPIALES (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +300,LINEA 143,COL,300,143C,C (por UNANUE y AVENIDA GENERAL FRANCISCO FERNANDEZ DE LA CRUZ) PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - TAPIALES (PARTIDO DE LA MATANZA - PRO,JN,JN,, +300,LINEA 143,COL,300,143D,D PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - PUENTE DE LA NORIA (PARTIDO DE LOMAS DE ZAMORA - PROVINCIA DE BUENOS AIRES),JN,JN,, +300,LINEA 143,COL,300,143E,E (por UNANUE) PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA CELINA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +300,LINEA 143,COL,300,143F,F (por SOLDADO JUAN RAVA y AVENIDA GENERAL FRANCISCO FERNANDEZ DE LA CRUZ) PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - TAPIALES (PARTIDO DE LA MA,JN,JN,, +300,LINEA 143,COL,300,143G,G (por SOLDADO JUAN RAVA) PUERTO NUEVO (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA CELINA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +301,LINEA 32,COL,301,032A,PLAZA MISERERE - ESTACION LANUS,JN,JN,, +303,LINEA 405,COL,303,405A,RAMAL A,BUENOS AIRES,PROV,, +304,LINEA 49,COL,304,049A,PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - LA TABLADA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES)(por AVENIDA INTENDENTE J S CROVARA),JN,JN,, +304,LINEA 49,COL,304,049B,PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - ISIDRO CASANOVA (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES) (por CORONEL OLLEROS),JN,JN,, +305,LINEA 97,COL,305,097A,ESTACION MORON - BARRIO SAN ALBERTO,JN,JN,, +305,LINEA 97,COL,305,097B,ESTACION MORON (POR ALDO BONZI),JN,JN,, +305,LINEA 97,COL,305,097C,BARRIO SAN ALBERTO,JN,JN,, +306,LINEA 264,COL,306,264H,BARRIO OBLIGADO - PABLO NOGUES,BUENOS AIRES,PROV,, +306,LINEA 264,COL,306,264I,BARRIO OBLIGADO - POLVORINES,BUENOS AIRES,PROV,, +306,LINEA 264,COL,306,264J,BARRIO OBLIGADO - ESTACION SARGENTO CABRAL,BUENOS AIRES,PROV,, +307,LINEA 50,COL,307,050A,ESTACION TERMINAL DE OMNIBUS BUENOS AIRES (CIUDAD AUTONOMA DE BUENOS AIRES) - AVENIDA EVA PERON y colectora Este AVENIDA GENERAL PAZ (CABA),JN,JN,, +307,LINEA 50,COL,307,050B,ESTACION TERMINAL DE OMNIBUS DE RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - HOSPITAL PINERO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +308,LINEA 520B,COL,308,520BB,RAMAL B,BUENOS AIRES,LANUS,, +308,LINEA 520B,COL,308,520BB2,RAMAL B2,BUENOS AIRES,LANUS,, +308,LINEA 520B,COL,308,520BC,RAMAL C,BUENOS AIRES,LANUS,, +308,LINEA 520B,COL,308,520BD,RAMAL D,BUENOS AIRES,LANUS,, +309,LINEA 521 A,COL,309,521AA,ITUZAINGO Y 29 DE SEPTIEMBRE (LANUS) / LYNCH Y BOL,BUENOS AIRES,LANUS,, +310,LINEA 6,COL,310,006A,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA SOLDATI (CIUDAD AUTONOMA DE BUENOS AIRES) (por AVENIDA CASEROS),JN,JN,, +310,LINEA 6,COL,310,006B,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - VILLA SOLDATI (CIUDAD AUTONOMA DE BUENOS AIRES) (por AVENIDA BRASIL),JN,JN,, +310,LINEA 6,COL,310,006C,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - NUEVA POMPEYA (CIUDAD AUTONOMA DE BUENOS AIRES) (por AVENIDA CASEROS),JN,JN,, +310,LINEA 6,COL,310,006D,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - NUEVA POMPEYA (CIUDAD AUTONOMA DE BUENOS AIRES) (por AVENIDA BRASIL),JN,JN,, +311,LINEA 526,COL,311,526A,ITUZAINGO Y 29 DE SEPTIEMBRE (LANUS) / CADORNA (LA,BUENOS AIRES,LANUS,, +312,LINEA 382,COL,312,382R1,RECORRIDO 1 LOMAS DEL MIRADOR (LA MATANZA) - PONTEVEDRA (MERLO),BUENOS AIRES,PROV,, +312,LINEA 382,COL,312,382R2,RECORRIDO 2 CIUDADELA (TRES DE FEBRERO)-KM 47,BUENOS AIRES,PROV,, +314,LINEA 252,COL,314,252A,RAMAL CARAPACHAY POR ALMEYRA,BUENOS AIRES,PROV,, +314,LINEA 252,COL,314,252B,RAMAL PALOMAR POR AV DE MAYO,BUENOS AIRES,PROV,, +315,LINEA 1,COL,315,001A,PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION MORON (LINEA SARMIENTO - PARTIDO DE MORON - PROVINCIA DE BUENOS AIRES),JN,JN,, +316,LINEA 383,COL,316,383R7,383R7-ESTCLAYPOLE-BARRIO PISTA TROTE,BUENOS AIRES,PROV,, +316,LINEA 383,COL,316,383R9,383R9-ESTCLAYPOLE-VILLA ARGENTINA,BUENOS AIRES,PROV,, +317,LINEA 500H,COL,317,500HA,500A-AVSMARTIN Y SPERANDIO-BARRIO STA ROSA,BUENOS AIRES,FLORENCIO VARELA,, +317,LINEA 500H,COL,317,500HI,500I-INTERM-BARRIO STA ROSA-HTAL FVARELA,BUENOS AIRES,FLORENCIO VARELA,, +318,LINEA 275,COL,318,275A,PUNTA LARA R,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275B,BOCA CERRADA,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275C,PUNTA LARA POR BOSSIGNA,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275D,PUNTA LARA POR DIAGONAL,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275E,MOSCONI,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275F,ENSENADA,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275G,DIQUE,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275H,SIDERAR,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275I,MONASTERIO - ASTILLEROS,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275J,ESCUELA NAVAL,BUENOS AIRES,PROV,, +318,LINEA 275,COL,318,275K,ARROYO EL GATO,BUENOS AIRES,PROV,, +319,LINEA 503,COL,319,503B,503B-TRAV S MARTIN Y SPERANDIO-UPENITENCVARELA,BUENOS AIRES,FLORENCIO VARELA,, +320,LINEA 172,COL,320,172A,ALBERDI-RIGLOS-POLLEDO-STA CRUZ(MATANZA)B MARINA,JN,JN,, +320,LINEA 172,COL,320,172B,ALBERDI Y RIGLOS-POLLEDO Y STA CRUZ(MATANZA)B ING,JN,JN,, +321,LINEA 174 BS AS,COL,321,174A,AVRIVADAVIA Y BARRAGA?N(CABA)-VIRGENES Y EECHEVERRIA(LA MATANZA) X LAFERRERE,JN,JN,, +321,LINEA 174 BS AS,COL,321,174B,AVRIVADAVIA Y BARRAGAN(CABA)-MARCONI Y JMLANZA(LA MATANZA) X ICASANOVA,JN,JN,, +321,LINEA 174 BS AS,COL,321,174C,AVRIVADAVIA Y BARRAGAN(CABA)-EL CISNE Y PALO CRUZ(LA MATANZA),JN,JN,, +322,LINEA 4,COL,322,004A,LOMAS DEL MIRADOR - CORREO CENTRAL,JN,JN,, +322,LINEA 4,COL,322,004B,LOMAS DEL MIRADOR - DARSENA SUR,JN,JN,, +322,LINEA 4,COL,322,004C,CENTRAL COSTANERA,JN,JN,, +323,LINEA 242,COL,323,242-DD,DESDOBLAMIENTO RECORRIDO D,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242-RC,RAMALIZACION RAMAL C-CIUDADELA - BARRIO CENTRAL,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242A,A CIUDADELA - MORON,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242B,RAMAL_2,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242C,RAMAL_3,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242D,RAMAL_4,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242E,RAMAL_5,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242F,RAMAL_6,BUENOS AIRES,PROV,, +323,LINEA 242,COL,323,242RD,RAMALIZACION RECORRIDO D,BUENOS AIRES,PROV,, +324,LINEA 41,COL,324,041A,SAN CRISTOBAL (CIUDAD AUTONOMA DE BUENOS AIRES) - MUNRO (PARTIDO DE VICENTE LOPEZ - PROVINCIA DE BUENOS AIRES)(por VIADUCTO CARRANZA),JN,JN,, +325,LINEA 15,COL,325,015A,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - ESTACION BENAVIDEZ (LINEA MITRE - PARTIDO DE TIGRE - PROVINCIA DE BUENOS AIRES),JN,JN,, +325,LINEA 15,COL,325,015B,VALENTIN ALSINA ( LANUS - PROVINCIA DE BUENOS AIRES) - ESTACION BENAVIDEZ (LINEA MITRE - PARTIDO DE TIGRE - PCIA DE BSAS) (por HOSPITAL NAVAL),JN,JN,, +325,LINEA 15,COL,325,015C,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - ESTACION GENERAL PACHECO (LINEA MITRE - PARTIDO DE TIGRE - PROVINCIA DE BUENOS AIRES),JN,JN,, +325,LINEA 15,COL,325,015D,VALENTIN ALSINA (LANUS-PCIA DE BS AS)Colectora AUT ING PASCUAL PALAZZO y AV ANGEL TORCUATO DE ALVEAR-RUTA PROV N 23 - (PART DE TIGRE-PCIA DE BS AS),JN,JN,, +325,LINEA 15,COL,325,015E,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - BARRIO 1 DE MAYO (PARTIDO DE PILAR - PROVINCIA DE BUENOS AIRES),JN,JN,, +325,LINEA 15,COL,325,015F,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - AVENIDA DEL LIBERTADOR y PICO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +325,LINEA 15,COL,325,015G,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - BARRANCAS DE BELGRANO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +325,LINEA 15,COL,325,015H,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - ESTACION BENAVIDEZ (LINEA MITRE - PARTIDO DE TIGRE - PCIA DE BUENOS AIRES) EXPRESO,JN,JN,, +325,LINEA 15,COL,325,015I,VALENTIN ALSINA (PARTIDO DE LANUS - PCIA DE BS AS) - ESTACION BENAVIDEZ (LINEA MITRE - PARTIDO DE TIGRE - PCIA DE BUENOS AIRES) POR HTAL NAVAL,JN,JN,, +325,LINEA 15,COL,325,015J,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - ESTACION GENERAL PACHECO (LINEA MITRE - PARTIDO DE TIGRE - PROVINCIA DE BUENOS AIRES),JN,JN,, +325,LINEA 15,COL,325,015K,VALENTIN ALSINA (LANUS - PCIA DE BS AS)-Colectora AUT ING PASCUAL PALAZZO y AV ANGEL T DE ALVEAR - RUTA PCIAL N 23 - (PARTIDO DE TIGRE-PCIA DE BS AS),JN,JN,, +325,LINEA 15,COL,325,015L,VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES) - ex - FABRICA WOBRON - (PARTIDO DE TIGRE - PROVINCIA DE BUENOS AIRES),JN,JN,, +326,LINEA 135,COL,326,135A,PUENTE URIBURU / POSADAS,JN,JN,, +327,LINEA 31,COL,327,031A,031A OLIMPO Y C DE CINTURA-PZA MISERERE(X NEWTON),JN,JN,, +327,LINEA 31,COL,327,031B,031B OLIMPO Y C DE CINTURA-PZA MISERERE(X BARADE),JN,JN,, +327,LINEA 31,COL,327,031C,031C NEWTON Y ESPECUEN-NVA POMPEYA(X NEWTON,JN,JN,, +327,LINEA 31,COL,327,031D,031D RECONDO Y ALAS-NVA POMPEYA(X BARADERO),JN,JN,, +327,LINEA 31,COL,327,031E,AVOLIMPO Y C CINTURA(PDOESTEBAN ECHEVERRIA)-PLAZA MISERERE(CABA)EXPRESO X INEWTON,JN,JN,, +327,LINEA 31,COL,327,031F,AVOLIMPO Y CCINTURA(PDOESTEBAN ECHEVERRIA)-PLAZA MISERERE(CABA)-EXPRESO X BARADERO Y CLAUDIO DE ALAS,JN,JN,, +327,LINEA 31,COL,327,031G,AVSAENZ Y MLEBENSOHN(CABA)-INEWTON Y EPECUEN(PDODE LOMAS DE ZAMORA)EXPRESO X INEWTON,JN,JN,, +327,LINEA 31,COL,327,031H,AVSAENZ Y MLEBENSOHN(CABA)-CLAUDIO ALAS Y RECONDO(PDOLOMAS DE ZAMORA)EXPRESO X BARADERO Y CLAUDIO DE ALAS,JN,JN,, +327,LINEA 31,COL,327,031I,TERMINAL DE MICROOMNIBUS PTE LA NORIA(PDOLOMAS DE ZAMORA)-PLAZA MISERERE(CABA)EXPRESO,JN,JN,, +327,LINEA 31,COL,327,031J,RECONDO Y CDE ALAS(PDOLOMAS DE ZAMORA)-PLAZA MISERERE(CABA)EXPRESO X (POR BARADERO Y CLAUDIO DE ALAS),JN,JN,, +328,LINEA 76,COL,328,076A,NUEVA POMPEYA (CABA) - SAAVEDRA (CABA) (por AVENIDA FRANCISCO FERNANDEZ DE LA CRUZ),JN,JN,, +328,LINEA 76,COL,328,076B,NUEVA POMPEYA (CABA) - SAAVEDRA (CABA) (por ANA MARIA JANER),JN,JN,, +329,LINEA 238,COL,329,238A,LA TEJA - DISTRITO MILITAR,BUENOS AIRES,PROV,, +329,LINEA 238,COL,329,238B,LA TEJA - ESTACION MORON,BUENOS AIRES,PROV,, +329,LINEA 238,COL,329,238C,HAEDO - SAN ANTONIO,BUENOS AIRES,PROV,, +329,LINEA 238,COL,329,238D,HAEDO - SANTA ROSA,BUENOS AIRES,PROV,, +330,LINEA 518,COL,330,518A,ORIGEN CALLE 7 Y 622-DESTINO CAMINO GENERAL BELGRA,BUENOS AIRES,LA PLATA,, +330,LINEA 518,COL,330,518A,BARRIO DEL PLATA,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518B,ESCUELA N13,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518C,VILLA GOLF,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518D,EZEIZA-SOL DE ORO-SANTA ANGELA,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518E,EZEIZA-SOL DE ORO-LA PORTENA,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518F,VISTA LINDA,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518G,LAMADRID,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518H,EZEIZA-BARRIO UNO,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518I,PORQUERAS,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518J,LA CELIA,BUENOS AIRES,EZEIZA,, +330,LINEA 518,COL,330,518K,LA ARAUCARIA/EL LAUQUEN,BUENOS AIRES,EZEIZA,, +331,LINEA 500B,COL,331,500BA,BRANDSEN - JAPPENER(BRANDSEN),BUENOS AIRES,BRANDSEN,, +331,LINEA 500B,COL,331,500BB,BRANDSEN - BLOS PINOS(BRANDSEN) X FABRINA TAXONERA,BUENOS AIRES,BRANDSEN,, +331,LINEA 500B,COL,331,500BC,BRANDSEN - GOMEZ(BRANDSEN),BUENOS AIRES,BRANDSEN,, +331,LINEA 500B,COL,331,500BD,BRANDSEN - PARQUE INDUSTRIAL(BRANDSEN),BUENOS AIRES,BRANDSEN,, +331,LINEA 500B,COL,331,500BTR,BRANDSEN - ALTAMIRANO(BRANDSEN),BUENOS AIRES,BRANDSEN,, +332,LINEA 80,COL,332,080A,B SARMIENTO- BCAS DE BELGRANO (POR MURGIONDO),JN,JN,, +332,LINEA 80,COL,332,080B,B SARMIENTO- BCAS DE BELGRANO (POR PEDRA BUENA),JN,JN,, +332,LINEA 80,COL,332,080C,ESTACION LINIERS- BARRANCAS DE BELGRANO,JN,JN,, +332,LINEA 80,COL,332,080D,080D B DOMINGO F SARMIENTO-RIVADAVIA Y GRAL PAZ,JN,JN,, +332,LINEA 80,COL,332,080E,080E ESTACION LINIERS-VIRREY VERTIZ Y JURAMENTO,JN,JN,, +333,LINEA 503C,COL,333,503CA,RUTA 6,BUENOS AIRES,SAN VICENTE,, +333,LINEA 503C,COL,333,503CB,DOMSELAR,BUENOS AIRES,SAN VICENTE,, +333,LINEA 503C,COL,333,503CC,ESTACION ALEJANDRO KORN - BARRIO SANTA ANA,BUENOS AIRES,SAN VICENTE,, +334,LINEA 740,COL,334,740G,RAMAL 13,BUENOS AIRES,SAN MIGUEL,, +334,LINEA 740,COL,334,740H,RAMAL 14,BUENOS AIRES,SAN MIGUEL,, +334,LINEA 740,COL,334,740I,RAMAL 17,BUENOS AIRES,SAN MIGUEL,, +334,LINEA 740,COL,334,740J,RAMAL 21,BUENOS AIRES,SAN MIGUEL,, +334,LINEA 740,COL,334,740K,RAMAL 49,BUENOS AIRES,SAN MIGUEL,, +334,LINEA 740,COL,334,740L,RAMAL 54,BUENOS AIRES,SAN MIGUEL,, +335,LINEA 509,COL,335,509R1,1ESTACION PRESDERQUI-BLA ESCONDIDA(ISLA GRAN MALVINA EISLA SOLEDAD),BUENOS AIRES,PILAR,, +335,LINEA 509,COL,335,509R2,2ESTACION PRESIDENTE DERQUI-B SAN SOUCI x B EL TRIANGULO,BUENOS AIRES,PILAR,, +336,LINEA 501I,COL,336,501IA,TRONCAL LINEA COMUNAL,BUENOS AIRES,MALVINAS ARGENTINAS,, +337,LINEA 506F,COL,337,506R18,RAMAL 18 ORIGEN 66 Y 170 - DESTINO 1 Y 41,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R18V,RAMAL 18(VARIANTE1)ORIGEN 66 Y 170-DESTINO 1 Y 41,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R40,RAMAL 40 ORIGEN 66 Y 170-DESTINO 66 Y 170,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R40V,RAMAL 40(VARIANTE)ORIGEN 66 Y 170-DESTINO 66 Y 170,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R41,RAMAL 41 ORIGEN 66 Y 170-DESTINO 66 Y 170,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R41V,RAMAL 41 ORIGEN 66 Y 170-DESTINO 66 Y 170,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R80A,RAMAL 80A ORIGEN 66 Y 170-DESTINO 1 Y 41,BUENOS AIRES,LA PLATA,, +337,LINEA 506F,COL,337,506R80B,RAMAL 80B ORIGEN 66 Y 170-DESTINO 1 Y 41,BUENOS AIRES,LA PLATA,, +338,LINEA 314,COL,338,314A,RECORRIDO TRONCAL (CAMINO REAL MORON Y COLECTORA AUTOPISTA DEL SOL,BUENOS AIRES,PROV,, +338,LINEA 314,COL,338,314B,RECORRIDO DESDOBLAMIENTO POR AV MITRE (CAMINO REAL MORON Y COLECTORA AUTOPISTA DEL SOL,BUENOS AIRES,PROV,, +338,LINEA 314,COL,338,314C,RECORRIDO RAMALIZACION VILLA BALLESTER (CAMINO REAL MORON Y COLECTORA AUTOPISTA DEL SOL,BUENOS AIRES,PROV,, +339,LINEA 110,COL,339,110A,FACULTAD DERECHO - SAAVEDRA (POR SAAVEDRA),JN,JN,, +339,LINEA 110,COL,339,110B,FACULTAD DERECHO - SAAVEDRA (POR CONSTITUYENTES),JN,JN,, +340,LINEA 307,COL,340,307C,RAMAL C,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307D,RAMAL D,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307A,RAMAL A,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307A2,RAMAL A - EL CARMEN,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307B,RAMAL B,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307DA,RAMAL D - DESDOBLAMIENTO PARAJE LA ARMONIA,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307DP,RAMAL D - DESDOBLAMIENTO POBLET,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307DU,RAMAL D - DESDOBLAMIENTO UPCN,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307E,RAMAL E,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307E 2,RAMAL E - DESDOBLAMIENTO RUTA 36,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307F,RAMAL F,BUENOS AIRES,PROV,, +340,LINEA 307,COL,340,307G,RAMAL G,BUENOS AIRES,PROV,, +341,LINEA 103,COL,341,103A,A CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION TAPIALES (LINEA BELGRANO SUR - PARTIDO DE LA MATANZA - BSAS),JN,JN,, +341,LINEA 103,COL,341,103B,B CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - MATADEROS (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +341,LINEA 103,COL,341,103C,C PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION TAPIALES (LINEA BELGRANO SUR -PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +341,LINEA 103,COL,341,103D,D CARLOS CALVO y AZOPARDO (CIUDAD AUTONOMA DE BUENOS AIRES) - PRIMERA JUNTA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +343,LINEA 501 CAMPANA,COL,343,501CAMPANA,,BUENOS AIRES,CAMPANA,, +344,LINEA 101,COL,344,101A,RAMAL BARRIO SAMORE,JN,JN,, +344,LINEA 101,COL,344,101B,RAMAL NECOL Y C DE ALAS,JN,JN,, +344,LINEA 101,COL,344,101C,EXPRESSO,JN,JN,, +345,LINEA 28,COL,345,028A,ESTACION TERMINAL DE OMNIBUS RETIRO (CABA) - TERMINAL DE MICROOMNIBUS PTE DE LA NORIA (PDO DE LOMAS DE ZAMORA - PCIA DE BS AS),JN,JN,, +345,LINEA 28,COL,345,028B,ESTACION TERMINAL DE OMNIBUS RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +345,LINEA 28,COL,345,028C,ESTACION TERMINAL DE OMNIBUS RETIRO (CABA) - BARRIO JOSE HERNANDEZ (PDO DE LA MATANZA - PCIA DE BS AS),JN,JN,, +345,LINEA 28,COL,345,028D,PUENTE ALSINA (CIUDAD AUTONOMA DE BUENOS AIRES) - CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +345,LINEA 28,COL,345,028E,PUENTE ALSINA (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION RIVADAVIA (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +345,LINEA 28,COL,345,028F,LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +345,LINEA 28,COL,345,028G,PUENTE ALSINA (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO JOSE HERNANDEZ (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +345,LINEA 28,COL,345,028H,TERMINAL DE MICROOMNIBUS PUENTE DE LA NORIA (PARTIDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - CIUDAD UNIVERSITARIA (CABA),JN,JN,, +345,LINEA 28,COL,345,028I,TERMINAL DE MICROOMNIBUS PUENTE DE LA NORIA (PDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - ESTACION RIVADAVIA (LINEA MITRE - CABA),JN,JN,, +345,LINEA 28,COL,345,028J,TERMINAL DE MICROOMNIBUS PUENTE DE LA NORIA (PARTIDO DE LOMAS DE ZAMORA - PCIA DE BS AS) - CIUDAD UNIVERSITARIA (CABA) EXPRESO,JN,JN,, +345,LINEA 28,COL,345,028K,LINIERS (CIUDAD AUTONOMA DE BUENOS AIRES) - CIUDAD UNIVERSITARIA (CIUDAD AUTONOMA DE BUENOS AIRES) (EXPRESO),JN,JN,, +345,LINEA 28,COL,345,028L,ESTACION TERMINAL DE OMNIBUS RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - LINIERS (CABA) (por AVENIDA CORONEL ROCA),JN,JN,, +346,LINEA 204,COL,346,204A,CANAL SAN FERNANDO - ESCOBAR,BUENOS AIRES,PROV,, +346,LINEA 204,COL,346,204C,CANAL SAN FERNANDO - RUTA 197 Y RUTA 8,BUENOS AIRES,PROV,, +347,LINEA 228C,COL,347,228CB,ZARATE - A DEL PLATA,BUENOS AIRES,PROV,, +347,LINEA 228C,COL,347,228CC,ZARATE - LIMA,BUENOS AIRES,PROV,, +347,LINEA 228C,COL,347,228CD,ZARATE - LUJAN,BUENOS AIRES,PROV,, +348,LINEA 228E,COL,348,228EA,ESTACION GARIN - PUENTE SAVEEDRA,BUENOS AIRES,PROV,, +348,LINEA 228E,COL,348,228EB,PUENTE SAVEEDRA - ESTACION BENAVIDEZ,BUENOS AIRES,PROV,, +349,LINEA 505A,COL,349,505EB,PUENTE GARIN - ING MASCHWITZ,BUENOS AIRES,ESCOBAR,, +349,LINEA 505A,COL,349,505EC,PUENTE GARIN(GARIN)-FACULTAD UBA(MASCHWITZ) X COL(NIVSGP),BUENOS AIRES,ESCOBAR,, +351,LINEA 508A,COL,351,508AA,MAQUINISTA SAVIO,BUENOS AIRES,ESCOBAR,, +352,LINEA 123,COL,352,123A,CHACARITA - EL PALOMAR,JN,JN,, +353,LINEA 513A,COL,353,513AA,CEMENTERIO GARIN - ESCOBAR,BUENOS AIRES,ESCOBAR,, +354,LINEA 56,COL,354,056A,ESTACION TERMINAL DE OMNIBUS DE RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - TAPIALES (PARTIDO DE LA MATANZA - PROVINCIA DE BUENOS AIRES),JN,JN,, +354,LINEA 56,COL,354,056B,ESTACION TERMINAL DE OMNIBUS DE RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION VARELA (LINEA E DE SUBTERRANEOS),JN,JN,, +354,LINEA 56,COL,354,056C,ESTACION TERMINAL DE OMNIBUS DE RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - ROTONDA CIUDAD EVITA (PARTIDO DE LA MATANZA - PCIA DE BS AS),JN,JN,, +354,LINEA 56,COL,354,056D,ESTACION TERMINAL DE OMNIBUS DE RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - ROTONDA CIUDAD EVITA (PARTIDO DE LA MATANZA - PCIA DE BS AS)EXPRESO,JN,JN,, +355,LINEA 118,COL,355,118A,A PARQUE PATRICIOS (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BELGRANO C (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +355,LINEA 118,COL,355,118B,B PLAZA DE MISERERE (CIUDAD AUTONOMA DE BUENOS AIRES) - ESTACION BELGRANO C (LINEA MITRE - CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +356,LINEA 500,COL,356,500R1,500GN-R1(HTAL SOMMER),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R10-1,500GM-R10(CASCO R1-X RUTA28),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R10-2,500GL-R10(CASCO R2-X ESCN3),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R11,500GK-R11(HTAL VTE LOPEZ),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R12,500GI-R12(ALTEBROWN),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R13,500GA-R13(LA FRATERNIDAD),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R14,500GS-R14(RAFFO-LOS NOGALES),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R15,500GR-R15(PTE CASTINEIRAS),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R16-1,500GQ-R16(VILLA ARRARAZ-SERVDIU),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R16-2,500GP-R16(VILLA ARRARAZ-SERV NOC),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R18,500GO-R18(AVDA BALVIN),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R19,500GT-R19(ESC4),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R2-1,500GH-R2(MARABO),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R2-2,500GB-R2(VISTA LINDA),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R20,500GU-R20(ESC 3),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R3,500GC-R3(LUCHETTI),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R5,500GF-R5(PRIVADAVIA),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R6,500GE-R6(AGUA DE ORO),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R7,500GG-R7(GUEMES),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R8,500GN-R8(GRANADEROS),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R9-1,500GD-R9(STABRIGIDA-X CHACO),BUENOS AIRES,GENERAL RODRIGUEZ,, +356,LINEA 500,COL,356,500R9-2,500GJ-R9(STA BRIGIDA-X BS AS),BUENOS AIRES,GENERAL RODRIGUEZ,, +357,LINEA 313,COL,357,313A,RAMAL 1 CARDALES - ESCOBAR,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R1,RAMAL 1 MORENO - ARECO,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R2,RAMAL 2 MORENO - PILAR,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R3,RAMAL 3 MORENO - PARQUE INDUSTRIAL,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R4,RAMAL 4 MORENO - MANZANARES,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R5,RAMAL 5 PILAR - CARDALES,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R6,RAMAL 6 PILAR - LUJAN,BUENOS AIRES,PROV,, +358,LINEA 350,COL,358,350R7,RAMAL 7 PILAR - ARECO,BUENOS AIRES,PROV,, +359,LINEA 355,COL,359,355A,RAMAL 1 LUJAN - CAPILLA DEL SENOR,BUENOS AIRES,PROV,, +360,LINEA 501H,COL,360,501HB,RAMAL B CAPILLA - CARDALES,BUENOS AIRES,EXALTACION DE LA CRUZ,, +360,LINEA 501H,COL,360,501HC,RAMAL C CAPILLA-BARRIO MATEO(X RUTA 192),BUENOS AIRES,EXALTACION DE LA CRUZ,, +361,LINEA 506B,COL,361,506BD,BARRIO OVEJERO,BUENOS AIRES,ESCOBAR,, +362,LINEA 42,COL,362,042A,ALCORTA - CIUDAD UNIVERSITARIA,JN,JN,, +362,LINEA 42,COL,362,042B,ALCORTA - CIUDAD UNIVERSITARIA,JN,JN,, +363,LINEA 512,COL,363,512A,512-AVSMARTIN Y SPERANDIO-BARRIO MAYOL,BUENOS AIRES,FLORENCIO VARELA,, +364,LINEA 561,COL,364,561A,561A-SEMIRAP-PARQUE INDUSTRIAL,BUENOS AIRES,LOMAS DE ZAMORA,, +365,LINEA 562,COL,365,562B,562B,BUENOS AIRES,LOMAS DE ZAMORA,, +365,LINEA 562,COL,365,562C,562C,BUENOS AIRES,LOMAS DE ZAMORA,, +366,LINEA 95,COL,366,095A,A (por AVENIDA CASEROS y CRISOLOGO LARRALDE) PALERMO (CIUDAD AUTONOMA DE BUENOS AIRES) - AVELLANEDA (PARTIDO DE AVELLANEDA - PROVINCIA DE BUENOS AIRES,JN,JN,, +366,LINEA 95,COL,366,095B,B (por AVENIDA JUAN DE GARAY y AVENIDA BELGRANO) PALERMO (CIUDAD AUTONOMA DE BUENOS AIRES) - AVELLANEDA (PARTIDO DE AVELLANEDA - BSAS),JN,JN,, +368,LINEA 298,COL,368,298RC,RAMALIZACION PUENTE LA NORIA- D ONOFRIO (CIUDADELA) POR CELINA,BUENOS AIRES,PROV,, +368,LINEA 298,COL,368,298RM,RAMALIZACION PTE LA NORIA- D ONOFRIO (CIUDADELA) POR MERCADO CENTRAL,BUENOS AIRES,PROV,, +368,LINEA 298,COL,368,298T,TROCAL PUENTE LA NORIA- TRIBUNALES DE MORON POR CELINA,BUENOS AIRES,PROV,, +368,LINEA 298,COL,368,298TM,DESDOBLAMIENTO PTE LA NORIA- TRIBUNALES DE MORON POR MERCADO,BUENOS AIRES,PROV,, +369,LINEA 317 BS AS,COL,369,317A,ESTACION MORON - I CASANOVA,BUENOS AIRES,PROV,, +369,LINEA 317 BS AS,COL,369,317B,ESTACION MORON - BARRIO LOS PINOS,BUENOS AIRES,PROV,, +370,LINEA 57,COL,370,057A,A (por RUTAS PROVINCIALES Nros 8 y 7) PLAZA ITALIA (CABA) - TERMINAL DE OMNIBUS DE MERCEDES (PDO DE MERCEDES-PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057B,B (por CAMINO DEL BUEN AYRE y ESTACION MORENO) PLAZA ITALIA (CABA) - TERMINAL DE OMNIBUS DE MERCEDES (PDO DE MERCEDES- PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057C,C (por ACCESO OESTE) PLAZA ITALIA (CABA) - TERMINAL DE OMNIBUS DE LUJAN (PDO DE LUJAN- PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057D,D (por RUTAS PROVINCIALES Nros 8 y 7) PLAZA ITALIA (CABA) - TERMINAL DE OMNIBUS DE LUJAN (PDO DE LUJAN- PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057E,E (por RUTA PROVINCIAL N 8) PLAZA ITALIA (CABA) - PILAR (PDO DE PILAR - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057ENIE,N (por AV INT CANTILO y ACC NORTE) PLAZA ITALIA (CABA)-EST CAPILLA DEL SENOR (LINEA MITRE-PDO DE EXALTACION DE LA CRUZ - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057F,F (por ACCESO NORTE) PLAZA ITALIA (CABA) - PILAR (PDO DE PILAR - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057G,G (por ESTACION GARIN) PLAZA ITALIA (CABA) - PILAR (PDO DE PILAR - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057H,H (por RUTA PROVINCIAL N 8) PLAZA ITALIA (CABA) - ESTACION CAPILLA DEL SENOR (LINEA MITRE - PDO DE EXALTACION DE LA CRUZ - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057I,I (por RUTA PROVINCIAL N 8) PLAZA ITALIA (CABA) - CRUCE CASTELAR (PDO DE MORENO - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057J,J (por CAMINO DEL BUEN AYRE) PLAZA ITALIA (CABA) - ESTACION MORENO (LINEA SARMIENTO - PDO DE MORENO - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057K,K (por CAMINO DEL BUEN AYRE y AVENIDA ROCA) PLAZA ITALIA (CABA) - ESTACION MORENO (LINEA SARMIENTO - PDO DE MORENO - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057L,L (por AUT 25 DE MAYO-AU1,JN,JN,, +370,LINEA 57,COL,370,057M,M (por CAMINO DEL BUEN AYRE) PLAZA ITALIA (CABA) - TERMINAL DE OMNIBUS DE MERCEDES (PDO DE MERCEDES- PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057N,N (por ACCESO NORTE) PLAZA ITALIA (CABA) - PILAR (PDO DE PILAR - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057O,O (por AV INT CANTILO y ACC NORTE) PLAZA ITALIA (CABA) -PILAR (PDO DE PILAR - PCIA DE BS AS),JN,JN,, +370,LINEA 57,COL,370,057P,P (por AUT 25 DE MAYO-AU1,JN,JN,, +370,LINEA 57,COL,370,057Q,Q (por AUT 25 DE MAYO-AU1,JN,JN,, +370,LINEA 57,COL,370,057R,R (por AUT 25 DE MAYO - AU1,JN,JN,, +371,LINEA 624,COL,371,624A,1-CEMETERIO DE VILLEGAS- ESTACION RAMOS MEJIA (POR LEON GALLO),BUENOS AIRES,LA MATANZA,, +371,LINEA 624,COL,371,624B,2-CEMETERIO DE VILLEGAS-BARRIO CENTRAL (POR MOCORETA),BUENOS AIRES,LA MATANZA,, +371,LINEA 624,COL,371,624C,3-BARRIO BID- ATALAYA,BUENOS AIRES,LA MATANZA,, +371,LINEA 624,COL,371,624D,4- LA TABLADA- LOS PINOS,BUENOS AIRES,LA MATANZA,, +371,LINEA 624,COL,371,624E,5- LOS PINOS - RAMOS MEJIA,BUENOS AIRES,LA MATANZA,, +372,LINEA 635 BS AS,COL,372,635A,ESTACION MORON - SAN FRANCISCO,BUENOS AIRES,MORON,, +373,LINEA 115,COL,373,115A,A RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO GENERAL MANUEL SAVIO (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +373,LINEA 115,COL,373,115B,B RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - PLAZA DE MISERERE (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +374,LINEA 26,COL,374,026A,RETIRO (CIUDAD AUTONOMA DE BUENOS AIRES) - BARRIO RIVADAVIA (CIUDAD AUTONOMA DE BUENOS AIRES),JN,JN,, +375,LINEA 503 ESTE,COL,375,503R10,ORIGEN 32 Y 122-DESTINO 7 Y 659 X POR AVENIDA 7,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R10V1,ORIGEN 7 Y 622-DESTINO 4 Y DIAG 74 X POR AVENIDA 7,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R11,ORIGEN 7 Y 622-DESTINO 4 Y DIAG 74 X POR BARRIO UPCN,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R14,ORIGEN 32 Y 122-DESTINO 659 Y 23,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R15,ORIGEN 7 Y 622-DESTINO 116 Y DIAG 80,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R15V1,ORIGEN 7 Y 622-DESTINO 116 Y DIAG 80 X POR RUTA 11,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R16,ORIGEN 32 Y 122-DESTINO 122 Y 610,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R45,ORIGEN 32 Y 122-DESTINO 32 Y 122 X CIRCUNVALACION,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R46,ORIGEN 32 Y 122-DESTINO 32 Y 122 X CIRCUNVALACION,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R61,ORIGEN 32 Y 122-DESTINO 12 BIS Y 85,BUENOS AIRES,LA PLATA,, +375,LINEA 503 ESTE,COL,375,503R80,ORIGEN 7 Y 622-DESTINO CAMINO GENERAL BELGRANO Y 501,BUENOS AIRES,LA PLATA,, +376,LINEA 37,COL,376,037A,ESTACION LANUS - PLAZA ITALIA,JN,JN,, +376,LINEA 37,COL,376,037B,ESTACION LANUS - CIUDAD UNIV (POR AV F ALCORTA,JN,JN,, +376,LINEA 37,COL,376,037C,ESTACION LANUS - CIUDAD UNIV (POR AEROPARQUE),JN,JN,, +377,LINEA 511,COL,377,511A,511-AVSMARTIN Y SPERANDIO-BARRIO DON JOSE,BUENOS AIRES,FLORENCIO VARELA,, +377,LINEA 511,COL,377,511AA,PUENTE GARIN,BUENOS AIRES,ESCOBAR,, +377,LINEA 511,COL,377,511BA,ESTACION PILAR - MANZANARES por LUCHETTI,BUENOS AIRES,PILAR,, +377,LINEA 511,COL,377,511BA2,ESTACION PILAR - MANZANARES por FATIMA,BUENOS AIRES,PILAR,, +377,LINEA 511,COL,377,511BB,GOLFERS / ESCUELA 8 - LOMITA,BUENOS AIRES,PILAR,, +377,LINEA 511,COL,377,511BB2,GOLFERS / ESCUELA 8 - LOMITA por AGUSTONI,BUENOS AIRES,PILAR,, +377,LINEA 511,COL,377,511BC,ESTACION PILAR - CARABASSA,BUENOS AIRES,PILAR,, +377,LINEA 511,COL,377,511BD,ESTACION PILAR - PILARICA,BUENOS AIRES,PILAR,, +378,LINEA 293,COL,378,293A-RDT,RAMAL A S,BUENOS AIRES,PROV,, +378,LINEA 293,COL,378,293AT,RAMAL D,BUENOS AIRES,PROV,, +378,LINEA 293,COL,378,293ATD,DESDOBLAMIENTO TRONCAL-ESTAVELLANEDA(LEBENSOHN Y CNEL BOSCH)-AVOSCAR SMITH Y AVCENTENARIO X JBPALAA,BUENOS AIRES,PROV,, +379,LINEA 509C,COL,379,509CA,509A-AVSMARTIN Y SPERANDIO-VILLA SAN LUIS,BUENOS AIRES,FLORENCIO VARELA,, +381,LINEA 302,COL,381,302A,ESTACION MORENO-RECONQUISTA Y GRAL PAZ,BUENOS AIRES,PROV,, +381,LINEA 302,COL,381,302B,ESTACION MORENO-ESTACION MORON,BUENOS AIRES,PROV,, +381,LINEA 302,COL,381,302C,Est Moreno-Reconquista y Gral Paz,BUENOS AIRES,PROV,, +382,LINEA 75,COL,382,075A,ESTACION RETIRO - LANUS (POR COLOMBRES),JN,JN,, +382,LINEA 75,COL,382,075B,ESTACION RETIRO - LANUS (POR 24 DE NOVIEMBRE),JN,JN,, +383,LINEA 583,COL,383,583A,RAMAL TRONCAL,BUENOS AIRES,QUILMES,, +383,LINEA 583,COL,383,583B,RAMAL CANCHA,BUENOS AIRES,QUILMES,, +384,LINEA 549,COL,384,549A,ESTACION TEMPERLEY - CRUCE DE LOMAS DE ZAMORA (AV JUAN XXIII Y RUTA 4),BUENOS AIRES,LOMAS DE ZAMORA,, +385,LINEA 175,COL,385,175A,AV CONGRESO Y AMENABAR(CABA)-LOMA HERMOSA(PDO 3 FEBRERO-GBA),JN,JN,, +387,LINEA 515,COL,387,515A,RA-BO RAYO DE SOL (EST LONGCHAMPS-BO RAYO DE SOL),BUENOS AIRES,ALMIRANTE BROWN,, +387,LINEA 515,COL,387,515B,RB-BO SAKURA (EST LONGCH-BO SAKURA - EST BURZAC,BUENOS AIRES,ALMIRANTE BROWN,, +387,LINEA 515,COL,387,515C,RC-BO VIPLASTIC (EST LONGCHAMPS - BO VIPLASTIC),BUENOS AIRES,ALMIRANTE BROWN,, +387,LINEA 515,COL,387,515D,RD-BO DONA SOL-PALUMBO (PALUMBO-BO DONA SOL),BUENOS AIRES,ALMIRANTE BROWN,, +387,LINEA 515,COL,387,515E,RE-BO FRANCIA (EST LONGCHAMPS BO FRANCIA),BUENOS AIRES,ALMIRANTE BROWN,, +388,LINEA 169,COL,388,169A,A-AVCONGRESO Y AMENABAR(CABA)-LOMA HERMOSA(PDO 3 DE FEBRERO) x ESTMARTIN CORONADO,JN,JN,, +388,LINEA 169,COL,388,169B,B-AVCONGRESO Y AMENABAR(CABA)-LOMA HERMOSA(PDO 3 DE FEBRERO) x ESTPABLO PODESTA,JN,JN,, +389,LINEA 501E,COL,389,501EA,RAMAL TRONCAL,BUENOS AIRES,FLORENCIO VARELA,, +390,LINEA 504C,COL,390,504CA,RAMAL TRONCAL,BUENOS AIRES,FLORENCIO VARELA,, +391,LINEA 508,COL,391,508A,508A-AVSMARTIN Y SPERANDIO-CEMENTERIO VARELA,BUENOS AIRES,FLORENCIO VARELA,, +392,LINEA 436,COL,392,436T,RAMAL TRONCAL - ESTACION BANFIELD-AMENEDO Y BLASCO IBANEZ,BUENOS AIRES,PROV,, +393,LINEA 510A,COL,393,510-1,RAMAL 1 A - EST BURZACO-MTRO RIVADAVIA,BUENOS AIRES,ALMIRANTE BROWN,, +393,LINEA 510A,COL,393,510-2A,RAMAL 2 A -EST BURZACO- CTRIO PARQUE ETERNO,BUENOS AIRES,ALMIRANTE BROWN,, +393,LINEA 510A,COL,393,510-2B,RAMAL 2 -EST BURZACO-ESPORA,BUENOS AIRES,ALMIRANTE BROWN,, +393,LINEA 510A,COL,393,510-3,RAMAL 2 A (514)-EST BURZACO -BARRIO ESTHER,BUENOS AIRES,ALMIRANTE BROWN,, +394,LINEA 410,COL,394,410A,SAN MARTIN - LUJAN,BUENOS AIRES,PROV,, +394,LINEA 410,COL,394,410B,SAN MARTIN - MORENO,BUENOS AIRES,PROV,, +395,LINEA 429,COL,395,429A,SAN MARTIN-PILAR-CAPILLA DEL SENOR-ZARATE,BUENOS AIRES,PROV,, +395,LINEA 429,COL,395,429B,SAN MARTIN - DEL VISO,BUENOS AIRES,PROV,, +395,LINEA 429,COL,395,429C,PILAR - CAPILLA DEL SENOR,BUENOS AIRES,PROV,, +395,LINEA 429,COL,395,429D,PILAR - CAPILLA DEL SENOR - ZARATE,BUENOS AIRES,PROV,, +396,LINEA 564,COL,396,564R3,RAMAL 3,BUENOS AIRES,LOMAS DE ZAMORA,, +396,LINEA 564,COL,396,564RB,RAMAL B,BUENOS AIRES,LOMAS DE ZAMORA,, +397,LINEA 128,COL,397,128A,A PLAZA ITALIA (CIUDAD AUTONOMA DE BUENOS AIRES) - VALENTIN ALSINA (PARTIDO DE LANUS - PROVINCIA DE BUENOS AIRES),JN,JN,, +398,LINEA 158,COL,398,158A,NUEVA POMPEYA - ESTACION LANUS,JN,JN,, +399,LINEA 522,COL,399,522A,CNEL LYNCH Y ALBARINOS - 29 DE SEPTIEMBRE E/M WEIL,BUENOS AIRES,LANUS,, +400,LINEA 527,COL,400,527B,B,BUENOS AIRES,LANUS,, +400,LINEA 527,COL,400,527C,C,BUENOS AIRES,LANUS,, +401,LINEA 506,COL,401,506A,506A-AVSMARTIN Y SPERANDIO-BARRIO MAYOL,BUENOS AIRES,FLORENCIO VARELA,, +402,LINEA 507,COL,402,507A,507A-AVSMARTIN Y SPERANDIO-BOSQUE NORTE,BUENOS AIRES,FLORENCIO VARELA,, +2512,LINEA 436,COL,392,0436-7-8,RAMAL 7/8,BUENOS AIRES,PROV,, +2838,LINEA 333A,COL,313,333,TRONCAL,BUENOS AIRES,PROV,, +3420,LINEA 310,COL,302,310,TRONCAL,BUENOS AIRES,PROV,, diff --git a/data/data_ciudad/recorridos_2019_linea_unica_m1.geojson b/data/data_ciudad/recorridos_2019_linea_unica_m1.geojson new file mode 100644 index 0000000..ff830d3 --- /dev/null +++ b/data/data_ciudad/recorridos_2019_linea_unica_m1.geojson @@ -0,0 +1,308 @@ +{ +"type": "FeatureCollection", +"name": "recorridos_2019_linea_unica", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id_linea": 402.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.280477347926229, -34.782709474879084 ], [ -58.281515633808745, -34.783238346222987 ], [ -58.282143557979602, -34.78359033751876 ], [ -58.283351648708319, -34.784423442545439 ], [ -58.28382480283711, -34.783791096373371 ], [ -58.284696821474391, -34.784309354914392 ], [ -58.290022679723556, -34.787192499698897 ], [ -58.294506588943612, -34.781376683716438 ], [ -58.278817328674648, -34.772836914992787 ], [ -58.278552008602453, -34.772737862165833 ], [ -58.278288457330731, -34.772713098959102 ], [ -58.27750664751801, -34.772856371798085 ], [ -58.277257246650144, -34.772898823009641 ], [ -58.276993695378437, -34.773015563841405 ], [ -58.264868568079244, -34.779563663223094 ], [ -58.262620422667524, -34.780784135555194 ], [ -58.262567358653087, -34.780943327598507 ], [ -58.262026105705814, -34.781567714168396 ], [ -58.261978348092825, -34.781719831009788 ], [ -58.261785548840379, -34.782368980786416 ], [ -58.261690033614393, -34.782496334421069 ], [ -58.26159805598936, -34.7825210976278 ], [ -58.261764323234601, -34.781852491045882 ], [ -58.261828000051928, -34.781576558170798 ], [ -58.261785548840379, -34.781180346862989 ], [ -58.261647582402837, -34.780854887574435 ], [ -58.25769254452667, -34.785213211960297 ], [ -58.256204983321908, -34.78679982599202 ], [ -58.274664185144552, -34.796577755052539 ], [ -58.27800368045321, -34.795509399561837 ], [ -58.278654599030325, -34.795735806023444 ], [ -58.278451186974984, -34.804933568526103 ], [ -58.278337983744187, -34.805961241605729 ], [ -58.278364515751392, -34.808055501375563 ], [ -58.276273793582511, -34.807936991743318 ], [ -58.272941373475796, -34.807722966885095 ], [ -58.272877696658469, -34.80879485997675 ], [ -58.271453812271041, -34.808674581544018 ], [ -58.269953869462917, -34.808584372719473 ], [ -58.270081223097577, -34.80754431803647 ], [ -58.262134002535184, -34.807149875529163 ], [ -58.260849853385793, -34.808809010380585 ], [ -58.259740815484022, -34.808248300628023 ], [ -58.258129438245582, -34.81047168283299 ], [ -58.248319670776397, -34.80543767666326 ], [ -58.247567046171625, -34.805091876169179 ], [ -58.246997492416654, -34.806011652419443 ], [ -58.244793567016977, -34.807136609525536 ], [ -58.244713970995299, -34.807255119157787 ], [ -58.244790029415995, -34.807716776083396 ], [ -58.244786491815027, -34.8078016785065 ], [ -58.244765266209257, -34.807858280121899 ], [ -58.244402662110595, -34.808112987391205 ], [ -58.243757049934928, -34.808549881110082 ], [ -58.23890523021479, -34.811127023411323 ], [ -58.238100425995796, -34.811557726328523 ], [ -58.239120139473251, -34.812803846267599 ], [ -58.241396585692669, -34.815704679056893 ], [ -58.23963397601306, -34.816298111618366 ], [ -58.237957153156806, -34.816832289363717 ], [ -58.237193031348887, -34.817072846229166 ], [ -58.237093978521941, -34.81715421105131 ], [ -58.236824236448541, -34.817276258284501 ], [ -58.236357273121484, -34.817396536717226 ], [ -58.235793025767954, -34.817532734354288 ], [ -58.234993527950415, -34.817785672823106 ], [ -58.234245325346834, -34.816181370786587 ], [ -58.229607530484934, -34.817699001599529 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 400.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.400421, -34.696061 ], [ -58.401352, -34.696839 ], [ -58.400431, -34.697562 ], [ -58.399542, -34.698308 ], [ -58.398695, -34.698964 ], [ -58.398624, -34.699108 ], [ -58.398571, -34.699224 ], [ -58.397358, -34.699261 ], [ -58.396054, -34.699221 ], [ -58.394682, -34.699162 ], [ -58.393785, -34.698394 ], [ -58.392859, -34.697686 ], [ -58.392872, -34.69756 ], [ -58.392158, -34.698163 ], [ -58.392057, -34.699814 ], [ -58.392062, -34.700232 ], [ -58.392032, -34.70131 ], [ -58.391988, -34.702391 ], [ -58.391939, -34.703453 ], [ -58.39192, -34.703932 ], [ -58.391765, -34.703934 ], [ -58.39047, -34.70389 ], [ -58.389471, -34.703896 ], [ -58.389136, -34.70396 ], [ -58.388965, -34.703969 ], [ -58.388837, -34.703937 ], [ -58.388709, -34.703878 ], [ -58.388567, -34.703785 ], [ -58.388399, -34.703682 ], [ -58.387055, -34.704665 ], [ -58.385831, -34.703509 ], [ -58.385789, -34.703541 ], [ -58.38489, -34.704304 ], [ -58.384853, -34.704333 ], [ -58.383947, -34.705097 ], [ -58.383887, -34.705148 ], [ -58.383125, -34.705759 ], [ -58.383044, -34.705828 ], [ -58.382421, -34.706371 ], [ -58.381534, -34.707171 ], [ -58.380596, -34.707937 ], [ -58.380494, -34.708016 ], [ -58.379691, -34.708708 ], [ -58.379626, -34.708761 ], [ -58.378813, -34.709437 ], [ -58.377841, -34.710253 ], [ -58.37691, -34.711095 ], [ -58.376875, -34.71121 ], [ -58.375988, -34.711879 ], [ -58.375036, -34.712537 ], [ -58.37496, -34.712587 ], [ -58.374076, -34.713207 ], [ -58.374035, -34.713233 ], [ -58.373098, -34.713911 ], [ -58.371645, -34.71499 ], [ -58.370491, -34.715821 ], [ -58.370196, -34.716032 ], [ -58.369356, -34.716634 ], [ -58.36921, -34.71674 ], [ -58.368202, -34.717461 ], [ -58.368145, -34.717503 ], [ -58.367048, -34.718282 ], [ -58.366864, -34.718406 ], [ -58.365887, -34.719058 ], [ -58.365625, -34.719233 ], [ -58.36472, -34.719858 ], [ -58.363587, -34.720697 ], [ -58.362217, -34.721668 ], [ -58.362123, -34.721794 ], [ -58.362677, -34.722285 ], [ -58.363272, -34.722797 ], [ -58.364261, -34.723692 ], [ -58.365117, -34.724459 ], [ -58.366007, -34.725217 ], [ -58.366858, -34.725989 ], [ -58.367725, -34.72674 ], [ -58.368586, -34.72752 ], [ -58.369469, -34.728252 ], [ -58.370377, -34.729046 ], [ -58.370253, -34.729101 ], [ -58.369477, -34.729646 ], [ -58.368598, -34.730272 ], [ -58.367779, -34.730894 ], [ -58.367504, -34.731095 ], [ -58.367405, -34.731111 ], [ -58.366595, -34.731764 ], [ -58.365683, -34.732482 ], [ -58.364668, -34.733121 ], [ -58.364808, -34.733246 ], [ -58.363952, -34.733891 ], [ -58.363098, -34.734537 ], [ -58.362243, -34.735194 ], [ -58.36303, -34.735871 ], [ -58.363706, -34.736497 ], [ -58.364599, -34.737311 ], [ -58.365522, -34.738121 ], [ -58.366464, -34.738942 ], [ -58.367249999999899, -34.739643 ], [ -58.36804, -34.740343 ], [ -58.368825, -34.741049 ], [ -58.369651, -34.74174 ], [ -58.370461, -34.742494 ], [ -58.370041, -34.742845 ], [ -58.369634, -34.743173 ], [ -58.369215, -34.74351 ], [ -58.368817, -34.743822 ], [ -58.368383, -34.744172 ], [ -58.367958, -34.744507 ], [ -58.367566, -34.744814 ], [ -58.367155, -34.745152 ], [ -58.366728, -34.745502 ], [ -58.365749, -34.745021 ], [ -58.365475, -34.744881 ], [ -58.36484, -34.744552 ], [ -58.364524, -34.744378 ], [ -58.363927, -34.744091 ], [ -58.363497, -34.743877 ], [ -58.362962, -34.743618 ], [ -58.362433, -34.743346 ], [ -58.36204, -34.743124 ], [ -58.361469, -34.742806 ], [ -58.361084, -34.742604 ], [ -58.360278, -34.742195 ], [ -58.360136, -34.742117 ], [ -58.359075, -34.74158 ], [ -58.358941, -34.74151 ], [ -58.358244, -34.741161 ], [ -58.357899, -34.740967 ], [ -58.356969, -34.740507 ], [ -58.356211, -34.74012 ], [ -58.356089, -34.740064 ], [ -58.355021, -34.740026 ], [ -58.353803, -34.739982 ], [ -58.353121, -34.739982 ], [ -58.352536, -34.739965 ], [ -58.351914, -34.739942 ], [ -58.351711, -34.739935 ], [ -58.350318999999899, -34.739916 ], [ -58.349924, -34.739909 ], [ -58.349831, -34.739906 ], [ -58.348496, -34.739877 ], [ -58.348412, -34.73988 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 399.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.390457809880694, -34.70777297570104 ], [ -58.376878286688971, -34.717504860665144 ], [ -58.373112240789631, -34.713892400325022 ], [ -58.351059914249234, -34.730396448539679 ], [ -58.347903411037947, -34.73880685775493 ], [ -58.347485850298895, -34.738368498971404 ], [ -58.347109885648798, -34.739418000292531 ], [ -58.344297350096127, -34.736728653157122 ], [ -58.34407977055394, -34.73663586188178 ], [ -58.343494225609525, -34.736155907009312 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 398.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.391053000295699, -34.707555000163097 ], [ -58.39128300011032, -34.708191999860844 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.392828000311908, -34.708085000322455 ], [ -58.393042000288062, -34.708085000322455 ], [ -58.393922000399982, -34.708021000069039 ], [ -58.394371999568079, -34.707977999884747 ], [ -58.394973000303708, -34.707912999585233 ], [ -58.395702999793571, -34.707870000300204 ], [ -58.396068000437822, -34.70782800016201 ], [ -58.396989999788616, -34.707762999862496 ], [ -58.398084999922787, -34.707677000393232 ], [ -58.398942999919484, -34.707634000208884 ], [ -58.400144999592044, -34.707248000394884 ], [ -58.400423999867655, -34.707162000026244 ], [ -58.401259999749129, -34.706904999865799 ], [ -58.402096999676758, -34.706646999659256 ], [ -58.403813999716249, -34.70615400030681 ], [ -58.404758000081586, -34.705831999846851 ], [ -58.405445000286477, -34.705746000377587 ], [ -58.406173999730242, -34.705638999939879 ], [ -58.406817999750842, -34.705552999571239 ], [ -58.408256000414042, -34.705338000448307 ], [ -58.408620000112876, -34.705296000310113 ], [ -58.409563999578893, -34.705166999757182 ], [ -58.410722999966424, -34.704994999919279 ], [ -58.411795999985372, -34.704866000265667 ], [ -58.412933000257738, -34.704715999643611 ], [ -58.414048999561658, -34.704544999851805 ], [ -58.415550999578954, -34.704350999898679 ], [ -58.415615999878469, -34.704416000198194 ], [ -58.416581000312874, -34.703278999925885 ], [ -58.417397000171377, -34.702313000344645 ], [ -58.418019000076754, -34.701476000417017 ], [ -58.419069999980479, -34.700252999776069 ], [ -58.419757000185371, -34.699459000032789 ], [ -58.420208000298942, -34.698965999781024 ], [ -58.420679999582262, -34.698429000198132 ], [ -58.421302000386959, -34.697677999739881 ], [ -58.421860000038919, -34.697012999650156 ], [ -58.422375000405907, -34.696305000275515 ], [ -58.423039999596256, -34.695425000163596 ], [ -58.423598000147535, -34.694652999636162 ], [ -58.424284000306329, -34.693665999985853 ], [ -58.425013999796192, -34.692678000289447 ], [ -58.423897999592953, -34.691992000130654 ], [ -58.423448000424855, -34.691712999855042 ], [ -58.422804000404255, -34.691348000110054 ], [ -58.423383000125341, -34.690575999582677 ], [ -58.424070000330232, -34.689566999817146 ], [ -58.424692000235609, -34.688729999889517 ], [ -58.425442999794541, -34.687656999870626 ], [ -58.426194000252849, -34.686605999966901 ], [ -58.426944999811838, -34.685576000132244 ], [ -58.427696000270146, -34.684525000228518 ], [ -58.428446999829134, -34.683473000278696 ], [ -58.429177000218317, -34.682443000444096 ], [ -58.429927999777306, -34.68139199964105 ], [ -58.430657000120391, -34.680361999806394 ], [ -58.430936000396059, -34.679975999992337 ], [ -58.431193999703282, -34.679674999601502 ], [ -58.431108000233962, -34.679632000316531 ], [ -58.429992000030722, -34.679331999971794 ], [ -58.429884999593014, -34.679288999787445 ], [ -58.428726000104803, -34.678988000295931 ], [ -58.428639999736163, -34.678946000157737 ], [ -58.427460000178826, -34.678623999697777 ], [ -58.428210999737814, -34.677593999863177 ], [ -58.429370000125346, -34.676048999661589 ], [ -58.429283999756763, -34.675984000261337 ], [ -58.429657999916742, -34.675520000447591 ], [ -58.429992000030722, -34.675105000195572 ], [ -58.428897999942706, -34.674567999713361 ], [ -58.427845999992883, -34.674032000176624 ], [ -58.426687999651449, -34.673473999625344 ], [ -58.425593000416598, -34.672937000042452 ], [ -58.424520000397649, -34.672400999606396 ], [ -58.423362000056215, -34.671821999885367 ], [ -58.423039999596256, -34.671671000116532 ], [ -58.422375000405907, -34.671327999587447 ], [ -58.421580999763307, -34.670919999658224 ], [ -58.420893999558416, -34.670577000028459 ], [ -58.420056999630788, -34.67014800003011 ], [ -58.419349000256091, -34.669805000400402 ], [ -58.418983999611839, -34.669653999732247 ], [ -58.418790999704811, -34.669569000309082 ], [ -58.417161000080057, -34.668623999897648 ], [ -58.417203000218251, -34.668366999737202 ], [ -58.417288999687571, -34.667701999647534 ], [ -58.417331999871863, -34.667380000086894 ], [ -58.417461000424794, -34.666435999721557 ], [ -58.417461000424794, -34.666307000067945 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416729999989457, -34.660120999884214 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.657484999732901 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 397.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.399591000124531, -34.676515999613628 ], [ -58.400037000007501, -34.676821000188966 ], [ -58.400896000050295, -34.677400999956149 ], [ -58.401023999657809, -34.677293000371606 ], [ -58.401667999678409, -34.67680000011984 ], [ -58.402139999861049, -34.676435000374909 ], [ -58.402848000135066, -34.675920000007977 ], [ -58.403299000248637, -34.675598000447337 ], [ -58.404136000176209, -34.674975999642641 ], [ -58.404929999919545, -34.674374999806332 ], [ -58.405723999662825, -34.673796000085304 ], [ -58.406560000443619, -34.673152000064704 ], [ -58.407397000371247, -34.672551000228452 ], [ -58.408234000298819, -34.671929000323075 ], [ -58.40868500041239, -34.671606999863116 ], [ -58.409435999971379, -34.671049000211156 ], [ -58.409864999969727, -34.670726999751196 ], [ -58.410679999782133, -34.670104999845819 ], [ -58.411495999640636, -34.669504000009567 ], [ -58.412332999568207, -34.66888200010419 ], [ -58.413105000095641, -34.668303000383105 ], [ -58.413963000092338, -34.667680000431631 ], [ -58.41477899995084, -34.667057999626934 ], [ -58.41557299969412, -34.666456999790682 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416666999782194, -34.659706999678235 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416492999852039, -34.656683999666825 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.416109000130234, -34.642124000022534 ], [ -58.416088000061109, -34.641566000370574 ], [ -58.416088000061109, -34.640385999913917 ], [ -58.416088000061109, -34.638906000011843 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.416194999599497, -34.637511000432255 ], [ -58.416215999668623, -34.637145999788004 ], [ -58.416194999599497, -34.636072999769056 ], [ -58.416173000383594, -34.635301000140998 ], [ -58.416109000130234, -34.634035000215022 ], [ -58.416022999761594, -34.632726000104753 ], [ -58.416001999692469, -34.632017999830794 ], [ -58.415959000407497, -34.631351999694971 ], [ -58.415937000292274, -34.630729999789594 ], [ -58.41589500015408, -34.630151000068565 ], [ -58.415916000223206, -34.628928000326937 ], [ -58.415937000292274, -34.627876000377057 ], [ -58.415979999577303, -34.62693200001172 ], [ -58.416109000130234, -34.625408999925355 ], [ -58.416173000383594, -34.624549999882561 ], [ -58.416215999668623, -34.624014000345824 ], [ -58.416280999968137, -34.623349000256098 ], [ -58.416388000405846, -34.622447000029013 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.416623999597846, -34.619786999670282 ], [ -58.416731000035554, -34.618541999813374 ], [ -58.416859999689166, -34.617319000071745 ], [ -58.418276000237199, -34.617447999725357 ], [ -58.419005999727062, -34.617511999978774 ], [ -58.419670999816731, -34.617577000278288 ], [ -58.419906999908051, -34.616653999982077 ], [ -58.419971000161468, -34.616395999775534 ], [ -58.420099999815079, -34.615839000169672 ], [ -58.420335999906456, -34.61459400031282 ], [ -58.42063700029729, -34.613155999649621 ], [ -58.421044000180416, -34.611482999840518 ], [ -58.421129999649736, -34.610816999704753 ], [ -58.421259000202667, -34.610022999961416 ], [ -58.421302000386959, -34.609830000054387 ], [ -58.421516000363113, -34.608543000059342 ], [ -58.421408999925347, -34.607255000018199 ], [ -58.421365999741056, -34.606676000297114 ], [ -58.421302000386959, -34.605989000092222 ], [ -58.42119499994925, -34.60487399993508 ], [ -58.420979999926999, -34.603179000010812 ], [ -58.42078700001997, -34.601890999969612 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.419177999564965, -34.600840000065887 ], [ -58.417782999985434, -34.600989999788624 ], [ -58.417717999685919, -34.599959999953967 ], [ -58.417911999639045, -34.599894999654452 ], [ -58.417503999709766, -34.59886599986595 ], [ -58.417267999618446, -34.59783600003135 ], [ -58.416989000242154, -34.59663400035879 ], [ -58.416753000150777, -34.595540000270773 ], [ -58.416408999575651, -34.594101999607574 ], [ -58.414414000205909, -34.594059000322545 ], [ -58.413556000209212, -34.593071999772917 ], [ -58.412890000073389, -34.592342000283054 ], [ -58.412440000005972, -34.591826999916066 ], [ -58.412311000352361, -34.591634000009037 ], [ -58.411217000264287, -34.590347000013992 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.409522000340019, -34.588244000160444 ], [ -58.409071000226447, -34.587556999955552 ], [ -58.408340999837208, -34.586570000305244 ], [ -58.408083999676819, -34.586141000306895 ], [ -58.407654999678471, -34.58556199968649 ], [ -58.407118000095579, -34.584811000127502 ], [ -58.406388999752494, -34.583781000292902 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.405551999824866, -34.582279000275605 ], [ -58.406624999843814, -34.581956999815645 ], [ -58.407675999747539, -34.581656000324131 ], [ -58.408663000297167, -34.581355999979394 ], [ -58.40947900015567, -34.581098999818948 ], [ -58.409758000431339, -34.581013000349628 ], [ -58.410380000336716, -34.5808200004426 ], [ -58.411839000169664, -34.580369000329085 ], [ -58.413061999911349, -34.579982999615709 ], [ -58.413942000023269, -34.57970400023936 ], [ -58.415421999925343, -34.579253000125789 ], [ -58.415959000407497, -34.580068999984292 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.422610999597907, -34.580605000420405 ], [ -58.423099999665226, -34.580260999845223 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 396.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.396274, -34.761266 ], [ -58.39494, -34.761447 ], [ -58.393621, -34.761619 ], [ -58.39223, -34.76181 ], [ -58.390981, -34.761965 ], [ -58.389407, -34.762205 ], [ -58.388386, -34.762305 ], [ -58.387171, -34.76165 ], [ -58.386042, -34.761061 ], [ -58.385069, -34.760563 ], [ -58.383918, -34.759976 ], [ -58.382773, -34.759418 ], [ -58.38175, -34.758883 ], [ -58.381161, -34.758586 ], [ -58.380285999999899, -34.758083 ], [ -58.37866, -34.75723 ], [ -58.377468, -34.756609 ], [ -58.376913, -34.757535 ], [ -58.37632, -34.758402 ], [ -58.375737, -34.759347 ], [ -58.37526, -34.760079 ], [ -58.374715, -34.760861 ], [ -58.374301, -34.761527 ], [ -58.373798, -34.762343 ], [ -58.373333, -34.763088 ], [ -58.372814, -34.763882 ], [ -58.372749, -34.763982 ], [ -58.372232, -34.764777 ], [ -58.371097, -34.76419 ], [ -58.36968, -34.76344 ], [ -58.36917, -34.764204 ], [ -58.368654, -34.764973 ], [ -58.36836, -34.765071 ], [ -58.367789, -34.76588 ], [ -58.367098, -34.76682 ], [ -58.366003, -34.766248 ], [ -58.364744, -34.765625 ], [ -58.363872, -34.765209 ], [ -58.362748, -34.764647 ], [ -58.362061, -34.765573 ], [ -58.361296, -34.7652 ], [ -58.360339, -34.764743 ], [ -58.359372, -34.764251 ], [ -58.358471, -34.763818 ], [ -58.357314, -34.763255 ], [ -58.356434, -34.762828 ], [ -58.355225, -34.762228 ], [ -58.35406, -34.761642 ], [ -58.353015, -34.761128 ], [ -58.351532, -34.760409 ], [ -58.351091, -34.760988 ], [ -58.349589, -34.760278 ], [ -58.348225, -34.759638 ], [ -58.346859, -34.758963 ], [ -58.346421, -34.759554 ], [ -58.345796, -34.760358 ], [ -58.345206, -34.761205 ], [ -58.344581, -34.761989 ], [ -58.345965, -34.7627 ], [ -58.347372, -34.763388 ], [ -58.348621, -34.764015 ], [ -58.349321, -34.764345 ], [ -58.350209, -34.764819 ], [ -58.351272, -34.765378 ], [ -58.352415, -34.765959 ], [ -58.353628, -34.766582 ], [ -58.354594, -34.767075 ], [ -58.355584, -34.767573 ], [ -58.356414, -34.768005 ], [ -58.356541, -34.768071 ], [ -58.356653, -34.768138 ], [ -58.357454, -34.768581 ], [ -58.35843, -34.769095 ], [ -58.35996, -34.76986 ], [ -58.361481, -34.770233 ], [ -58.362296, -34.770691 ], [ -58.36258, -34.77085 ], [ -58.363642, -34.771402 ], [ -58.36462, -34.77189 ], [ -58.365739, -34.772473 ], [ -58.36687, -34.773067 ], [ -58.367988, -34.773657 ], [ -58.369121, -34.774235 ], [ -58.370227, -34.774797 ], [ -58.371359, -34.77536 ], [ -58.372058, -34.774421 ], [ -58.373202, -34.775003 ], [ -58.374335, -34.775578 ], [ -58.375371, -34.776134 ], [ -58.376534, -34.776745 ], [ -58.377002, -34.776988 ], [ -58.377192, -34.775813 ], [ -58.377293, -34.776025 ], [ -58.377849, -34.77627 ], [ -58.378232, -34.776445 ], [ -58.379298, -34.776882 ], [ -58.380078, -34.777215 ], [ -58.380875, -34.777597 ], [ -58.381186, -34.777735 ], [ -58.382378, -34.778267 ], [ -58.382682, -34.778408 ], [ -58.383436, -34.778738 ], [ -58.384235, -34.77909 ], [ -58.384508, -34.779216 ], [ -58.385677, -34.779746 ], [ -58.387006, -34.780352 ], [ -58.388126, -34.780865 ], [ -58.389083, -34.78128 ], [ -58.389822, -34.781654 ], [ -58.389776, -34.781781 ], [ -58.389664, -34.78209 ], [ -58.389594, -34.782404 ], [ -58.389459, -34.782996 ], [ -58.390369, -34.783512 ], [ -58.391701, -34.784224 ], [ -58.392515, -34.783229 ], [ -58.393272, -34.782258 ], [ -58.394101, -34.78131 ], [ -58.394806, -34.780318 ], [ -58.395533, -34.779315 ], [ -58.395247, -34.779176 ], [ -58.39536, -34.777974 ], [ -58.395441, -34.777155 ], [ -58.395496, -34.776546 ], [ -58.395551, -34.775945 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 395.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.522345, -34.588314 ], [ -58.52322, -34.588068 ], [ -58.524075, -34.587813 ], [ -58.52586, -34.587258 ], [ -58.525917, -34.587238 ], [ -58.526521, -34.586508 ], [ -58.527184, -34.585788 ], [ -58.527828, -34.585056 ], [ -58.52836, -34.584458 ], [ -58.528864, -34.583937 ], [ -58.529454, -34.583317 ], [ -58.530115, -34.582492 ], [ -58.530278, -34.582313 ], [ -58.531154, -34.581331 ], [ -58.53172, -34.580731 ], [ -58.532071, -34.58036 ], [ -58.53255, -34.580757 ], [ -58.533688, -34.579819 ], [ -58.534729, -34.57898 ], [ -58.535767, -34.578106 ], [ -58.536833, -34.577228 ], [ -58.537901, -34.576376 ], [ -58.538971, -34.575503 ], [ -58.539978, -34.574673 ], [ -58.54106, -34.573799 ], [ -58.542078, -34.572958 ], [ -58.543178, -34.572069 ], [ -58.543466, -34.572305 ], [ -58.544014, -34.572773 ], [ -58.544747, -34.573406 ], [ -58.545491, -34.574047 ], [ -58.546261, -34.574706 ], [ -58.547078, -34.575359 ], [ -58.547681, -34.575866 ], [ -58.54786, -34.576045 ], [ -58.547964, -34.575803 ], [ -58.548075, -34.57561 ], [ -58.548777, -34.575007 ], [ -58.549796999999899, -34.574174 ], [ -58.550469, -34.57366 ], [ -58.550851, -34.573368 ], [ -58.55187, -34.572533 ], [ -58.552945, -34.571695 ], [ -58.553678, -34.571116 ], [ -58.555259, -34.569851 ], [ -58.556831, -34.568588 ], [ -58.558272, -34.567448 ], [ -58.558577, -34.567254 ], [ -58.559059, -34.567109 ], [ -58.559441, -34.567022 ], [ -58.56082, -34.566737 ], [ -58.560912, -34.56672 ], [ -58.562158, -34.566465 ], [ -58.563046, -34.566243 ], [ -58.563396, -34.566162 ], [ -58.565023, -34.565811 ], [ -58.565875, -34.565646 ], [ -58.566217, -34.565567 ], [ -58.567527, -34.565298 ], [ -58.568611, -34.565079 ], [ -58.569049, -34.564976 ], [ -58.569535, -34.564881 ], [ -58.571111, -34.564553 ], [ -58.572507, -34.564243 ], [ -58.573656, -34.563999 ], [ -58.574435, -34.563817 ], [ -58.575644, -34.563552 ], [ -58.57828, -34.562957 ], [ -58.579108, -34.562771 ], [ -58.5796, -34.56268 ], [ -58.580388, -34.562581 ], [ -58.581207, -34.562528 ], [ -58.582479, -34.562545 ], [ -58.583058, -34.562538 ], [ -58.583472, -34.562529 ], [ -58.584303, -34.562543 ], [ -58.585815, -34.562531 ], [ -58.586744, -34.562525 ], [ -58.586875, -34.56251 ], [ -58.587029, -34.562482 ], [ -58.58726, -34.562416 ], [ -58.587648, -34.562228 ], [ -58.587802, -34.562114 ], [ -58.588036, -34.562029 ], [ -58.588301, -34.562031 ], [ -58.588434, -34.562066 ], [ -58.588588, -34.562141 ], [ -58.588721, -34.562161 ], [ -58.588974, -34.5623 ], [ -58.589502, -34.562478 ], [ -58.589678, -34.562548 ], [ -58.590006, -34.562598 ], [ -58.590176, -34.562603 ], [ -58.590983, -34.562622 ], [ -58.592227, -34.562633 ], [ -58.592919, -34.562623 ], [ -58.593501, -34.562637 ], [ -58.594098, -34.562641 ], [ -58.594558, -34.562643 ], [ -58.594749, -34.562643 ], [ -58.596022, -34.562653 ], [ -58.597214, -34.562667 ], [ -58.598423, -34.56265 ], [ -58.601029, -34.562663 ], [ -58.601605, -34.562674 ], [ -58.601999, -34.562674 ], [ -58.603361, -34.562703 ], [ -58.604453, -34.562701 ], [ -58.605603, -34.562709 ], [ -58.606758, -34.562715 ], [ -58.607561, -34.562721 ], [ -58.60844, -34.56273 ], [ -58.609009, -34.562729 ], [ -58.610086, -34.562769 ], [ -58.611434, -34.56277 ], [ -58.612871, -34.562758 ], [ -58.613402, -34.562774 ], [ -58.615369, -34.562771 ], [ -58.616979, -34.562789 ], [ -58.617474, -34.562803 ], [ -58.619724, -34.56281 ], [ -58.621173, -34.562808 ], [ -58.622784, -34.56282 ], [ -58.624178, -34.562862 ], [ -58.625902, -34.562851 ], [ -58.626181, -34.56285 ], [ -58.626596, -34.56279 ], [ -58.628469, -34.562813 ], [ -58.628783, -34.562823 ], [ -58.630906, -34.562867 ], [ -58.640974, -34.562931 ], [ -58.64166, -34.562912 ], [ -58.642254, -34.562895 ], [ -58.642527, -34.562865 ], [ -58.642919, -34.562816 ], [ -58.643448, -34.562676 ], [ -58.643969, -34.562524 ], [ -58.644238, -34.562457 ], [ -58.644925, -34.562155 ], [ -58.645148, -34.562012 ], [ -58.645444, -34.561884 ], [ -58.651749, -34.559235 ], [ -58.651947, -34.559233 ], [ -58.652137, -34.559243 ], [ -58.653436, -34.558778 ], [ -58.655101, -34.558855 ], [ -58.657022, -34.557576 ], [ -58.658237, -34.55682 ], [ -58.658608999999899, -34.556771 ], [ -58.658889, -34.556786 ], [ -58.66588, -34.558236 ], [ -58.667557, -34.556995 ], [ -58.668961, -34.555916 ], [ -58.670371, -34.554879 ], [ -58.67195, -34.553752 ], [ -58.672708, -34.553222 ], [ -58.673448, -34.552704 ], [ -58.67416, -34.552197 ], [ -58.675001, -34.551591 ], [ -58.675822, -34.551 ], [ -58.676613, -34.550441 ], [ -58.677416, -34.549862 ], [ -58.678105, -34.549374 ], [ -58.679587, -34.548318 ], [ -58.68114, -34.547205 ], [ -58.682326, -34.546362 ], [ -58.683452, -34.545556 ], [ -58.684856, -34.544553 ], [ -58.686464, -34.543402 ], [ -58.687248, -34.542847 ], [ -58.688054, -34.542271 ], [ -58.688845, -34.5417 ], [ -58.689599, -34.541162 ], [ -58.690093, -34.54081 ], [ -58.691257, -34.539978 ], [ -58.693219, -34.538582 ], [ -58.694143, -34.539393 ], [ -58.695042, -34.540234 ], [ -58.695993, -34.541121 ], [ -58.696941, -34.542013 ], [ -58.697563, -34.542548 ], [ -58.697682, -34.542674 ], [ -58.698079, -34.543068 ], [ -58.698438, -34.543393 ], [ -58.698854, -34.543803 ], [ -58.699454, -34.544381 ], [ -58.700249, -34.545146 ], [ -58.701128, -34.545994 ], [ -58.702038, -34.546843 ], [ -58.702121, -34.546962 ], [ -58.703665, -34.548358 ], [ -58.704458, -34.547766 ], [ -58.705255, -34.547205 ], [ -58.70565, -34.546919 ], [ -58.706541999999899, -34.546234 ], [ -58.707688, -34.545357 ], [ -58.708784, -34.544551 ], [ -58.709903, -34.543732 ], [ -58.711064, -34.542922 ], [ -58.712121, -34.542179 ], [ -58.71132, -34.541448 ], [ -58.710588, -34.540765 ], [ -58.709534, -34.539784 ], [ -58.708664, -34.538986 ], [ -58.707904, -34.538284 ], [ -58.707148, -34.53759 ], [ -58.705988, -34.536536 ], [ -58.704830999999899, -34.535462 ], [ -58.704327, -34.534987 ], [ -58.703356, -34.534062 ], [ -58.702451, -34.533209 ], [ -58.702202, -34.532972 ], [ -58.701511, -34.532673 ], [ -58.702, -34.532315 ], [ -58.702376999999899, -34.532043 ], [ -58.70319, -34.531451 ], [ -58.704593, -34.530431 ], [ -58.704852, -34.530252 ], [ -58.705569, -34.529736 ], [ -58.705771, -34.529587 ], [ -58.706218, -34.529266 ], [ -58.70684, -34.528819 ], [ -58.70732, -34.528476 ], [ -58.707927, -34.528021 ], [ -58.708781, -34.527424 ], [ -58.709138, -34.527177 ], [ -58.709268, -34.527085 ], [ -58.710215, -34.52643 ], [ -58.710514, -34.526226 ], [ -58.710851, -34.525988 ], [ -58.711713, -34.525338 ], [ -58.712157, -34.525007 ], [ -58.712418, -34.524811 ], [ -58.713019, -34.524353 ], [ -58.714104, -34.523545 ], [ -58.714885, -34.522953 ], [ -58.714966, -34.522892 ], [ -58.71597, -34.522141 ], [ -58.716215, -34.521965 ], [ -58.717054, -34.521337 ], [ -58.717943, -34.520687 ], [ -58.719089, -34.519883 ], [ -58.719925, -34.519266 ], [ -58.720477, -34.518718 ], [ -58.720894, -34.518333 ], [ -58.721001, -34.518237 ], [ -58.721634, -34.517661 ], [ -58.72224, -34.517092 ], [ -58.722381, -34.516962 ], [ -58.722903, -34.516474 ], [ -58.723097, -34.51629 ], [ -58.723503, -34.515917 ], [ -58.723822, -34.515568 ], [ -58.724538, -34.514727 ], [ -58.72465, -34.514598 ], [ -58.725079, -34.513958 ], [ -58.725182, -34.513816 ], [ -58.725482, -34.513418 ], [ -58.725875, -34.512892 ], [ -58.72622, -34.512436 ], [ -58.7265, -34.512023 ], [ -58.726859, -34.511486 ], [ -58.726886, -34.511452 ], [ -58.727571, -34.51049 ], [ -58.728079, -34.509779 ], [ -58.728525, -34.509107 ], [ -58.729187, -34.508148 ], [ -58.729661, -34.507987 ], [ -58.730779, -34.507609 ], [ -58.731427, -34.507387 ], [ -58.732861, -34.506898 ], [ -58.733255, -34.50676 ], [ -58.735067, -34.506088 ], [ -58.735256, -34.506016 ], [ -58.735734, -34.505847 ], [ -58.737215, -34.5053 ], [ -58.737651, -34.505155 ], [ -58.738271, -34.504957 ], [ -58.738395, -34.504919 ], [ -58.739209, -34.504544 ], [ -58.739869, -34.504292 ], [ -58.741408, -34.50364 ], [ -58.741867, -34.503449 ], [ -58.742882, -34.503032 ], [ -58.743148, -34.502949 ], [ -58.744784, -34.502262 ], [ -58.745535, -34.501917 ], [ -58.746196, -34.501686 ], [ -58.74701, -34.501334 ], [ -58.747434, -34.501147 ], [ -58.747947, -34.50091 ], [ -58.748911, -34.500486 ], [ -58.750014, -34.500004 ], [ -58.75097, -34.499562 ], [ -58.751845, -34.499179 ], [ -58.753762, -34.498331 ], [ -58.753909, -34.49827 ], [ -58.755724, -34.497464 ], [ -58.757161, -34.496758 ], [ -58.757555, -34.496584 ], [ -58.758537, -34.496205 ], [ -58.759819, -34.495549 ], [ -58.760338, -34.495337 ], [ -58.760891, -34.495007 ], [ -58.761826, -34.494442 ], [ -58.762732, -34.493907 ], [ -58.763675, -34.493284 ], [ -58.76493, -34.49254 ], [ -58.765707, -34.492009 ], [ -58.766478, -34.491515 ], [ -58.767474, -34.490931 ], [ -58.768275, -34.490434 ], [ -58.768925, -34.490085 ], [ -58.769614, -34.489708 ], [ -58.770324, -34.489302 ], [ -58.771086, -34.488856 ], [ -58.771616, -34.488471 ], [ -58.771684, -34.488417 ], [ -58.772763, -34.487387 ], [ -58.77362, -34.486537 ], [ -58.774116, -34.486041 ], [ -58.774631, -34.485411 ], [ -58.775264, -34.484622 ], [ -58.776007, -34.483847 ], [ -58.776708, -34.483115 ], [ -58.777425, -34.482319 ], [ -58.778092999999899, -34.481685 ], [ -58.778809, -34.481002 ], [ -58.779702, -34.480182 ], [ -58.78067, -34.479338 ], [ -58.781287, -34.478808 ], [ -58.781951, -34.478221 ], [ -58.783327, -34.476973 ], [ -58.784562, -34.476271 ], [ -58.784977, -34.476083 ], [ -58.785228, -34.475935 ], [ -58.785571, -34.475755 ], [ -58.785652, -34.475713 ], [ -58.785716, -34.475683 ], [ -58.786209, -34.47545 ], [ -58.789456, -34.473898 ], [ -58.789707, -34.473784 ], [ -58.791071, -34.473123 ], [ -58.791407, -34.472959 ], [ -58.791598, -34.472829 ], [ -58.792325, -34.472329 ], [ -58.792633, -34.472116 ], [ -58.793773, -34.471334 ], [ -58.794406, -34.470888 ], [ -58.795128, -34.470382 ], [ -58.79567, -34.470016 ], [ -58.796466, -34.469468 ], [ -58.796665, -34.469332 ], [ -58.797848, -34.468511 ], [ -58.798163, -34.468313 ], [ -58.799295, -34.467574 ], [ -58.80039, -34.466868 ], [ -58.800732, -34.466641 ], [ -58.802403, -34.465547 ], [ -58.802695, -34.465364 ], [ -58.80435, -34.464532 ], [ -58.804726, -34.464387 ], [ -58.8066, -34.462977 ], [ -58.80821, -34.461655 ], [ -58.808599, -34.461337 ], [ -58.809081, -34.461017 ], [ -58.809664, -34.460632 ], [ -58.810896, -34.459789 ], [ -58.811075, -34.459665 ], [ -58.811837, -34.45927 ], [ -58.813022, -34.458407 ], [ -58.813684, -34.457919 ], [ -58.813843, -34.457807 ], [ -58.814325, -34.457456 ], [ -58.815141, -34.456862 ], [ -58.815805, -34.456605 ], [ -58.817149, -34.45609 ], [ -58.817461, -34.455837 ], [ -58.818424, -34.455078 ], [ -58.81865, -34.454898 ], [ -58.820613, -34.453327 ], [ -58.821337, -34.452753 ], [ -58.821978, -34.452481 ], [ -58.822717, -34.451723 ], [ -58.823364, -34.451593 ], [ -58.823638, -34.4515 ], [ -58.825097, -34.451644 ], [ -58.826666, -34.451899 ], [ -58.827421999999899, -34.451987 ], [ -58.82789, -34.452029 ], [ -58.82823, -34.452074 ], [ -58.828754, -34.452134 ], [ -58.829405, -34.452193 ], [ -58.829475, -34.452211 ], [ -58.830531, -34.45232 ], [ -58.831671, -34.452439 ], [ -58.832501, -34.452533 ], [ -58.832726, -34.452561 ], [ -58.835199, -34.452834 ], [ -58.835764, -34.452895 ], [ -58.837563, -34.453045 ], [ -58.838759, -34.452964 ], [ -58.839261, -34.452918 ], [ -58.839451, -34.4529 ], [ -58.840947, -34.452759 ], [ -58.841642, -34.452722 ], [ -58.842483999999899, -34.452658 ], [ -58.843179, -34.452608 ], [ -58.844301, -34.45252 ], [ -58.844394, -34.452511 ], [ -58.844992, -34.452463 ], [ -58.847203, -34.452265 ], [ -58.847864999999899, -34.452205 ], [ -58.84905, -34.45215 ], [ -58.849252, -34.452144 ], [ -58.850759, -34.452058 ], [ -58.850811, -34.45206 ], [ -58.851036, -34.452037 ], [ -58.852124, -34.451951 ], [ -58.853265, -34.451852 ], [ -58.853373, -34.451834 ], [ -58.853564, -34.451812 ], [ -58.854753, -34.451642 ], [ -58.854955, -34.451624 ], [ -58.85553, -34.451538 ], [ -58.856331, -34.45144 ], [ -58.857142, -34.451334 ], [ -58.857883, -34.451238 ], [ -58.858787, -34.451123 ], [ -58.859079, -34.451088 ], [ -58.859535, -34.451031 ], [ -58.860316, -34.450936 ], [ -58.860724, -34.450881 ], [ -58.862227, -34.450703 ], [ -58.862571, -34.450656 ], [ -58.864182, -34.45045 ], [ -58.865839, -34.450251 ], [ -58.867099, -34.450084 ], [ -58.867451, -34.450045 ], [ -58.867962, -34.449935 ], [ -58.868168, -34.449909 ], [ -58.86951, -34.450008 ], [ -58.870297, -34.450077 ], [ -58.87113, -34.450138 ], [ -58.87147, -34.450159 ], [ -58.872066, -34.450285 ], [ -58.872948, -34.450463 ], [ -58.873438, -34.45056 ], [ -58.873704, -34.450613 ], [ -58.874661, -34.450824 ], [ -58.875863, -34.451104 ], [ -58.877015, -34.451352 ], [ -58.878215, -34.451624 ], [ -58.878918, -34.451775 ], [ -58.879652, -34.451944 ], [ -58.882248, -34.452437 ], [ -58.884227, -34.452795 ], [ -58.885012, -34.45296 ], [ -58.885876, -34.453122 ], [ -58.886977, -34.453343 ], [ -58.887555, -34.453468 ], [ -58.887881, -34.453523 ], [ -58.888851, -34.453732 ], [ -58.889626, -34.453887 ], [ -58.890193, -34.453985 ], [ -58.890889999999899, -34.454129 ], [ -58.890979, -34.454147 ], [ -58.89186, -34.454321 ], [ -58.892144, -34.454387 ], [ -58.892888, -34.45453 ], [ -58.893892, -34.454732 ], [ -58.894012, -34.454758 ], [ -58.894928, -34.454931 ], [ -58.895779, -34.455096 ], [ -58.896248, -34.455196 ], [ -58.896335, -34.455214 ], [ -58.896684, -34.455275 ], [ -58.897229, -34.455386 ], [ -58.897601, -34.455449 ], [ -58.898299, -34.455584 ], [ -58.898518, -34.455621 ], [ -58.900067, -34.455922 ], [ -58.900481, -34.45601 ], [ -58.900534, -34.45601 ], [ -58.90151, -34.456129 ], [ -58.901949, -34.456176 ], [ -58.902275, -34.456216 ], [ -58.902833, -34.456288 ], [ -58.903174, -34.456323 ], [ -58.903951, -34.456425 ], [ -58.904081, -34.456432 ], [ -58.905253, -34.45658 ], [ -58.905691, -34.456627 ], [ -58.906094, -34.456681 ], [ -58.906379, -34.45669 ], [ -58.907927, -34.456764 ], [ -58.908787, -34.456778 ], [ -58.909476, -34.456815 ], [ -58.909814, -34.456813 ], [ -58.910619, -34.456835 ], [ -58.91065, -34.456835 ], [ -58.912121, -34.456882 ], [ -58.91355, -34.456934 ], [ -58.914239, -34.456961 ], [ -58.914867, -34.45698 ], [ -58.914993, -34.455762 ], [ -58.915063, -34.455137 ], [ -58.915127, -34.454609 ], [ -58.916301, -34.454656 ], [ -58.916467, -34.454666 ], [ -58.917784, -34.454715 ], [ -58.918289, -34.454723 ], [ -58.918928, -34.454746 ], [ -58.919228, -34.454888 ], [ -58.919692, -34.45512 ], [ -58.920111, -34.45533 ], [ -58.920423, -34.455491 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 394.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.522345, -34.588314 ], [ -58.52322, -34.588068 ], [ -58.524075, -34.587813 ], [ -58.52586, -34.587258 ], [ -58.525917, -34.587238 ], [ -58.526521, -34.586508 ], [ -58.527184, -34.585788 ], [ -58.527828, -34.585056 ], [ -58.52836, -34.584458 ], [ -58.528864, -34.583937 ], [ -58.529454, -34.583317 ], [ -58.530115, -34.582492 ], [ -58.530278, -34.582313 ], [ -58.531154, -34.581331 ], [ -58.53172, -34.580731 ], [ -58.532071, -34.58036 ], [ -58.53255, -34.580757 ], [ -58.533688, -34.579819 ], [ -58.534729, -34.57898 ], [ -58.535767, -34.578106 ], [ -58.536833, -34.577228 ], [ -58.537901, -34.576376 ], [ -58.538971, -34.575503 ], [ -58.539978, -34.574673 ], [ -58.54106, -34.573799 ], [ -58.542078, -34.572958 ], [ -58.543178, -34.572069 ], [ -58.543466, -34.572305 ], [ -58.544014, -34.572773 ], [ -58.544747, -34.573406 ], [ -58.545491, -34.574047 ], [ -58.546261, -34.574706 ], [ -58.547078, -34.575359 ], [ -58.547681, -34.575866 ], [ -58.547777, -34.575807 ], [ -58.547935, -34.575723 ], [ -58.548075, -34.57561 ], [ -58.548777, -34.575007 ], [ -58.549796999999899, -34.574174 ], [ -58.550469, -34.57366 ], [ -58.550851, -34.573368 ], [ -58.55187, -34.572533 ], [ -58.552945, -34.571695 ], [ -58.553678, -34.571116 ], [ -58.555259, -34.569851 ], [ -58.556831, -34.568588 ], [ -58.558272, -34.567448 ], [ -58.558577, -34.567254 ], [ -58.559059, -34.567109 ], [ -58.559441, -34.567022 ], [ -58.56082, -34.566737 ], [ -58.560912, -34.56672 ], [ -58.562158, -34.566465 ], [ -58.563046, -34.566243 ], [ -58.563396, -34.566162 ], [ -58.565023, -34.565811 ], [ -58.565875, -34.565646 ], [ -58.566217, -34.565567 ], [ -58.567527, -34.565298 ], [ -58.568611, -34.565079 ], [ -58.569049, -34.564976 ], [ -58.569535, -34.564881 ], [ -58.571111, -34.564553 ], [ -58.572507, -34.564243 ], [ -58.573656, -34.563999 ], [ -58.574435, -34.563817 ], [ -58.575644, -34.563552 ], [ -58.57828, -34.562957 ], [ -58.579108, -34.562771 ], [ -58.5796, -34.56268 ], [ -58.580388, -34.562581 ], [ -58.581207, -34.562528 ], [ -58.582479, -34.562545 ], [ -58.583058, -34.562538 ], [ -58.583472, -34.562529 ], [ -58.584303, -34.562543 ], [ -58.585815, -34.562531 ], [ -58.586744, -34.562525 ], [ -58.586875, -34.56251 ], [ -58.587029, -34.562482 ], [ -58.58726, -34.562416 ], [ -58.587648, -34.562228 ], [ -58.587802, -34.562114 ], [ -58.588036, -34.562029 ], [ -58.588301, -34.562031 ], [ -58.588434, -34.562066 ], [ -58.588588, -34.562141 ], [ -58.588721, -34.562161 ], [ -58.588974, -34.5623 ], [ -58.589502, -34.562478 ], [ -58.589678, -34.562548 ], [ -58.590006, -34.562598 ], [ -58.590176, -34.562603 ], [ -58.590983, -34.562622 ], [ -58.590969, -34.562344 ], [ -58.592231, -34.562341 ], [ -58.592933, -34.562341 ], [ -58.593486, -34.562333 ], [ -58.594083, -34.56234 ], [ -58.594734, -34.562344 ], [ -58.595992, -34.562371 ], [ -58.597207, -34.56239 ], [ -58.598769, -34.562386 ], [ -58.598423, -34.56265 ], [ -58.601029, -34.562663 ], [ -58.601605, -34.562674 ], [ -58.601999, -34.562674 ], [ -58.603361, -34.562703 ], [ -58.604453, -34.562701 ], [ -58.605603, -34.562709 ], [ -58.606758, -34.562715 ], [ -58.607561, -34.562721 ], [ -58.60844, -34.56273 ], [ -58.609009, -34.562729 ], [ -58.610086, -34.562769 ], [ -58.611434, -34.56277 ], [ -58.612871, -34.562758 ], [ -58.613402, -34.562774 ], [ -58.615369, -34.562771 ], [ -58.616979, -34.562789 ], [ -58.617474, -34.562803 ], [ -58.619724, -34.56281 ], [ -58.621173, -34.562808 ], [ -58.622784, -34.56282 ], [ -58.624178, -34.562862 ], [ -58.625902, -34.562851 ], [ -58.626181, -34.56285 ], [ -58.626596, -34.56279 ], [ -58.628469, -34.562813 ], [ -58.628783, -34.562823 ], [ -58.630906, -34.562867 ], [ -58.640974, -34.562931 ], [ -58.64166, -34.562912 ], [ -58.642254, -34.562895 ], [ -58.642527, -34.562865 ], [ -58.642919, -34.562816 ], [ -58.643448, -34.562676 ], [ -58.643969, -34.562524 ], [ -58.644238, -34.562457 ], [ -58.644925, -34.562155 ], [ -58.645148, -34.562012 ], [ -58.645444, -34.561884 ], [ -58.651749, -34.559235 ], [ -58.651947, -34.559233 ], [ -58.652137, -34.559243 ], [ -58.653436, -34.558778 ], [ -58.655101, -34.558855 ], [ -58.657022, -34.557576 ], [ -58.658237, -34.55682 ], [ -58.658608999999899, -34.556771 ], [ -58.658889, -34.556786 ], [ -58.66588, -34.558236 ], [ -58.667557, -34.556995 ], [ -58.668961, -34.555916 ], [ -58.670371, -34.554879 ], [ -58.67195, -34.553752 ], [ -58.672708, -34.553222 ], [ -58.673448, -34.552704 ], [ -58.67416, -34.552197 ], [ -58.675001, -34.551591 ], [ -58.675822, -34.551 ], [ -58.676613, -34.550441 ], [ -58.677416, -34.549862 ], [ -58.678105, -34.549374 ], [ -58.679587, -34.548318 ], [ -58.68114, -34.547205 ], [ -58.682326, -34.546362 ], [ -58.683452, -34.545556 ], [ -58.684856, -34.544553 ], [ -58.686464, -34.543402 ], [ -58.687248, -34.542847 ], [ -58.688054, -34.542271 ], [ -58.688845, -34.5417 ], [ -58.689599, -34.541162 ], [ -58.690093, -34.54081 ], [ -58.691257, -34.539978 ], [ -58.693219, -34.538582 ], [ -58.694019, -34.538005 ], [ -58.694786, -34.537452 ], [ -58.695686, -34.53681 ], [ -58.696487, -34.536233 ], [ -58.697231, -34.535698 ], [ -58.698425, -34.534839 ], [ -58.699341, -34.534182 ], [ -58.699963, -34.533736 ], [ -58.700966, -34.533018 ], [ -58.701336, -34.532784 ], [ -58.701511, -34.532673 ], [ -58.702, -34.532315 ], [ -58.702202, -34.532972 ], [ -58.702451, -34.533209 ], [ -58.703356, -34.534062 ], [ -58.704327, -34.534987 ], [ -58.704830999999899, -34.535462 ], [ -58.705988, -34.536536 ], [ -58.707462, -34.535463 ], [ -58.708618, -34.536534 ], [ -58.709363, -34.537232 ], [ -58.710115, -34.537933 ], [ -58.710994, -34.53874 ], [ -58.71206, -34.539712 ], [ -58.712776, -34.540372 ], [ -58.713573, -34.5411 ], [ -58.714413, -34.541873 ], [ -58.715038, -34.542484 ], [ -58.713612, -34.543527 ], [ -58.714041, -34.54392 ], [ -58.714401, -34.544244 ], [ -58.71541, -34.545237 ], [ -58.71639, -34.546164 ], [ -58.717402, -34.54716 ], [ -58.718441, -34.548106 ], [ -58.71941, -34.548991 ], [ -58.720219, -34.549757 ], [ -58.721001, -34.550485 ], [ -58.721806, -34.551239 ], [ -58.723125, -34.55262 ], [ -58.724232, -34.553554 ], [ -58.72491, -34.554203 ], [ -58.725347, -34.55464 ], [ -58.725485, -34.554776 ], [ -58.725964, -34.555259 ], [ -58.726493, -34.555795 ], [ -58.727018, -34.556293 ], [ -58.727526, -34.556778 ], [ -58.727606, -34.556854 ], [ -58.728052, -34.557201 ], [ -58.72858, -34.55761 ], [ -58.73054, -34.559122 ], [ -58.731377, -34.559764 ], [ -58.731403, -34.559787 ], [ -58.732014, -34.560238 ], [ -58.732506, -34.560612 ], [ -58.732697, -34.560745 ], [ -58.733358, -34.561242 ], [ -58.734061, -34.561761 ], [ -58.734781, -34.5623 ], [ -58.735541, -34.562884 ], [ -58.736181, -34.563381 ], [ -58.736809, -34.563875 ], [ -58.737602, -34.564487 ], [ -58.738809, -34.565482 ], [ -58.7398, -34.566288 ], [ -58.740771, -34.567092 ], [ -58.740783, -34.567099 ], [ -58.741719, -34.56791 ], [ -58.742657, -34.568709 ], [ -58.74266, -34.568728 ], [ -58.742864, -34.569495 ], [ -58.74296, -34.569853 ], [ -58.743115, -34.570444 ], [ -58.743274, -34.571049 ], [ -58.743286, -34.571084 ], [ -58.743398, -34.57196 ], [ -58.743478, -34.572543 ], [ -58.743624, -34.573887 ], [ -58.743651, -34.573941 ], [ -58.74372, -34.574429 ], [ -58.743761, -34.574691 ], [ -58.743878, -34.575484 ], [ -58.743923, -34.575755 ], [ -58.743957, -34.576018 ], [ -58.744086, -34.576848 ], [ -58.744217, -34.577694 ], [ -58.744251, -34.577972 ], [ -58.744338, -34.578589 ], [ -58.744346, -34.578593 ], [ -58.744558, -34.579439 ], [ -58.744979, -34.580948 ], [ -58.745089, -34.581261 ], [ -58.745378, -34.581536 ], [ -58.745417, -34.581578 ], [ -58.746075, -34.582236 ], [ -58.746715, -34.582862 ], [ -58.747481, -34.583597 ], [ -58.747493, -34.583604 ], [ -58.748727, -34.584751 ], [ -58.748742, -34.584766 ], [ -58.749777, -34.585752 ], [ -58.749804, -34.585767 ], [ -58.750531, -34.586554 ], [ -58.75055, -34.586566 ], [ -58.750733, -34.586857 ], [ -58.751243, -34.587665 ], [ -58.751509, -34.588112 ], [ -58.751513, -34.588119 ], [ -58.751924, -34.588779 ], [ -58.751931, -34.588817 ], [ -58.752158, -34.589615 ], [ -58.75217, -34.589656 ], [ -58.752231, -34.589912 ], [ -58.752246, -34.589961 ], [ -58.752428, -34.590533 ], [ -58.752432, -34.590548 ], [ -58.752599, -34.591361 ], [ -58.752641, -34.591509 ], [ -58.752789, -34.592025 ], [ -58.752796, -34.592052 ], [ -58.752998, -34.592605 ], [ -58.753264, -34.593362 ], [ -58.753314, -34.593468 ], [ -58.753459, -34.593828 ], [ -58.753645, -34.594217 ], [ -58.753656, -34.594232 ], [ -58.754071, -34.595004 ], [ -58.75409, -34.595019 ], [ -58.754468, -34.595592 ], [ -58.754627, -34.595665 ], [ -58.755309, -34.596429 ], [ -58.755324, -34.596448 ], [ -58.756062, -34.597334 ], [ -58.756824, -34.598258 ], [ -58.757384, -34.598873 ], [ -58.757883, -34.599511 ], [ -58.757894, -34.599519 ], [ -58.75816, -34.599828 ], [ -58.758179, -34.599851 ], [ -58.758431, -34.600031 ], [ -58.758454, -34.600046 ], [ -58.759188, -34.600612 ], [ -58.759211, -34.600623 ], [ -58.760099, -34.601277 ], [ -58.76011, -34.601284 ], [ -58.760411, -34.601517 ], [ -58.760894, -34.601888 ], [ -58.761161, -34.602083 ], [ -58.762071, -34.602748 ], [ -58.762936, -34.603417 ], [ -58.762947, -34.603424 ], [ -58.763739, -34.604024 ], [ -58.763754, -34.60404 ], [ -58.764021, -34.604253 ], [ -58.764565, -34.604643 ], [ -58.764604, -34.60467 ], [ -58.765408, -34.605263 ], [ -58.765773, -34.605591 ], [ -58.765777, -34.605599 ], [ -58.765899, -34.605718 ], [ -58.766044, -34.605879 ], [ -58.766195, -34.60605 ], [ -58.766397, -34.606313 ], [ -58.766413, -34.606329 ], [ -58.766583, -34.606566 ], [ -58.766599, -34.606589 ], [ -58.767109, -34.607413 ], [ -58.767113, -34.607428 ], [ -58.767446, -34.608149 ], [ -58.768415, -34.610311 ], [ -58.769033, -34.61158 ], [ -58.769052, -34.611622 ], [ -58.770732, -34.615413 ], [ -58.770941, -34.615755 ], [ -58.770987, -34.615808 ], [ -58.771161, -34.616053 ], [ -58.771173, -34.616069 ], [ -58.771492, -34.616547 ], [ -58.772042, -34.617322 ], [ -58.77205, -34.617333 ], [ -58.772506, -34.618023 ], [ -58.772521, -34.618042 ], [ -58.772801, -34.618464 ], [ -58.772878, -34.618572 ], [ -58.772923, -34.618644 ], [ -58.773291, -34.619196 ], [ -58.773295, -34.619208 ], [ -58.773782, -34.619886 ], [ -58.773849, -34.619981 ], [ -58.773914, -34.620082 ], [ -58.774381, -34.620783 ], [ -58.774453, -34.620893 ], [ -58.77478, -34.621358 ], [ -58.774784, -34.621358 ], [ -58.774992, -34.621672 ], [ -58.775818999999899, -34.622975 ], [ -58.775846, -34.62302 ], [ -58.7764, -34.623987 ], [ -58.776988, -34.624999 ], [ -58.777015, -34.625041 ], [ -58.777617, -34.626091 ], [ -58.777887, -34.626482 ], [ -58.778247, -34.626953 ], [ -58.778913, -34.627766 ], [ -58.779631, -34.628627 ], [ -58.779896, -34.628984 ], [ -58.780242, -34.629421 ], [ -58.780265, -34.629536 ], [ -58.780857, -34.630299 ], [ -58.781389, -34.630946 ], [ -58.781609, -34.631207 ], [ -58.782088, -34.631843 ], [ -58.782563, -34.632437 ], [ -58.782567, -34.632437 ], [ -58.782996, -34.632981 ], [ -58.783057, -34.633057 ], [ -58.783677, -34.633667 ], [ -58.783889, -34.633858 ], [ -58.783905, -34.633874 ], [ -58.784261999999899, -34.634226 ], [ -58.784296, -34.634257 ], [ -58.784958, -34.63482 ], [ -58.785301, -34.635092 ], [ -58.785514, -34.635107 ], [ -58.78577, -34.635248 ], [ -58.785871, -34.635816 ], [ -58.785923, -34.636085 ], [ -58.786627, -34.637851 ], [ -58.786956, -34.638676 ], [ -58.787399, -34.639792 ], [ -58.787849, -34.640919 ], [ -58.788291, -34.64203 ], [ -58.788741, -34.64315 ], [ -58.789211, -34.644342 ], [ -58.789676, -34.645511 ], [ -58.79013, -34.646642 ], [ -58.790572, -34.647758 ], [ -58.791016, -34.648866 ], [ -58.792384, -34.648495 ], [ -58.793694, -34.648133 ], [ -58.795096, -34.647747 ], [ -58.796527, -34.64735 ], [ -58.797844, -34.646988 ], [ -58.798301, -34.648115 ], [ -58.799645, -34.647726 ], [ -58.799825, -34.647676 ], [ -58.800313, -34.647543 ], [ -58.803442, -34.646633 ], [ -58.804136, -34.646435 ], [ -58.804896, -34.64621 ], [ -58.805177, -34.646131 ], [ -58.808428, -34.645205 ], [ -58.810351, -34.644664 ], [ -58.812708, -34.643999 ], [ -58.813749, -34.643699 ], [ -58.816268, -34.642991 ], [ -58.817024, -34.642777 ], [ -58.818483, -34.642365 ], [ -58.819723, -34.642014 ], [ -58.821189, -34.641598 ], [ -58.822191, -34.641307 ], [ -58.824888, -34.640532 ], [ -58.825432, -34.640372 ], [ -58.828094, -34.639622 ], [ -58.828378, -34.639436 ], [ -58.828463, -34.639391 ], [ -58.828906, -34.639263 ], [ -58.830951, -34.638678 ], [ -58.83236, -34.638284 ], [ -58.833763, -34.637905 ], [ -58.836094, -34.637282 ], [ -58.837508, -34.636881 ], [ -58.839348, -34.636384 ], [ -58.839564, -34.636324 ], [ -58.840973, -34.63595 ], [ -58.841564, -34.63579 ], [ -58.845874, -34.634633 ], [ -58.847096, -34.634306 ], [ -58.848476, -34.633932 ], [ -58.849455, -34.633668 ], [ -58.850061, -34.633508 ], [ -58.850495, -34.633311 ], [ -58.850986, -34.633092 ], [ -58.852495, -34.632271 ], [ -58.852668, -34.632224 ], [ -58.854524, -34.631715 ], [ -58.855288, -34.631507 ], [ -58.856998, -34.631044 ], [ -58.858538, -34.630624 ], [ -58.860452, -34.630097 ], [ -58.862115, -34.629648 ], [ -58.863064, -34.629388 ], [ -58.863426, -34.629292 ], [ -58.863815, -34.629251 ], [ -58.86407, -34.629225 ], [ -58.865937, -34.629121 ], [ -58.866114, -34.629107 ], [ -58.867212, -34.628801 ], [ -58.868743, -34.628406 ], [ -58.870023, -34.628076 ], [ -58.871335, -34.627744 ], [ -58.876212, -34.626478 ], [ -58.881945, -34.625245 ], [ -58.884246, -34.624697 ], [ -58.885224, -34.624474 ], [ -58.886228, -34.624191 ], [ -58.887387, -34.623931 ], [ -58.888728, -34.623616 ], [ -58.890294, -34.623282 ], [ -58.892674, -34.622912 ], [ -58.893835, -34.62259 ], [ -58.896041, -34.622089 ], [ -58.89857, -34.621415 ], [ -58.899276, -34.621189 ], [ -58.900077, -34.620987 ], [ -58.900893, -34.620757 ], [ -58.901552, -34.620611 ], [ -58.902384, -34.620423 ], [ -58.903194, -34.620308 ], [ -58.904121, -34.620157 ], [ -58.905892, -34.619755 ], [ -58.906051, -34.619716 ], [ -58.906773, -34.619536 ], [ -58.908089, -34.619199 ], [ -58.909467, -34.618865 ], [ -58.910164, -34.618704 ], [ -58.911074, -34.618476 ], [ -58.91223, -34.6182 ], [ -58.913186, -34.617994 ], [ -58.914222, -34.617778 ], [ -58.915123, -34.617595 ], [ -58.915901, -34.617425 ], [ -58.916845, -34.617212 ], [ -58.917355, -34.617065 ], [ -58.920871, -34.616277 ], [ -58.923149, -34.615728 ], [ -58.924095, -34.61552 ], [ -58.925242, -34.615253 ], [ -58.926326, -34.615008 ], [ -58.929114, -34.614371 ], [ -58.929865, -34.614198 ], [ -58.93097, -34.613938 ], [ -58.93158, -34.613801 ], [ -58.933063, -34.613451 ], [ -58.933086, -34.613451 ], [ -58.934477, -34.613146 ], [ -58.935593, -34.612894 ], [ -58.936815, -34.612617 ], [ -58.940075, -34.611891 ], [ -58.941163, -34.611639 ], [ -58.941388, -34.61136 ], [ -58.944204, -34.610738 ], [ -58.94565, -34.61041 ], [ -58.947007, -34.6101 ], [ -58.94843, -34.609789 ], [ -58.949922999999899, -34.609452 ], [ -58.951356, -34.609124 ], [ -58.951558, -34.609064 ], [ -58.952925, -34.608748 ], [ -58.95433, -34.608429 ], [ -58.954543, -34.608396 ], [ -58.955909, -34.608076 ], [ -58.957404, -34.607715 ], [ -58.958839, -34.60735 ], [ -58.958868, -34.607447 ], [ -58.960062, -34.607123 ], [ -58.961603, -34.606744 ], [ -58.96303, -34.606387 ], [ -58.964946, -34.605918 ], [ -58.965612, -34.605755 ], [ -58.966484, -34.605555 ], [ -58.968924999999899, -34.605012 ], [ -58.971317, -34.604453 ], [ -58.971369, -34.604437 ], [ -58.971826, -34.604355 ], [ -58.973131, -34.604029 ], [ -58.975725, -34.603402 ], [ -58.977592, -34.602954 ], [ -58.983366, -34.601553 ], [ -58.984264, -34.601326 ], [ -58.987828, -34.60049 ], [ -58.989103, -34.600168 ], [ -58.991348, -34.599647 ], [ -58.991476, -34.59962 ], [ -58.991646, -34.599578 ], [ -58.99182, -34.599544 ], [ -58.992175, -34.599445 ], [ -58.992572, -34.599354 ], [ -58.993135, -34.599228 ], [ -58.993702, -34.599091 ], [ -58.994303, -34.598946 ], [ -58.994859, -34.59882 ], [ -58.995411, -34.598683 ], [ -58.997353, -34.59823 ], [ -58.998567, -34.597948 ], [ -58.998881, -34.597864 ], [ -59.001615999999899, -34.59722 ], [ -59.001855, -34.597159 ], [ -59.00277, -34.596945 ], [ -59.003676, -34.596739 ], [ -59.004631, -34.596527 ], [ -59.005562, -34.596317 ], [ -59.006374, -34.59613 ], [ -59.00755, -34.595858 ], [ -59.008912, -34.595543 ], [ -59.010488, -34.595178 ], [ -59.010733, -34.59512 ], [ -59.012518, -34.59473 ], [ -59.014106, -34.594356 ], [ -59.015659, -34.593987 ], [ -59.016556, -34.593789 ], [ -59.017044, -34.593668 ], [ -59.018002, -34.593461 ], [ -59.018402, -34.593368 ], [ -59.018567, -34.593333 ], [ -59.018972, -34.593225 ], [ -59.023443, -34.591912 ], [ -59.025958, -34.591531 ], [ -59.027733, -34.591099 ], [ -59.030179, -34.590748 ], [ -59.032476, -34.590185 ], [ -59.037486, -34.588656 ], [ -59.038616, -34.588224 ], [ -59.04041, -34.58774 ], [ -59.057669, -34.583393 ], [ -59.058893, -34.583103 ], [ -59.05947, -34.582964 ], [ -59.064744, -34.581717 ], [ -59.080794, -34.578404 ], [ -59.081879999999899, -34.578181 ], [ -59.082836, -34.577989 ], [ -59.083245, -34.577908 ], [ -59.084875, -34.577578 ], [ -59.085166999999899, -34.577501 ], [ -59.085519, -34.577406 ], [ -59.086024, -34.577283 ], [ -59.087231, -34.576996 ], [ -59.089024, -34.576589 ], [ -59.08975, -34.575722 ], [ -59.090472, -34.574795 ], [ -59.091122, -34.573942 ], [ -59.091466, -34.573453 ], [ -59.092494, -34.572034 ], [ -59.09391, -34.571649 ], [ -59.095254, -34.571235 ], [ -59.096166, -34.570966 ], [ -59.097059, -34.570703 ], [ -59.097837, -34.570487 ], [ -59.098429, -34.570304 ], [ -59.099907, -34.569866 ], [ -59.101154, -34.569491 ], [ -59.102545, -34.569076 ], [ -59.103904, -34.56867 ], [ -59.105221, -34.568294 ], [ -59.106563, -34.567907 ], [ -59.107968, -34.567502 ], [ -59.109379, -34.567107 ], [ -59.110678, -34.566738 ], [ -59.110221, -34.565819 ], [ -59.109517, -34.56439 ], [ -59.108938, -34.563237 ], [ -59.108336, -34.562123 ], [ -59.107684, -34.560926 ], [ -59.108004, -34.560806 ], [ -59.109113, -34.560357 ], [ -59.109176, -34.560342 ], [ -59.109606, -34.560171 ], [ -59.110523, -34.559807 ], [ -59.110877, -34.559664 ], [ -59.112159, -34.55917 ], [ -59.112411, -34.558998 ], [ -59.11337, -34.55834 ], [ -59.113662, -34.558138 ], [ -59.11575, -34.556486 ], [ -59.116337, -34.555996 ], [ -59.116944, -34.555498 ], [ -59.117247, -34.555335 ], [ -59.117282, -34.555368 ], [ -59.117321, -34.555399 ], [ -59.117362, -34.555425 ], [ -59.117406, -34.555449 ], [ -59.117451, -34.555469 ], [ -59.117498, -34.555485 ], [ -59.117548, -34.555498 ], [ -59.117599, -34.555507 ], [ -59.117652, -34.555514 ], [ -59.117708, -34.555515 ], [ -59.117766, -34.555514 ], [ -59.117825, -34.555508 ], [ -59.117886, -34.5555 ], [ -59.11795, -34.555487 ], [ -59.118015, -34.555474 ], [ -59.118656, -34.5571 ], [ -59.11909, -34.558199 ], [ -59.119551, -34.559333 ], [ -59.120028, -34.560515 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 391.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.280484893161017, -34.782696729305975 ], [ -58.28335191760516, -34.784405731064993 ], [ -58.283839099102074, -34.783806420493391 ], [ -58.286549529493627, -34.785337562340835 ], [ -58.289982999090917, -34.787208957932144 ], [ -58.29456095855398, -34.781409178206978 ], [ -58.278816489860077, -34.772879635491172 ], [ -58.276976026427292, -34.772956965887509 ], [ -58.262597405858642, -34.780794401556108 ], [ -58.278481069265872, -34.78939354162857 ], [ -58.279180909352696, -34.792022775103959 ], [ -58.278322541953379, -34.805973178602812 ], [ -58.27833027499301, -34.807999234986795 ], [ -58.276250087331597, -34.807952836748996 ], [ -58.272936479848632, -34.807705379480723 ], [ -58.272882348571194, -34.808799604588863 ], [ -58.272712221699258, -34.810633301611951 ], [ -58.277899158033435, -34.810878825620314 ], [ -58.277640101205698, -34.812970612841177 ], [ -58.277616902086798, -34.814084170548405 ], [ -58.280667586222229, -34.814107369667305 ], [ -58.280725584019478, -34.814091903588043 ], [ -58.284839561104498, -34.81630355292323 ], [ -58.286498298105897, -34.817127121644205 ], [ -58.287480394139337, -34.817741898295068 ], [ -58.286645225858912, -34.818747193447429 ], [ -58.281806276308245, -34.824900759735797 ], [ -58.281539486440892, -34.825233280440045 ], [ -58.281522087101713, -34.82536280885391 ], [ -58.281582018158872, -34.825606399602364 ], [ -58.281707680052918, -34.825751394095491 ], [ -58.282421052959108, -34.8261225799979 ], [ -58.287948243037164, -34.828958672283505 ], [ -58.285937652732407, -34.831297916772613 ], [ -58.288891673872406, -34.83280585950115 ], [ -58.287812914843528, -34.834070211481226 ], [ -58.28904633466508, -34.834700454211358 ], [ -58.289487117924203, -34.834920845840912 ], [ -58.288941938630039, -34.835949340112165 ], [ -58.289672710875415, -34.836204530420069 ], [ -58.284754497668509, -34.845174856394948 ], [ -58.289518050082748, -34.847664895156946 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 390.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.27144, -34.810403 ], [ -58.270798, -34.810383 ], [ -58.270196, -34.810569 ], [ -58.270127, -34.810582 ], [ -58.270089, -34.810582 ], [ -58.270008, -34.810568 ], [ -58.269981, -34.810617 ], [ -58.26993, -34.81138 ], [ -58.269851, -34.812369 ], [ -58.270759, -34.812405 ], [ -58.270711, -34.813472 ], [ -58.272797, -34.813522 ], [ -58.274531, -34.813569 ], [ -58.274487, -34.814606 ], [ -58.274445, -34.81552 ], [ -58.274413, -34.816261 ], [ -58.273047, -34.816221 ], [ -58.272876, -34.816133 ], [ -58.272679, -34.816037 ], [ -58.271785, -34.815592 ], [ -58.271707, -34.815517 ], [ -58.271511, -34.815466 ], [ -58.27067, -34.815017 ], [ -58.269595, -34.814494 ], [ -58.268522, -34.813956 ], [ -58.267798, -34.813595 ], [ -58.266858, -34.813123 ], [ -58.265799999999899, -34.812581 ], [ -58.265568, -34.812486 ], [ -58.264949, -34.812173 ], [ -58.264008, -34.811702 ], [ -58.263036, -34.811212 ], [ -58.262177, -34.810747 ], [ -58.262027, -34.810745 ], [ -58.260765, -34.81072 ], [ -58.259331, -34.810712 ], [ -58.25924, -34.810858 ], [ -58.258313, -34.811724 ], [ -58.257481, -34.812521 ], [ -58.256544, -34.813421 ], [ -58.255605, -34.814295 ], [ -58.254932, -34.814917 ], [ -58.254419, -34.8154 ], [ -58.254249, -34.815563 ], [ -58.254075, -34.815786 ], [ -58.253931, -34.81596 ], [ -58.253497, -34.816547 ], [ -58.253066, -34.8171 ], [ -58.252585, -34.817736 ], [ -58.252063, -34.818387 ], [ -58.251715, -34.818849 ], [ -58.251525999999899, -34.819095 ], [ -58.251235, -34.81947 ], [ -58.251034, -34.819716 ], [ -58.250781, -34.820026 ], [ -58.25064, -34.8202 ], [ -58.250519, -34.820355 ], [ -58.248899, -34.822551 ], [ -58.248397, -34.82322 ], [ -58.247916, -34.823864 ], [ -58.247061, -34.825022 ], [ -58.246752999999899, -34.825419 ], [ -58.245887, -34.824655 ], [ -58.245084, -34.823963 ], [ -58.244893, -34.8238 ], [ -58.242373, -34.82168 ], [ -58.242318, -34.821815 ], [ -58.24208, -34.822227 ], [ -58.241923, -34.822282 ], [ -58.241322, -34.820973 ], [ -58.241385, -34.820826 ], [ -58.240489, -34.821158 ], [ -58.23981, -34.819812 ], [ -58.239059, -34.82006 ], [ -58.238095, -34.82037 ], [ -58.237333, -34.820622 ], [ -58.236575, -34.820866 ], [ -58.235801, -34.821118 ], [ -58.235016, -34.821374 ], [ -58.234201, -34.821641 ], [ -58.233377, -34.821908 ], [ -58.232627, -34.822152 ], [ -58.231806, -34.822416 ], [ -58.230885, -34.822712 ], [ -58.230026, -34.822987 ], [ -58.229181, -34.823249 ], [ -58.229829, -34.824639 ], [ -58.230509, -34.826062 ], [ -58.229649, -34.826342 ], [ -58.228875, -34.826595 ], [ -58.228623, -34.826675 ], [ -58.228073, -34.826856 ], [ -58.226867, -34.827285 ], [ -58.226198, -34.826644 ], [ -58.225113, -34.827479 ], [ -58.224384, -34.828036 ], [ -58.223464, -34.828745 ], [ -58.222636, -34.829382 ], [ -58.220868, -34.83077 ], [ -58.219273, -34.831997 ], [ -58.218197, -34.831004 ], [ -58.216591, -34.829523 ], [ -58.216449, -34.829424 ], [ -58.216304, -34.829313 ], [ -58.216212, -34.829222 ], [ -58.215691, -34.828751 ], [ -58.216470999999899, -34.828187 ], [ -58.215923, -34.827683 ], [ -58.215383, -34.827186 ], [ -58.214837, -34.826687 ], [ -58.214297, -34.826195 ], [ -58.213749, -34.825698 ], [ -58.213245, -34.825225 ], [ -58.212884, -34.824855 ], [ -58.212648, -34.824641 ], [ -58.212138, -34.824138 ], [ -58.211553, -34.82363 ], [ -58.211017, -34.823133 ], [ -58.210485, -34.822634 ], [ -58.209933, -34.821981 ], [ -58.209397, -34.821325 ], [ -58.208866, -34.820677 ], [ -58.20836, -34.820061 ], [ -58.207851, -34.819436 ], [ -58.207338, -34.818806 ], [ -58.206847, -34.818219 ], [ -58.206629, -34.818001 ], [ -58.20602, -34.817421 ], [ -58.205481, -34.816909 ], [ -58.204861, -34.816318 ], [ -58.202468, -34.814025 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 389.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.274439869483167, -34.811767470446242 ], [ -58.27431344261506, -34.813901246363066 ], [ -58.274122512242826, -34.817337993063433 ], [ -58.27480882952684, -34.817663090724281 ], [ -58.272398978612308, -34.820619931353875 ], [ -58.271377243106798, -34.820124544442109 ], [ -58.272006797307156, -34.81922407552436 ], [ -58.270894756895849, -34.818661604968291 ], [ -58.272555077092321, -34.8165265389814 ], [ -58.264742412671353, -34.812393154436364 ], [ -58.263116924367125, -34.814565632455661 ], [ -58.261192139803725, -34.81352841610915 ], [ -58.26031489214747, -34.813074311440033 ], [ -58.258170795670004, -34.811920988786078 ], [ -58.257391593340046, -34.812658908873395 ], [ -58.255002383546845, -34.814888149976333 ], [ -58.253701992903459, -34.81627110510501 ], [ -58.247158757443898, -34.824837170454273 ], [ -58.238621073636487, -34.83649166358154 ], [ -58.236257665244956, -34.83412180483959 ], [ -58.235571347960949, -34.834679115115328 ], [ -58.235101762450832, -34.835024853897494 ], [ -58.23640473323438, -34.836154955289956 ], [ -58.235635851465076, -34.836704525145194 ], [ -58.235878384640628, -34.83697543986257 ], [ -58.230756806412231, -34.840696001981136 ], [ -58.227983155734393, -34.83812876251654 ], [ -58.233803951947628, -34.833871531243567 ], [ -58.225067597347447, -34.825718288320765 ], [ -58.223973617917302, -34.826569734575358 ], [ -58.225717792669137, -34.828200383159917 ], [ -58.22502373496463, -34.828690609791352 ], [ -58.223785267685216, -34.8276043707817 ], [ -58.222918340589629, -34.826703901863965 ], [ -58.2163802654104, -34.82948529296231 ], [ -58.202705522533577, -34.835254486372229 ], [ -58.203092543558391, -34.836090451785829 ], [ -58.206880189321261, -34.838360975131415 ], [ -58.208417952859861, -34.837421804111202 ], [ -58.210162127611696, -34.841828683513768 ], [ -58.210440782749579, -34.84259240500274 ], [ -58.208895278790465, -34.843397408734361 ], [ -58.206601534183392, -34.844746822040882 ], [ -58.209068148181558, -34.850928837877284 ], [ -58.209253918273468, -34.851723521048235 ], [ -58.210285974339641, -34.852765897675077 ], [ -58.210120845369055, -34.857678484550078 ], [ -58.211281908443489, -34.857657843428754 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 388.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.625712834224977, -34.563089318413844 ], [ -58.622896186691193, -34.56532906223589 ], [ -58.622353218491909, -34.568586871431592 ], [ -58.617534375723267, -34.572964552538316 ], [ -58.614989212289125, -34.571132034865734 ], [ -58.590419901271524, -34.590101986328222 ], [ -58.590182352684337, -34.589864437741035 ], [ -58.601448942819481, -34.581075140015123 ], [ -58.596358615951189, -34.574525586111264 ], [ -58.590589578833807, -34.568994097581061 ], [ -58.588214092961941, -34.56247847918965 ], [ -58.578712149474477, -34.562749963289292 ], [ -58.558350842001332, -34.567229450933382 ], [ -58.542570828709643, -34.580430365278474 ], [ -58.533815466496186, -34.573269972150413 ], [ -58.531779335748872, -34.574763134698443 ], [ -58.535681919681224, -34.577953072869235 ], [ -58.532593788047798, -34.580667913865661 ], [ -58.531999916579842, -34.58037946200978 ], [ -58.525806685556752, -34.58733624206311 ], [ -58.506531314482174, -34.575543651484914 ], [ -58.504613958028457, -34.577766427550735 ], [ -58.500643503071196, -34.575221264116585 ], [ -58.486628136427179, -34.567891193426256 ], [ -58.464468246793921, -34.556471893485067 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 387.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.388065, -34.86034 ], [ -58.389041, -34.860834 ], [ -58.389343, -34.860986 ], [ -58.389446, -34.86039 ], [ -58.389715, -34.859928 ], [ -58.390364, -34.859035 ], [ -58.391056, -34.85811 ], [ -58.391713, -34.857189 ], [ -58.390703, -34.856676 ], [ -58.389584, -34.856164 ], [ -58.388512, -34.855635 ], [ -58.389174, -34.854721 ], [ -58.389813, -34.853816 ], [ -58.390476, -34.852908 ], [ -58.390857, -34.852416 ], [ -58.391039, -34.852415 ], [ -58.390511, -34.852151 ], [ -58.389789, -34.851804 ], [ -58.390538, -34.850767 ], [ -58.391315, -34.84971 ], [ -58.392084, -34.84866 ], [ -58.39135, -34.848306 ], [ -58.392273, -34.847029 ], [ -58.39319, -34.845735 ], [ -58.392514, -34.845393 ], [ -58.391802, -34.845045 ], [ -58.391112, -34.844708 ], [ -58.390632, -34.844473 ], [ -58.390254, -34.844375 ], [ -58.39037, -34.843308 ], [ -58.391269, -34.843363 ], [ -58.392131, -34.843433 ], [ -58.392973, -34.843499 ], [ -58.393784, -34.843548 ], [ -58.394774, -34.843623 ], [ -58.394907, -34.842691 ], [ -58.394953, -34.842355 ], [ -58.395024, -34.841703 ], [ -58.395029, -34.841654 ], [ -58.395201, -34.840093 ], [ -58.395342, -34.839083 ], [ -58.395464, -34.838073 ], [ -58.395598, -34.837 ], [ -58.395661, -34.836293 ], [ -58.395695, -34.835972 ], [ -58.395699, -34.835877 ], [ -58.395826, -34.835888 ], [ -58.396315999999899, -34.835884 ], [ -58.39681, -34.835839 ], [ -58.398064, -34.835666 ], [ -58.398022, -34.835476 ], [ -58.397698, -34.834387 ], [ -58.397369, -34.833293 ], [ -58.396092, -34.833255 ], [ -58.394839, -34.833125 ], [ -58.394938, -34.83213 ], [ -58.395031, -34.831084 ], [ -58.395169, -34.830042 ], [ -58.395336, -34.828575 ], [ -58.39535, -34.828474 ], [ -58.394074, -34.828395 ], [ -58.39284, -34.828311 ], [ -58.391329, -34.828212 ], [ -58.391502, -34.828129 ], [ -58.391613, -34.827187 ], [ -58.391736, -34.826165 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 383.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.262134, -34.724612 ], [ -58.26244, -34.724207 ], [ -58.262486, -34.724146 ], [ -58.263437, -34.724666 ], [ -58.264123, -34.725032 ], [ -58.264216, -34.7251 ], [ -58.264297, -34.72515 ], [ -58.265166, -34.725602 ], [ -58.266123, -34.726111 ], [ -58.267086, -34.72662 ], [ -58.267928, -34.727049 ], [ -58.268033, -34.727091 ], [ -58.267414, -34.727923 ], [ -58.266814, -34.728762 ], [ -58.266231, -34.729606 ], [ -58.265694, -34.730363 ], [ -58.265634, -34.730458 ], [ -58.265568, -34.730565 ], [ -58.265029, -34.731274 ], [ -58.264384, -34.732105 ], [ -58.264313999999899, -34.732165 ], [ -58.264216, -34.732254 ], [ -58.263703, -34.73295 ], [ -58.263028, -34.73381 ], [ -58.262981, -34.733876 ], [ -58.262933, -34.733937 ], [ -58.262349, -34.734782 ], [ -58.261741, -34.735667 ], [ -58.261155, -34.736491 ], [ -58.261131, -34.73654 ], [ -58.261119, -34.736559 ], [ -58.260477, -34.737409 ], [ -58.260292, -34.737342 ], [ -58.260207, -34.737441 ], [ -58.259656, -34.738206 ], [ -58.259013, -34.739052 ], [ -58.258389, -34.739854 ], [ -58.257731, -34.74073 ], [ -58.2577, -34.74078 ], [ -58.2588, -34.741253 ], [ -58.258734, -34.741346 ], [ -58.258101, -34.742138 ], [ -58.257655, -34.742697 ], [ -58.257208, -34.743252 ], [ -58.256738, -34.743841 ], [ -58.256276, -34.744415 ], [ -58.255851, -34.744971 ], [ -58.255195, -34.745816 ], [ -58.254642, -34.74651 ], [ -58.254458, -34.746715 ], [ -58.254394, -34.746801 ], [ -58.254067, -34.747218 ], [ -58.253541, -34.747885 ], [ -58.253083, -34.748477 ], [ -58.252669, -34.749074 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 382.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.391033000272728, -34.707500000324728 ], [ -58.39128300011032, -34.708191999860844 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.392828000311908, -34.708085000322455 ], [ -58.393042000288062, -34.708085000322455 ], [ -58.393922000399982, -34.708021000069039 ], [ -58.394371999568079, -34.707977999884747 ], [ -58.394973000303708, -34.707912999585233 ], [ -58.395702999793571, -34.707870000300204 ], [ -58.396068000437822, -34.70782800016201 ], [ -58.396989999788616, -34.707762999862496 ], [ -58.398084999922787, -34.707677000393232 ], [ -58.398942999919484, -34.707634000208884 ], [ -58.400144999592044, -34.707248000394884 ], [ -58.400423999867655, -34.707162000026244 ], [ -58.401259999749129, -34.706904999865799 ], [ -58.402096999676758, -34.706646999659256 ], [ -58.403813999716249, -34.70615400030681 ], [ -58.404758000081586, -34.705831999846851 ], [ -58.405445000286477, -34.705746000377587 ], [ -58.406173999730242, -34.705638999939879 ], [ -58.406817999750842, -34.705552999571239 ], [ -58.408256000414042, -34.705338000448307 ], [ -58.407998000207499, -34.704180000106874 ], [ -58.407762000116179, -34.703042999834508 ], [ -58.407526000024859, -34.701862000231074 ], [ -58.407311000002608, -34.70070399988964 ], [ -58.408642000228099, -34.700532000051737 ], [ -58.409736000316116, -34.700382000329 ], [ -58.410872999689161, -34.700231999707 ], [ -58.411731999731956, -34.700103000053389 ], [ -58.411624000147469, -34.699953000330652 ], [ -58.412697000166361, -34.699222999941469 ], [ -58.413534000093989, -34.698687000404675 ], [ -58.414392000090686, -34.698106999738229 ], [ -58.414971999857869, -34.697720999924172 ], [ -58.415400999856217, -34.697441999648504 ], [ -58.414971999857869, -34.697248999741475 ], [ -58.414327999837269, -34.696604999720932 ], [ -58.413599000393504, -34.695854000161944 ], [ -58.412804999750904, -34.695060000418664 ], [ -58.412097000376207, -34.694352000144647 ], [ -58.411151999964773, -34.693407999779311 ], [ -58.410358000221493, -34.692570999851739 ], [ -58.409606999763184, -34.691777000108402 ], [ -58.409177999764836, -34.691348000110054 ], [ -58.408512999675168, -34.690660999905162 ], [ -58.409370999671864, -34.690061000115008 ], [ -58.409886000038853, -34.689717000439202 ], [ -58.410766000150772, -34.689115999703574 ], [ -58.411646000262635, -34.688536999982546 ], [ -58.410981000172967, -34.687828999708529 ], [ -58.410272999899007, -34.687121000333832 ], [ -58.409563999578893, -34.686413000059872 ], [ -58.410508999990327, -34.685682999670632 ], [ -58.410959000057744, -34.685017999580964 ], [ -58.411344999871801, -34.684482000044227 ], [ -58.411988999892401, -34.683601999932307 ], [ -58.412697000166361, -34.682615000281999 ], [ -58.412976000442029, -34.682207000352719 ], [ -58.413341000186961, -34.681691999985787 ], [ -58.414048999561658, -34.680684000266353 ], [ -58.414800000019966, -34.679632000316531 ], [ -58.413384000371252, -34.679010000411154 ], [ -58.412353999637332, -34.678516000113291 ], [ -58.411624000147469, -34.677873000138788 ], [ -58.410809000335064, -34.678451999859874 ], [ -58.410057999876756, -34.677764999654983 ], [ -58.409307000317767, -34.677057000280286 ], [ -58.408340999837208, -34.676156000099297 ], [ -58.408297999652916, -34.676199000283589 ], [ -58.407225999680122, -34.675169000448989 ], [ -58.406475000121134, -34.674482000244097 ], [ -58.405723999662825, -34.673796000085304 ], [ -58.404994000172906, -34.673108999880412 ], [ -58.404242999714597, -34.672421999675521 ], [ -58.403106000341609, -34.67134999970267 ], [ -58.40244100025194, -34.670726999751196 ], [ -58.403191999810929, -34.670040999592402 ], [ -58.403985999554209, -34.669375000355956 ], [ -58.404714999897294, -34.668710000266231 ], [ -58.405466000355602, -34.668045000176562 ], [ -58.406239000029814, -34.667380000086894 ], [ -58.406989999588745, -34.666692999882002 ], [ -58.407741000047054, -34.666027999792334 ], [ -58.408512999675168, -34.665340999587443 ], [ -58.40924300006435, -34.664718999682066 ], [ -58.41003699980763, -34.665426999956026 ], [ -58.410937999988676, -34.666242999814529 ], [ -58.411752999801081, -34.665641999978277 ], [ -58.412568999659584, -34.665041000142025 ], [ -58.412676000097292, -34.664954999773386 ], [ -58.412761999566612, -34.664976999888609 ], [ -58.413619999563309, -34.664267999568494 ], [ -58.414263999583852, -34.663732000031757 ], [ -58.414971999857869, -34.664267999568494 ], [ -58.415658000016663, -34.664782999935483 ], [ -58.4161310002454, -34.665147999680414 ], [ -58.415658000016663, -34.665190999864706 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416603000428097, -34.656737000312262 ], [ -58.416603000428097, -34.656564999575039 ], [ -58.416538000128583, -34.654869999650714 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416442000198117, -34.649666999832107 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416237999783846, -34.647711999609044 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.416109000130234, -34.642124000022534 ], [ -58.415658000016663, -34.642230999560923 ], [ -58.41462900022816, -34.642466999652243 ], [ -58.413148000279932, -34.642789000112202 ], [ -58.413040999842224, -34.642575000136105 ], [ -58.411453000355664, -34.643004000134454 ], [ -58.409307000317767, -34.642703999789717 ], [ -58.409134999580544, -34.641651999839894 ], [ -58.408920999604391, -34.640450000167334 ], [ -58.40877099988171, -34.639934999800346 ], [ -58.408663000297167, -34.639720999824249 ], [ -58.408620000112876, -34.639378000194483 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.409134999580544, -34.636652000389461 ], [ -58.407675999747539, -34.636330999975598 ], [ -58.407805000300471, -34.63510800023397 ], [ -58.407868999654568, -34.634249000191176 ], [ -58.40797700013843, -34.633089999803587 ], [ -58.40804100039179, -34.632038999899862 ], [ -58.40821300022975, -34.630816000158234 ], [ -58.408297999652916, -34.630279999722177 ], [ -58.408340999837208, -34.629485999978897 ], [ -58.40844900032107, -34.628326999591309 ], [ -58.408576999928584, -34.627361000010126 ], [ -58.408663000297167, -34.626395999575664 ], [ -58.408727999697362, -34.626160000383663 ], [ -58.408748999766487, -34.625537000432189 ], [ -58.408878000319419, -34.624615000182075 ], [ -58.40900699997303, -34.623498999978835 ], [ -58.409114000410739, -34.622382999775596 ], [ -58.409199999880059, -34.62124600040255 ], [ -58.409264000133476, -34.620022999761602 ], [ -58.409328000386893, -34.618692000435431 ], [ -58.409392999787087, -34.617511999978774 ], [ -58.409457000040504, -34.61658999972866 ], [ -58.409693000131824, -34.61523800033342 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.410057999876756, -34.612684000366301 ], [ -58.410229999714659, -34.611547000093935 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.403598999694054, -34.60193400015396 ], [ -58.402311999699009, -34.602083999876641 ], [ -58.400896000050295, -34.602191000314349 ], [ -58.399736999662764, -34.602213000429572 ], [ -58.398491999805913, -34.602191000314349 ], [ -58.397011999903839, -34.60217000024528 ], [ -58.395530999955668, -34.602149000176155 ], [ -58.394115000306954, -34.602062999807572 ], [ -58.392613000289714, -34.601998000407377 ], [ -58.391304000179446, -34.601912000038737 ], [ -58.390896000250166, -34.601890999969612 ], [ -58.389543999955606, -34.601784000431223 ], [ -58.388041999938309, -34.601698000062584 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.386733999874139, -34.600625000043692 ], [ -58.386862000380972, -34.599272999749076 ], [ -58.386969999965459, -34.598286000098767 ], [ -58.387055000288001, -34.597063000357139 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.387291000379321, -34.594616999974505 ], [ -58.387569999755669, -34.592813999566374 ], [ -58.386518999851944, -34.592793000396625 ], [ -58.384415999998339, -34.592835999681597 ], [ -58.382764000258362, -34.592793000396625 ], [ -58.382226999776151, -34.592813999566374 ], [ -58.381990999684831, -34.592793000396625 ], [ -58.381648000055122, -34.592793000396625 ], [ -58.380081999784409, -34.592878999865889 ], [ -58.378579999767112, -34.592899999935014 ], [ -58.377077999749872, -34.592878999865889 ], [ -58.375639999985992, -34.592943000119305 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.374169999645744, -34.591355999779523 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.372201999722449, -34.588753000250733 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.372271000206467, -34.586419999683187 ], [ -58.372464000113496, -34.586419999683187 ], [ -58.372657000020467, -34.586334000213867 ], [ -58.373064999949747, -34.586334000213867 ], [ -58.375082000334032, -34.585153999757267 ], [ -58.375167999803296, -34.58509000040317 ], [ -58.375188999872421, -34.58500400003453 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.377270999656844, -34.583243999810691 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 381.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.789644255999917, -34.64921987799994 ], [ -58.789201853999941, -34.648135130999947 ], [ -58.78875159599994, -34.647023388999912 ], [ -58.788297572999909, -34.645896308999909 ], [ -58.787824616999899, -34.644727060999912 ], [ -58.787344094999924, -34.643538645999911 ], [ -58.78731760799991, -34.643473474999951 ], [ -58.786893861999943, -34.642419231999952 ], [ -58.786443615999929, -34.641303653999955 ], [ -58.786001012999918, -34.640184233999946 ], [ -58.785543250999922, -34.639034145999915 ], [ -58.785437292999916, -34.638777296999933 ], [ -58.78525951599994, -34.638321091999956 ], [ -58.784627780999926, -34.636718629999905 ], [ -58.784813005999922, -34.636488164999946 ], [ -58.785087447999899, -34.636146691999954 ], [ -58.784328301999949, -34.63615133199994 ], [ -58.782642046999911, -34.636195307999913 ], [ -58.781786562999912, -34.636196214999927 ], [ -58.781005523999909, -34.636197042999925 ], [ -58.779010071999949, -34.636302710999928 ], [ -58.77629758799992, -34.636366949999911 ], [ -58.774581037999951, -34.636314895999931 ], [ -58.774356921999924, -34.636298821999958 ], [ -58.774269558999947, -34.636290866999957 ], [ -58.774090998999952, -34.636290266999936 ], [ -58.773828850999905, -34.636293215999956 ], [ -58.773236072999907, -34.636344848999954 ], [ -58.773065079999924, -34.636359594999931 ], [ -58.772916857999917, -34.636385909999944 ], [ -58.772730634999903, -34.636415925999927 ], [ -58.772540596999931, -34.636453589999917 ], [ -58.772380952999924, -34.636491356999954 ], [ -58.772236511999949, -34.636525343999949 ], [ -58.77207304399991, -34.636574588999906 ], [ -58.77192479699994, -34.63661239399994 ], [ -58.771753697999941, -34.636676934999912 ], [ -58.771498903999941, -34.636794818999931 ], [ -58.771430412999905, -34.636844382999925 ], [ -58.77132772199991, -34.636897662999957 ], [ -58.77122887999991, -34.63692797199991 ], [ -58.771111066999936, -34.636946728999931 ], [ -58.770905720999906, -34.636958815999947 ], [ -58.77080329599994, -34.636964844999909 ], [ -58.770734944999901, -34.636949293999919 ], [ -58.770693194999922, -34.636930002999918 ], [ -58.770670424999935, -34.636918434999927 ], [ -58.770605944999943, -34.636868423999942 ], [ -58.770158649999928, -34.636395789999938 ], [ -58.769794673999911, -34.636046007999937 ], [ -58.769707375999928, -34.636007410999923 ], [ -58.769225032999941, -34.635936843999957 ], [ -58.767846388999942, -34.635725371999911 ], [ -58.765332211999919, -34.635318567999946 ], [ -58.764963387999899, -34.63546288099991 ], [ -58.764138145999937, -34.635850800999947 ], [ -58.763921409999909, -34.635938169999918 ], [ -58.763814951999905, -34.635976115999938 ], [ -58.76373514699992, -34.63598733799995 ], [ -58.763651540999945, -34.635998547999918 ], [ -58.763548947999936, -34.636005863999912 ], [ -58.763490566999906, -34.636003214999903 ], [ -58.763457777999918, -34.63600172699995 ], [ -58.763366638999912, -34.635982268999953 ], [ -58.763267950999932, -34.635939802999928 ], [ -58.763142758999948, -34.635855115999902 ], [ -58.763098838999952, -34.635825061999924 ], [ -58.762816505999922, -34.635631860999922 ], [ -58.76215639499992, -34.635189153999931 ], [ -58.761791807999941, -34.635126642999921 ], [ -58.760667705999936, -34.634916027999907 ], [ -58.760595554999952, -34.634900463999941 ], [ -58.76037901199993, -34.63489590599994 ], [ -58.76022325699995, -34.634891551999942 ], [ -58.76014347499995, -34.634891282999945 ], [ -58.759360772999912, -34.634926955999902 ], [ -58.759060502999944, -34.634991061999926 ], [ -58.758889501999931, -34.635009639999907 ], [ -58.758482994999952, -34.635008273999915 ], [ -58.758365254999944, -34.634992555999929 ], [ -58.75826272799992, -34.634969229999911 ], [ -58.75825614699994, -34.634968170999912 ], [ -58.75814119599994, -34.634949668999923 ], [ -58.758023463999905, -34.634930122999947 ], [ -58.757985471999916, -34.634929994999936 ], [ -58.757871498999918, -34.634929611999951 ], [ -58.757711910999944, -34.634940565999955 ], [ -58.757556113999954, -34.63495536399995 ], [ -58.757392677999917, -34.634989287999929 ], [ -58.757320437999908, -34.635015856999928 ], [ -58.757267192999905, -34.635042490999922 ], [ -58.757248180999909, -34.635050086999911 ], [ -58.757179690999919, -34.635099650999905 ], [ -58.75713404499993, -34.635126309999919 ], [ -58.757073168999909, -34.635168238999938 ], [ -58.757008501999906, -34.635206324999956 ], [ -58.756932470999914, -34.635229050999953 ], [ -58.756848856999909, -34.635244091999937 ], [ -58.75676146099994, -34.635251457999914 ], [ -58.756677887999899, -34.635247346999904 ], [ -58.756601937999903, -34.635231769999905 ], [ -58.7564880299999, -34.635200744999906 ], [ -58.756396922999954, -34.635165965999931 ], [ -58.756339969999942, -34.635150452999937 ], [ -58.755539395999904, -34.63465748099992 ], [ -58.755421743999932, -34.634599629999911 ], [ -58.75526984399994, -34.634568477999949 ], [ -58.754871057999935, -34.63450968199993 ], [ -58.754438079999943, -34.634450771999923 ], [ -58.75370505199993, -34.634352549999903 ], [ -58.753332842999953, -34.63430150399995 ], [ -58.752808709999954, -34.634230797999919 ], [ -58.752508683999906, -34.634179994999954 ], [ -58.751923813999952, -34.634086100999923 ], [ -58.750769269999921, -34.633898363999947 ], [ -58.750472848999948, -34.633939501999919 ], [ -58.750339821999944, -34.633965866999915 ], [ -58.749979219999943, -34.634106930999906 ], [ -58.749427265999941, -34.634322849999933 ], [ -58.749028951999946, -34.634041898999953 ], [ -58.748642010999902, -34.633772474999944 ], [ -58.748597706999931, -34.633167134999951 ], [ -58.748518177999927, -34.633048126999938 ], [ -58.747671867999941, -34.63262394599991 ], [ -58.74657876099991, -34.632129990999942 ], [ -58.745986775999938, -34.631870895999953 ], [ -58.7454352069999, -34.631629489999909 ], [ -58.744436328999939, -34.631187141999931 ], [ -58.744302906999906, -34.631152847999942 ], [ -58.744135182999912, -34.631114752999906 ], [ -58.743978887999901, -34.63107283599993 ], [ -58.743792105999944, -34.631034750999902 ], [ -58.742858274999946, -34.630958843999906 ], [ -58.742633405999925, -34.630958949999922 ], [ -58.741917001999923, -34.631142523999927 ], [ -58.741894138999953, -34.631150168999909 ], [ -58.741490312999929, -34.631402309999942 ], [ -58.741105477999952, -34.631562823999957 ], [ -58.741033070999947, -34.631574309999905 ], [ -58.741017830999908, -34.63158195199992 ], [ -58.740907309999955, -34.631593455999905 ], [ -58.740815837999946, -34.631593498999905 ], [ -58.740709117999927, -34.631589732999942 ], [ -58.740602389999935, -34.631574513999908 ], [ -58.740511108999954, -34.631548438999914 ], [ -58.740495651999936, -34.631544023999936 ], [ -58.740343152999912, -34.631479199999944 ], [ -58.740266906999921, -34.631452514999921 ], [ -58.740221139999903, -34.631406726999955 ], [ -58.740171546999932, -34.631341853999913 ], [ -58.740030253999919, -34.630948727999908 ], [ -58.739869868999904, -34.63050598399991 ], [ -58.739862237999944, -34.630494534999912 ], [ -58.739816443999928, -34.630410572999949 ], [ -58.7393512189999, -34.630063408999945 ], [ -58.739206363999926, -34.630029119999904 ], [ -58.73877564299994, -34.629972061999922 ], [ -58.737224287999936, -34.629770472999951 ], [ -58.735158198999954, -34.629279002999908 ], [ -58.734548283999914, -34.62913422999992 ], [ -58.733029218999945, -34.628983432999917 ], [ -58.732817625999928, -34.628959191999911 ], [ -58.731347931999949, -34.628816229999927 ], [ -58.731305579999912, -34.628820591999954 ], [ -58.73117850999995, -34.628837515999919 ], [ -58.731097614999953, -34.628857706999952 ], [ -58.730974351999919, -34.628886096999906 ], [ -58.730484719999936, -34.629118576999929 ], [ -58.730442311999923, -34.629138289999958 ], [ -58.730080056999952, -34.629269415999943 ], [ -58.729532830999915, -34.629464234999944 ], [ -58.729378735999944, -34.629504519999955 ], [ -58.729351750999911, -34.629516366999951 ], [ -58.728956110999945, -34.629666308999902 ], [ -58.728507321999928, -34.629836392999948 ], [ -58.728415602999917, -34.629830320999929 ], [ -58.728300897999929, -34.629809221999949 ], [ -58.728189916999952, -34.629764896999916 ], [ -58.727979387999937, -34.629668323999908 ], [ -58.727350858999955, -34.62919328299995 ], [ -58.72708272299991, -34.629024408999953 ], [ -58.726711689999945, -34.628919138999947 ], [ -58.726122724999925, -34.628775322999957 ], [ -58.725449619999949, -34.62870800099995 ], [ -58.725422443999946, -34.628705282999931 ], [ -58.725304776999906, -34.628693513999906 ], [ -58.724800601999902, -34.628729582999938 ], [ -58.723928363999903, -34.628774475999933 ], [ -58.723441866999906, -34.628799514999912 ], [ -58.722992863999934, -34.628822623999952 ], [ -58.722227075999911, -34.628767126999946 ], [ -58.721920797999928, -34.628780630999927 ], [ -58.721916968999949, -34.628780657999926 ], [ -58.721549464999953, -34.628828766999902 ], [ -58.721162761999949, -34.628820034999933 ], [ -58.721081804999926, -34.628839559999903 ], [ -58.720887163999919, -34.628886502999933 ], [ -58.720576057999949, -34.628985940999939 ], [ -58.720514693999917, -34.629011071999912 ], [ -58.720389243999932, -34.629062448999946 ], [ -58.720372140999928, -34.629069452999943 ], [ -58.720362116999922, -34.629071178999936 ], [ -58.720195206999904, -34.629099919999931 ], [ -58.719956762999914, -34.62911529999991 ], [ -58.719776024999931, -34.629111687999909 ], [ -58.719442249999929, -34.629119483999943 ], [ -58.719437604999939, -34.629119591999938 ], [ -58.714082563999909, -34.629053574999944 ], [ -58.712616946999901, -34.62986662599991 ], [ -58.71244472199993, -34.629944154999919 ], [ -58.712404994999929, -34.629962038999906 ], [ -58.712242617999948, -34.629970645999947 ], [ -58.71213701399995, -34.629953560999923 ], [ -58.712050261999934, -34.629940614999953 ], [ -58.711812783999903, -34.629879304999918 ], [ -58.711560249999934, -34.629810109999937 ], [ -58.711026758999935, -34.62959436299991 ], [ -58.710254494999901, -34.628897246999941 ], [ -58.710067555999899, -34.62878696599995 ], [ -58.70984792999991, -34.62871636299991 ], [ -58.709626175999915, -34.62871539899993 ], [ -58.708239749999905, -34.628786275999914 ], [ -58.707061053999951, -34.628770808999946 ], [ -58.70664187299991, -34.628760043999932 ], [ -58.706216616999939, -34.62874912399991 ], [ -58.705736369999954, -34.628742943999953 ], [ -58.70554209699992, -34.628757468999936 ], [ -58.705347875999905, -34.628806778999945 ], [ -58.704483586999913, -34.629238898999915 ], [ -58.704241482999919, -34.62936858799992 ], [ -58.704047301999935, -34.629445882999903 ], [ -58.703934551999907, -34.629452248999939 ], [ -58.703795103999937, -34.629439439999942 ], [ -58.70367013799995, -34.629396554999914 ], [ -58.703502422999918, -34.629281427999956 ], [ -58.703315250999935, -34.629132087999949 ], [ -58.702785406999908, -34.628767531999927 ], [ -58.702490886999954, -34.628711519999911 ], [ -58.701095463999934, -34.628732988999957 ], [ -58.699203879999914, -34.628813445999924 ], [ -58.697080032999907, -34.628939756999955 ], [ -58.695658839999908, -34.629024278999907 ], [ -58.695407183999919, -34.629041748999953 ], [ -58.693641763999949, -34.629212106999944 ], [ -58.69236666899991, -34.629345013999909 ], [ -58.691817442999934, -34.629410326999903 ], [ -58.690880901999947, -34.629503929999942 ], [ -58.690737916999922, -34.629525182999942 ], [ -58.689813648999916, -34.629651125999942 ], [ -58.689389800999948, -34.629701078999915 ], [ -58.6888946709999, -34.629761892999909 ], [ -58.688853373999905, -34.629772990999925 ], [ -58.687900616999912, -34.629891106999935 ], [ -58.686460541999907, -34.630069472999935 ], [ -58.68625537999992, -34.630067681999947 ], [ -58.68573127499991, -34.630135512999914 ], [ -58.684488182999928, -34.630324183999903 ], [ -58.682919295999909, -34.63056230199993 ], [ -58.682802327999923, -34.63058474099995 ], [ -58.682164624999928, -34.630700539999907 ], [ -58.681828805999942, -34.630764098999919 ], [ -58.680851449999921, -34.630951052999933 ], [ -58.679944706999947, -34.631136928999922 ], [ -58.679371804999903, -34.631309303999956 ], [ -58.679064493999931, -34.631387756999914 ], [ -58.678252424999926, -34.63201257299994 ], [ -58.677679332999901, -34.632459941999912 ], [ -58.677425805999917, -34.632657850999919 ], [ -58.676865251999914, -34.633103479999932 ], [ -58.675760784999909, -34.632105561999936 ], [ -58.675593311999933, -34.631960101999937 ], [ -58.674327846999915, -34.632130454999924 ], [ -58.673392989999911, -34.632258215999911 ], [ -58.673079705999953, -34.632301029999951 ], [ -58.672157612999911, -34.632418665999921 ], [ -58.670642043999919, -34.632625016999953 ], [ -58.669685694999941, -34.632809323999936 ], [ -58.668737678999946, -34.632992305999949 ], [ -58.668168042999923, -34.633105173999922 ], [ -58.667662615999916, -34.633491080999931 ], [ -58.667008682999949, -34.63399086599992 ], [ -58.666716012999927, -34.634214546999942 ], [ -58.666436143999931, -34.634154871999954 ], [ -58.666298162999908, -34.634128858999929 ], [ -58.665862285999935, -34.633694061999904 ], [ -58.665740500999902, -34.633583522999913 ], [ -58.664955602999953, -34.633554711999921 ], [ -58.664808876999928, -34.633525071999941 ], [ -58.664235679999933, -34.633481375999907 ], [ -58.663866793999944, -34.633453254999949 ], [ -58.66279891399995, -34.633375937999915 ], [ -58.662690936999923, -34.63337241399995 ], [ -58.661514945999954, -34.633241876999932 ], [ -58.661134849999939, -34.633162652999943 ], [ -58.659920953999915, -34.633006498999919 ], [ -58.658652384999925, -34.632846705999953 ], [ -58.657762349999928, -34.632713951999904 ], [ -58.656841861999908, -34.632585006999932 ], [ -58.655936684999915, -34.632456058999935 ], [ -58.655775256999902, -34.632440904999953 ], [ -58.655659758999946, -34.632425736999949 ], [ -58.655490842999939, -34.632414384999947 ], [ -58.655353719999937, -34.632429625999919 ], [ -58.65520145499994, -34.632448670999906 ], [ -58.654989620999913, -34.632505737999907 ], [ -58.654925725999931, -34.632532358999924 ], [ -58.6547904439999, -34.63258940299994 ], [ -58.65454318299993, -34.632711083999936 ], [ -58.654508024999927, -34.632733272999928 ], [ -58.65433836099993, -34.632840354999928 ], [ -58.653967217999934, -34.63292746399992 ], [ -58.653669246999925, -34.632984693999902 ], [ -58.653633178999939, -34.632991620999917 ], [ -58.653627168999947, -34.632992642999909 ], [ -58.65334774899992, -34.633040165999944 ], [ -58.653101616999948, -34.633013142999914 ], [ -58.652888338999901, -34.632948175999957 ], [ -58.65282254199991, -34.632892664999929 ], [ -58.652110997999955, -34.63218429099993 ], [ -58.651819819999901, -34.632017619999942 ], [ -58.6517578079999, -34.631982123999933 ], [ -58.651616106999938, -34.631912525999951 ], [ -58.651535659999922, -34.631872211999905 ], [ -58.650590865999902, -34.631868683999926 ], [ -58.648912153999902, -34.63183142999992 ], [ -58.648756290999927, -34.631799104999914 ], [ -58.648105813999905, -34.631804845999909 ], [ -58.647587853999937, -34.631858097999952 ], [ -58.645813867999948, -34.632019628999956 ], [ -58.644597044999955, -34.632102700999951 ], [ -58.643339438999931, -34.632185727999911 ], [ -58.642119204999915, -34.632262112999911 ], [ -58.640849868999908, -34.632358063999902 ], [ -58.639595638999936, -34.632460489999914 ], [ -58.638997845999938, -34.63250555299993 ], [ -58.638337533999902, -34.63255532799991 ], [ -58.637060445999907, -34.63266154899992 ], [ -58.635787199999925, -34.632771562999949 ], [ -58.634529796999914, -34.632957456999918 ], [ -58.633264384999904, -34.633094028999949 ], [ -58.631998885999906, -34.633219218999955 ], [ -58.631579390999946, -34.633234391999906 ], [ -58.630438491999939, -34.633288180999955 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.62896801799991, -34.633309831999952 ], [ -58.62892710999995, -34.633310059999928 ], [ -58.628842536999912, -34.63331053099995 ], [ -58.62692790299991, -34.633249333999913 ], [ -58.625856882999926, -34.633246762999931 ], [ -58.624872238999899, -34.633232291999946 ], [ -58.623799604999931, -34.63319918499991 ], [ -58.622990026999901, -34.633201822999922 ], [ -58.62245650999995, -34.633203561999949 ], [ -58.621884238999939, -34.633211304999918 ], [ -58.621785679999903, -34.633218862999911 ], [ -58.621681461999913, -34.633226854999918 ], [ -58.620706788999939, -34.633301596999956 ], [ -58.619195857999955, -34.633628358999943 ], [ -58.618787309999902, -34.633663448999926 ], [ -58.618421066999929, -34.633694905999903 ], [ -58.617463977999932, -34.63377911799995 ], [ -58.616413382999951, -34.63373889099995 ], [ -58.615968309999914, -34.633721848999926 ], [ -58.615640166999924, -34.633709284999952 ], [ -58.615044909999938, -34.633789272999934 ], [ -58.614677428999926, -34.633838653999931 ], [ -58.61369323699995, -34.633979796999938 ], [ -58.612739562999934, -34.634117125999921 ], [ -58.611564635999912, -34.634288787999935 ], [ -58.610450744999923, -34.634456634999935 ], [ -58.610038756999927, -34.634525298999904 ], [ -58.60972357299994, -34.634574129999919 ], [ -58.609497069999918, -34.634609221999938 ], [ -58.607486724999944, -34.634918212999935 ], [ -58.606380462999937, -34.635089873999902 ], [ -58.605869292999955, -34.635169982999912 ], [ -58.604259490999937, -34.635414123999908 ], [ -58.603069304999906, -34.635593413999914 ], [ -58.602718485999901, -34.635690067999917 ], [ -58.602717089999942, -34.635690452999938 ], [ -58.602695464999954, -34.635696410999913 ], [ -58.60268137199995, -34.63569605899994 ], [ -58.602680763999899, -34.635696043999928 ], [ -58.601742452999929, -34.635672585999941 ], [ -58.601554997999926, -34.635667898999941 ], [ -58.601064066999925, -34.635655625999902 ], [ -58.60101699799992, -34.635654448999958 ], [ -58.601003475999903, -34.635653572999956 ], [ -58.600754603999917, -34.635637448999944 ], [ -58.59966278099995, -34.63556671099991 ], [ -58.599273681999932, -34.635555266999916 ], [ -58.598441426999955, -34.635549446999903 ], [ -58.598182677999944, -34.635547637999935 ], [ -58.597442626999907, -34.635524749999945 ], [ -58.597233856999935, -34.635503506999953 ], [ -58.596355437999932, -34.635414123999908 ], [ -58.595252990999938, -34.635391234999929 ], [ -58.594150542999955, -34.63536834699994 ], [ -58.593040465999934, -34.635349273999907 ], [ -58.592658308999944, -34.635370348999913 ], [ -58.592513538999924, -34.635378331999902 ], [ -58.592002868999941, -34.635406493999938 ], [ -58.591588808999916, -34.635367507999945 ], [ -58.591495599999917, -34.635358731999929 ], [ -58.590827941999919, -34.635295867999957 ], [ -58.589725493999936, -34.635272979999911 ], [ -58.58860397299992, -34.635242461999951 ], [ -58.58753585799991, -34.635219573999905 ], [ -58.587152777999904, -34.635315343999935 ], [ -58.587151864999953, -34.635315571999911 ], [ -58.587118249999946, -34.635323975999938 ], [ -58.586879729999907, -34.635383605999948 ], [ -58.586566924999943, -34.635669707999909 ], [ -58.585895537999932, -34.63617324799992 ], [ -58.584777831999929, -34.637020110999913 ], [ -58.583808898999905, -34.637744903999931 ], [ -58.582603454999912, -34.638607024999942 ], [ -58.580493926999907, -34.640186309999933 ], [ -58.579597472999922, -34.640861510999912 ], [ -58.578868865999937, -34.641418456999929 ], [ -58.578474840999945, -34.641681140999935 ], [ -58.577907047999929, -34.642059668999934 ], [ -58.577632903999927, -34.642242431999932 ], [ -58.577495574999944, -34.642257689999951 ], [ -58.5761756899999, -34.64213561999992 ], [ -58.574718474999941, -34.641902923999908 ], [ -58.573421477999943, -34.641700744999923 ], [ -58.573261260999914, -34.641670226999906 ], [ -58.571792602999949, -34.641437530999951 ], [ -58.570403620999912, -34.641199842999924 ], [ -58.57038736699991, -34.641197061999947 ], [ -58.570367862999944, -34.641193724999937 ], [ -58.57036590599995, -34.641193389999955 ], [ -58.56896209699994, -34.640972136999949 ], [ -58.56728744499992, -34.640697478999925 ], [ -58.565902709999932, -34.640453338999919 ], [ -58.565040587999931, -34.640293120999956 ], [ -58.563896178999926, -34.640117644999918 ], [ -58.563030242999901, -34.639987945999906 ], [ -58.561969756999929, -34.639862060999917 ], [ -58.561061858999949, -34.639770507999913 ], [ -58.55989074699994, -34.639656066999919 ], [ -58.558219838999946, -34.639545901999952 ], [ -58.557071442999927, -34.639469154999915 ], [ -58.554648726999915, -34.639440896999929 ], [ -58.554049716999941, -34.639442950999921 ], [ -58.553217968999945, -34.639448143999914 ], [ -58.549780194999926, -34.639537245999918 ], [ -58.549768264999955, -34.639537554999947 ], [ -58.549639167999942, -34.639540900999918 ], [ -58.549603631999901, -34.63954302399992 ], [ -58.548113026999943, -34.639632080999945 ], [ -58.546621223999921, -34.639685082999904 ], [ -58.54503785299994, -34.639733985999953 ], [ -58.543496448999917, -34.639752388999909 ], [ -58.542298427999924, -34.639779464999947 ], [ -58.540848591999918, -34.63977517099994 ], [ -58.539258608999944, -34.639671089999922 ], [ -58.53848090799994, -34.639614327999936 ], [ -58.537676332999922, -34.639555603999952 ], [ -58.536371691999932, -34.639463178999904 ], [ -58.535135819999937, -34.639362887999937 ], [ -58.533881193999946, -34.639270334999935 ], [ -58.530355350999912, -34.638957047999952 ], [ -58.5303465369999, -34.638956287999918 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 379.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.224911180234407, -34.855000389856166 ], [ -58.230718690947143, -34.847151641769202 ], [ -58.237330776975249, -34.838228471090297 ], [ -58.260438312473639, -34.850489139373792 ], [ -58.262419951676371, -34.847833709732051 ], [ -58.264343648212332, -34.845270988357093 ], [ -58.278335974479177, -34.852618118500509 ], [ -58.27833597447917, -34.85071097701217 ], [ -58.278766405717867, -34.841602389799675 ], [ -58.278547879088983, -34.839682004273222 ], [ -58.277905543240486, -34.833894359617659 ], [ -58.275015031922244, -34.834116197256058 ], [ -58.272344702737627, -34.834298302780113 ], [ -58.272248683461299, -34.83436286746592 ], [ -58.267984930941218, -34.832142007824793 ], [ -58.269782809115085, -34.829921975936038 ], [ -58.270327470182501, -34.829216730906502 ], [ -58.270365546792078, -34.829079324011076 ], [ -58.27033078119203, -34.828973371706169 ], [ -58.270266216506229, -34.828796232696398 ], [ -58.270094044010762, -34.828678691858144 ], [ -58.269978158677269, -34.828647237267624 ], [ -58.26894015719013, -34.828057877571581 ], [ -58.270744657383084, -34.8258063910923 ], [ -58.270873786754692, -34.825620974558717 ], [ -58.271042648240638, -34.825495156196638 ], [ -58.271122112469314, -34.825471979129937 ], [ -58.271224753764692, -34.825356093796444 ], [ -58.271201576697997, -34.825246830482008 ], [ -58.268857381951939, -34.824008512918404 ], [ -58.269274569152493, -34.823472129374807 ], [ -58.269105707666547, -34.823313200917447 ], [ -58.269082530599853, -34.823177449526789 ], [ -58.269065975552209, -34.823011899050364 ], [ -58.269095774637961, -34.822948989869332 ], [ -58.269152061799943, -34.822839726554896 ], [ -58.269291124200137, -34.822664243049893 ], [ -58.26931099025731, -34.822647688002249 ], [ -58.268580912656304, -34.822270232916011 ], [ -58.268218357112943, -34.822091438401479 ], [ -58.269565937990983, -34.820376335465795 ], [ -58.272559090604609, -34.816495832298564 ], [ -58.272403473156807, -34.816373324946014 ], [ -58.272708086033411, -34.811701490501505 ], [ -58.269728177457885, -34.811582294158477 ], [ -58.269840751781828, -34.810693288100111 ], [ -58.269878828391406, -34.810635345433369 ], [ -58.269956637115321, -34.810613823871435 ], [ -58.270223173382355, -34.810612168366667 ], [ -58.277825251259472, -34.810838972519363 ], [ -58.278013978802576, -34.810180081623209 ], [ -58.278017289812105, -34.809067582421683 ], [ -58.281733898007722, -34.809324185660138 ], [ -58.284253576258777, -34.809479803107969 ], [ -58.28577001862277, -34.80753955152435 ], [ -58.290220015428893, -34.801828060087942 ], [ -58.292729760651376, -34.798523672578639 ], [ -58.294809074635175, -34.795831821832081 ], [ -58.291900352764522, -34.794290546896626 ], [ -58.291118954515831, -34.795330203888533 ], [ -58.291264638935075, -34.79505042358339 ], [ -58.289264789179938, -34.793990900534318 ], [ -58.288102624835481, -34.7934098183621 ], [ -58.289066128608255, -34.792144184969871 ], [ -58.289680320875767, -34.79198856752204 ], [ -58.290815997143987, -34.790508546262863 ], [ -58.291357347201874, -34.789788401690444 ], [ -58.292185099583975, -34.790169167786203 ], [ -58.297638332277167, -34.783133272538457 ], [ -58.294539227358655, -34.781358571431255 ], [ -58.293175091432971, -34.783141550062275 ], [ -58.292493023470136, -34.783997446025353 ], [ -58.291132198553989, -34.785715859970573 ], [ -58.290489862705492, -34.786578377952708 ], [ -58.289051229065421, -34.785801946218307 ], [ -58.28519390296487, -34.783658067548707 ], [ -58.28429661938268, -34.783181282176628 ], [ -58.283323182581341, -34.784431188273587 ], [ -58.282904339876005, -34.784917906674245 ], [ -58.282543439837411, -34.785517199398882 ], [ -58.282073276484383, -34.786123114142569 ], [ -58.281457428712109, -34.786940933496069 ], [ -58.280738939644458, -34.786553545381253 ], [ -58.278947683489619, -34.78643766004776 ], [ -58.279285406461518, -34.780401689677582 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 378.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.375947, -34.662421 ], [ -58.375686, -34.66204 ], [ -58.375025, -34.661107 ], [ -58.374633, -34.660606 ], [ -58.373938, -34.659802 ], [ -58.37372, -34.659597 ], [ -58.373457, -34.659469 ], [ -58.372819, -34.660743 ], [ -58.370961, -34.660469 ], [ -58.370825, -34.660308 ], [ -58.370335, -34.659552 ], [ -58.369446, -34.660196 ], [ -58.368422, -34.661402 ], [ -58.367752, -34.662388 ], [ -58.367104, -34.663375 ], [ -58.366456, -34.664332 ], [ -58.365909, -34.665175 ], [ -58.365555, -34.665756 ], [ -58.365414, -34.665962 ], [ -58.364806, -34.666797 ], [ -58.364378, -34.667544 ], [ -58.363859, -34.668272 ], [ -58.363131, -34.669363 ], [ -58.362865, -34.669757 ], [ -58.362661, -34.670078 ], [ -58.361176, -34.672289 ], [ -58.36123, -34.672421 ], [ -58.361563, -34.672726 ], [ -58.361766, -34.672905 ], [ -58.361666, -34.672973 ], [ -58.361977, -34.673268 ], [ -58.362582, -34.673755 ], [ -58.363215, -34.674268 ], [ -58.363593, -34.674632 ], [ -58.364405, -34.675359 ], [ -58.364719, -34.675669 ], [ -58.365909, -34.676701 ], [ -58.366437, -34.677152 ], [ -58.367199, -34.677803 ], [ -58.368256, -34.678655 ], [ -58.36737, -34.679356 ], [ -58.366571, -34.680046 ], [ -58.365682, -34.680771 ], [ -58.365565, -34.680875 ], [ -58.365054, -34.681288 ], [ -58.364549, -34.681679 ], [ -58.364063, -34.682051 ], [ -58.363748, -34.682316 ], [ -58.363287, -34.682701 ], [ -58.361826, -34.683874 ], [ -58.361568, -34.684054 ], [ -58.361138, -34.684401 ], [ -58.36092, -34.684618 ], [ -58.360057, -34.685283 ], [ -58.35913, -34.686065 ], [ -58.358176, -34.686849 ], [ -58.357278, -34.687587 ], [ -58.35681, -34.687996 ], [ -58.35633, -34.688446 ], [ -58.356067, -34.688674 ], [ -58.355775, -34.688957 ], [ -58.355105, -34.689512 ], [ -58.354391, -34.690116 ], [ -58.354279, -34.690227 ], [ -58.353708, -34.690692 ], [ -58.353037, -34.691277 ], [ -58.35177, -34.692388 ], [ -58.351376, -34.692708 ], [ -58.350962, -34.693039 ], [ -58.350245, -34.693661 ], [ -58.349417, -34.694334 ], [ -58.348636, -34.69498 ], [ -58.347875, -34.695633 ], [ -58.347021, -34.696404 ], [ -58.346452, -34.696858 ], [ -58.346272, -34.696991 ], [ -58.345416, -34.697719 ], [ -58.344773, -34.698277 ], [ -58.343879999999899, -34.699022 ], [ -58.342971, -34.699778 ], [ -58.342167, -34.700393 ], [ -58.341425999999899, -34.701007 ], [ -58.341143, -34.701276 ], [ -58.340682, -34.701655 ], [ -58.340592999999899, -34.701722 ], [ -58.339759999999899, -34.702422 ], [ -58.338824, -34.703102 ], [ -58.337847, -34.703736 ], [ -58.33686, -34.704411 ], [ -58.335973, -34.705131 ], [ -58.33506, -34.705895 ], [ -58.334184, -34.706625 ], [ -58.333433, -34.707258 ], [ -58.33335, -34.707317 ], [ -58.332437, -34.70806 ], [ -58.331451999999899, -34.708821 ], [ -58.331406, -34.708908 ], [ -58.331345, -34.708995 ], [ -58.330338, -34.709763 ], [ -58.329522, -34.71045 ], [ -58.328939, -34.710878 ], [ -58.328408, -34.711312 ], [ -58.327784, -34.711808 ], [ -58.32714, -34.712305 ], [ -58.327105, -34.712335 ], [ -58.326381, -34.712889 ], [ -58.325667, -34.713448 ], [ -58.325023, -34.714004 ], [ -58.324882, -34.714107 ], [ -58.324213, -34.714626 ], [ -58.32343, -34.715246 ], [ -58.322857, -34.715717 ], [ -58.322074, -34.716336 ], [ -58.322552, -34.716808 ], [ -58.321619, -34.717534 ], [ -58.320759, -34.718202 ], [ -58.319718, -34.719099 ], [ -58.31857, -34.72 ], [ -58.317877, -34.720513 ], [ -58.317296, -34.72104 ], [ -58.317063, -34.721177 ], [ -58.316423, -34.721697 ], [ -58.315468, -34.722499 ], [ -58.314541, -34.723224 ], [ -58.314309, -34.723283 ], [ -58.314017, -34.723457 ], [ -58.313642, -34.723751 ], [ -58.312641, -34.724555 ], [ -58.311714, -34.725241 ], [ -58.311648, -34.725301 ], [ -58.311629, -34.725313 ], [ -58.310706, -34.726111 ], [ -58.309736, -34.72688 ], [ -58.308757, -34.72766 ], [ -58.307745, -34.728479 ], [ -58.3071, -34.728177 ], [ -58.306001, -34.727553 ], [ -58.30542, -34.728373 ], [ -58.305325, -34.728517 ], [ -58.304829, -34.729267 ], [ -58.304252, -34.730086 ], [ -58.303749, -34.7308 ], [ -58.303692, -34.730879 ], [ -58.303077, -34.731741 ], [ -58.302505, -34.732536 ], [ -58.301941, -34.733338 ], [ -58.30133, -34.734189 ], [ -58.301295, -34.734239 ], [ -58.30125, -34.734299 ], [ -58.300798, -34.734935 ], [ -58.300454, -34.735424 ], [ -58.300136, -34.735873 ], [ -58.299627, -34.73658 ], [ -58.299285, -34.737064 ], [ -58.298867, -34.737673 ], [ -58.298279, -34.738535 ], [ -58.297691, -34.739392 ], [ -58.297135, -34.740207 ], [ -58.29651, -34.741122 ], [ -58.296323, -34.741386 ], [ -58.296824999999899, -34.741618 ], [ -58.29617, -34.742445 ], [ -58.295584, -34.743249 ], [ -58.29529, -34.743664 ], [ -58.294985, -34.744082 ], [ -58.294377, -34.744922 ], [ -58.293934, -34.744748 ], [ -58.292866, -34.746257 ], [ -58.292326, -34.746983 ], [ -58.291833, -34.747658 ], [ -58.291797, -34.747767 ], [ -58.291873, -34.7478 ], [ -58.292913, -34.74825 ], [ -58.293927, -34.748715 ], [ -58.294946, -34.749176 ], [ -58.295254, -34.749312 ], [ -58.296016, -34.749667 ], [ -58.296599, -34.749929 ], [ -58.296772, -34.750028 ], [ -58.29787, -34.750647 ], [ -58.299118, -34.751338 ], [ -58.300502, -34.752111 ], [ -58.301356, -34.752587 ], [ -58.302138, -34.753028 ], [ -58.302847, -34.753417 ], [ -58.303021, -34.753367 ], [ -58.302696, -34.753629 ], [ -58.302439, -34.753834 ], [ -58.301654, -34.754482 ], [ -58.30161, -34.754518 ], [ -58.301559, -34.754595 ], [ -58.300887, -34.755175 ], [ -58.30077, -34.755273 ], [ -58.300287, -34.755676 ], [ -58.300194, -34.755755 ], [ -58.299729, -34.756147 ], [ -58.299129, -34.756658 ], [ -58.298806, -34.756934 ], [ -58.298447, -34.757242 ], [ -58.298348, -34.757297 ], [ -58.298218, -34.757458 ], [ -58.297749, -34.757868 ], [ -58.297482, -34.758093 ], [ -58.296968, -34.758533 ], [ -58.296445, -34.758971 ], [ -58.296193, -34.759238 ], [ -58.296022, -34.759412 ], [ -58.295472, -34.759863 ], [ -58.294675, -34.760528 ], [ -58.293891, -34.761211 ], [ -58.293272, -34.761757 ], [ -58.293186, -34.761834 ], [ -58.293141, -34.761875 ], [ -58.293963, -34.762328 ], [ -58.294672, -34.762718 ], [ -58.295758, -34.763291 ], [ -58.296845, -34.76387 ], [ -58.297841, -34.764403 ], [ -58.298695, -34.764896 ], [ -58.299416, -34.765297 ], [ -58.300162, -34.765714 ], [ -58.300461, -34.765887 ], [ -58.300936, -34.76616 ], [ -58.301734, -34.766583 ], [ -58.302496, -34.766995 ], [ -58.30324, -34.767398 ], [ -58.304054, -34.767823 ], [ -58.30476, -34.768158 ], [ -58.305331, -34.768463 ], [ -58.306809, -34.769378 ], [ -58.308235, -34.770248 ], [ -58.309675, -34.771133 ], [ -58.311113, -34.772029 ], [ -58.312596, -34.77293 ], [ -58.312116, -34.773479 ], [ -58.311631, -34.774025 ], [ -58.311155, -34.774562 ], [ -58.31067, -34.775119 ], [ -58.310164, -34.775663 ], [ -58.309669, -34.776194 ], [ -58.309165, -34.776728 ], [ -58.308736, -34.777181 ], [ -58.308693, -34.777249 ], [ -58.308638, -34.777317 ], [ -58.308132, -34.777847 ], [ -58.307678, -34.778318 ], [ -58.30761, -34.778433 ], [ -58.307549, -34.778535 ], [ -58.30715, -34.778973 ], [ -58.306659, -34.779515 ], [ -58.306172, -34.780044 ], [ -58.305668, -34.780595 ], [ -58.305185, -34.781128 ], [ -58.304689, -34.781685 ], [ -58.3042, -34.782224 ], [ -58.303714, -34.782765 ], [ -58.303229, -34.783298 ], [ -58.302741, -34.783836 ], [ -58.302241, -34.784382 ], [ -58.301947, -34.784711 ], [ -58.301557, -34.785176 ], [ -58.301991, -34.785442 ], [ -58.302258, -34.785619 ], [ -58.302968, -34.786104 ], [ -58.304054, -34.786757 ], [ -58.304393, -34.786973 ], [ -58.304899, -34.787295 ], [ -58.305428, -34.787626 ], [ -58.306884, -34.78852 ], [ -58.308331, -34.789402 ], [ -58.308557, -34.789548 ], [ -58.308793, -34.7897 ], [ -58.309802, -34.790334 ], [ -58.310255, -34.790613 ], [ -58.311301, -34.791257 ], [ -58.312835, -34.792122 ], [ -58.314334, -34.792952 ], [ -58.315848, -34.793782 ], [ -58.31737, -34.794602 ], [ -58.318576, -34.795256 ], [ -58.318721, -34.795384 ], [ -58.318797, -34.795454 ], [ -58.319909, -34.796057 ], [ -58.321148, -34.796723 ], [ -58.322258, -34.79732 ], [ -58.323345, -34.797904 ], [ -58.323376, -34.797923 ], [ -58.324409, -34.798501 ], [ -58.325182, -34.798929 ], [ -58.325723, -34.799239 ], [ -58.326366, -34.799598 ], [ -58.326765, -34.799771 ], [ -58.327027, -34.799888 ], [ -58.328105, -34.800478 ], [ -58.32869, -34.800793 ], [ -58.330698, -34.801915 ], [ -58.331063, -34.802126 ], [ -58.331809, -34.8025 ], [ -58.332206, -34.802699 ], [ -58.332753, -34.803024 ], [ -58.333473, -34.803434 ], [ -58.333851, -34.803637 ], [ -58.333997, -34.803698 ], [ -58.334532, -34.803975 ], [ -58.335179, -34.804299 ], [ -58.335827, -34.804636 ], [ -58.336214, -34.804855 ], [ -58.336888, -34.805219 ], [ -58.337769, -34.805673 ], [ -58.338146, -34.805889 ], [ -58.338443, -34.806055 ], [ -58.338583, -34.806132 ], [ -58.33704, -34.808042 ], [ -58.33495, -34.810606 ], [ -58.334731, -34.810879 ], [ -58.334766, -34.810994 ], [ -58.334964, -34.811744 ], [ -58.335228, -34.812586 ], [ -58.336019, -34.815182 ], [ -58.336238, -34.81593 ], [ -58.342242, -34.818954 ], [ -58.342402, -34.819035 ], [ -58.342765, -34.818964 ], [ -58.343438, -34.818811 ], [ -58.344208, -34.818686 ], [ -58.345013, -34.818518 ], [ -58.345733, -34.81837 ], [ -58.346454, -34.818232 ], [ -58.34721, -34.818084 ], [ -58.347969, -34.817916 ], [ -58.348675, -34.817759 ], [ -58.348941, -34.818619 ], [ -58.349362, -34.819981 ], [ -58.349747, -34.821364 ], [ -58.350659, -34.824344 ], [ -58.349826, -34.825448 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 377.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.795233567346827, -34.3496189815964 ], [ -58.797919787518559, -34.352398186312534 ], [ -58.795667495220719, -34.353875607406991 ], [ -58.798364047008498, -34.356923434140299 ], [ -58.799180244676066, -34.3582975390743 ], [ -58.798859964578668, -34.358462844931019 ], [ -58.798498358017092, -34.358266544226161 ], [ -58.797950782366698, -34.358256212610115 ], [ -58.79747552802862, -34.358493839779157 ], [ -58.797000273690543, -34.358772793412378 ], [ -58.796463029656202, -34.359072410277683 ], [ -58.796049765014395, -34.359361695526943 ], [ -58.795719153300951, -34.359630317544116 ], [ -58.795388541587506, -34.359795623400842 ], [ -58.794954613713614, -34.360084908650101 ], [ -58.794520685839714, -34.360291540971005 ], [ -58.794148747662092, -34.360436183595638 ], [ -58.793756146252377, -34.360632484300496 ], [ -58.793332549994531, -34.360859779853492 ], [ -58.792681658183689, -34.361128401870658 ], [ -58.7854495269521, -34.364827120414816 ], [ -58.779767138127283, -34.367595993514911 ], [ -58.777432192901088, -34.368753134511962 ], [ -58.775241890299526, -34.369765632884388 ], [ -58.774002096374112, -34.370158234294095 ], [ -58.772411027503161, -34.370571498935902 ], [ -58.770902611560572, -34.370943437113525 ], [ -58.768526339870192, -34.371583997308328 ], [ -58.766604659285804, -34.371976598718042 ], [ -58.764682978701408, -34.372493179520298 ], [ -58.763133236294642, -34.372906444162098 ], [ -58.758773294323603, -34.37474547181813 ], [ -58.757430184237734, -34.375282715852478 ], [ -58.756107737383964, -34.375551337869652 ], [ -58.753607486301043, -34.3773490390615 ], [ -58.753028915802517, -34.378237558041384 ], [ -58.752450345303998, -34.379962937920915 ], [ -58.752264376215187, -34.380603498115718 ], [ -58.753028915802524, -34.382070587594121 ], [ -58.754310036192123, -34.382607831628469 ], [ -58.75513656547573, -34.383186402126995 ], [ -58.757202888684752, -34.384260890195691 ], [ -58.758463345842259, -34.384798134230032 ], [ -58.75920722219751, -34.38510808271139 ], [ -58.76102558662145, -34.386265223708442 ], [ -58.763608490632727, -34.387463691169678 ], [ -58.764744968397693, -34.388806801255541 ], [ -58.765592160913393, -34.390542512751118 ], [ -58.765736803538026, -34.391575674355636 ], [ -58.765798793234296, -34.392629499192239 ], [ -58.765840119698474, -34.393848629885561 ], [ -58.765778130002204, -34.394468526848264 ], [ -58.767121240088066, -34.396989441163278 ], [ -58.767369198873155, -34.397939949839426 ], [ -58.767596494426144, -34.398973111443937 ], [ -58.768836288351544, -34.403601675432149 ], [ -58.770200061669499, -34.405750651569534 ], [ -58.770985264488928, -34.40785830124274 ], [ -58.771563834987461, -34.408354218812903 ], [ -58.771129907113568, -34.408405876893127 ], [ -58.767296877560831, -34.413354720978738 ], [ -58.76899126259223, -34.414408545815341 ], [ -58.768319707549288, -34.415100764090361 ], [ -58.769259884609397, -34.415627676508663 ], [ -58.753715968269503, -34.43541272123506 ], [ -58.74958332185146, -34.433351563834059 ], [ -58.749903601948859, -34.432964128232364 ], [ -58.73398774743135, -34.424445710803163 ], [ -58.734948587723544, -34.422957958092667 ], [ -58.74007306928192, -34.420757323875058 ], [ -58.739081234141587, -34.419414213789196 ], [ -58.733254202692144, -34.421955791336295 ], [ -58.72386792951518, -34.416531692912606 ], [ -58.72357864426592, -34.41582914302154 ], [ -58.734778116058827, -34.401364880558376 ], [ -58.739375685198887, -34.394959278610408 ], [ -58.739396348430979, -34.394236065487249 ], [ -58.73805323834511, -34.389814133819939 ], [ -58.737014910932579, -34.389199402665248 ], [ -58.737624476279237, -34.388419365653839 ], [ -58.736477666898232, -34.384002599794556 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 376.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.393703000193284, -34.71752500037843 ], [ -58.393879000215634, -34.718405999637127 ], [ -58.395037999703902, -34.718234999845322 ], [ -58.394780000396679, -34.716946999804179 ], [ -58.393621000009091, -34.717118999642082 ], [ -58.393407000032994, -34.716131999991774 ], [ -58.393341999733479, -34.715852999716105 ], [ -58.393064000403228, -34.714564999674963 ], [ -58.392912999735131, -34.713836000231197 ], [ -58.392698999758977, -34.712912999934929 ], [ -58.392676999643754, -34.71280600039654 ], [ -58.392591000174491, -34.712377000398192 ], [ -58.392440999552434, -34.711647000009009 ], [ -58.392184000291365, -34.710509999736644 ], [ -58.391991000384337, -34.709587000339752 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.39175500029296, -34.706776000212187 ], [ -58.39175500029296, -34.706668999774479 ], [ -58.391818999647057, -34.705638999939879 ], [ -58.391818999647057, -34.705423999917627 ], [ -58.391839999716183, -34.704673000358639 ], [ -58.391861999831406, -34.703965000084622 ], [ -58.391882999900474, -34.703449999717691 ], [ -58.391905000015697, -34.702485000182548 ], [ -58.391926000084823, -34.702376999698743 ], [ -58.391969000269114, -34.701325999795017 ], [ -58.392011999554086, -34.700252999776069 ], [ -58.392011999554086, -34.699866999962012 ], [ -58.392054999738434, -34.698299999645201 ], [ -58.391733000177794, -34.697505999901921 ], [ -58.391368000432806, -34.696647999905224 ], [ -58.391024999903777, -34.695789999908527 ], [ -58.390660000158846, -34.694909999796607 ], [ -58.390316999629761, -34.69405199979991 ], [ -58.390295999560692, -34.694008999615619 ], [ -58.389995000069177, -34.693279000125699 ], [ -58.389930999815761, -34.693150999618922 ], [ -58.389566000070829, -34.692228000221974 ], [ -58.389458999633064, -34.692013000199779 ], [ -58.389008000418869, -34.690983000365122 ], [ -58.388621999705492, -34.690061000115008 ], [ -58.388213999776212, -34.689094999634506 ], [ -58.388041999938309, -34.688644000420254 ], [ -58.387892000215572, -34.6882799998221 ], [ -58.387849000031281, -34.68819400035278 ], [ -58.387442000148155, -34.687206999803152 ], [ -58.387183999941612, -34.686649000151192 ], [ -58.387055000288001, -34.686305999622164 ], [ -58.386733999874139, -34.685555000063175 ], [ -58.386690999689847, -34.685426000409564 ], [ -58.386668999574624, -34.685361000110049 ], [ -58.386303999829693, -34.684482000044227 ], [ -58.385896999946567, -34.683558999748016 ], [ -58.385768000292956, -34.68321600011825 ], [ -58.385617999670899, -34.682872000442444 ], [ -58.385252999925967, -34.682056999730719 ], [ -58.385831999647053, -34.681563000332176 ], [ -58.386325999944916, -34.681156000448993 ], [ -58.386798000127555, -34.680747999620451 ], [ -58.387249000241127, -34.680339999691171 ], [ -58.387721000423767, -34.679932999808045 ], [ -58.388278000029629, -34.679460999625405 ], [ -58.388878999865938, -34.678924000042514 ], [ -58.3893730001638, -34.678516000113291 ], [ -58.389866000415566, -34.678109000230108 ], [ -58.390337999698886, -34.67768000023176 ], [ -58.390853000065874, -34.677229000118245 ], [ -58.391389999648709, -34.676778000004674 ], [ -58.391905000015697, -34.6763279999372 ], [ -58.392377000198337, -34.675920000007977 ], [ -58.392849000381034, -34.675512000078697 ], [ -58.393299999595285, -34.675148000379863 ], [ -58.393771999777925, -34.674718000335417 ], [ -58.394200999776274, -34.674268000267944 ], [ -58.394243999960565, -34.673945999807984 ], [ -58.394157999591982, -34.673603000178275 ], [ -58.393985999754022, -34.673388000156024 ], [ -58.393643000124314, -34.673087999811287 ], [ -58.394566000420525, -34.672337000252298 ], [ -58.394566000420525, -34.672207999699367 ], [ -58.393664000193439, -34.671435000025213 ], [ -58.392676999643754, -34.67055599995939 ], [ -58.391476000017349, -34.670577000028459 ], [ -58.390682000274069, -34.670577000028459 ], [ -58.390573999790206, -34.67046999959075 ], [ -58.389672999609218, -34.669696999916596 ], [ -58.389223000441064, -34.669267999918191 ], [ -58.388857999796812, -34.668925000288482 ], [ -58.387827999962212, -34.668045000176562 ], [ -58.388729000143201, -34.667336999902602 ], [ -58.389781000093024, -34.666522000090197 ], [ -58.388729000143201, -34.663947000053952 ], [ -58.388385999614172, -34.663238999779992 ], [ -58.388085000122601, -34.662401999852364 ], [ -58.388170999591921, -34.661372000017764 ], [ -58.388196999891591, -34.660711000112542 ], [ -58.388213999776212, -34.660276999883592 ], [ -58.388278000029629, -34.659997999607924 ], [ -58.388449999867532, -34.658175000076142 ], [ -58.388557000305298, -34.656887000034999 ], [ -58.388599999590269, -34.656178999760982 ], [ -58.388664999889784, -34.655600000039954 ], [ -58.388729000143201, -34.654869999650714 ], [ -58.388793000396618, -34.653839999816114 ], [ -58.388857999796812, -34.653132000441417 ], [ -58.388900999981104, -34.652424000167457 ], [ -58.389008000418869, -34.65115800024148 ], [ -58.389114999957258, -34.649699000408475 ], [ -58.389243999610869, -34.648260999745276 ], [ -58.389351000048578, -34.646801999912327 ], [ -58.389416000348092, -34.646072000422464 ], [ -58.389458999633064, -34.645407000332739 ], [ -58.389566000070829, -34.644098000222471 ], [ -58.389672999609218, -34.642874999581522 ], [ -58.389758999977801, -34.641781000392825 ], [ -58.38984500034644, -34.640600999936169 ], [ -58.389866000415566, -34.640214000076014 ], [ -58.389974, -34.639098999918872 ], [ -58.39008100043776, -34.637810999877672 ], [ -58.39016699990708, -34.636501999767404 ], [ -58.390231000160497, -34.635600999586416 ], [ -58.390274000344789, -34.635385999564164 ], [ -58.390337999698886, -34.634355999729564 ], [ -58.390337999698886, -34.634119999638244 ], [ -58.390531999652012, -34.63263999973617 ], [ -58.390660000158846, -34.631545999648097 ], [ -58.390788999812457, -34.630493999698274 ], [ -58.391540000270766, -34.630666000435554 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.392312999944977, -34.626438999760012 ], [ -58.392549000036297, -34.625322999556715 ], [ -58.392719999828103, -34.623992000230601 ], [ -58.392763000012394, -34.623691999885864 ], [ -58.392934999850297, -34.622811999773944 ], [ -58.393105999642103, -34.621611000147482 ], [ -58.393170999941674, -34.62045199975995 ], [ -58.393170999941674, -34.620345000221562 ], [ -58.393214000125965, -34.619486000178711 ], [ -58.393214000125965, -34.619229000018265 ], [ -58.393192000010743, -34.618199000183665 ], [ -58.393192000010743, -34.616954000326814 ], [ -58.393170999941674, -34.615817000054449 ], [ -58.393192000010743, -34.615065999596141 ], [ -58.393235000195034, -34.613907000107929 ], [ -58.393278000379382, -34.612769999835564 ], [ -58.393299999595285, -34.611590000278227 ], [ -58.393341999733479, -34.61040999982157 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.390660000158846, -34.607921000153965 ], [ -58.390745999628166, -34.606718999582142 ], [ -58.390788999812457, -34.605539000024805 ], [ -58.390809999881526, -34.60431600028312 ], [ -58.390853000065874, -34.603092999642172 ], [ -58.391174999626514, -34.603113999711297 ], [ -58.391304000179446, -34.601912000038737 ], [ -58.391432999833057, -34.600774999766372 ], [ -58.391562000385989, -34.599552000024744 ], [ -58.391603999624863, -34.599144000095464 ], [ -58.391668999924377, -34.598628999728533 ], [ -58.391818999647057, -34.597213000079819 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.392054999738434, -34.594939000434465 ], [ -58.392141000107017, -34.593972999953962 ], [ -58.392184000291365, -34.593736999862585 ], [ -58.390853000065874, -34.592557000305248 ], [ -58.391861999831406, -34.591762999662649 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.421710000316239, -34.580926999981045 ], [ -58.421623999947599, -34.5808200004426 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.418748000419839, -34.57890999959676 ], [ -58.417267999618446, -34.577365000294492 ], [ -58.417804000054502, -34.576870999996629 ], [ -58.418168999799434, -34.576377999744864 ], [ -58.418361999706462, -34.575884000346321 ], [ -58.418554999613491, -34.57472600000483 ], [ -58.418427000005977, -34.574274999891315 ], [ -58.417932999708114, -34.573566999617299 ], [ -58.419177999564965, -34.573008999965339 ], [ -58.419993000276691, -34.572601000036059 ], [ -58.420507999744359, -34.572387000059962 ], [ -58.421751999555113, -34.57178600022371 ], [ -58.421580999763307, -34.571270999856722 ], [ -58.42143100004057, -34.570991999581054 ], [ -58.421322999556764, -34.570798999674025 ], [ -58.421259000202667, -34.570713000204762 ], [ -58.421066000295639, -34.570541000366802 ], [ -58.420851000273387, -34.570284000206414 ], [ -58.420615000182067, -34.570069000184162 ], [ -58.420335999906456, -34.569940999677328 ], [ -58.420979999926999, -34.569060999565409 ], [ -58.421837999923696, -34.568610000351214 ], [ -58.420679999582262, -34.56657199989786 ], [ -58.420314999837331, -34.565906999808135 ], [ -58.420314999837331, -34.565433999579398 ], [ -58.42040100020597, -34.565327000040952 ], [ -58.420528999813428, -34.565240999672369 ], [ -58.420979999926999, -34.565004999581049 ], [ -58.421924000292336, -34.564618999766992 ], [ -58.422266999922044, -34.564382999675672 ], [ -58.422589000382004, -34.564017999930684 ], [ -58.423339999940993, -34.562752000004764 ], [ -58.423426000309632, -34.56253800002861 ], [ -58.424299000098756, -34.561868999754495 ], [ -58.424435000075164, -34.561765000354455 ], [ -58.425529000163181, -34.561486000078787 ], [ -58.426328000137062, -34.561127999757332 ], [ -58.42720300001838, -34.560734999620479 ], [ -58.427632000016729, -34.560369999875547 ], [ -58.428104000199426, -34.560027000245839 ], [ -58.427460000178826, -34.559383000225239 ], [ -58.427482000294049, -34.559212000433433 ], [ -58.426258999653044, -34.558096000230194 ], [ -58.425072999819065, -34.557080000141866 ], [ -58.424707000027979, -34.556696000420061 ], [ -58.424739999751125, -34.556547999890256 ], [ -58.424777999704872, -34.556401000305868 ], [ -58.424831000350366, -34.556339000144703 ], [ -58.427352999741117, -34.554641000082029 ], [ -58.428902000127152, -34.553772999624186 ], [ -58.431289999633748, -34.552433999929121 ], [ -58.431601999632562, -34.552258999952869 ], [ -58.433575999832499, -34.551121999680504 ], [ -58.434813000219719, -34.550456000444001 ], [ -58.437201999772412, -34.549169999595733 ], [ -58.437786999770196, -34.548851000173499 ], [ -58.444541000067034, -34.545177999864734 ], [ -58.445591999970759, -34.544623000351123 ], [ -58.447180000356695, -34.5437840003313 ], [ -58.448123999822712, -34.543290000033437 ], [ -58.448788999912381, -34.54290400021938 ], [ -58.449307999564496, -34.542680999828235 ], [ -58.446064000153456, -34.541659000362529 ], [ -58.445463000317147, -34.542089000406975 ], [ -58.444261999791422, -34.542496000290157 ], [ -58.443595999655599, -34.542689000197186 ], [ -58.441322000010246, -34.543396999571826 ], [ -58.441235999641606, -34.543439999756117 ], [ -58.441085999918926, -34.5437840003313 ], [ -58.441129000103217, -34.545413999956111 ], [ -58.4393909999946, -34.545392999886985 ], [ -58.438983000065377, -34.545457000140402 ], [ -58.43891899981196, -34.545522000439917 ], [ -58.438724999858835, -34.545778999701042 ], [ -58.438575000136098, -34.546401999652517 ], [ -58.438404000344292, -34.546788000365893 ], [ -58.43836100016, -34.546959000157699 ], [ -58.43836100016, -34.547044999626962 ], [ -58.438404000344292, -34.547109999926533 ], [ -58.438467999698389, -34.547174000179893 ], [ -58.438703999789709, -34.547217000364242 ], [ -58.440506000151743, -34.546637999743837 ], [ -58.440849999827606, -34.546401999652517 ], [ -58.441085999918926, -34.546316000183197 ], [ -58.441837000377234, -34.545929000323042 ], [ -58.442158999937874, -34.545757999631917 ], [ -58.442481000397834, -34.545736000416071 ], [ -58.44627900017565, -34.543611999594077 ], [ -58.447265999826016, -34.542861000035089 ], [ -58.448238999729995, -34.542173999830197 ], [ -58.448359999914032, -34.542089000406975 ], [ -58.448698000212516, -34.541887000084955 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 374.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.366627999882269, -34.585389999848587 ], [ -58.367206999603297, -34.586098000122547 ], [ -58.367421999625549, -34.58635600032909 ], [ -58.367936999992537, -34.586978000234467 ], [ -58.368107999784343, -34.587235000394912 ], [ -58.369180999803234, -34.588543999605861 ], [ -58.369246000102805, -34.588629999974501 ], [ -58.369983999961562, -34.589529000063237 ], [ -58.370232999753114, -34.589831999647004 ], [ -58.370340000190822, -34.589939000084769 ], [ -58.370489999913502, -34.589961000199935 ], [ -58.370661999751462, -34.589961000199935 ], [ -58.370833000442587, -34.589831999647004 ], [ -58.370992999727093, -34.589396000225179 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371326999841131, -34.589037999903724 ], [ -58.371541999863382, -34.588523000436055 ], [ -58.371691999586062, -34.588480000251764 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.372203999814701, -34.588756000389083 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.372818000250447, -34.589652000339527 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37416899959959, -34.591353999687271 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371498999679034, -34.598371999568087 ], [ -58.372828999858427, -34.598501000121018 ], [ -58.374202000222112, -34.598586999590339 ], [ -58.375360999710324, -34.598671999912824 ], [ -58.376799000373524, -34.59878000039663 ], [ -58.378279000275597, -34.598886999935075 ], [ -58.379738000108603, -34.598951000188492 ], [ -58.381154999803357, -34.599015999588687 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.381948000399859, -34.599036999657756 ], [ -58.382077000053471, -34.599036999657756 ], [ -58.382528000167042, -34.599079999842047 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.385445999832996, -34.599209000395035 ], [ -58.386862000380972, -34.599272999749076 ], [ -58.386733999874139, -34.600625000043692 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.386648000404875, -34.60272799989724 ], [ -58.387956999615824, -34.602877999619921 ], [ -58.389458999633064, -34.603028000241977 ], [ -58.390853000065874, -34.603092999642172 ], [ -58.391174999626514, -34.603113999711297 ], [ -58.392420000382685, -34.603135999826463 ], [ -58.393985999754022, -34.60320000007988 ], [ -58.395424000417222, -34.603243000264229 ], [ -58.396926000434519, -34.603264000333297 ], [ -58.398364000198399, -34.60328600044852 ], [ -58.399564999824861, -34.603349999802617 ], [ -58.400917000119421, -34.603415000102132 ], [ -58.402205000160563, -34.603415000102132 ], [ -58.403620999809277, -34.603392999986909 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.406324000352299, -34.603156999895589 ], [ -58.407418999587094, -34.603028000241977 ], [ -58.408470000390139, -34.60296399998856 ], [ -58.40980099971631, -34.602578000174503 ], [ -58.411238000333412, -34.602083999876641 ], [ -58.412589999728652, -34.601590999624875 ], [ -58.414006000276629, -34.601119000341555 ], [ -58.415142999649674, -34.600753999697304 ], [ -58.416152000314526, -34.600432000136664 ], [ -58.417717999685919, -34.599959999953967 ], [ -58.417911999639045, -34.599894999654452 ], [ -58.419005999727062, -34.599530999955618 ], [ -58.420358000021622, -34.598908000004144 ], [ -58.420485999629136, -34.599530999955618 ], [ -58.420528999813428, -34.600003000138315 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.42078700001997, -34.601890999969612 ], [ -58.420979999926999, -34.603179000010812 ], [ -58.42119499994925, -34.60487399993508 ], [ -58.421302000386959, -34.605989000092222 ], [ -58.421365999741056, -34.606676000297114 ], [ -58.421408999925347, -34.607255000018199 ], [ -58.421516000363113, -34.608543000059342 ], [ -58.421302000386959, -34.609830000054387 ], [ -58.421259000202667, -34.610022999961416 ], [ -58.421129999649736, -34.610816999704753 ], [ -58.421044000180416, -34.611482999840518 ], [ -58.422417999690879, -34.612061999561604 ], [ -58.423598000147535, -34.612597999997661 ], [ -58.424928000326929, -34.613198999833912 ], [ -58.426151000068558, -34.613714000200901 ], [ -58.427632000016729, -34.6143580002215 ], [ -58.428512000128649, -34.614766000150723 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.434713000104807, -34.617511999978774 ], [ -58.435291999825893, -34.617770000185317 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.437760000323692, -34.618864000273334 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.441106999987994, -34.620817000404202 ], [ -58.440957000265314, -34.621910999592899 ], [ -58.440936000196189, -34.622168999799442 ], [ -58.440849999827606, -34.622877000073458 ], [ -58.440742000243063, -34.623821000438795 ], [ -58.440634999805354, -34.624978999880909 ], [ -58.440549000336034, -34.625688000201023 ], [ -58.440549000336034, -34.626416999644789 ], [ -58.440806999643257, -34.626438999760012 ], [ -58.440591999621063, -34.627168000103097 ], [ -58.440292000175646, -34.627640000285737 ], [ -58.439518999602114, -34.628841999958297 ], [ -58.438724999858835, -34.630107999884217 ], [ -58.438038999700041, -34.631095000433902 ], [ -58.437352000394469, -34.632103000153279 ], [ -58.436729999589772, -34.63302600044949 ], [ -58.435742999939464, -34.634613999936107 ], [ -58.435484999732921, -34.63534400032529 ], [ -58.435248999641601, -34.635944000115444 ], [ -58.435098999918864, -34.636395000229015 ], [ -58.434798999574127, -34.637275000340935 ], [ -58.435527999917213, -34.637446000132741 ], [ -58.436321999660493, -34.637640000085867 ], [ -58.435914999777367, -34.63873400017394 ], [ -58.435720999824241, -34.639248999641552 ], [ -58.435527999917213, -34.639785000077666 ], [ -58.435055999734573, -34.641179999657197 ], [ -58.434669999920516, -34.642210000391174 ], [ -58.436258000306452, -34.642509999836591 ], [ -58.437781000392818, -34.642811000227425 ], [ -58.438660999605418, -34.642982000019231 ], [ -58.439240000225766, -34.643089999603774 ], [ -58.439863000177297, -34.643240000225774 ], [ -58.440506000151743, -34.643368999879385 ], [ -58.441493999848149, -34.643582999855539 ], [ -58.442202000122165, -34.643733999624317 ], [ -58.442671000166456, -34.643784000131461 ], [ -58.442801999912319, -34.643797999877734 ], [ -58.443166999657251, -34.643669000224122 ], [ -58.443660999955171, -34.643303999579871 ], [ -58.444239999676199, -34.642789000112202 ], [ -58.44516299997241, -34.643604999970705 ], [ -58.44574699992404, -34.644122999576723 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 373.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370806000096763, -34.586637999843788 ], [ -58.370769000189171, -34.586592000420467 ], [ -58.370210999637891, -34.585927000330742 ], [ -58.370081999984279, -34.585775999662587 ], [ -58.369223999987582, -34.58476799994321 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.370424999613988, -34.585636000401053 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371863000277187, -34.597599999939973 ], [ -58.371498999679034, -34.598371999568087 ], [ -58.372828999858427, -34.598501000121018 ], [ -58.374202000222112, -34.598586999590339 ], [ -58.376799000373524, -34.59878000039663 ], [ -58.378279000275597, -34.598886999935075 ], [ -58.379726999601303, -34.598951000188492 ], [ -58.381154999803357, -34.599015999588687 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.382077000053471, -34.599036999657756 ], [ -58.382528000167042, -34.599079999842047 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.385445999832996, -34.599209000395035 ], [ -58.385339000294607, -34.600475000320955 ], [ -58.385230999810744, -34.601526000224681 ], [ -58.385252999925967, -34.60264200042792 ], [ -58.386648000404875, -34.60272799989724 ], [ -58.387956999615824, -34.602877999619921 ], [ -58.389458999633064, -34.603028000241977 ], [ -58.390853000065874, -34.603092999642172 ], [ -58.391174999626514, -34.603113999711297 ], [ -58.392420000382685, -34.603135999826463 ], [ -58.393985999754022, -34.60320000007988 ], [ -58.395424000417222, -34.603243000264229 ], [ -58.396926000434519, -34.603264000333297 ], [ -58.398364000198399, -34.60328600044852 ], [ -58.399564999824861, -34.603349999802617 ], [ -58.400917000119421, -34.603415000102132 ], [ -58.402205000160563, -34.603415000102132 ], [ -58.403620999809277, -34.603392999986909 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405959999754145, -34.610560000443627 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.406539000374551, -34.613627999832261 ], [ -58.407547000093928, -34.613778999601095 ], [ -58.408620000112876, -34.61395000029222 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.411302999733607, -34.614035999761541 ], [ -58.412890000073389, -34.614100000014957 ], [ -58.414520999744298, -34.614271999852861 ], [ -58.415294000317829, -34.6143580002215 ], [ -58.415959000407497, -34.614421999575598 ], [ -58.417138999964834, -34.614530000059403 ], [ -58.417010000311222, -34.615688000400837 ], [ -58.416923999942583, -34.616631999866854 ], [ -58.416859999689166, -34.617319000071745 ], [ -58.416731000035554, -34.618541999813374 ], [ -58.416623999597846, -34.619786999670282 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.416388000405846, -34.622447000029013 ], [ -58.416280999968137, -34.623349000256098 ], [ -58.416215999668623, -34.624014000345824 ], [ -58.416173000383594, -34.624549999882561 ], [ -58.416109000130234, -34.625408999925355 ], [ -58.415979999577303, -34.62693200001172 ], [ -58.415937000292274, -34.627876000377057 ], [ -58.415916000223206, -34.628928000326937 ], [ -58.41589500015408, -34.630151000068565 ], [ -58.415937000292274, -34.630729999789594 ], [ -58.415959000407497, -34.631351999694971 ], [ -58.416001999692469, -34.632017999830794 ], [ -58.416022999761594, -34.632726000104753 ], [ -58.416109000130234, -34.634035000215022 ], [ -58.416173000383594, -34.635301000140998 ], [ -58.416194999599497, -34.636072999769056 ], [ -58.416215999668623, -34.637145999788004 ], [ -58.416194999599497, -34.637511000432255 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.416088000061109, -34.638906000011843 ], [ -58.416088000061109, -34.640385999913917 ], [ -58.416088000061109, -34.641566000370574 ], [ -58.416109000130234, -34.642124000022534 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.418255000168074, -34.655192000110674 ], [ -58.419842999654691, -34.655706999578342 ], [ -58.421903000223267, -34.656329000383039 ], [ -58.422824999574004, -34.656822999781582 ], [ -58.423532999848021, -34.657187000379736 ], [ -58.423791000054564, -34.657316000033347 ], [ -58.424820999889221, -34.657788000215987 ], [ -58.425314000140929, -34.658003000238239 ], [ -58.425722000070209, -34.658196000145267 ], [ -58.426795000089157, -34.658668000327907 ], [ -58.427803999854689, -34.659119000441478 ], [ -58.429090999849734, -34.659698000162507 ], [ -58.430228000122042, -34.660191999561107 ], [ -58.431365000394408, -34.660727999997164 ], [ -58.432545999997842, -34.661243000364152 ], [ -58.433746999624304, -34.661822000085181 ], [ -58.434927000080961, -34.662358999668072 ], [ -58.436128999753521, -34.662917000219352 ], [ -58.437696000070332, -34.663603000378146 ], [ -58.437974000299846, -34.663688999847409 ], [ -58.43836100016, -34.663947000053952 ], [ -58.438531999951806, -34.66413999996098 ], [ -58.439325999695086, -34.665062000211094 ], [ -58.44018499973788, -34.665984999607986 ], [ -58.440979000380537, -34.666736000066294 ], [ -58.441299999895023, -34.667015000341962 ], [ -58.443103000303154, -34.668580999713299 ], [ -58.443511000232434, -34.669096000080287 ], [ -58.443788999562628, -34.669417999640928 ], [ -58.444626000389576, -34.67046999959075 ], [ -58.44484100041177, -34.670726999751196 ], [ -58.445140999857244, -34.671221000049059 ], [ -58.445172000387458, -34.671263000187253 ], [ -58.44548500043237, -34.671693000231755 ], [ -58.445892000315496, -34.672379000390492 ], [ -58.446908999550658, -34.674083999876643 ], [ -58.447351000148501, -34.674825999919904 ], [ -58.448380999983101, -34.676435000374909 ], [ -58.44909100034937, -34.677593999863177 ], [ -58.450076999953524, -34.679203000318182 ], [ -58.450290999929678, -34.679460999625405 ], [ -58.450557999651949, -34.679787000269812 ], [ -58.450870999696861, -34.680168999899365 ], [ -58.451063999603832, -34.680426000059811 ], [ -58.453371999917806, -34.682586999890077 ], [ -58.453746000077786, -34.682936999842639 ], [ -58.456255999814516, -34.685147000133895 ], [ -58.456353999837177, -34.685212999580244 ], [ -58.456921999950282, -34.685597000201369 ], [ -58.456986000203699, -34.685661999601564 ], [ -58.45743700031727, -34.686069000384009 ], [ -58.457887000384744, -34.686477000313289 ], [ -58.458380999783287, -34.68692800042686 ], [ -58.458809999781636, -34.68748600007882 ], [ -58.46028999968371, -34.688879999612254 ], [ -58.460441000351864, -34.689031000280409 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 372.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.618495, -34.648861 ], [ -58.618501, -34.649258 ], [ -58.618526, -34.650555 ], [ -58.618535, -34.651052 ], [ -58.618563, -34.651733 ], [ -58.618578, -34.652933 ], [ -58.618584, -34.653865 ], [ -58.618587, -34.6548 ], [ -58.617498, -34.65481 ], [ -58.616355, -34.654828 ], [ -58.615214, -34.654849 ], [ -58.614079, -34.654859 ], [ -58.614052, -34.654885 ], [ -58.61355, -34.655312 ], [ -58.612999, -34.655773 ], [ -58.612501, -34.656184 ], [ -58.611857, -34.65672 ], [ -58.611224, -34.657237 ], [ -58.610581, -34.657772 ], [ -58.609939, -34.658303 ], [ -58.608632, -34.659355 ], [ -58.607696, -34.660143 ], [ -58.607459, -34.660322 ], [ -58.606598, -34.661034 ], [ -58.606012, -34.661502 ], [ -58.605716, -34.66176 ], [ -58.604876, -34.662452 ], [ -58.604603, -34.662653 ], [ -58.603839, -34.663283 ], [ -58.603204, -34.663805 ], [ -58.602417, -34.664455 ], [ -58.601828, -34.664989 ], [ -58.601154, -34.665529 ], [ -58.600455, -34.666073 ], [ -58.600828, -34.66645 ], [ -58.601548, -34.667081 ], [ -58.601999, -34.667473 ], [ -58.602303, -34.667753 ], [ -58.602806, -34.668218 ], [ -58.603019, -34.668409 ], [ -58.603538, -34.668896 ], [ -58.603579, -34.668928 ], [ -58.604028, -34.669337 ], [ -58.604302, -34.669585 ], [ -58.60456, -34.66982 ], [ -58.604851, -34.670091 ], [ -58.605071, -34.670298 ], [ -58.605415, -34.670615 ], [ -58.605875, -34.671041 ], [ -58.606677, -34.671747 ], [ -58.608159, -34.673111 ], [ -58.608882, -34.673756 ], [ -58.609393, -34.674232 ], [ -58.609576, -34.674414 ], [ -58.609908, -34.674722 ], [ -58.610295, -34.675072 ], [ -58.610497, -34.675262 ], [ -58.611021, -34.675755 ], [ -58.611558, -34.676249 ], [ -58.612106, -34.67674 ], [ -58.612645, -34.677272 ], [ -58.612862, -34.67748 ], [ -58.61346, -34.677996 ], [ -58.614027, -34.678483 ], [ -58.614272, -34.678708 ], [ -58.614568, -34.678991 ], [ -58.615176, -34.679549 ], [ -58.615277, -34.679623 ], [ -58.615743, -34.68007 ], [ -58.615962, -34.680259 ], [ -58.616388, -34.680661 ], [ -58.616641, -34.680901 ], [ -58.617062, -34.68127 ], [ -58.617686, -34.681883 ], [ -58.618255, -34.682382 ], [ -58.618428, -34.682489 ], [ -58.618679, -34.682721 ], [ -58.61915, -34.683153 ], [ -58.619348, -34.683347 ], [ -58.620136, -34.684055 ], [ -58.62032, -34.684236 ], [ -58.620896, -34.684738 ], [ -58.621376, -34.685177 ], [ -58.621833, -34.685597 ], [ -58.623101, -34.68675 ], [ -58.623435, -34.687055 ], [ -58.623979, -34.687547 ], [ -58.624546, -34.688057 ], [ -58.624774, -34.688243 ], [ -58.62514, -34.688594 ], [ -58.625501, -34.688936 ], [ -58.62573, -34.689129 ], [ -58.62631, -34.689659 ], [ -58.627111, -34.690383 ], [ -58.627789, -34.690993 ], [ -58.627968, -34.691153 ], [ -58.628592, -34.6917 ], [ -58.628769, -34.691866 ], [ -58.629236, -34.692298 ], [ -58.629474, -34.692507 ], [ -58.629955, -34.69297 ], [ -58.630149, -34.69315 ], [ -58.630893, -34.693813 ], [ -58.632052, -34.694848 ], [ -58.633271, -34.69596 ], [ -58.6344, -34.69699 ], [ -58.634639, -34.69718 ], [ -58.635651, -34.697028 ], [ -58.636464, -34.696925 ], [ -58.637269, -34.696833 ], [ -58.638184, -34.696716 ], [ -58.638285, -34.696996 ], [ -58.638574, -34.697873 ], [ -58.638735, -34.698364 ], [ -58.638978, -34.699125 ], [ -58.639229, -34.699822 ], [ -58.639538, -34.700607 ], [ -58.639569, -34.700701 ], [ -58.639785, -34.701389 ], [ -58.641464, -34.701021 ], [ -58.643228, -34.700663 ], [ -58.644809, -34.700341 ], [ -58.644602, -34.69965 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 371.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.6088, -34.701149 ], [ -58.609775, -34.700386 ], [ -58.609706, -34.700351 ], [ -58.608844, -34.699607 ], [ -58.607906, -34.698787 ], [ -58.606941, -34.697952 ], [ -58.605977, -34.697117 ], [ -58.605117, -34.697797 ], [ -58.604445, -34.698326 ], [ -58.603499, -34.697463 ], [ -58.602551, -34.696614 ], [ -58.601648, -34.695746 ], [ -58.600407, -34.694687 ], [ -58.59917, -34.693636 ], [ -58.598527, -34.693072 ], [ -58.59767, -34.692324 ], [ -58.596732, -34.693003 ], [ -58.596028, -34.692365 ], [ -58.595017, -34.691349 ], [ -58.594116, -34.690479 ], [ -58.594046, -34.6904 ], [ -58.59333, -34.68959 ], [ -58.592453, -34.688744 ], [ -58.593231, -34.688148 ], [ -58.592346, -34.687344 ], [ -58.591461, -34.686531 ], [ -58.590256, -34.685497 ], [ -58.589714999999899, -34.684992 ], [ -58.589217, -34.684494 ], [ -58.589175, -34.684463 ], [ -58.589733, -34.684063 ], [ -58.589771, -34.684036 ], [ -58.590411, -34.683425 ], [ -58.590316, -34.683336 ], [ -58.589629, -34.682929 ], [ -58.588811, -34.682498 ], [ -58.588428, -34.682289 ], [ -58.587252, -34.681588 ], [ -58.586708, -34.681261 ], [ -58.585065, -34.682485 ], [ -58.583725999999899, -34.681274 ], [ -58.583794, -34.681201 ], [ -58.583954, -34.680928 ], [ -58.584029, -34.68064 ], [ -58.584009, -34.680349 ], [ -58.58394, -34.68008 ], [ -58.583928, -34.679754 ], [ -58.584046, -34.679715 ], [ -58.583783, -34.679597 ], [ -58.582715, -34.678974 ], [ -58.58182, -34.678468 ], [ -58.581785, -34.678449 ], [ -58.580992, -34.677989 ], [ -58.58023, -34.67757 ], [ -58.579544, -34.677192 ], [ -58.578617, -34.67667 ], [ -58.577656, -34.676151 ], [ -58.576801, -34.675694 ], [ -58.575912, -34.67522 ], [ -58.575066, -34.674789 ], [ -58.575016, -34.674744 ], [ -58.574352, -34.674129 ], [ -58.573826, -34.673649 ], [ -58.573792, -34.673618 ], [ -58.573009, -34.672909 ], [ -58.572277, -34.672249 ], [ -58.571537, -34.671574 ], [ -58.570786, -34.670891 ], [ -58.569691, -34.671707 ], [ -58.568618999999899, -34.672504 ], [ -58.568054, -34.672932 ], [ -58.567501, -34.673348 ], [ -58.566959, -34.673758 ], [ -58.566185, -34.673076 ], [ -58.565643, -34.673482 ], [ -58.564552, -34.674304 ], [ -58.563411, -34.675161 ], [ -58.562263, -34.676003 ], [ -58.561157, -34.676837 ], [ -58.560039, -34.677666 ], [ -58.558926, -34.678501 ], [ -58.557831, -34.679317 ], [ -58.55669, -34.68018 ], [ -58.555542, -34.681038 ], [ -58.554459, -34.681854 ], [ -58.554089, -34.682125 ], [ -58.554955, -34.682747 ], [ -58.555798, -34.683346 ], [ -58.55666, -34.683964 ], [ -58.557495, -34.684509 ], [ -58.558316, -34.685036 ], [ -58.558417, -34.685134 ], [ -58.558708, -34.685219 ], [ -58.559196, -34.685417 ], [ -58.560188, -34.685467 ], [ -58.560333, -34.685413 ], [ -58.56049, -34.685429 ], [ -58.560619, -34.685486 ], [ -58.560726, -34.68557 ], [ -58.560791, -34.685688 ], [ -58.561733, -34.686035 ], [ -58.562935, -34.685066 ], [ -58.563662, -34.685728 ], [ -58.562575, -34.686581 ], [ -58.562511, -34.686641 ], [ -58.561298, -34.687569 ], [ -58.560215, -34.688396 ], [ -58.559132, -34.68922 ], [ -58.558041, -34.690037 ], [ -58.558761, -34.690704 ], [ -58.558788, -34.690731 ], [ -58.559526, -34.691373 ], [ -58.56018, -34.691937 ], [ -58.560861, -34.692573 ], [ -58.560895, -34.692603 ], [ -58.561671, -34.693327 ], [ -58.561697, -34.69335 ], [ -58.562358, -34.693962 ], [ -58.56312, -34.694613 ], [ -58.563691, -34.695133 ], [ -58.563856, -34.695177 ], [ -58.56396, -34.695212 ], [ -58.564411, -34.695675 ], [ -58.563282999999899, -34.69653 ], [ -58.562165, -34.697379 ], [ -58.562739, -34.697916 ], [ -58.563306, -34.698415 ], [ -58.563964, -34.699009 ], [ -58.564682, -34.699628 ], [ -58.565405, -34.700248 ], [ -58.564575, -34.70082 ], [ -58.563965, -34.701301 ], [ -58.563938, -34.701316 ], [ -58.563149, -34.701908 ], [ -58.562508, -34.702359 ], [ -58.561882, -34.702837 ], [ -58.561272, -34.703335 ], [ -58.560654, -34.703783 ], [ -58.560074, -34.704233 ], [ -58.559368, -34.703608 ], [ -58.558739, -34.704084 ], [ -58.558129, -34.704609 ], [ -58.557203, -34.705329 ], [ -58.556273, -34.706037 ], [ -58.555347, -34.706748 ], [ -58.555312, -34.706771 ], [ -58.554416, -34.70746 ], [ -58.55402, -34.707764 ], [ -58.553577, -34.708092 ], [ -58.552881, -34.708678 ], [ -58.552853, -34.708702 ], [ -58.552708, -34.708767 ], [ -58.552784, -34.70882 ], [ -58.552882, -34.708927 ], [ -58.553001, -34.709057 ], [ -58.553143, -34.709221 ], [ -58.553303, -34.709385 ], [ -58.553558, -34.709538 ], [ -58.55368, -34.709606 ], [ -58.55497, -34.710262 ], [ -58.557011, -34.711243 ], [ -58.557201, -34.71151 ], [ -58.554512, -34.71323 ], [ -58.554703, -34.713303 ], [ -58.555537999999899, -34.713955 ], [ -58.556072, -34.714134 ], [ -58.557007, -34.714485 ], [ -58.557613, -34.714714 ], [ -58.558373, -34.715224 ], [ -58.55944, -34.716215 ], [ -58.559843, -34.716515 ], [ -58.560791, -34.71722 ], [ -58.560875, -34.717308 ], [ -58.562374, -34.717738 ], [ -58.562553, -34.717784 ], [ -58.562329, -34.718492 ], [ -58.562639, -34.718836 ], [ -58.562811, -34.719019 ], [ -58.564256, -34.720656 ], [ -58.56445, -34.720751 ], [ -58.564595, -34.720866 ], [ -58.564939, -34.721171 ], [ -58.565304, -34.721319 ], [ -58.567092, -34.721694 ], [ -58.567123, -34.72171 ], [ -58.567886, -34.722449 ], [ -58.567994, -34.722554 ], [ -58.567929, -34.722601 ], [ -58.567823, -34.722689 ], [ -58.565549, -34.724446 ], [ -58.564723, -34.725079 ], [ -58.564392, -34.725339 ], [ -58.563896, -34.725724 ], [ -58.563249, -34.726271 ], [ -58.562641, -34.726725 ], [ -58.561917, -34.727293 ], [ -58.562668, -34.727988 ], [ -58.56314, -34.72843 ], [ -58.563365, -34.728641 ], [ -58.563986, -34.729214 ], [ -58.564836, -34.729993 ], [ -58.565834, -34.730903 ], [ -58.566566, -34.731555 ], [ -58.566791, -34.731794 ], [ -58.567255, -34.73228 ], [ -58.567442, -34.732386 ], [ -58.567641, -34.73246 ], [ -58.568663, -34.733275 ], [ -58.569256, -34.732781 ], [ -58.569856, -34.732291 ], [ -58.57113, -34.733382 ], [ -58.572367, -34.73447 ], [ -58.573757, -34.735682 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 370.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.437610000401151, -34.661109999626717 ], [ -59.437515999663617, -34.660749000066232 ], [ -59.437408000079074, -34.660578000274427 ], [ -59.436892999712143, -34.660363000252232 ], [ -59.436656999620823, -34.660233999699301 ], [ -59.43601399964632, -34.660062999907495 ], [ -59.435820999739292, -34.660019999723147 ], [ -59.434705000435372, -34.660212999630176 ], [ -59.434447000228829, -34.659375999702604 ], [ -59.434190000068384, -34.658538999774976 ], [ -59.434040000345703, -34.658453000305656 ], [ -59.433546000047841, -34.656650999943622 ], [ -59.433459999679201, -34.656371999668011 ], [ -59.433309999956464, -34.655836000131274 ], [ -59.433052999796075, -34.654956000019354 ], [ -59.432837999773824, -34.654075999907434 ], [ -59.432816999704755, -34.653969000369045 ], [ -59.432622999751572, -34.653089000257125 ], [ -59.432408999775475, -34.652380999983109 ], [ -59.432215999868447, -34.651693999778217 ], [ -59.432022999961418, -34.651007999619424 ], [ -59.431807999939224, -34.650300000244783 ], [ -59.431615000032195, -34.649613000039892 ], [ -59.431378999940875, -34.648798000227487 ], [ -59.431356999825653, -34.648711999858847 ], [ -59.431343000079323, -34.648663000297176 ], [ -59.431099999665207, -34.647852999816052 ], [ -59.430821000288915, -34.646951999635007 ], [ -59.430606000266664, -34.646072000422464 ], [ -59.430349000106219, -34.645193000356642 ], [ -59.430214000175908, -34.644634999805362 ], [ -59.430199000383539, -34.644570000405167 ], [ -59.430199000383539, -34.644441999898334 ], [ -59.430113000014899, -34.644462999967459 ], [ -59.429297000156396, -34.644634999805362 ], [ -59.428289000436962, -34.644805999597168 ], [ -59.427494999794362, -34.644957000265322 ], [ -59.426657999866734, -34.645106999988002 ], [ -59.425843000054385, -34.645256999710739 ], [ -59.42494199987334, -34.645429000447962 ], [ -59.424962999942466, -34.64553599998635 ], [ -59.425112999665146, -34.646072000422464 ], [ -59.425370999871689, -34.647038000003647 ], [ -59.425584999847842, -34.647918000115567 ], [ -59.425799999870037, -34.648798000227487 ], [ -59.426057000030482, -34.649719999578281 ], [ -59.426079000145705, -34.649827000015989 ], [ -59.426293000121802, -34.650577999574978 ], [ -59.426486000028831, -34.651330000079383 ], [ -59.426657999866734, -34.651995000169052 ], [ -59.426893999958111, -34.65274599972804 ], [ -59.427108999980305, -34.653410999817766 ], [ -59.427322999956459, -34.654140000160851 ], [ -59.427581000163002, -34.654999000203645 ], [ -59.427602000232071, -34.655084999672965 ], [ -59.427860000438613, -34.655963999738731 ], [ -59.428116999699739, -34.656822999781582 ], [ -59.42824600025267, -34.65725199977993 ], [ -59.428374999906282, -34.657680999778279 ], [ -59.428461000274922, -34.658024000307307 ], [ -59.428632000066727, -34.65860400007449 ], [ -59.428632000066727, -34.65884000016581 ], [ -59.42880399990463, -34.659441000002118 ], [ -59.429061000065076, -34.660342000183107 ], [ -59.429340000340687, -34.661222000295027 ], [ -59.42824600025267, -34.661436000271124 ], [ -59.427130000049431, -34.661651000293375 ], [ -59.426122000329997, -34.661844000200404 ], [ -59.425628000032134, -34.661950999738792 ], [ -59.424813000219729, -34.662101000360849 ], [ -59.42303199992682, -34.662445000036655 ], [ -59.422151999814901, -34.662615999828461 ], [ -59.420586000443507, -34.662917000219352 ], [ -59.420413999706284, -34.663023999757741 ], [ -59.419470000240267, -34.663216999664769 ], [ -59.418696999666736, -34.663367000286769 ], [ -59.417902999923456, -34.663517000009506 ], [ -59.416723000366119, -34.663754000146923 ], [ -59.415886000438547, -34.66390399986966 ], [ -59.411830999600909, -34.664676000397037 ], [ -59.411144000295337, -34.664826000119774 ], [ -59.409126999911052, -34.665234000048997 ], [ -59.408591000374315, -34.665405999886957 ], [ -59.408436000421034, -34.665490000163345 ], [ -59.408119000191675, -34.665663000047346 ], [ -59.407668000078104, -34.665834999885305 ], [ -59.407345999618144, -34.665899000138722 ], [ -59.407002999988435, -34.665921000253888 ], [ -59.406681000427795, -34.665921000253888 ], [ -59.406122999876516, -34.665855999954374 ], [ -59.405608000408847, -34.665749000415985 ], [ -59.405082000433936, -34.665641999978277 ], [ -59.404556999605802, -34.665534000393734 ], [ -59.403462000371007, -34.665298000302414 ], [ -59.402246000052799, -34.665077000003521 ], [ -59.400394000082997, -34.664740999797232 ], [ -59.399728999993329, -34.66461200014362 ], [ -59.398666999582304, -34.66440200035197 ], [ -59.396466999752192, -34.663968000123077 ], [ -59.393741999993267, -34.66348100014801 ], [ -59.392861999881347, -34.663324000102477 ], [ -59.389836999777685, -34.662765999551198 ], [ -59.386728000296955, -34.662181999599568 ], [ -59.385952999631172, -34.662037000107432 ], [ -59.384344000075487, -34.661757999831764 ], [ -59.381064999949729, -34.661146000387589 ], [ -59.375130999695841, -34.660037999653923 ], [ -59.375030999580929, -34.660019999723147 ], [ -59.366622000305028, -34.658416000398063 ], [ -59.364452000059714, -34.658003000238239 ], [ -59.361017999980675, -34.657370999871716 ], [ -59.358273000198778, -34.656865999965873 ], [ -59.35696400008851, -34.656629999874554 ], [ -59.35445100021343, -34.656157999691914 ], [ -59.351470000340214, -34.655600000039954 ], [ -59.349689000047249, -34.655256000364091 ], [ -59.347457999686924, -34.654827000365742 ], [ -59.344209000045282, -34.654225999630114 ], [ -59.340612999690165, -34.653561000439765 ], [ -59.339244000410247, -34.653303000233223 ], [ -59.336406999983012, -34.652766999797166 ], [ -59.33558799998616, -34.652612999889982 ], [ -59.327642999624686, -34.651137000172355 ], [ -59.32398099982322, -34.650456000244162 ], [ -59.318983999611874, -34.649526999671252 ], [ -59.31880400030434, -34.649493999948106 ], [ -59.313811000277383, -34.648566000320614 ], [ -59.308878000319396, -34.647649000301101 ], [ -59.303303000433061, -34.646612000143648 ], [ -59.300745000281495, -34.646136999822659 ], [ -59.298737000312258, -34.645759000377495 ], [ -59.292965000334448, -34.644670999666857 ], [ -59.288352999891003, -34.643802000062237 ], [ -59.284114999607482, -34.643004000134454 ], [ -59.28397400029985, -34.642973999650337 ], [ -59.283320999864202, -34.642832000296551 ], [ -59.279400999856193, -34.641683000370108 ], [ -59.275123999572884, -34.640429000098209 ], [ -59.274823000081369, -34.640339999591276 ], [ -59.27229200027557, -34.639592000170637 ], [ -59.270425999660119, -34.639046000172698 ], [ -59.265756000139277, -34.637678000039614 ], [ -59.261695999970357, -34.636488000021131 ], [ -59.257232000056717, -34.635179999956961 ], [ -59.254053000045872, -34.634249000191176 ], [ -59.2525720000977, -34.633799000123702 ], [ -59.251799999570267, -34.633476999663742 ], [ -59.251070000080404, -34.633068999734519 ], [ -59.249975999992387, -34.632188999622599 ], [ -59.249760999970135, -34.63208200008421 ], [ -59.249481999694467, -34.632017999830794 ], [ -59.24791600032313, -34.632061000015085 ], [ -59.247293000371656, -34.632017999830794 ], [ -59.246879000165677, -34.631959999854075 ], [ -59.246670999566959, -34.631932000361473 ], [ -59.245898999938845, -34.631738999555125 ], [ -59.243238999580115, -34.630901999627554 ], [ -59.239825999570201, -34.629828999608605 ], [ -59.239645000216569, -34.629771999677985 ], [ -59.237572999993915, -34.629121000233908 ], [ -59.23697100011151, -34.628929000373034 ], [ -59.2339080000541, -34.627952000284552 ], [ -59.231420000432649, -34.627158999688049 ], [ -59.228256000214174, -34.626149999922518 ], [ -59.224850999673833, -34.625065000249492 ], [ -59.221845999593143, -34.624107000137883 ], [ -59.219333999764217, -34.623306000071807 ], [ -59.217968999769482, -34.622871999842857 ], [ -59.214875000081122, -34.621889000376996 ], [ -59.211415999748567, -34.620791000104532 ], [ -59.207359999764151, -34.619502000017235 ], [ -59.204562000236081, -34.618614000435741 ], [ -59.201297999902749, -34.617577000278288 ], [ -59.201095000433895, -34.617511999978774 ], [ -59.197987000099943, -34.616509999636719 ], [ -59.19556399987863, -34.615728999593614 ], [ -59.19450799974436, -34.6153880000561 ], [ -59.192897000096423, -34.614885000242509 ], [ -59.189743000339149, -34.613901999877328 ], [ -59.18752599972504, -34.613210000341212 ], [ -59.187148000279933, -34.613092000295524 ], [ -59.184661999851357, -34.612291000229447 ], [ -59.181909999746665, -34.611403999794732 ], [ -59.179767999893215, -34.610713000304656 ], [ -59.176902999973436, -34.609790000008445 ], [ -59.174165999661113, -34.60890799980433 ], [ -59.171664000293333, -34.608107999784295 ], [ -59.170096999976522, -34.607608000109053 ], [ -59.168994000372777, -34.607255000018199 ], [ -59.168172000237576, -34.606991999581055 ], [ -59.165699000408495, -34.606199999930027 ], [ -59.16403800025347, -34.605667999678417 ], [ -59.163808999585626, -34.605574999886301 ], [ -59.162313999891126, -34.604974000049992 ], [ -59.160197000291305, -34.604123000376148 ], [ -59.15956599997088, -34.603856999800655 ], [ -59.157457999886731, -34.602966000080812 ], [ -59.15522100014897, -34.602021999715475 ], [ -59.153200999626392, -34.601169999995477 ], [ -59.151657000370221, -34.600517999605927 ], [ -59.148094999784348, -34.599015999588687 ], [ -59.147129000203165, -34.598586999590339 ], [ -59.144576000282143, -34.59751399957139 ], [ -59.143008999965332, -34.596848000334887 ], [ -59.141485999878967, -34.596205000360442 ], [ -59.13998399986167, -34.595582000408967 ], [ -59.138374000259887, -34.594939000434465 ], [ -59.13719399980323, -34.594530999605922 ], [ -59.136894000357813, -34.594424000067534 ], [ -59.135392000340516, -34.593951999884837 ], [ -59.135199000433488, -34.593929999769614 ], [ -59.132945999957883, -34.593243999610877 ], [ -59.129876999623775, -34.592299000098706 ], [ -59.128868999904398, -34.592020999869192 ], [ -59.127259000302558, -34.591526999571329 ], [ -59.123954999923285, -34.590496999736729 ], [ -59.123805000200548, -34.590453999552381 ], [ -59.12281799965092, -34.59013199999174 ], [ -59.121336999702748, -34.589681999924323 ], [ -59.119501999617569, -34.589081000088015 ], [ -59.11425599961467, -34.587364000048524 ], [ -59.110435999721574, -34.58612000023777 ], [ -59.108591000074568, -34.585519000401518 ], [ -59.10807599970758, -34.585368999779462 ], [ -59.106981999619563, -34.584981999919307 ], [ -59.104427999652444, -34.584167000106902 ], [ -59.10174600007781, -34.583309000110205 ], [ -59.101445999733073, -34.582965000434399 ], [ -59.101381000332879, -34.582857999996634 ], [ -59.101294999964239, -34.582771999628051 ], [ -59.100973999550376, -34.582644000020537 ], [ -59.10062999987457, -34.582600999836245 ], [ -59.100415999898416, -34.582644000020537 ], [ -59.100266000175736, -34.582729000343022 ], [ -59.10007200022261, -34.582750999558925 ], [ -59.099921999600554, -34.582708000273954 ], [ -59.098934999950245, -34.582385999813994 ], [ -59.098785000227565, -34.582321999560577 ], [ -59.0976479999552, -34.581934999700422 ], [ -59.096981999819377, -34.581656000324131 ], [ -59.095930999915652, -34.581184000141434 ], [ -59.094986999550372, -34.580755000143085 ], [ -59.094043000084355, -34.58034800025996 ], [ -59.09314199990331, -34.57994000033068 ], [ -59.092218999607098, -34.579532000401457 ], [ -59.091532000301527, -34.579166999757206 ], [ -59.091209999841567, -34.57890999959676 ], [ -59.089729999939493, -34.577579000270589 ], [ -59.08960999980161, -34.577465000409404 ], [ -59.088883999596874, -34.576775000066164 ], [ -59.088883999596874, -34.576775000066164 ], [ -59.089108000034116, -34.576721000273892 ], [ -59.089408000378853, -34.576678000089601 ], [ -59.089514999917299, -34.576657000020475 ], [ -59.089713000054871, -34.576499999974999 ], [ -59.089816000308133, -34.576355999629641 ], [ -59.089900999731299, -34.576162999722612 ], [ -59.089922999846522, -34.576013 ], [ -59.091025000303489, -34.574417000144422 ], [ -59.091166999657275, -34.574210999637899 ], [ -59.091445999932887, -34.574146000237704 ], [ -59.092412000413447, -34.573866999962036 ], [ -59.094279000175675, -34.573267000171882 ], [ -59.094472000082703, -34.573201999872367 ], [ -59.09556600017072, -34.572880000311727 ], [ -59.096488999567612, -34.572601000036059 ], [ -59.097497000186365, -34.572300999691322 ], [ -59.09812000013784, -34.572107999784293 ], [ -59.098870999696828, -34.571892999762099 ], [ -59.100287000244805, -34.571463999763751 ], [ -59.10165999970917, -34.571012999650179 ], [ -59.10301200000373, -34.570605999767054 ], [ -59.104406999583318, -34.570176999768705 ], [ -59.105823000131295, -34.569768999839425 ], [ -59.107175000425912, -34.569339999841077 ], [ -59.108504999705929, -34.56895400002702 ], [ -59.109900000184837, -34.568502999913449 ], [ -59.111402000202133, -34.5680739999151 ], [ -59.111617000224328, -34.568008999615586 ], [ -59.111079999742174, -34.566851000173472 ], [ -59.11054400020538, -34.56569199978594 ], [ -59.110006999723225, -34.564555000412895 ], [ -59.109341999633557, -34.563288999587598 ], [ -59.108806000096763, -34.562173000283678 ], [ -59.108290999729832, -34.56103600001137 ], [ -59.109320999564432, -34.56062800008209 ], [ -59.1099859996541, -34.560348999806479 ], [ -59.110671999812894, -34.56007000043013 ], [ -59.111145000041688, -34.559919999808073 ], [ -59.111617000224328, -34.55974799997017 ], [ -59.112345999668094, -34.559405000340462 ], [ -59.112668000128053, -34.559147000133919 ], [ -59.113569000309099, -34.558482000044251 ], [ -59.115865000069675, -34.5567660000508 ], [ -59.116573000343635, -34.55620800039884 ], [ -59.116573000343635, -34.556165000214548 ], [ -59.116851999719984, -34.55597200030752 ], [ -59.117087999811304, -34.555929000123228 ], [ -59.117174000179944, -34.55597200030752 ], [ -59.117367000086972, -34.556014999592492 ], [ -59.117753999947126, -34.556250999683868 ], [ -59.118011000107515, -34.556507999844257 ], [ -59.118332999668155, -34.557195000049148 ], [ -59.118804999850795, -34.558311000252388 ], [ -59.11929800010256, -34.559468999694559 ], [ -59.119448999871395, -34.55942600040953 ], [ -59.119448999871395, -34.55942600040953 ], [ -59.118954999573532, -34.558268000068097 ], [ -59.118483000290212, -34.557151999864857 ], [ -59.118182999945475, -34.556464999659966 ], [ -59.117881999554584, -34.556035999661617 ], [ -59.11779600008532, -34.555714000100977 ], [ -59.117818000200486, -34.555521000193949 ], [ -59.117710999762778, -34.555306000171754 ], [ -59.117559999993944, -34.555135000379948 ], [ -59.117389000202138, -34.555026999896086 ], [ -59.117153000110818, -34.554726999551349 ], [ -59.11696000020379, -34.554404999990709 ], [ -59.116888999627577, -34.554079000245622 ], [ -59.116745000181595, -34.5534180003404 ], [ -59.116465999905927, -34.552623999697801 ], [ -59.116099000068743, -34.55115500030297 ], [ -59.115972999654161, -34.550650000397184 ], [ -59.115715000346938, -34.54979200040043 ], [ -59.115328999633562, -34.548912000288567 ], [ -59.11507300041859, -34.548577000128432 ], [ -59.11505000025727, -34.548546999644259 ], [ -59.114857000350241, -34.548419000036802 ], [ -59.114599000143699, -34.548332999668162 ], [ -59.114319999868087, -34.548310999552939 ], [ -59.114020000422613, -34.548375999852453 ], [ -59.113826999616322, -34.548461000174996 ], [ -59.113505000055682, -34.548697000266316 ], [ -59.113162000425916, -34.54876199966651 ], [ -59.113032999872985, -34.54876199966651 ], [ -59.112883000150305, -34.548825999919927 ], [ -59.112711000312402, -34.548954999573539 ], [ -59.11249600029015, -34.549127000310762 ], [ -59.112410999967608, -34.54923399984915 ], [ -59.112410999967608, -34.549383999571887 ], [ -59.112367999783316, -34.549534000193887 ], [ -59.112174999876288, -34.549727000100916 ], [ -59.110737000112408, -34.550843000304155 ], [ -59.109341999633557, -34.551550999678852 ], [ -59.108032000376454, -34.552164000068501 ], [ -59.106681000127992, -34.552796000435023 ], [ -59.10584400020042, -34.553204000364303 ], [ -59.105510000086383, -34.553366999787158 ], [ -59.104750000112347, -34.55373999990104 ], [ -59.102790999704837, -34.554680000081873 ], [ -59.10157400023985, -34.555264000033503 ], [ -59.100018000430339, -34.556001999892317 ], [ -59.097818999747005, -34.557045000326468 ], [ -59.097522000439938, -34.557185999634157 ], [ -59.095437999663886, -34.558181999699457 ], [ -59.094502999713598, -34.558632999813028 ], [ -59.091331000025605, -34.560167000406693 ], [ -59.09091000039615, -34.560369999875547 ], [ -59.088680000081922, -34.56143300033267 ], [ -59.086769000089248, -34.562345000121638 ], [ -59.086102999953425, -34.562602000282027 ], [ -59.085918999562125, -34.562678000189521 ], [ -59.085481000048048, -34.56285999958925 ], [ -59.0829920003805, -34.563653000185752 ], [ -59.082798999574152, -34.563696000370101 ], [ -59.080091999745946, -34.564290999929653 ], [ -59.075868000108073, -34.565219999603244 ], [ -59.075331999672017, -34.565336999602778 ], [ -59.071678000239501, -34.566132000291532 ], [ -59.067418999886911, -34.567058999872927 ], [ -59.06541800024047, -34.567494000147917 ], [ -59.063135000180068, -34.567990999684866 ], [ -59.059813999916116, -34.568711999659001 ], [ -59.056727999697387, -34.569383000025368 ], [ -59.055499999725157, -34.569648999701542 ], [ -59.054947000303798, -34.569768999839425 ], [ -59.051706000131787, -34.570482000343986 ], [ -59.048632999613176, -34.571158000041635 ], [ -59.046364000198423, -34.571656999670779 ], [ -59.044559999744138, -34.572043000384099 ], [ -59.041541999963272, -34.572688999597631 ], [ -59.041149999872573, -34.572772999874019 ], [ -59.037781000093048, -34.573524000332327 ], [ -59.037414000255865, -34.573592999916968 ], [ -59.036643999820683, -34.573739000354522 ], [ -59.033725000108632, -34.574382000329024 ], [ -59.033443999740769, -34.574443999590869 ], [ -59.028081999784433, -34.575627000185875 ], [ -59.027413000409581, -34.575769000438981 ], [ -59.023712999755105, -34.576552999721116 ], [ -59.019381999679524, -34.577470999786783 ], [ -59.01906999968071, -34.577537000132395 ], [ -59.017846999939081, -34.577751000108549 ], [ -59.015689000247107, -34.57810800038385 ], [ -59.014605999767014, -34.578287999691383 ], [ -59.013726999701248, -34.578459000382509 ], [ -59.013103999749774, -34.57858800003612 ], [ -59.012225999730049, -34.578802000012274 ], [ -59.009220999649358, -34.579532000401457 ], [ -59.008393000136834, -34.579660000008971 ], [ -59.007826000069826, -34.579747000423708 ], [ -59.007310999702838, -34.579875000031166 ], [ -59.00615200021457, -34.58026199989132 ], [ -59.005487000124901, -34.580418999936853 ], [ -59.002976000342073, -34.581013000349628 ], [ -59.001460999725339, -34.581327000440695 ], [ -58.999456999940548, -34.581741999793394 ], [ -58.998294000267833, -34.58200700032279 ], [ -58.99512499981887, -34.582728000296925 ], [ -58.99445799963695, -34.582880000111857 ], [ -58.991665000339481, -34.58349100040931 ], [ -58.987805000400385, -34.584335999806513 ], [ -58.984284999952763, -34.585108000333889 ], [ -58.984072000022763, -34.585153999757267 ], [ -58.98083199989685, -34.58588400014645 ], [ -58.980386000013823, -34.585979000030761 ], [ -58.976752999751113, -34.586755999889419 ], [ -58.973611999694015, -34.587428000301941 ], [ -58.972807000342755, -34.587600000139844 ], [ -58.970487000374703, -34.588094999584541 ], [ -58.968279000175698, -34.588565999721084 ], [ -58.967068000088091, -34.588830000204325 ], [ -58.963431999686975, -34.589621999855353 ], [ -58.959934000253895, -34.590383999921642 ], [ -58.956695000174079, -34.591089000057252 ], [ -58.953564999724904, -34.591771000031599 ], [ -58.951435000424908, -34.592234999845346 ], [ -58.950467999898251, -34.59246100037484 ], [ -58.949225000133595, -34.592750000212277 ], [ -58.947727000300802, -34.593128999703538 ], [ -58.946675000350922, -34.593395000278974 ], [ -58.94362399994759, -34.594165999860934 ], [ -58.942239999975982, -34.594513999721244 ], [ -58.93840999962174, -34.595474999971202 ], [ -58.935842999954446, -34.596140000060927 ], [ -58.93360400012449, -34.59671999982811 ], [ -58.929843000254209, -34.597654999778399 ], [ -58.929806000346616, -34.59766400019339 ], [ -58.927681000377845, -34.59807200012267 ], [ -58.924677000343252, -34.59854400030531 ], [ -58.92359299981706, -34.598711999958766 ], [ -58.917334999910281, -34.599683999816705 ], [ -58.910762999912492, -34.600704000089479 ], [ -58.906438000113553, -34.601375999602681 ], [ -58.904942000372955, -34.601612999740098 ], [ -58.900486999975044, -34.60231999996796 ], [ -58.899400000209823, -34.60249199980592 ], [ -58.898412999660138, -34.602684999712949 ], [ -58.89759799984779, -34.602877999619921 ], [ -58.894636999997488, -34.603715000446869 ], [ -58.894157000345274, -34.603860999985102 ], [ -58.891461000124991, -34.604681000028108 ], [ -58.890152000014723, -34.605131000095525 ], [ -58.888563999628843, -34.605516999909582 ], [ -58.88476599985097, -34.606440000205794 ], [ -58.883923999692797, -34.606633000112822 ], [ -58.877749000016308, -34.608048999761479 ], [ -58.874659999659229, -34.608757000035496 ], [ -58.87305000005739, -34.609164999964719 ], [ -58.871554000316848, -34.60959299991697 ], [ -58.870947000203842, -34.609765999801027 ], [ -58.868222000444916, -34.610560000443627 ], [ -58.867847000238839, -34.610669000074267 ], [ -58.867191999710997, -34.610859999889044 ], [ -58.864555999559684, -34.611617999770829 ], [ -58.860460999575423, -34.612795000089136 ], [ -58.85629199977592, -34.613992999577249 ], [ -58.855485000332465, -34.614237000037463 ], [ -58.851668999724495, -34.615390000148352 ], [ -58.850540999867235, -34.615730999685866 ], [ -58.84884599994291, -34.616202999868506 ], [ -58.848537000082445, -34.616290000283243 ], [ -58.845288000440803, -34.617206000256658 ], [ -58.842873999735275, -34.617887000184851 ], [ -58.841615000132094, -34.618242000367957 ], [ -58.838301000190938, -34.619126999811158 ], [ -58.837838000423346, -34.619250000087391 ], [ -58.831885000192585, -34.620911000242415 ], [ -58.830993000426588, -34.62116000003391 ], [ -58.829899000338571, -34.621460000378647 ], [ -58.826706999728231, -34.62233600030612 ], [ -58.81975100000858, -34.624242000068193 ], [ -58.814693999728263, -34.625628000132053 ], [ -58.811660000108873, -34.626459999829081 ], [ -58.810752999651186, -34.626707999574478 ], [ -58.807496999686748, -34.627597000101446 ], [ -58.807199000333583, -34.627677000193387 ], [ -58.803692999632176, -34.628618999567152 ], [ -58.802304000329286, -34.628991999680977 ], [ -58.801253000425561, -34.629335000210062 ], [ -58.799880000061933, -34.629849999677674 ], [ -58.799015999788537, -34.630253000275673 ], [ -58.798312999745121, -34.630580000066914 ], [ -58.796456000444039, -34.631620000362659 ], [ -58.794214999622511, -34.63287599982749 ], [ -58.793569999555814, -34.633214000125975 ], [ -58.793314000340786, -34.63334800001013 ], [ -58.792583999951603, -34.633540999917159 ], [ -58.792111999768906, -34.633605000170576 ], [ -58.791853999562363, -34.633605000170576 ], [ -58.791575000186072, -34.633540999917159 ], [ -58.791404000394266, -34.633412000263547 ], [ -58.791103000003432, -34.633455000447896 ], [ -58.791081999934306, -34.63366999957077 ], [ -58.791533000047878, -34.634592999866982 ], [ -58.791660999655392, -34.634721000373816 ], [ -58.791896999746712, -34.635322000210124 ], [ -58.792111999768906, -34.635879999862084 ], [ -58.792540999767311, -34.637017000134392 ], [ -58.792991999880826, -34.638133000337632 ], [ -58.7934419999483, -34.639227000425706 ], [ -58.793827999762357, -34.640193000006889 ], [ -58.794343000129288, -34.64143799986374 ], [ -58.794580000266762, -34.642059999769117 ], [ -58.794857999596957, -34.642703999789717 ], [ -58.795308999710528, -34.643818999946859 ], [ -58.795737999708876, -34.644935000150099 ], [ -58.796188999822448, -34.646051000353339 ], [ -58.796638999889865, -34.647166999657259 ], [ -58.795245000356431, -34.64753200030151 ], [ -58.793870999946648, -34.647918000115567 ], [ -58.793870999946648, -34.647918000115567 ], [ -58.793420999879174, -34.646779999797104 ], [ -58.792068999584615, -34.647145000441355 ], [ -58.790739000304598, -34.64753200030151 ], [ -58.790288000191026, -34.646437000167396 ], [ -58.789837000077455, -34.64529999989503 ], [ -58.789343999825689, -34.644141000406819 ], [ -58.789300999641398, -34.644011999853888 ], [ -58.788892999712118, -34.642939999881037 ], [ -58.788442999644701, -34.641844999746922 ], [ -58.787992000430449, -34.640729000442946 ], [ -58.787541000316878, -34.639635000354929 ], [ -58.787069000134181, -34.63849800008262 ], [ -58.78678999985857, -34.637725000408409 ], [ -58.786167999953193, -34.636244999607015 ], [ -58.786081999584553, -34.635900999931152 ], [ -58.78599600011529, -34.635494000048027 ], [ -58.785931999861873, -34.635171999588067 ], [ -58.785803000208261, -34.635042999934456 ], [ -58.785567000116941, -34.634999999750164 ], [ -58.785117000049468, -34.63502199986533 ], [ -58.784323000306188, -34.63510800023397 ], [ -58.783615000032171, -34.635257999956707 ], [ -58.780203000068354, -34.635471999932804 ], [ -58.778845000396416, -34.635477000163405 ], [ -58.774537999628933, -34.635494000048027 ], [ -58.772826999866083, -34.635472999978901 ], [ -58.772736000166219, -34.635471999932804 ], [ -58.771190999964631, -34.635365000394415 ], [ -58.769732000131683, -34.635214999772359 ], [ -58.768379999837066, -34.634999999750164 ], [ -58.766504999705944, -34.634711999958768 ], [ -58.765869000054295, -34.634613999936107 ], [ -58.764024000407233, -34.634421000029079 ], [ -58.761642000278073, -34.634292000375467 ], [ -58.759770000285243, -34.634185999983856 ], [ -58.758616000128256, -34.634119999638244 ], [ -58.757714999947268, -34.634035000215022 ], [ -58.756256000114263, -34.633863000377119 ], [ -58.752715999643613, -34.633352000194634 ], [ -58.752394000082973, -34.633304999825839 ], [ -58.75101999967319, -34.633005000380422 ], [ -58.750204999860841, -34.63279000035817 ], [ -58.749088999657545, -34.632424999713919 ], [ -58.748251999729973, -34.63210800038388 ], [ -58.747844999846848, -34.631953000430599 ], [ -58.745999000153688, -34.631158999787942 ], [ -58.744991000434254, -34.630729999789594 ], [ -58.743847999885247, -34.630327000090915 ], [ -58.743531999701986, -34.630215000321982 ], [ -58.742201000375815, -34.629871999792897 ], [ -58.73979800017753, -34.629399999610257 ], [ -58.738637999743844, -34.629192999956956 ], [ -58.734312999944962, -34.628420000282745 ], [ -58.733189000272091, -34.62822000005292 ], [ -58.732223999837686, -34.628091000399309 ], [ -58.729348000309926, -34.627918999662086 ], [ -58.729190000218296, -34.62790099973131 ], [ -58.72673000008939, -34.627619000216669 ], [ -58.726130000299236, -34.62766200040096 ], [ -58.725212000233569, -34.627783999731776 ], [ -58.724842000258093, -34.627833000192766 ], [ -58.724370000075396, -34.627918999662086 ], [ -58.724133999984076, -34.627940999777252 ], [ -58.723425999710059, -34.62789799959296 ], [ -58.723017999780836, -34.627704999685932 ], [ -58.722781999689516, -34.627468999594612 ], [ -58.72254599959814, -34.626888999827429 ], [ -58.722224000037556, -34.62637400035976 ], [ -58.72198799994618, -34.62590200017712 ], [ -58.721881000407791, -34.625516000363064 ], [ -58.721838000223499, -34.625150999718812 ], [ -58.721817000154374, -34.624313999791241 ], [ -58.721860000338722, -34.623581000162972 ], [ -58.721881000407791, -34.623219999703167 ], [ -58.721881000407791, -34.622339999591247 ], [ -58.721795000039208, -34.621460000378647 ], [ -58.721622000155151, -34.620472999829019 ], [ -58.721581000063054, -34.620236999737699 ], [ -58.72127999967222, -34.619250000087391 ], [ -58.720980000226803, -34.618477999560014 ], [ -58.720185999584146, -34.616740000350717 ], [ -58.720145000391426, -34.616617000074427 ], [ -58.719627999932186, -34.615045000426392 ], [ -58.718840999612382, -34.613746999924047 ], [ -58.718769999935489, -34.613627999832261 ], [ -58.718125999914946, -34.612340999837215 ], [ -58.717417999640929, -34.611246999749198 ], [ -58.717063000357143, -34.610830000304247 ], [ -58.716924000242386, -34.610666999982016 ], [ -58.716474000174912, -34.610216999914599 ], [ -58.715428999648566, -34.609254999618486 ], [ -58.712975999842456, -34.606997999857754 ], [ -58.712785000027679, -34.606821999835404 ], [ -58.712161000030108, -34.606247000298765 ], [ -58.711131000195451, -34.605324000002554 ], [ -58.71035799962192, -34.604723000166302 ], [ -58.710030999830735, -34.604518999751974 ], [ -58.709499999625223, -34.604186999730189 ], [ -58.708705999881943, -34.603778999800966 ], [ -58.708083999976566, -34.60352199964052 ], [ -58.706653999682317, -34.603052000449395 ], [ -58.706581999959269, -34.603028000241977 ], [ -58.705915999823503, -34.602877999619921 ], [ -58.705165000264515, -34.602748999966309 ], [ -58.703340999787258, -34.602512999874989 ], [ -58.703071999972792, -34.602461000174969 ], [ -58.70267599969759, -34.602385000267532 ], [ -58.701732000231573, -34.602127000060989 ], [ -58.701110000326196, -34.601912000038737 ], [ -58.699886999685248, -34.601397999717847 ], [ -58.699407000032977, -34.601134000133982 ], [ -58.698362999552728, -34.600560999790275 ], [ -58.696611999743936, -34.599441000301852 ], [ -58.695982000368986, -34.599036999657756 ], [ -58.695338000348386, -34.598522000190087 ], [ -58.695102000257066, -34.598329000283115 ], [ -58.694371999867883, -34.597621000009099 ], [ -58.694308999660564, -34.597549000286108 ], [ -58.694050000307243, -34.597256000264167 ], [ -58.693621000308895, -34.59671999982811 ], [ -58.692891999965809, -34.595667999878231 ], [ -58.692269000014278, -34.594959999604271 ], [ -58.69081000018133, -34.593951999884837 ], [ -58.690666999882126, -34.593846000392546 ], [ -58.689650999793741, -34.593092999842042 ], [ -58.688450000167336, -34.592321000213929 ], [ -58.68824799984526, -34.592210999637871 ], [ -58.686948000150039, -34.59150600040158 ], [ -58.68540900022515, -34.590485000082651 ], [ -58.684781000043074, -34.59006799973838 ], [ -58.683685999908903, -34.589187999626461 ], [ -58.683067000141875, -34.588626999836151 ], [ -58.681626000239703, -34.587320999864232 ], [ -58.681065000449394, -34.58683900011971 ], [ -58.680103000153281, -34.586011999753964 ], [ -58.679076999603808, -34.585235999941403 ], [ -58.677118000095561, -34.583750999808728 ], [ -58.674437999713859, -34.581720999724325 ], [ -58.673386999810134, -34.580926999981045 ], [ -58.670561999936297, -34.578780999943149 ], [ -58.666804000204422, -34.575925999585195 ], [ -58.663747999570489, -34.573603000378114 ], [ -58.661327000340748, -34.571764000108487 ], [ -58.660747999720343, -34.571357000225362 ], [ -58.66039699972174, -34.571146000387557 ], [ -58.659460999725297, -34.570583999651831 ], [ -58.658345000421377, -34.570069000184162 ], [ -58.657110000126352, -34.569652999885989 ], [ -58.656371000221441, -34.569404000094494 ], [ -58.655705000085618, -34.569254000371757 ], [ -58.652990999934673, -34.568820000142864 ], [ -58.652079000145704, -34.568674999751408 ], [ -58.650556000059339, -34.568459999729157 ], [ -58.648752999651151, -34.56816000028374 ], [ -58.647187000279814, -34.567910000446147 ], [ -58.646199999730186, -34.567752000354517 ], [ -58.640384999568028, -34.566851000173472 ], [ -58.640174999776377, -34.566818999597103 ], [ -58.636866000065822, -34.566313999691317 ], [ -58.635320999864234, -34.566099999715163 ], [ -58.634592000420469, -34.565997000361222 ], [ -58.633025000103657, -34.565778000154523 ], [ -58.631929999969486, -34.565585000247495 ], [ -58.630922000250052, -34.565349000156175 ], [ -58.630450000067412, -34.56513400013398 ], [ -58.630369999975471, -34.565083999626836 ], [ -58.629934999700424, -34.564811999674021 ], [ -58.629591000024618, -34.564533000297672 ], [ -58.629012000303533, -34.563953999677324 ], [ -58.628583000305184, -34.563203000118335 ], [ -58.628453999752253, -34.562838000373347 ], [ -58.62844000000598, -34.562757000235308 ], [ -58.628304000029516, -34.56198000037665 ], [ -58.628239999776156, -34.56094999964273 ], [ -58.628067999938196, -34.559619000316559 ], [ -58.627471000286391, -34.556618999567149 ], [ -58.627317000379207, -34.555842999754589 ], [ -58.626930999665888, -34.554920000357697 ], [ -58.626479999552316, -34.554191000014612 ], [ -58.626114999807328, -34.553760999970109 ], [ -58.625471999832882, -34.553161000179955 ], [ -58.624699000158671, -34.552623999697801 ], [ -58.624454999698457, -34.552497000136384 ], [ -58.624162999722614, -34.552345000321452 ], [ -58.623067999588443, -34.551938000438327 ], [ -58.622080999938134, -34.551702000347007 ], [ -58.621759000377551, -34.551659000162658 ], [ -58.621094000287826, -34.551615999978367 ], [ -58.619741999993266, -34.551637000047492 ], [ -58.617468000347912, -34.551572999794075 ], [ -58.617283999956612, -34.551570999701823 ], [ -58.613218999557148, -34.551529999609727 ], [ -58.612769000388994, -34.551487000324755 ], [ -58.612125000368451, -34.551444000140464 ], [ -58.611052000349503, -34.551251000233435 ], [ -58.61020199982238, -34.550986999750194 ], [ -58.608906000311606, -34.550586000143767 ], [ -58.608326999691258, -34.550306999868099 ], [ -58.607554000017046, -34.54987799986975 ], [ -58.606567000366738, -34.549277000033499 ], [ -58.605730999585944, -34.548568999759482 ], [ -58.605375000256004, -34.548198999783949 ], [ -58.605172999933984, -34.547988999992299 ], [ -58.604186000283619, -34.546615999628614 ], [ -58.603284000056533, -34.545113999611374 ], [ -58.602819000196689, -34.544309000260114 ], [ -58.600445000436366, -34.540205999906902 ], [ -58.598400999706314, -34.536671999712951 ], [ -58.597748000170043, -34.53554399985569 ], [ -58.597083000080374, -34.534449999767617 ], [ -58.596516000013366, -34.533450999563911 ], [ -58.595165999811002, -34.531073999665296 ], [ -58.59465799976681, -34.530179999807103 ], [ -58.594486999975004, -34.529879000315589 ], [ -58.593950000392169, -34.528226999676235 ], [ -58.593893999608326, -34.527859999839052 ], [ -58.59386400002353, -34.527669000024275 ], [ -58.593736000416072, -34.526210000191327 ], [ -58.593584999747918, -34.525373000263698 ], [ -58.593327999587473, -34.52447200008271 ], [ -58.593268000417822, -34.524343000429099 ], [ -58.592856000304153, -34.523463000317179 ], [ -58.592384000121456, -34.522690999789745 ], [ -58.591653999732273, -34.521231999956797 ], [ -58.59157999991703, -34.521025000303496 ], [ -58.591439999756119, -34.520631000120488 ], [ -58.591224999733925, -34.519773000123791 ], [ -58.591182000448896, -34.519429000447985 ], [ -58.590978000034625, -34.517497000386243 ], [ -58.590689000197187, -34.514750999658872 ], [ -58.59065100024344, -34.514371000121514 ], [ -58.590335000060179, -34.511169999995445 ], [ -58.590173999830199, -34.509537000232342 ], [ -58.590042000038238, -34.508191000214424 ], [ -58.589765999900919, -34.505373999810217 ], [ -58.589751000108549, -34.505148000180043 ], [ -58.589701999647502, -34.504387000159909 ], [ -58.589786999970045, -34.503937000092435 ], [ -58.589809000085268, -34.503357000325252 ], [ -58.589722999716628, -34.502649000051292 ], [ -58.589572999993891, -34.502326999591332 ], [ -58.589637000247308, -34.50168399961683 ], [ -58.589765999900919, -34.501060999665356 ], [ -58.590088000360879, -34.500181999599533 ], [ -58.590205000360413, -34.499946999554368 ], [ -58.590409999921519, -34.49953799957899 ], [ -58.590816999804645, -34.49897999992703 ], [ -58.591139000264604, -34.498464999560042 ], [ -58.591675999847496, -34.497950000092374 ], [ -58.591856000054293, -34.497790999954645 ], [ -58.593753000300694, -34.496111999868845 ], [ -58.59465799976681, -34.495310999802768 ], [ -58.594915999973352, -34.494967000126906 ], [ -58.595087999811312, -34.494666999782169 ], [ -58.595280999718341, -34.494174000429723 ], [ -58.595303999879661, -34.494091000199433 ], [ -58.595559999993952, -34.493164999764872 ], [ -58.596010000061426, -34.491447999725381 ], [ -58.596111000222436, -34.491032000326527 ], [ -58.596525000428414, -34.489323999802707 ], [ -58.596869000104221, -34.488508999990302 ], [ -58.597598000447306, -34.48694199967349 ], [ -58.597619999663209, -34.486748999766462 ], [ -58.597577000378237, -34.486642000228073 ], [ -58.597500000424645, -34.486532999698113 ], [ -58.597425999710083, -34.486427000205879 ], [ -58.597062000011249, -34.486340999837239 ], [ -58.596032000176649, -34.486319999768114 ], [ -58.595645000316495, -34.486170000045433 ], [ -58.595537999878729, -34.486020000322696 ], [ -58.595344999971758, -34.485890999769765 ], [ -58.595238000433312, -34.485868999654542 ], [ -58.594893999858186, -34.485890999769765 ], [ -58.594508000044129, -34.486126999861085 ], [ -58.594122000230072, -34.48623400029885 ], [ -58.593886000138752, -34.48623400029885 ], [ -58.59362799993221, -34.486276999583822 ], [ -58.593177999864736, -34.486340999837239 ], [ -58.592276999683747, -34.486491999606073 ], [ -58.591118000195536, -34.48662000011285 ], [ -58.590903000173284, -34.486705999582171 ], [ -58.590344999622005, -34.487156999695742 ], [ -58.589873000338628, -34.487243000064382 ], [ -58.589121999880376, -34.487370999671839 ], [ -58.587555999609663, -34.48750000022477 ], [ -58.587147999680383, -34.487564999624965 ], [ -58.586053999592366, -34.487843999900633 ], [ -58.585576000032347, -34.487932000361468 ], [ -58.585473999825183, -34.487951000338342 ], [ -58.58253800022851, -34.488171999737972 ], [ -58.579080999988093, -34.488433000082864 ], [ -58.576075999907403, -34.488658999713039 ], [ -58.574380999983134, -34.488864000173407 ], [ -58.573951999984786, -34.488915999873427 ], [ -58.572170999691821, -34.489238000333387 ], [ -58.571033000272678, -34.48949599964061 ], [ -58.570819000296581, -34.489552000424453 ], [ -58.568673000258741, -34.490118000445307 ], [ -58.566914000080999, -34.490697000166392 ], [ -58.566687000404727, -34.490782999635655 ], [ -58.562490000213302, -34.492375000206039 ], [ -58.562385999913943, -34.492414000205883 ], [ -58.561635000354954, -34.492671000366329 ], [ -58.561013000449577, -34.492907999604427 ], [ -58.559897000246337, -34.493294000317803 ], [ -58.558051999700012, -34.49382999985454 ], [ -58.557815999608636, -34.49382999985454 ], [ -58.556613999936133, -34.493659000062735 ], [ -58.556184999937784, -34.493808999785472 ], [ -58.555455000447864, -34.494494999944266 ], [ -58.555240999572447, -34.494581000312849 ], [ -58.554554000266876, -34.494666999782169 ], [ -58.554103000153304, -34.494859999689197 ], [ -58.553009000065288, -34.495804000054534 ], [ -58.551958000161562, -34.496727000350745 ], [ -58.551764000208379, -34.496877000073425 ], [ -58.550970999611877, -34.497606999563345 ], [ -58.549426000309609, -34.498486999675265 ], [ -58.548160000383689, -34.499044000180447 ], [ -58.547887000384719, -34.499162000226079 ], [ -58.547214999972255, -34.49945200010967 ], [ -58.545606000416569, -34.500310000106367 ], [ -58.54489900018865, -34.500644000220404 ], [ -58.544833999889136, -34.500674999851299 ], [ -58.54248300029019, -34.501877999569956 ], [ -58.542065999945919, -34.502091000399332 ], [ -58.541701000200931, -34.50224200016811 ], [ -58.540065000299478, -34.503038000003642 ], [ -58.539275999887423, -34.503421999725447 ], [ -58.53652699992108, -34.504787999766336 ], [ -58.535563999578869, -34.505267000271829 ], [ -58.53362500009365, -34.506200000129866 ], [ -58.532753000350624, -34.506618999667069 ], [ -58.53090200042692, -34.507524000032504 ], [ -58.528848000135042, -34.508528999613588 ], [ -58.527625000393414, -34.509000999796285 ], [ -58.526873999935106, -34.509301000141022 ], [ -58.525349999802586, -34.510266999722205 ], [ -58.525301000240916, -34.51029099992968 ], [ -58.525221000148974, -34.510330999975622 ], [ -58.522632000366457, -34.511821000338841 ], [ -58.52122999956481, -34.512626999736199 ], [ -58.520800999566461, -34.512928000127033 ], [ -58.520625000443374, -34.513063000057343 ], [ -58.520522000190113, -34.513142000103187 ], [ -58.520242999914501, -34.513421000378798 ], [ -58.519749999662736, -34.514000000099884 ], [ -58.519598999893901, -34.514150999868718 ], [ -58.518569000059244, -34.515029999934484 ], [ -58.518179000060741, -34.515399999910017 ], [ -58.517368000432839, -34.516168000252947 ], [ -58.516724000412239, -34.516833000342672 ], [ -58.515663000047368, -34.517702999993389 ], [ -58.514853999612342, -34.518636999897581 ], [ -58.514707000028011, -34.518806999643289 ], [ -58.513524000332325, -34.520000999846218 ], [ -58.512411000267434, -34.521124000372254 ], [ -58.511251999879846, -34.522518999951842 ], [ -58.510515000067187, -34.523524000432246 ], [ -58.508655999774533, -34.52605999956927 ], [ -58.506981999919333, -34.528377000298292 ], [ -58.505694999924287, -34.530094000337783 ], [ -58.505436999717745, -34.530436999967549 ], [ -58.505220999649396, -34.530731000035587 ], [ -58.504836999927591, -34.531251999779897 ], [ -58.504342999629671, -34.531960000053914 ], [ -58.503678000439322, -34.532775999912417 ], [ -58.503505999702099, -34.533076000257154 ], [ -58.50328200016412, -34.533471999633036 ], [ -58.5028619996815, -34.534213999676297 ], [ -58.502218999707054, -34.535179000110702 ], [ -58.501553999617329, -34.536122999576719 ], [ -58.501489000217134, -34.536208999945359 ], [ -58.500480999598437, -34.537710999962655 ], [ -58.499730000039449, -34.538697999612964 ], [ -58.498249000091221, -34.540544000205387 ], [ -58.497568000163028, -34.541234999695462 ], [ -58.49685399961237, -34.541959999854043 ], [ -58.495652999985907, -34.543482999940466 ], [ -58.495407000332762, -34.543825999570174 ], [ -58.495052000149656, -34.544319999868037 ], [ -58.494194000152959, -34.545457000140402 ], [ -58.493958000061639, -34.545628999978305 ], [ -58.493635999601679, -34.545800999816265 ], [ -58.49335700022533, -34.545887000184848 ], [ -58.493177000018477, -34.545893999608325 ], [ -58.492862999927468, -34.545908000253974 ], [ -58.492454999998188, -34.545865000069682 ], [ -58.492154999653451, -34.545757999631917 ], [ -58.491426000209685, -34.545392999886985 ], [ -58.49067399970528, -34.545093000441568 ], [ -58.490266999822154, -34.544984999957762 ], [ -58.489130000449109, -34.544727999797317 ], [ -58.489068000287944, -34.544707999774346 ], [ -58.488250000337189, -34.544449000420968 ], [ -58.48711300006488, -34.543911999938814 ], [ -58.486229999814611, -34.54326000044864 ], [ -58.486125000368418, -34.543182999595729 ], [ -58.485524999678944, -34.54290400021938 ], [ -58.484387000259801, -34.542453000105809 ], [ -58.483592999617201, -34.542173999830197 ], [ -58.4829660003806, -34.541911000292373 ], [ -58.480224999883774, -34.54075800018154 ], [ -58.479259000302591, -34.540285999998844 ], [ -58.478379000190671, -34.539620999909175 ], [ -58.477863999823683, -34.539256000164244 ], [ -58.477456999940557, -34.539020000072924 ], [ -58.476083000430094, -34.538441000351838 ], [ -58.47563300036262, -34.53824800044481 ], [ -58.475225000433397, -34.53801200035349 ], [ -58.474710000066409, -34.53777600026217 ], [ -58.472907999704375, -34.537195999595667 ], [ -58.471812999570261, -34.536746000427513 ], [ -58.470440000105896, -34.536187999876233 ], [ -58.470225000083644, -34.536187999876233 ], [ -58.469839000269587, -34.536766999597319 ], [ -58.469881999554616, -34.53689600015025 ], [ -58.470032000176616, -34.536960000403667 ], [ -58.471898999938844, -34.537797000331238 ], [ -58.472199000283581, -34.53792599998485 ], [ -58.473229000118238, -34.538376000052324 ], [ -58.474131000345324, -34.538783999981547 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.475159000087729, -34.539835999931427 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.444111000022588, -34.570305000275482 ], [ -58.443831999746976, -34.570456000044317 ], [ -58.442952999681154, -34.57090600011179 ], [ -58.442544999751874, -34.571099000018819 ], [ -58.441966000030845, -34.571420999579402 ], [ -58.440742000243063, -34.572085999669127 ], [ -58.439648000155046, -34.572708999620602 ], [ -58.438446999629264, -34.573394999779396 ], [ -58.437116000303149, -34.574103000053356 ], [ -58.436430000144355, -34.574510999982635 ], [ -58.435506999848144, -34.574962000096207 ], [ -58.431858999792951, -34.576507000297795 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.418748000419839, -34.57890999959676 ], [ -58.418268999914346, -34.578408999875421 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 369.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.618501, -34.649258 ], [ -58.618526, -34.650555 ], [ -58.618535, -34.651052 ], [ -58.618563, -34.651733 ], [ -58.618578, -34.652933 ], [ -58.618584, -34.653865 ], [ -58.619847, -34.65385 ], [ -58.621252, -34.653844 ], [ -58.622737, -34.653838 ], [ -58.622757, -34.654752 ], [ -58.622776, -34.655876 ], [ -58.622797, -34.65657 ], [ -58.622796, -34.657137 ], [ -58.622793, -34.658381 ], [ -58.622828, -34.659364 ], [ -58.622837, -34.660485 ], [ -58.62284, -34.660739 ], [ -58.622834, -34.660971 ], [ -58.621604, -34.661977 ], [ -58.620887, -34.662555 ], [ -58.620602, -34.662787 ], [ -58.619948, -34.663301 ], [ -58.619378, -34.663788 ], [ -58.61915, -34.663989 ], [ -58.618679, -34.664387 ], [ -58.618409, -34.664613 ], [ -58.618035, -34.664953 ], [ -58.617633, -34.665267 ], [ -58.617317, -34.665504 ], [ -58.616796, -34.665918 ], [ -58.616577, -34.666103 ], [ -58.615694, -34.666868 ], [ -58.615466, -34.667019 ], [ -58.614842, -34.667527 ], [ -58.614027, -34.668236 ], [ -58.61352, -34.66866 ], [ -58.613379, -34.668782 ], [ -58.612764, -34.669314 ], [ -58.611988, -34.669944 ], [ -58.61169, -34.670196 ], [ -58.611238, -34.670567 ], [ -58.610663, -34.671039 ], [ -58.609791, -34.671766 ], [ -58.609125, -34.672311 ], [ -58.608912, -34.672496 ], [ -58.608159, -34.673111 ], [ -58.608882, -34.673756 ], [ -58.609393, -34.674232 ], [ -58.609576, -34.674414 ], [ -58.609908, -34.674722 ], [ -58.610295, -34.675072 ], [ -58.610497, -34.675262 ], [ -58.611021, -34.675755 ], [ -58.611558, -34.676249 ], [ -58.612106, -34.67674 ], [ -58.612645, -34.677272 ], [ -58.612862, -34.67748 ], [ -58.61346, -34.677996 ], [ -58.614027, -34.678483 ], [ -58.614272, -34.678708 ], [ -58.614568, -34.678991 ], [ -58.615176, -34.679549 ], [ -58.615277, -34.679623 ], [ -58.615743, -34.68007 ], [ -58.615962, -34.680259 ], [ -58.616388, -34.680661 ], [ -58.616641, -34.680901 ], [ -58.617062, -34.68127 ], [ -58.617686, -34.681883 ], [ -58.618255, -34.682382 ], [ -58.618428, -34.682489 ], [ -58.618679, -34.682721 ], [ -58.61915, -34.683153 ], [ -58.619348, -34.683347 ], [ -58.618701, -34.683883 ], [ -58.617983, -34.684472 ], [ -58.617736, -34.684669 ], [ -58.61733, -34.68503 ], [ -58.617279, -34.685067 ], [ -58.616749, -34.685499 ], [ -58.616359, -34.685805 ], [ -58.616165, -34.685971 ], [ -58.615612, -34.68642 ], [ -58.615423, -34.686521 ], [ -58.614343, -34.687493 ], [ -58.613803, -34.687897 ], [ -58.613735, -34.687959 ], [ -58.613465, -34.688185 ], [ -58.613173, -34.688441 ], [ -58.612636, -34.6889 ], [ -58.612279, -34.689168 ], [ -58.612025, -34.689396 ], [ -58.611474, -34.689824 ], [ -58.610911, -34.690298 ], [ -58.610321, -34.690726 ], [ -58.609653, -34.691197 ], [ -58.609085, -34.691674 ], [ -58.608428, -34.692138 ], [ -58.607807, -34.692612 ], [ -58.607129, -34.693103 ], [ -58.606517, -34.693573 ], [ -58.605607, -34.694226 ], [ -58.604625, -34.694949 ], [ -58.604041, -34.695487 ], [ -58.603278, -34.696114 ], [ -58.602589, -34.69665 ], [ -58.601804, -34.697238 ], [ -58.601012, -34.697829 ], [ -58.600329, -34.698347 ], [ -58.599656, -34.698855 ], [ -58.598778, -34.69953 ], [ -58.598065, -34.700063 ], [ -58.59729, -34.700651 ], [ -58.596573, -34.701175 ], [ -58.595952, -34.701638 ], [ -58.595765, -34.70178 ], [ -58.5951, -34.702266 ], [ -58.595013, -34.702334 ], [ -58.594658, -34.702597 ], [ -58.593947, -34.703126 ], [ -58.593632, -34.70336 ], [ -58.593269, -34.703642 ], [ -58.592591, -34.704079 ], [ -58.592284, -34.704304 ], [ -58.591716, -34.704729 ], [ -58.591596, -34.704811 ], [ -58.590846, -34.705359 ], [ -58.590734, -34.705431 ], [ -58.590675, -34.705488 ], [ -58.58936, -34.706484 ], [ -58.588017, -34.707526 ], [ -58.587677, -34.707726 ], [ -58.586862, -34.708309 ], [ -58.586818, -34.708356 ], [ -58.585787, -34.709172 ], [ -58.585608, -34.709314 ], [ -58.58485, -34.709882 ], [ -58.584777, -34.709942 ], [ -58.583943, -34.710581 ], [ -58.583246, -34.711113 ], [ -58.583223, -34.711144 ], [ -58.582644, -34.711591 ], [ -58.582391, -34.711793 ], [ -58.582012, -34.712073 ], [ -58.581614, -34.712366 ], [ -58.580991, -34.712821 ], [ -58.580715, -34.713037 ], [ -58.580385, -34.713296 ], [ -58.579763, -34.713767 ], [ -58.579069, -34.714306 ], [ -58.578395, -34.714827 ], [ -58.577744, -34.715315 ], [ -58.577151999999899, -34.715768 ], [ -58.576073, -34.716555 ], [ -58.575363, -34.717085 ], [ -58.574676, -34.717588 ], [ -58.574005, -34.718094 ], [ -58.57324, -34.71869 ], [ -58.572596, -34.719182 ], [ -58.572061, -34.719594 ], [ -58.57193, -34.719697 ], [ -58.571297, -34.720198 ], [ -58.570714, -34.72063 ], [ -58.570535, -34.720786 ], [ -58.570233, -34.720992 ], [ -58.570115, -34.721075 ], [ -58.568843, -34.722003 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 368.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.62529, -34.650299 ], [ -58.624187, -34.650349 ], [ -58.622662, -34.650406 ], [ -58.621143, -34.650471 ], [ -58.619823, -34.650517 ], [ -58.61871, -34.650555 ], [ -58.618523, -34.650555 ], [ -58.61853, -34.651035 ], [ -58.618549, -34.651737 ], [ -58.618549, -34.652973 ], [ -58.617428, -34.652985 ], [ -58.616291, -34.653 ], [ -58.615154, -34.653023 ], [ -58.614021, -34.653038 ], [ -58.612865, -34.653061 ], [ -58.612907, -34.653908 ], [ -58.612988, -34.654858 ], [ -58.613548, -34.655312 ], [ -58.612995, -34.655773 ], [ -58.612495, -34.656185 ], [ -58.611855, -34.656719 ], [ -58.611225, -34.657234 ], [ -58.610584, -34.657768 ], [ -58.609943, -34.658298 ], [ -58.608669, -34.659348 ], [ -58.607738, -34.660145 ], [ -58.607498, -34.660328 ], [ -58.606625, -34.661057 ], [ -58.606037, -34.661526 ], [ -58.60574, -34.661785 ], [ -58.604897, -34.662479 ], [ -58.604633, -34.662693 ], [ -58.60387, -34.663315 ], [ -58.603237, -34.66383 ], [ -58.602451, -34.664471 ], [ -58.601833, -34.664978 ], [ -58.601147, -34.665554 ], [ -58.600546, -34.666053 ], [ -58.60054, -34.666058 ], [ -58.600484, -34.666105 ], [ -58.600471, -34.666115 ], [ -58.600752, -34.666375 ], [ -58.599281, -34.667377 ], [ -58.598622, -34.667914 ], [ -58.597954, -34.668455 ], [ -58.597301, -34.668965 ], [ -58.59652, -34.669635 ], [ -58.595745, -34.670304 ], [ -58.594807, -34.671071 ], [ -58.593808, -34.671924 ], [ -58.59216, -34.673278 ], [ -58.59063, -34.67454 ], [ -58.589632, -34.675362 ], [ -58.588618, -34.676205 ], [ -58.587699, -34.676974 ], [ -58.586955, -34.677579 ], [ -58.585998, -34.678358 ], [ -58.584513999999899, -34.679476 ], [ -58.584046, -34.679715 ], [ -58.583928, -34.679754 ], [ -58.58394, -34.68008 ], [ -58.584009, -34.680349 ], [ -58.584029, -34.68064 ], [ -58.583954, -34.680928 ], [ -58.583794, -34.681201 ], [ -58.583725999999899, -34.681274 ], [ -58.585065, -34.682485 ], [ -58.584204, -34.683147 ], [ -58.584787, -34.683674 ], [ -58.58537, -34.684213 ], [ -58.585412, -34.684255 ], [ -58.585953, -34.68475 ], [ -58.585278, -34.685272 ], [ -58.584362, -34.685966 ], [ -58.583443, -34.686649 ], [ -58.582958, -34.687012 ], [ -58.582847999999899, -34.687164 ], [ -58.582359, -34.687473 ], [ -58.582172, -34.687614 ], [ -58.581684, -34.687988 ], [ -58.581036, -34.688477 ], [ -58.580051, -34.689224 ], [ -58.579525, -34.688602 ], [ -58.579021, -34.688129 ], [ -58.578979, -34.688076 ], [ -58.578152, -34.688641 ], [ -58.577137, -34.689449 ], [ -58.57607, -34.69021 ], [ -58.575446, -34.690659 ], [ -58.574898, -34.691071 ], [ -58.57385, -34.691832 ], [ -58.573259, -34.691309 ], [ -58.57264, -34.690805 ], [ -58.572056, -34.690337 ], [ -58.572033, -34.690311 ], [ -58.571113, -34.68948 ], [ -58.571087, -34.689453 ], [ -58.570129, -34.688583 ], [ -58.569164, -34.687717 ], [ -58.568413, -34.687042 ], [ -58.567638, -34.68634 ], [ -58.567616, -34.686317 ], [ -58.566967, -34.685734 ], [ -58.566929, -34.685707 ], [ -58.566177, -34.68504 ], [ -58.567196, -34.684143 ], [ -58.566765, -34.68375 ], [ -58.566608, -34.683605 ], [ -58.565853, -34.682926 ], [ -58.565121, -34.682262 ], [ -58.564487, -34.681694 ], [ -58.563824, -34.681091 ], [ -58.562717, -34.681915 ], [ -58.56192, -34.681213 ], [ -58.56118, -34.680538 ], [ -58.560452, -34.679871 ], [ -58.560425, -34.679844 ], [ -58.559689, -34.679195 ], [ -58.558926, -34.678501 ], [ -58.558163, -34.677826 ], [ -58.55743, -34.677151 ], [ -58.55674, -34.676548 ], [ -58.556637, -34.676445 ], [ -58.555862, -34.675735 ], [ -58.555119, -34.675053 ], [ -58.55476, -34.674714 ], [ -58.554699, -34.674656 ], [ -58.554589, -34.674554 ], [ -58.554176, -34.674171 ], [ -58.55389, -34.673958 ], [ -58.553242, -34.673363 ], [ -58.552204, -34.674141 ], [ -58.550953, -34.675091 ], [ -58.550068, -34.675755 ], [ -58.549065, -34.676529 ], [ -58.548400999999899, -34.675808 ], [ -58.54768, -34.675106 ], [ -58.546833, -34.674255 ], [ -58.546005, -34.673504 ], [ -58.545612, -34.673779 ], [ -58.54483, -34.674347 ], [ -58.543959, -34.675108 ], [ -58.5439, -34.675159 ], [ -58.54274, -34.676208 ], [ -58.541821, -34.677097 ], [ -58.540943, -34.677956 ], [ -58.540234, -34.678631 ], [ -58.539566, -34.67926 ], [ -58.539283, -34.679532 ], [ -58.539165, -34.679646 ], [ -58.538681, -34.680061 ], [ -58.538193, -34.680508 ], [ -58.53775, -34.680881 ], [ -58.537254, -34.681332 ], [ -58.53706, -34.681515 ], [ -58.536694, -34.681843 ], [ -58.536362, -34.682137 ], [ -58.53614, -34.682339 ], [ -58.535751, -34.682686 ], [ -58.535099, -34.683254 ], [ -58.534454, -34.683834 ], [ -58.533867, -34.684387 ], [ -58.533138, -34.684944 ], [ -58.532795, -34.685211 ], [ -58.531712, -34.686028 ], [ -58.530594, -34.686871 ], [ -58.531208, -34.68742 ], [ -58.531807, -34.687965 ], [ -58.530701, -34.688808 ], [ -58.529617, -34.689625 ], [ -58.528522, -34.690441 ], [ -58.527484999999899, -34.691231 ], [ -58.527031, -34.69091 ], [ -58.526783, -34.690754 ], [ -58.526093, -34.690277 ], [ -58.525379, -34.689808 ], [ -58.524712, -34.689331 ], [ -58.524078, -34.688908 ], [ -58.523399, -34.688442 ], [ -58.522675, -34.687954 ], [ -58.522083, -34.687534 ], [ -58.521931, -34.687431 ], [ -58.52132, -34.687923 ], [ -58.520508, -34.688469 ], [ -58.519081, -34.689453 ], [ -58.517998, -34.690205 ], [ -58.516903, -34.690956 ], [ -58.515953, -34.691612 ], [ -58.51498, -34.692295 ], [ -58.514032, -34.692955 ], [ -58.514012, -34.692969 ], [ -58.513988, -34.692986 ], [ -58.513638, -34.693211 ], [ -58.513399, -34.693369 ], [ -58.513161, -34.693527 ], [ -58.512859, -34.693729 ], [ -58.511833, -34.694439 ], [ -58.510593, -34.695297 ], [ -58.509712, -34.695908 ], [ -58.509346, -34.696156 ], [ -58.508839, -34.69651 ], [ -58.508011, -34.697098 ], [ -58.50716, -34.69767 ], [ -58.506741, -34.697964 ], [ -58.506025, -34.698459 ], [ -58.505424, -34.698875 ], [ -58.504143, -34.699753 ], [ -58.503414, -34.700237 ], [ -58.502349, -34.700985 ], [ -58.501488, -34.70159 ], [ -58.500629, -34.702176 ], [ -58.500091, -34.702507 ], [ -58.499418, -34.702922 ], [ -58.499391, -34.703025 ], [ -58.499391, -34.703026 ], [ -58.501729, -34.70579 ], [ -58.50276, -34.707103 ], [ -58.503243, -34.707675 ], [ -58.503257, -34.707721 ], [ -58.504671, -34.709448 ], [ -58.504908, -34.709333 ], [ -58.505435, -34.70997 ], [ -58.505551, -34.710103 ], [ -58.505592, -34.71015 ], [ -58.505663, -34.710231 ], [ -58.506339, -34.711004 ], [ -58.505974, -34.71112 ], [ -58.505891, -34.710986 ], [ -58.505846, -34.710902 ], [ -58.505686, -34.710791 ], [ -58.50552, -34.710745 ], [ -58.505314, -34.710741 ], [ -58.505242, -34.710775 ], [ -58.505192, -34.710798 ], [ -58.50498, -34.710936 ], [ -58.50495, -34.710955 ], [ -58.504918, -34.711047 ], [ -58.504911, -34.711266 ], [ -58.504925, -34.711408 ], [ -58.504965, -34.711515 ], [ -58.505059, -34.711623 ], [ -58.505304, -34.71173 ], [ -58.505973, -34.712086 ], [ -58.505798, -34.71188 ], [ -58.504981, -34.710936 ], [ -58.50498, -34.710936 ], [ -58.504863, -34.710797 ], [ -58.504831, -34.71076 ], [ -58.504789, -34.710721 ], [ -58.504767999999899, -34.710701 ], [ -58.504764, -34.710698 ], [ -58.50472, -34.710657 ], [ -58.504718, -34.710656 ], [ -58.504417, -34.710199 ], [ -58.503552, -34.709198 ], [ -58.503079, -34.708522 ], [ -58.502441, -34.707889 ], [ -58.501435999999899, -34.706595 ], [ -58.500552, -34.705457 ], [ -58.499733, -34.704402 ], [ -58.499313, -34.704087 ], [ -58.498703, -34.703538 ], [ -58.498549, -34.70368 ], [ -58.498272, -34.703816 ], [ -58.497928, -34.703985 ], [ -58.497806, -34.703993 ], [ -58.496181, -34.704099 ], [ -58.495488, -34.704148 ], [ -58.494841, -34.704181 ], [ -58.494707, -34.704037 ], [ -58.494473, -34.703782 ], [ -58.494103, -34.7034 ], [ -58.494083, -34.703375 ], [ -58.493869, -34.703158 ], [ -58.493645, -34.702924 ], [ -58.493414, -34.702682 ], [ -58.493177, -34.702448 ], [ -58.492847, -34.70228 ], [ -58.492612, -34.702058 ], [ -58.492325, -34.701801 ], [ -58.492358, -34.701787 ], [ -58.492342, -34.701753 ], [ -58.492319, -34.701722 ], [ -58.492289, -34.701692 ], [ -58.492248, -34.701668 ], [ -58.492177, -34.701663 ], [ -58.491933, -34.701486 ], [ -58.491069, -34.700663 ], [ -58.490989, -34.700575 ], [ -58.490542, -34.70011 ], [ -58.490417, -34.69998 ], [ -58.490256, -34.699842 ], [ -58.490135, -34.699751 ], [ -58.489765, -34.699492 ], [ -58.489489, -34.699299 ], [ -58.489448, -34.699271 ], [ -58.488178, -34.698408 ], [ -58.487721, -34.698055 ], [ -58.486725, -34.698711 ], [ -58.48581, -34.698077 ], [ -58.485091, -34.697433 ], [ -58.48432, -34.696727 ], [ -58.483564, -34.696052 ], [ -58.48328, -34.695778 ], [ -58.482853, -34.695374 ], [ -58.482119, -34.694705 ], [ -58.481584, -34.694184 ], [ -58.480672, -34.693277 ], [ -58.4805, -34.693093 ], [ -58.479814, -34.693541 ], [ -58.479122, -34.693867 ], [ -58.478472, -34.694181 ], [ -58.477811, -34.694507 ], [ -58.476562, -34.695122 ], [ -58.475855, -34.694512 ], [ -58.47585, -34.694508 ], [ -58.474332, -34.69565 ], [ -58.473398, -34.696352 ], [ -58.473036, -34.696628 ], [ -58.471989, -34.697427 ], [ -58.471297, -34.697963 ], [ -58.470671, -34.698459 ], [ -58.47048, -34.698615 ], [ -58.467131, -34.701123 ], [ -58.466353, -34.701679 ], [ -58.464006, -34.703663 ], [ -58.463912, -34.703825 ], [ -58.463836, -34.70399 ], [ -58.463778, -34.704129 ], [ -58.463658, -34.704244 ], [ -58.463448, -34.70439 ], [ -58.463232, -34.704479 ], [ -58.463092, -34.70453 ], [ -58.462876, -34.704523 ], [ -58.462745, -34.704505 ], [ -58.462597, -34.704485 ], [ -58.462349, -34.704472 ], [ -58.462199, -34.704501 ], [ -58.462046, -34.704537 ], [ -58.461844, -34.704572 ], [ -58.460487, -34.705441 ], [ -58.46043, -34.705479 ], [ -58.460289, -34.705578 ], [ -58.460072, -34.705747 ], [ -58.459842, -34.705963 ], [ -58.459703, -34.706172 ], [ -58.459595, -34.706429 ], [ -58.459507, -34.706575 ], [ -58.459473, -34.706631 ], [ -58.459412, -34.706707 ], [ -58.459404, -34.706722 ], [ -58.459358, -34.706905 ], [ -58.459236, -34.707047 ], [ -58.459103, -34.707127 ], [ -58.459015, -34.707153 ], [ -58.458939, -34.707157 ], [ -58.458748, -34.707169 ], [ -58.458637, -34.707153 ], [ -58.458622, -34.70715 ], [ -58.458431, -34.707176 ], [ -58.458267, -34.707264 ], [ -58.458157, -34.707344 ], [ -58.457188, -34.708073 ], [ -58.456589, -34.708515 ], [ -58.45644, -34.708584 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 366.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.360837999973683, -34.672821000089016 ], [ -58.360534000343819, -34.673173000133829 ], [ -58.360790999604887, -34.673473999625344 ], [ -58.361585000247544, -34.673023000411092 ], [ -58.361713999901156, -34.673044999626995 ], [ -58.361971000061544, -34.673301999787441 ], [ -58.362335999806533, -34.673624000247344 ], [ -58.362894000357812, -34.674159999784138 ], [ -58.363066000195715, -34.674310999552915 ], [ -58.363473000078841, -34.674654000082 ], [ -58.364696999866624, -34.675748000170017 ], [ -58.36564100023196, -34.676607000212869 ], [ -58.36579099995464, -34.676734999820326 ], [ -58.366369999675726, -34.677250000187314 ], [ -58.367077999949686, -34.677894000207914 ], [ -58.367871999692966, -34.678581000412805 ], [ -58.368086999715217, -34.678774000319834 ], [ -58.368194000152926, -34.678666999882068 ], [ -58.368987999896262, -34.678022999861525 ], [ -58.369609999801582, -34.677508000393857 ], [ -58.370512000028725, -34.676778000004674 ], [ -58.370897999842782, -34.676477999659937 ], [ -58.371262999587714, -34.675984000261337 ], [ -58.372828999858427, -34.674504000359264 ], [ -58.375789999708672, -34.672143000299172 ], [ -58.376047999915215, -34.672014999792339 ], [ -58.376284000006535, -34.671929000323075 ], [ -58.376476999913564, -34.671865000069658 ], [ -58.377034999565524, -34.671714000300824 ], [ -58.376669999820592, -34.67158599979399 ], [ -58.376112000168632, -34.671714000300824 ], [ -58.375511000332381, -34.671821999885367 ], [ -58.375297000356227, -34.671821999885367 ], [ -58.375145999688073, -34.671736000416047 ], [ -58.374974999896267, -34.671264000233407 ], [ -58.373643999670833, -34.67008399977675 ], [ -58.372635999951399, -34.669224999733899 ], [ -58.371905999562216, -34.668623999897648 ], [ -58.370918999911851, -34.667744999831825 ], [ -58.370661999751462, -34.667529999809574 ], [ -58.369911000192474, -34.666885999789031 ], [ -58.369352999641194, -34.666435999721557 ], [ -58.368881000357817, -34.666048999861403 ], [ -58.366841999858366, -34.667744999831825 ], [ -58.366520000297726, -34.668001999992271 ], [ -58.365834000138932, -34.668559999644231 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.37108300028018, -34.656088000061118 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.372027999792294, -34.653217999910737 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.375318000425352, -34.647230999910676 ], [ -58.376454999798341, -34.64753200030151 ], [ -58.377549999932512, -34.647831999746927 ], [ -58.378579999767112, -34.648088999907372 ], [ -58.3790950001341, -34.646586999890076 ], [ -58.37821500002218, -34.646372999913979 ], [ -58.37885900004278, -34.644914000080973 ], [ -58.379201999672489, -34.643969999715694 ], [ -58.379288000041129, -34.643733999624317 ], [ -58.379676999993535, -34.642842999904474 ], [ -58.379953000130797, -34.642210000391174 ], [ -58.380918999712037, -34.642102999953465 ], [ -58.380876000427065, -34.640149999822597 ], [ -58.381347999710385, -34.638411999713981 ], [ -58.381776999708734, -34.636930999765809 ], [ -58.382420999729334, -34.63454999968269 ], [ -58.382698999958848, -34.634119999638244 ], [ -58.383150000072419, -34.633540999917159 ], [ -58.383299999795099, -34.63334800001013 ], [ -58.383386000163739, -34.632832999643199 ], [ -58.383278999726031, -34.632511000082559 ], [ -58.383299999795099, -34.632403999644851 ], [ -58.383408000278962, -34.632297000106405 ], [ -58.383622000255059, -34.632274999991239 ], [ -58.383815000162087, -34.63231800017553 ], [ -58.383987, -34.632382000428947 ], [ -58.38542499976387, -34.632811999574074 ], [ -58.386518999851944, -34.633155000103102 ], [ -58.387249000241127, -34.63334800001013 ], [ -58.387656000124252, -34.633455000447896 ], [ -58.388729000143201, -34.63375599993941 ], [ -58.389501999817412, -34.633948999846439 ], [ -58.390337999698886, -34.634119999638244 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.399286000448512, -34.634742999589719 ], [ -58.399694000377792, -34.633712999755119 ], [ -58.398298999898884, -34.633369000079256 ], [ -58.396862000181102, -34.63302600044949 ], [ -58.395617000324251, -34.632726000104753 ], [ -58.395982000069182, -34.631566999717222 ], [ -58.39626100034485, -34.630343999975594 ], [ -58.396539999721142, -34.629184999588006 ], [ -58.396840000065936, -34.628069000284086 ], [ -58.397076000157256, -34.626910999942652 ], [ -58.397269000064284, -34.625751999555064 ], [ -58.397505000155604, -34.624464999560018 ], [ -58.397826999716244, -34.623219999703167 ], [ -58.398192000360496, -34.62189000042315 ], [ -58.398491999805913, -34.620795000288979 ], [ -58.398856999550844, -34.619636999947545 ], [ -58.398963999988553, -34.618520999744305 ], [ -58.399071999573096, -34.617425999610134 ], [ -58.399157999941679, -34.616311000352368 ], [ -58.399243000264221, -34.615129999849557 ], [ -58.399286000448512, -34.614293999968083 ], [ -58.400123000376141, -34.614336000106277 ], [ -58.400229999914529, -34.613177999764844 ], [ -58.400316000283169, -34.612061999561604 ], [ -58.400401999752432, -34.610903000073336 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.400552000374489, -34.608543000059342 ], [ -58.400637999843752, -34.607405999787034 ], [ -58.400724000212392, -34.606160999930182 ], [ -58.400830999750781, -34.60463799984376 ], [ -58.400917000119421, -34.603415000102132 ], [ -58.400896000050295, -34.602191000314349 ], [ -58.400960000303712, -34.601182999695652 ], [ -58.401110000026449, -34.600239000229635 ], [ -58.401088999957324, -34.599487999771327 ], [ -58.400681000028101, -34.598050000007447 ], [ -58.400273000098821, -34.596763000012402 ], [ -58.399673000308667, -34.595217999810814 ], [ -58.399909000399987, -34.595153000410619 ], [ -58.399500999571444, -34.594144999791865 ], [ -58.399179000010804, -34.593372000117654 ], [ -58.398771000081524, -34.592514000120957 ], [ -58.398128000107079, -34.59150600040158 ], [ -58.397440999902187, -34.590560999990089 ], [ -58.396647000158907, -34.589489000017295 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.422610999597907, -34.580605000420405 ], [ -58.423619000216661, -34.579897000146389 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.431858999792951, -34.576507000297795 ], [ -58.432181000252911, -34.576464000113447 ], [ -58.433039000249607, -34.576162999722612 ], [ -58.434154999553527, -34.575670000370167 ], [ -58.434218999806944, -34.575605000070652 ], [ -58.434369999575779, -34.575627000185875 ], [ -58.434423000221216, -34.575669000324069 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 365.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.397682, -34.760967 ], [ -58.397617, -34.759823 ], [ -58.397835, -34.759789 ], [ -58.397949, -34.759781 ], [ -58.399357, -34.759605 ], [ -58.400764, -34.759418 ], [ -58.402245, -34.75919 ], [ -58.403698, -34.759022 ], [ -58.403954, -34.760239 ], [ -58.404217, -34.761421 ], [ -58.404491, -34.762566 ], [ -58.404755, -34.76376 ], [ -58.404957, -34.764923 ], [ -58.405087, -34.765545 ], [ -58.405949, -34.766029 ], [ -58.406296, -34.766216 ], [ -58.406696, -34.766399 ], [ -58.407696, -34.766979 ], [ -58.408562, -34.767437 ], [ -58.409588, -34.767979 ], [ -58.410286, -34.768318 ], [ -58.410725, -34.768528 ], [ -58.411942, -34.769173 ], [ -58.413521, -34.769974 ], [ -58.415081, -34.770851 ], [ -58.415714, -34.771191 ], [ -58.416904, -34.771824 ], [ -58.417145, -34.77195 ], [ -58.418156, -34.772488 ], [ -58.419292, -34.77309 ], [ -58.419746, -34.773335 ], [ -58.420403, -34.773685 ], [ -58.420876, -34.77393 ], [ -58.421482, -34.774261 ], [ -58.421181, -34.774635 ], [ -58.420677, -34.775272 ], [ -58.42038, -34.775658 ], [ -58.419888, -34.77631 ], [ -58.419586, -34.776688 ], [ -58.419071, -34.777287 ], [ -58.418007, -34.776718 ], [ -58.41721, -34.777725 ], [ -58.418205, -34.778282 ], [ -58.419323, -34.778877 ], [ -58.420399, -34.779469 ], [ -58.421909, -34.780212 ], [ -58.423149, -34.780861 ], [ -58.423759, -34.781143 ], [ -58.423016, -34.782127 ], [ -58.422359, -34.78299 ], [ -58.421669, -34.783901 ], [ -58.420887, -34.784939 ], [ -58.42065, -34.785213 ], [ -58.420551, -34.785374 ], [ -58.419922, -34.786198 ], [ -58.419296, -34.787018 ], [ -58.41851, -34.78804 ], [ -58.417854, -34.788891 ], [ -58.417683, -34.78912 ], [ -58.417076, -34.789856 ], [ -58.417999, -34.790203 ], [ -58.418919, -34.79073 ], [ -58.419941, -34.791218 ], [ -58.421024, -34.791649 ], [ -58.421703, -34.790752 ], [ -58.422409, -34.789806 ], [ -58.42281, -34.789188 ], [ -58.423077, -34.788921 ], [ -58.423889, -34.787842 ], [ -58.424294, -34.788944 ], [ -58.424641, -34.789776 ], [ -58.424862, -34.790417 ], [ -58.425106, -34.791088 ], [ -58.425404, -34.791824 ], [ -58.425732, -34.792671 ], [ -58.425854, -34.792618 ], [ -58.426056, -34.792603 ], [ -58.426212, -34.792583 ], [ -58.426502, -34.792625 ], [ -58.426624, -34.792747 ], [ -58.426704, -34.792835 ], [ -58.426769, -34.792969 ], [ -58.426811, -34.793079 ], [ -58.426849, -34.793232 ], [ -58.426762, -34.793365 ], [ -58.427456, -34.794407 ], [ -58.427952, -34.795139 ], [ -58.428425, -34.795837 ], [ -58.428764, -34.796249 ], [ -58.428486, -34.796635 ], [ -58.427231, -34.796574 ], [ -58.425968, -34.796616 ], [ -58.425873, -34.797886 ], [ -58.425812, -34.798405 ], [ -58.425251, -34.799259 ], [ -58.424641, -34.80006 ], [ -58.424042, -34.800854 ], [ -58.423676, -34.801342 ], [ -58.423477, -34.801243 ], [ -58.423141, -34.801277 ], [ -58.423256, -34.801552 ], [ -58.423443, -34.801643 ], [ -58.422981, -34.802208 ], [ -58.422985, -34.802643 ], [ -58.422783, -34.803181 ], [ -58.42268, -34.803696 ], [ -58.423168, -34.803688 ], [ -58.423309, -34.803757 ], [ -58.42408, -34.804222 ], [ -58.424881, -34.803196 ], [ -58.425228, -34.803375 ], [ -58.426388, -34.803928 ], [ -58.4282, -34.804821 ], [ -58.427734, -34.805428 ], [ -58.427338, -34.805946 ], [ -58.426575, -34.806938 ], [ -58.425381, -34.806492 ], [ -58.424351, -34.805988 ], [ -58.42329, -34.805462 ], [ -58.422382, -34.805016 ], [ -58.421799, -34.805759 ], [ -58.421356, -34.806328 ], [ -58.420837, -34.806992 ], [ -58.420345, -34.807629 ], [ -58.419765, -34.808376 ], [ -58.419144, -34.809216 ], [ -58.41851, -34.810059 ], [ -58.417854, -34.810944 ], [ -58.418892, -34.81147 ], [ -58.419926, -34.811981 ], [ -58.420906, -34.812469 ], [ -58.421955, -34.813 ], [ -58.422787, -34.813408 ], [ -58.423519, -34.813774 ], [ -58.424675, -34.81435 ], [ -58.424938, -34.814484 ], [ -58.426098, -34.815063 ], [ -58.427547, -34.815788 ], [ -58.428398, -34.8162 ], [ -58.429195, -34.816589 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 362.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.407418999587094, -34.651693999778217 ], [ -58.408791999950779, -34.652723999612874 ], [ -58.408941999673516, -34.652809999981457 ], [ -58.409199999880059, -34.653025000003709 ], [ -58.410207999599436, -34.653775999562697 ], [ -58.411260000448635, -34.654162000276074 ], [ -58.412976000442029, -34.654806000296617 ], [ -58.414178000114589, -34.655428000201994 ], [ -58.415058000226509, -34.655942999669662 ], [ -58.416408999575651, -34.656629999874554 ], [ -58.416388000405846, -34.655685000362439 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416324000152429, -34.654162000276074 ], [ -58.416302000037206, -34.653325000348445 ], [ -58.416280999968137, -34.652144999891789 ], [ -58.4161310002454, -34.652165999960914 ], [ -58.415421999925343, -34.652059000422469 ], [ -58.414284999652978, -34.651780000146857 ], [ -58.414178000114589, -34.651693999778217 ], [ -58.414477999560006, -34.65163000042412 ], [ -58.415294000317829, -34.651759000077732 ], [ -58.416237999783846, -34.651759000077732 ], [ -58.416367000336777, -34.65180200026208 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.417804000054502, -34.651845000446372 ], [ -58.418833999889159, -34.65171599989344 ], [ -58.419564000278342, -34.65163000042412 ], [ -58.420014000345816, -34.651587000239829 ], [ -58.42078700001997, -34.65147999980212 ], [ -58.421645000016724, -34.6513940003328 ], [ -58.422610999597907, -34.651264999779869 ], [ -58.423726999801147, -34.65115800024148 ], [ -58.423897999592953, -34.651050999803772 ], [ -58.424928000326929, -34.65027800012956 ], [ -58.425272000002735, -34.650064000153463 ], [ -58.426043999630849, -34.649548999786475 ], [ -58.427074000364769, -34.648819000296555 ], [ -58.428297000106454, -34.647918000115567 ], [ -58.428403999644843, -34.647809999631761 ], [ -58.429799000123694, -34.646822999981396 ], [ -58.431108000233962, -34.645900999731282 ], [ -58.432094999884271, -34.645171000241419 ], [ -58.432181000252911, -34.644183999691791 ], [ -58.432224000437202, -34.643582999855539 ], [ -58.432266999722231, -34.642982000019231 ], [ -58.432309999906522, -34.642273999745271 ], [ -58.432353000090814, -34.641738000208477 ], [ -58.432395000229064, -34.641179999657197 ], [ -58.432438000413356, -34.64064400012046 ], [ -58.432502999813551, -34.63952799991722 ], [ -58.432545999997842, -34.63888399989662 ], [ -58.432610000251259, -34.638218999806952 ], [ -58.432888999627608, -34.637661000154992 ], [ -58.433188999972344, -34.637102999603712 ], [ -58.433640000085916, -34.636287999791307 ], [ -58.434454999898264, -34.635407999679387 ], [ -58.434154999553527, -34.635171999588067 ], [ -58.432545999997842, -34.634914000280844 ], [ -58.432738999904871, -34.63399200003073 ], [ -58.432803000158287, -34.633391000194479 ], [ -58.432909999696676, -34.632490000013433 ], [ -58.433018000180539, -34.631460000178834 ], [ -58.433275000340927, -34.630408000229011 ], [ -58.433511000432304, -34.629335000210062 ], [ -58.433811999923819, -34.628005000030669 ], [ -58.434112000268556, -34.626760000173817 ], [ -58.434327000290807, -34.625858999992829 ], [ -58.434498000082613, -34.624443000344172 ], [ -58.434648999851447, -34.623026999796139 ], [ -58.435163000172281, -34.621266999572356 ], [ -58.435484999732921, -34.620408999575602 ], [ -58.435914999777367, -34.619357999671877 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.437095000234024, -34.617082999980425 ], [ -58.437331000325344, -34.616631999866854 ], [ -58.437416999794664, -34.616461000075049 ], [ -58.437609999701692, -34.615923999592837 ], [ -58.437760000323692, -34.614615000381946 ], [ -58.437823999677789, -34.614078999945832 ], [ -58.438404000344292, -34.612813000019912 ], [ -58.439304999626017, -34.610816999704753 ], [ -58.440120000337686, -34.608800000219787 ], [ -58.440120000337686, -34.607728000246993 ], [ -58.440120000337686, -34.607062000111171 ], [ -58.440120000337686, -34.606462000321017 ], [ -58.440120000337686, -34.605860999585445 ], [ -58.440292000175646, -34.605903999769737 ], [ -58.441042999734634, -34.605174000279874 ], [ -58.441879999662206, -34.604358999568149 ], [ -58.442695000373931, -34.603542999709646 ], [ -58.443402999748571, -34.602835000334949 ], [ -58.443983000415074, -34.602255999714544 ], [ -58.444690999789771, -34.601355000432875 ], [ -58.445763999808719, -34.600560999790275 ], [ -58.446729000243124, -34.599701999747424 ], [ -58.447672999709141, -34.598822999681659 ], [ -58.448767999843255, -34.597857000100419 ], [ -58.449432999932981, -34.597235000195042 ], [ -58.450204999561038, -34.596570000105373 ], [ -58.450978000134569, -34.595839999716191 ], [ -58.451407000132917, -34.595474999971202 ], [ -58.451706999578334, -34.595195999695591 ], [ -58.450592000320512, -34.594358999767962 ], [ -58.449540000370689, -34.593457999586974 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45102100031886, -34.588673000158792 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.451728999693557, -34.581698999609102 ], [ -58.451535999786529, -34.581399000163685 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.450570000205289, -34.579853999962097 ], [ -58.449990999584941, -34.57890999959676 ], [ -58.449410999817758, -34.577966000130743 ], [ -58.448896000350089, -34.576999999650241 ], [ -58.448380999983101, -34.576035000115098 ], [ -58.447738000008655, -34.574811000327372 ], [ -58.447420999779297, -34.574221000099044 ], [ -58.447029999734639, -34.57360999980159 ], [ -58.446578999621067, -34.572837000127436 ], [ -58.446343000429067, -34.572408000129087 ], [ -58.445828000062136, -34.571593000316682 ], [ -58.445376999948564, -34.570819999743151 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.443725000208531, -34.568739000004825 ], [ -58.442995999865445, -34.567988000445837 ], [ -58.441514999917274, -34.56648600042854 ], [ -58.440356000429063, -34.5653700002253 ], [ -58.439561999786406, -34.564512000228603 ], [ -58.438811000227417, -34.563675000300975 ], [ -58.438210000391166, -34.562923999842667 ], [ -58.438790000158349, -34.562774000119987 ], [ -58.439325999695086, -34.562559000097735 ], [ -58.441579000170691, -34.562173000283678 ], [ -58.442481000397834, -34.561915000077136 ], [ -58.443166999657251, -34.561786999570359 ], [ -58.443574999586531, -34.561635999801524 ], [ -58.444176000322102, -34.561442999894496 ], [ -58.44477700015841, -34.561206999803176 ], [ -58.446406999783164, -34.560435000175062 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.450613000389637, -34.558417999790834 ], [ -58.451148999926374, -34.558761000319862 ], [ -58.452007999969169, -34.557795999885457 ], [ -58.450891999765929, -34.557129999749634 ], [ -58.449712000208592, -34.556464999659966 ], [ -58.448917999565992, -34.557387999956177 ], [ -58.448080999638364, -34.558332000321514 ], [ -58.446901000081027, -34.557645000116622 ], [ -58.445828000062136, -34.557002000142177 ], [ -58.444711999858839, -34.556336000006354 ], [ -58.443617999770822, -34.55564999984756 ], [ -58.442481000397834, -34.55500599982696 ], [ -58.441365000194537, -34.554318999622069 ], [ -58.440248999991297, -34.55365400043172 ], [ -58.439111999718989, -34.55301000041112 ], [ -58.437974000299846, -34.552324000252383 ], [ -58.436750999658841, -34.551550999678852 ], [ -58.437545000301498, -34.550607000212835 ], [ -58.438488999767458, -34.54955600030911 ], [ -58.439198000087572, -34.548934000403733 ], [ -58.440120000337686, -34.548419000036802 ], [ -58.440785000427411, -34.548160999830259 ], [ -58.441643999570886, -34.547924999738882 ], [ -58.442180000006942, -34.547752999900979 ], [ -58.443831999746976, -34.547538999924882 ], [ -58.444067999838296, -34.547495999740534 ], [ -58.447309000010307, -34.54700200034199 ], [ -58.448080999638364, -34.546915999973351 ], [ -58.448811000027604, -34.546788000365893 ], [ -58.449582999655661, -34.546658999812962 ], [ -58.450356000229192, -34.546573000343642 ], [ -58.451063999603832, -34.546465999905934 ], [ -58.451706999578334, -34.546380000436613 ], [ -58.45213699962278, -34.546294000068031 ], [ -58.451246999949035, -34.54516200002621 ], [ -58.450719999928026, -34.544491999705997 ], [ -58.450462999767581, -34.544298999798968 ], [ -58.449690000093369, -34.543396999571826 ], [ -58.449582999655661, -34.543290000033437 ], [ -58.449304000279369, -34.543161000379826 ], [ -58.449111000372341, -34.543118000195534 ], [ -58.4490650000497, -34.54312499961901 ], [ -58.448660000258769, -34.543182999595729 ], [ -58.447180000356695, -34.5437840003313 ], [ -58.445332999718119, -34.544760000373685 ], [ -58.444541000067034, -34.545177999864734 ], [ -58.441055000287975, -34.547074000064981 ], [ -58.437290000233304, -34.549122000080217 ], [ -58.437290000233304, -34.549122000080217 ], [ -58.437303999979576, -34.54873900040451 ], [ -58.437309000210178, -34.548589999828607 ], [ -58.437394999679441, -34.548181999899327 ], [ -58.437481000048081, -34.547924999738882 ], [ -58.437609999701692, -34.547688999647562 ], [ -58.437996000415069, -34.547109999926533 ], [ -58.438425000413417, -34.546380000436613 ], [ -58.438575000136098, -34.545908000253974 ], [ -58.438575000136098, -34.545413999956111 ], [ -58.438575000136098, -34.545328999633568 ], [ -58.438660999605418, -34.545243000164305 ], [ -58.438811000227417, -34.545199999979957 ], [ -58.438875999627612, -34.545221000049082 ], [ -58.438961999996252, -34.545286000348597 ], [ -58.4393909999946, -34.545392999886985 ], [ -58.441129000103217, -34.545413999956111 ], [ -58.441085999918926, -34.5437840003313 ], [ -58.440979000380537, -34.54331200014866 ], [ -58.440957000265314, -34.543246999849146 ], [ -58.441042999734634, -34.543097000126409 ], [ -58.441322000010246, -34.543097000126409 ], [ -58.441601000285914, -34.5431400003107 ], [ -58.442522999636708, -34.542861000035089 ], [ -58.443359999564279, -34.542409999921517 ], [ -58.445076999603828, -34.54155199992482 ], [ -58.445678000339399, -34.541187000179889 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 361.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.790025414368813, -34.343376025821208 ], [ -58.790765660591546, -34.342375322594158 ], [ -58.791599123005284, -34.342671421083253 ], [ -58.793107031977513, -34.343811948596787 ], [ -58.794527208064089, -34.345193741545891 ], [ -58.795382603699245, -34.345939471073969 ], [ -58.797995398700216, -34.34858790755974 ], [ -58.798774028060421, -34.349328153782473 ], [ -58.797507384523747, -34.35012871636409 ], [ -58.799116734645018, -34.35148309278641 ], [ -58.796775363259052, -34.35313905100319 ], [ -58.795486786500966, -34.353939613584792 ], [ -58.797011145389256, -34.355296731659806 ], [ -58.785578453727091, -34.364201619553988 ], [ -58.778976554081403, -34.367579335651783 ], [ -58.775664637647857, -34.36900499504371 ], [ -58.771343793029253, -34.370364854771395 ], [ -58.764237429291036, -34.372081129347066 ], [ -58.758666391051818, -34.374252518267078 ], [ -58.755749272603722, -34.375700110880416 ], [ -58.75153809409219, -34.380130621606092 ], [ -58.751011696778242, -34.381007950462667 ], [ -58.762197639699508, -34.386513189037636 ], [ -58.76338203365588, -34.387697582994008 ], [ -58.764478694726591, -34.388443312522092 ], [ -58.765180557811846, -34.389232908493007 ], [ -58.765268290697499, -34.390373436006549 ], [ -58.765268290697499, -34.3913823641916 ], [ -58.765531489354473, -34.392873823247768 ], [ -58.765575355797303, -34.393795018547166 ], [ -58.767154547739125, -34.397545599409 ], [ -58.768931138673679, -34.404136532443985 ], [ -58.769611068537522, -34.405304476484289 ], [ -58.771415075998831, -34.408413510619759 ], [ -58.771168327257918, -34.408331261039464 ], [ -58.769073704612858, -34.410990664135937 ], [ -58.766030470141636, -34.414982510433326 ], [ -58.768585690436396, -34.4162847954548 ], [ -58.754156372398498, -34.434873200603342 ], [ -58.750230325765358, -34.432811477790402 ], [ -58.749912294054852, -34.432921143897474 ], [ -58.734092958109819, -34.424389120767337 ], [ -58.735107369600243, -34.423166343673493 ], [ -58.735101886294892, -34.422897661711168 ], [ -58.734378089988219, -34.423215693421675 ], [ -58.733484311215591, -34.421658434701264 ], [ -58.734273907186505, -34.421411685960351 ], [ -58.734312290323977, -34.421323953074697 ], [ -58.724420407466155, -34.416021596797805 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 360.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.097708413332121, -34.291226772208688 ], [ -59.094075575979183, -34.294033964708689 ], [ -59.094983785317417, -34.294859609561634 ], [ -59.093621471310065, -34.298822704855752 ], [ -59.092259157302706, -34.301423486142511 ], [ -59.091557359177706, -34.303817856216043 ], [ -59.089699658258588, -34.306872742171926 ], [ -59.085241176052712, -34.311744046804279 ], [ -59.08003961347918, -34.317482278532218 ], [ -59.078347041530648, -34.320702293458687 ], [ -59.076262288276972, -34.325160775664571 ], [ -59.074033047174034, -34.3300114391756 ], [ -59.072773938773295, -34.332736067190304 ], [ -59.071865729435061, -34.334407998017511 ], [ -59.071143290188736, -34.335729029782215 ], [ -59.070317645335798, -34.337153267153539 ], [ -59.069615847210798, -34.338288528826332 ], [ -59.066044933221825, -34.343324962429278 ], [ -59.064971594913004, -34.345347792318982 ], [ -59.064971594913004, -34.347370622208686 ], [ -59.065343135096825, -34.347989855848397 ], [ -59.064889030427707, -34.349682427796921 ], [ -59.063856974361535, -34.352365773568984 ], [ -59.062866200538004, -34.354017063274867 ], [ -59.062040555685059, -34.355544506252805 ], [ -59.061380039802707, -34.358310416510157 ], [ -59.060306701493886, -34.360044270701337 ], [ -59.058531565060065, -34.36239735853222 ], [ -59.056550017413002, -34.364709164120455 ], [ -59.053742824913002, -34.368300719230746 ], [ -59.051637430538001, -34.370695089304277 ], [ -59.04994485858947, -34.372594072466043 ], [ -59.043422264251241, -34.380313851841038 ], [ -59.03999583811153, -34.384442076105749 ], [ -59.037312492339474, -34.387744655517508 ], [ -59.035248380207122, -34.389767485407219 ], [ -59.034092477413004, -34.39117108165722 ], [ -59.03285401013359, -34.391625186326337 ], [ -59.030294511089473, -34.391418775113102 ], [ -59.028312963442417, -34.391955444267509 ], [ -59.026166286824768, -34.393028782576337 ], [ -59.024308585905651, -34.394184685370455 ], [ -59.023606787780651, -34.394886483495455 ], [ -59.02290498965565, -34.395629563863096 ], [ -59.021914215832119, -34.395216741436627 ], [ -59.02079959528065, -34.393771862943979 ], [ -59.018776765390946, -34.390923388201337 ], [ -59.017414451383594, -34.389272098495454 ], [ -59.016464959802711, -34.387207986363101 ], [ -59.015309057008594, -34.384978745260156 ], [ -59.014318283185062, -34.383451302282218 ], [ -59.006846197265943, -34.366773276252808 ], [ -58.9976815393983, -34.344439582980748 ], [ -58.991200227302706, -34.329990798054283 ], [ -58.988310470317415, -34.331022854120462 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 359.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.10447248769983, -34.285388602570976 ], [ -59.096239794117345, -34.29257210246368 ], [ -59.094242240134491, -34.29401254445402 ], [ -59.09514287140999, -34.294928309301334 ], [ -59.093918936599685, -34.297656466239083 ], [ -59.093595633064901, -34.298476803795523 ], [ -59.09331851574936, -34.299449751906728 ], [ -59.09271809489902, -34.300193763446259 ], [ -59.092348605144949, -34.301109460909139 ], [ -59.091956022281288, -34.302101455227962 ], [ -59.091678904965747, -34.302864519807969 ], [ -59.09130941521169, -34.303761111830333 ], [ -59.091032297896156, -34.304600465899583 ], [ -59.090639715032481, -34.305439811579603 ], [ -59.090154759730275, -34.306279148870352 ], [ -59.089739083756953, -34.306889570721538 ], [ -59.089161756016274, -34.30751906360797 ], [ -59.088607521385185, -34.308129476445636 ], [ -59.087937821205976, -34.308739884845828 ], [ -59.087314307245997, -34.309331213751832 ], [ -59.086898631272703, -34.309808088868358 ], [ -59.07867748424502, -34.32026051101198 ], [ -59.077384270105831, -34.3230069169499 ], [ -59.075860124870374, -34.325524376771817 ], [ -59.074844028046734, -34.327736627601254 ], [ -59.074151234757878, -34.32918600169171 ], [ -59.073412255249771, -34.330826052703635 ], [ -59.072673275741657, -34.332542350826216 ], [ -59.071380061602497, -34.335288354787281 ], [ -59.070040661244057, -34.337309661374555 ], [ -59.068239398693045, -34.339902964523667 ], [ -59.066899998334605, -34.342305512058381 ], [ -59.065606784195417, -34.343907172175939 ], [ -59.064452128714017, -34.345890137555742 ], [ -59.064590687371776, -34.347072267682229 ], [ -59.065191108222116, -34.348025586289232 ], [ -59.065606784195417, -34.349283950252889 ], [ -59.065144922002851, -34.350618558060269 ], [ -59.063805521644412, -34.352181928755606 ], [ -59.06274323860152, -34.354355346889214 ], [ -59.062050445312657, -34.356338065154169 ], [ -59.061311465804557, -34.358091969138457 ], [ -59.060249182761652, -34.360150853069129 ], [ -59.059417830815029, -34.361637793339604 ], [ -59.058447920210654, -34.362781575594028 ], [ -59.057062333632963, -34.364497219702841 ], [ -59.055676747055266, -34.366060331529951 ], [ -59.054383532916077, -34.36747091960968 ], [ -59.053367436092437, -34.3688814839401 ], [ -59.052536084145828, -34.36979643188797 ], [ -59.032214147672931, -34.392285759638604 ], [ -59.045839082353616, -34.391180493152518 ], [ -59.04944160745562, -34.391066154407191 ], [ -59.053136504996154, -34.390494458337862 ], [ -59.055722933274502, -34.390456345127731 ], [ -59.058678851306937, -34.390456345127731 ], [ -59.062373748847463, -34.390456345127731 ], [ -59.065791529072449, -34.389884644893591 ], [ -59.067869908938988, -34.389770304378224 ], [ -59.069209309297435, -34.389617850114796 ], [ -59.071102944286949, -34.388741232711922 ], [ -59.0723037859876, -34.388321977665555 ], [ -59.073781745003821, -34.387521575837397 ], [ -59.074797841827468, -34.387064199928325 ], [ -59.076091055966657, -34.386606821520488 ], [ -59.077384270105831, -34.385996979756456 ], [ -59.078862229122052, -34.385044093107105 ], [ -59.080155443261226, -34.384548587763462 ], [ -59.080802050330817, -34.384358008004305 ], [ -59.086298210422363, -34.381804197379282 ], [ -59.089577431989575, -34.380965615709378 ], [ -59.093226143310844, -34.380317615030741 ], [ -59.098168068771294, -34.37951713668118 ], [ -59.103802787520578, -34.378449820312483 ], [ -59.108652340542527, -34.377496847774289 ], [ -59.111469699917173, -34.377496847774289 ], [ -59.114056128195521, -34.376848820254253 ], [ -59.116134508062075, -34.375972069157882 ], [ -59.118813308778961, -34.374447262781594 ], [ -59.120291267795167, -34.373684849183675 ], [ -59.12186159924989, -34.373113034431015 ], [ -59.122600578757975, -34.3729605498377 ], [ -59.123004708176509, -34.372831890746191 ], [ -59.123368424653151, -34.372803299810116 ], [ -59.123547396252782, -34.372789004338422 ], [ -59.12359935574942, -34.372822360435237 ], [ -59.123235639272707, -34.375076248775464 ], [ -59.123466570368997, -34.375343089891331 ], [ -59.123455023814181, -34.375609930157047 ], [ -59.12327027893717, -34.375838649708157 ], [ -59.123120173724573, -34.376410445853324 ], [ -59.123085534060138, -34.376886939658931 ], [ -59.123039347840859, -34.377201424085563 ], [ -59.123039347840859, -34.377696972906804 ], [ -59.123039347840859, -34.378135340573671 ], [ -59.122946975402364, -34.378811947033675 ], [ -59.122912335737929, -34.379336075040982 ], [ -59.122970068511982, -34.379917376812415 ], [ -59.122935428847548, -34.380641615996858 ], [ -59.122877696073473, -34.381051380129307 ], [ -59.122900789183106, -34.381632669993628 ], [ -59.122970068511982, -34.382137721845503 ], [ -59.122843056409039, -34.382547478656818 ], [ -59.122843056409039, -34.382833354314428 ], [ -59.12369750146528, -34.395515722013961 ], [ -59.128962730460529, -34.419064953114933 ], [ -59.12900891667978, -34.420684195437445 ], [ -59.128639426925723, -34.421884319513538 ], [ -59.120787769652104, -34.432875130677708 ], [ -59.097763939352724, -34.464239564617692 ], [ -59.084185190891318, -34.482287340142705 ], [ -59.083261466506187, -34.484381238568808 ], [ -59.083538583821721, -34.486855778035782 ], [ -59.084693239303135, -34.48883535675197 ], [ -59.084877984180167, -34.490662618479057 ], [ -59.084185190891318, -34.492908572835312 ], [ -59.084139004672046, -34.494697679628921 ], [ -59.084970356618669, -34.496562877754087 ], [ -59.087048736485215, -34.498504162100623 ], [ -59.088665254159196, -34.49968413637999 ], [ -59.090004654517635, -34.500787968166854 ], [ -59.092406337918959, -34.504403866483614 ], [ -59.092637269015242, -34.50741065194731 ], [ -59.094022855592939, -34.509237506594772 ], [ -59.097163518502384, -34.511026262967043 ], [ -59.10108934713918, -34.513081382463362 ], [ -59.105707969064845, -34.515288676576688 ], [ -59.109264307947576, -34.516582580422465 ], [ -59.111019384279345, -34.517838409056075 ], [ -59.112127853541502, -34.519322545762606 ], [ -59.112959205488103, -34.521796048183802 ], [ -59.113698184996217, -34.523698692374978 ], [ -59.114206233408048, -34.525981808035496 ], [ -59.114483350723582, -34.527503850372604 ], [ -59.115268516450939, -34.529216114752344 ], [ -59.120071883253608, -34.539983548244379 ], [ -59.121826959585363, -34.543103180427821 ], [ -59.123120173724537, -34.545195551135748 ], [ -59.123489663478594, -34.546793326072248 ], [ -59.125348658803688, -34.55036918739232 ], [ -59.125752788222179, -34.550749589128046 ], [ -59.125417938132557, -34.551120479145965 ], [ -59.12544103124219, -34.552242649131948 ], [ -59.12551031057108, -34.553022453260098 ], [ -59.125637322674038, -34.553849798429745 ], [ -59.125695055448098, -34.554876836160034 ], [ -59.12579897444143, -34.555628087211559 ], [ -59.125891346879939, -34.55615110608997 ], [ -59.12630702285324, -34.556483934573286 ], [ -59.126780431600636, -34.556740687064881 ], [ -59.127750342205019, -34.55714007825452 ], [ -59.128327669945726, -34.557491921285298 ], [ -59.171107655532083, -34.579550457912141 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 357.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.795430557999907, -34.350207270999931 ], [ -58.795881333999944, -34.350656637999919 ], [ -58.79653669399994, -34.351328928999919 ], [ -58.795261009999933, -34.352183897999907 ], [ -58.795995013999914, -34.352909750999913 ], [ -58.796759323999936, -34.353635351999912 ], [ -58.797325975999911, -34.354176701999904 ], [ -58.79712442999994, -34.354449494999926 ], [ -58.796481393999954, -34.355299174999914 ], [ -58.796891277999919, -34.355702409999935 ], [ -58.797226631999933, -34.356032680999931 ], [ -58.797383073999924, -34.35619016499993 ], [ -58.797850514999936, -34.356774947999952 ], [ -58.797880040999928, -34.356821175999926 ], [ -58.79814456899993, -34.35714261499993 ], [ -58.798396013999934, -34.357448155999919 ], [ -58.798463031999916, -34.357517308999945 ], [ -58.799126569999942, -34.358379305999904 ], [ -58.799438283999905, -34.358763994999947 ], [ -58.799772076999943, -34.359187230999908 ], [ -58.799913044999926, -34.359106114999918 ], [ -58.800441403999912, -34.358802085999912 ], [ -58.80096421099995, -34.358445421999932 ], [ -58.801246053999932, -34.358253144999935 ], [ -58.801044513999955, -34.358166024999946 ], [ -58.799786987999937, -34.357622429999935 ], [ -58.799678414999903, -34.357697945999917 ], [ -58.799499547999915, -34.35782235399995 ], [ -58.799684029999923, -34.357036597999922 ], [ -58.799772875999906, -34.356658180999943 ], [ -58.799796776999926, -34.356588267999939 ], [ -58.800261141999954, -34.355718473999957 ], [ -58.80059848399992, -34.355086603999951 ], [ -58.801745989999915, -34.354197873999908 ], [ -58.801863681999919, -34.354095600999926 ], [ -58.802794321999954, -34.353335771999923 ], [ -58.803908905999947, -34.352434092999943 ], [ -58.804383426999948, -34.352048250999928 ], [ -58.805137527999932, -34.351441828999953 ], [ -58.805773882999915, -34.350918273999923 ], [ -58.805921024999918, -34.350800136999908 ], [ -58.806185880999919, -34.350587489999953 ], [ -58.806471263999924, -34.350347882999927 ], [ -58.807245197999919, -34.349698091999926 ], [ -58.807796954999901, -34.349245373999906 ], [ -58.808050761999937, -34.349036736999949 ], [ -58.808326655999906, -34.34881620099992 ], [ -58.809142818999931, -34.347987816999932 ], [ -58.809856034999939, -34.347261536999952 ], [ -58.81048097799993, -34.346610020999947 ], [ -58.811311842999942, -34.345765941999957 ], [ -58.811503021999954, -34.345573548999937 ], [ -58.812764007999931, -34.344285914999944 ], [ -58.814355995999904, -34.342707241999904 ], [ -58.816304488999947, -34.340728555999931 ], [ -58.816422115999899, -34.340602994999927 ], [ -58.817716946999951, -34.339555627999914 ], [ -58.817875170999912, -34.339445127999909 ], [ -58.818574325999919, -34.338967428999922 ], [ -58.820293424999932, -34.338027755999917 ], [ -58.822130558999902, -34.337110017999919 ], [ -58.82262757399991, -34.336859771999912 ], [ -58.822837430999925, -34.33675644099992 ], [ -58.823907542999905, -34.336229198999945 ], [ -58.825668658999916, -34.33536149899993 ], [ -58.825885877999951, -34.335254201999931 ], [ -58.831713908999916, -34.332345968999903 ], [ -58.832093081999915, -34.332143653999935 ], [ -58.833955273999948, -34.331185984999934 ], [ -58.8347970129999, -34.330759240999953 ], [ -58.836866220999923, -34.329723311999942 ], [ -58.836972490999926, -34.329668462999905 ], [ -58.837210481999932, -34.329545628999938 ], [ -58.837610268999924, -34.329390156999921 ], [ -58.838198843999919, -34.329212473999917 ], [ -58.838759566999954, -34.329069743999924 ], [ -58.838809628999911, -34.32905700099991 ], [ -58.839010996999946, -34.329030886999931 ], [ -58.83912812199992, -34.329007461999936 ], [ -58.839208791999908, -34.328923863999933 ], [ -58.839254861999905, -34.328987088999952 ], [ -58.839422861999935, -34.329024384999911 ], [ -58.839817115999949, -34.329111909999938 ], [ -58.840804242999923, -34.32895396999993 ], [ -58.841633429999945, -34.328677573999926 ], [ -58.8421664789999, -34.328420920999918 ], [ -58.842230892999908, -34.328303930999937 ], [ -58.842245448999904, -34.328223495999907 ], [ -58.842174672999931, -34.328141517999939 ], [ -58.842049738999947, -34.328116530999921 ], [ -58.841944610999917, -34.328141731999949 ], [ -58.841850597999951, -34.328164267999909 ], [ -58.841238578999935, -34.328480148999915 ], [ -58.841066671999954, -34.328526705999934 ], [ -58.840835989999903, -34.328435794999905 ], [ -58.840833374999931, -34.328434763999951 ], [ -58.840710636999916, -34.328073687999904 ], [ -58.840587074999917, -34.327710188999902 ], [ -58.840590776999932, -34.327703401999941 ], [ -58.840705529999923, -34.327493020999952 ], [ -58.841289499999903, -34.327332307999939 ], [ -58.841519292999919, -34.327269066999918 ], [ -58.841808027999946, -34.327146909999954 ], [ -58.841846811999915, -34.327147299999922 ], [ -58.841896310999914, -34.327147796999952 ], [ -58.84197224299993, -34.327168378999943 ], [ -58.84206288799993, -34.32717000699995 ], [ -58.842240570999934, -34.327125585999909 ], [ -58.843594211999914, -34.326814001999935 ], [ -58.844725240999935, -34.326524870999947 ], [ -58.845289702999935, -34.326321406999909 ], [ -58.846703479999917, -34.325811801999919 ], [ -58.847587839999903, -34.325486868999917 ], [ -58.848102611999934, -34.325307087999931 ], [ -58.848445960999925, -34.325180864999936 ], [ -58.849021127999947, -34.324986276999937 ], [ -58.849248170999942, -34.324909164999951 ], [ -58.850027646999933, -34.324648607999904 ], [ -58.850655858999914, -34.324428015999956 ], [ -58.85090553799995, -34.324351203999925 ], [ -58.851870554999948, -34.324012985999957 ], [ -58.852422923999939, -34.323837170999923 ], [ -58.852865754999925, -34.323675167999909 ], [ -58.854764509999939, -34.323023847999934 ], [ -58.858591967999928, -34.320888276999938 ], [ -58.86062710899995, -34.320012169999927 ], [ -58.862052521999942, -34.319655484999942 ], [ -58.863175025999908, -34.319157366999946 ], [ -58.864365938999924, -34.318561171999932 ], [ -58.865522170999952, -34.317911832999926 ], [ -58.866646769999932, -34.31704284999995 ], [ -58.868210248999901, -34.315937485999939 ], [ -58.868662826999923, -34.315356783999903 ], [ -58.869132835999949, -34.314775178999923 ], [ -58.869524042999899, -34.314291084999923 ], [ -58.882171541999924, -34.298640625999951 ], [ -58.883669528999917, -34.296667225999954 ], [ -58.886028323999938, -34.293100036999931 ], [ -58.887487746999909, -34.291056845999947 ], [ -58.887988119999932, -34.290347983999936 ], [ -58.889253160999942, -34.288539465999918 ], [ -58.889657684999918, -34.287610127999926 ], [ -58.892271165999944, -34.281606014999909 ], [ -58.892576568999914, -34.281643131999942 ], [ -58.893057570999929, -34.281701588999908 ], [ -58.893737933999944, -34.282011141999931 ], [ -58.895237327999951, -34.282245490999912 ], [ -58.897512817999939, -34.28260114099993 ], [ -58.902001369999937, -34.283282945999929 ], [ -58.906092202999901, -34.285271545999933 ], [ -58.909202939999943, -34.286486011999955 ], [ -58.9149982859999, -34.28972458699991 ], [ -58.919643085999951, -34.293644968999956 ], [ -58.923861756999941, -34.297309672999916 ], [ -58.927356009999926, -34.301400504999947 ], [ -58.930083230999912, -34.303019792999919 ], [ -58.936943898999914, -34.305448724999906 ], [ -58.947767559999932, -34.309539557999926 ], [ -58.95360551899995, -34.311755424999944 ], [ -58.960721862999947, -34.315292290999935 ], [ -58.961147990999905, -34.315505354999914 ], [ -58.964045663999912, -34.315547967999919 ], [ -58.973377875999915, -34.320831959999907 ], [ -58.975210227999924, -34.321471152999948 ], [ -58.976318161999927, -34.321939893999911 ], [ -58.984627665999938, -34.326840369999957 ], [ -58.986623970999915, -34.327946016999931 ], [ -58.987397499999929, -34.328374432999908 ], [ -58.987848908999922, -34.329552216999957 ], [ -58.987974649999899, -34.329880290999938 ], [ -58.984551924999948, -34.33119159599994 ], [ -58.983844737999902, -34.331462530999943 ], [ -58.98372405799995, -34.331690479999907 ], [ -58.983877399999926, -34.33209716999994 ], [ -58.984032460999913, -34.332508417999918 ], [ -58.984260410999923, -34.332602278999957 ], [ -58.987891248999915, -34.331227365999951 ], [ -58.989941286999908, -34.337762167999927 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 355.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.399715000446861, -34.641415999748574 ], [ -58.400939000234644, -34.641587999586477 ], [ -58.402655000228037, -34.641866999862089 ], [ -58.402525999675106, -34.642425000413368 ], [ -58.402375999952369, -34.643089999603774 ], [ -58.404414999552557, -34.643368999879385 ], [ -58.404543000059391, -34.642703999789717 ], [ -58.404671999713003, -34.642080999838242 ], [ -58.404886999735197, -34.641094000187934 ], [ -58.405037000357254, -34.64008599956918 ], [ -58.405122999826517, -34.63961400028586 ], [ -58.405402000102185, -34.638305000175592 ], [ -58.404973000103837, -34.638218999806952 ], [ -58.403535000339957, -34.637960999600409 ], [ -58.402740999697357, -34.637810999877672 ], [ -58.401840000415632, -34.637640000085867 ], [ -58.400102000307015, -34.637275000340935 ], [ -58.398470999736787, -34.636973999950101 ], [ -58.397032999972907, -34.636694999674432 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.397869999900536, -34.634485000282496 ], [ -58.398298999898884, -34.633369000079256 ], [ -58.398727999897233, -34.632231999806891 ], [ -58.39729100017945, -34.631823999877668 ], [ -58.395982000069182, -34.631566999717222 ], [ -58.39626100034485, -34.630343999975594 ], [ -58.396539999721142, -34.629184999588006 ], [ -58.396840000065936, -34.628069000284086 ], [ -58.398600000289719, -34.628390999844726 ], [ -58.399909000399987, -34.628540999567406 ], [ -58.400102000307015, -34.627296999756709 ], [ -58.400186999730238, -34.626180999553469 ], [ -58.400208999845404, -34.625837999923704 ], [ -58.400229999914529, -34.625237000087452 ], [ -58.400252000029752, -34.624872000342521 ], [ -58.400423999867655, -34.623542000163127 ], [ -58.400616999774684, -34.622210999937636 ], [ -58.401368000232992, -34.622297000306276 ], [ -58.402483000390134, -34.622425999959887 ], [ -58.402500000274756, -34.622359999614275 ], [ -58.402804999950774, -34.621138999964842 ], [ -58.403191999810929, -34.619829999854574 ], [ -58.403535000339957, -34.618843000204265 ], [ -58.404136000176209, -34.617039999796134 ], [ -58.404565000174557, -34.615817000054449 ], [ -58.404907999804323, -34.614636999597792 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405959999754145, -34.610560000443627 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406022999961465, -34.6089000003347 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406145000191543, -34.607341000386839 ], [ -58.40606199996131, -34.606896999696744 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405198999734012, -34.603394000033006 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.40314899962658, -34.596570000105373 ], [ -58.402891000319357, -34.595818999647065 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.401860999585438, -34.593351000048585 ], [ -58.401495999840506, -34.592535000190082 ], [ -58.401066999842101, -34.591590999824746 ], [ -58.400419999683209, -34.590276000337099 ], [ -58.400380999683364, -34.590197000291312 ], [ -58.399929999569792, -34.589187999626461 ], [ -58.399844000100472, -34.589102000157141 ], [ -58.398750000012456, -34.588372999814055 ], [ -58.398019999623216, -34.587879000415512 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.419670999816731, -34.58137800009456 ], [ -58.42016500011465, -34.581334999910268 ], [ -58.420250000437136, -34.581034000418754 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.42810900042997, -34.577563999578899 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.430250000237265, -34.575712999655138 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.432523999882676, -34.57360999980159 ], [ -58.43338299992547, -34.572708999620602 ], [ -58.433511000432304, -34.57257999996699 ], [ -58.434091000199487, -34.571979000130682 ], [ -58.434927000080961, -34.571099000018819 ], [ -58.435720999824241, -34.570241000022065 ], [ -58.436557999751869, -34.569317999725854 ], [ -58.437008999865384, -34.568782000189117 ], [ -58.437373999610372, -34.568287999891254 ], [ -58.438102999953458, -34.567301000240946 ], [ -58.439325999695086, -34.566207000152872 ], [ -58.439434000178949, -34.566120999784289 ], [ -58.440356000429063, -34.5653700002253 ], [ -58.441256999710731, -34.564597999697867 ], [ -58.442609000005291, -34.563653000185752 ], [ -58.443638999839948, -34.562838000373347 ], [ -58.44460500032045, -34.562043999730747 ], [ -58.444218999607131, -34.561722000170107 ], [ -58.444197000391227, -34.561635999801524 ], [ -58.444176000322102, -34.561442999894496 ], [ -58.44477700015841, -34.561206999803176 ], [ -58.446406999783164, -34.560435000175062 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.449153999657312, -34.55895400022689 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 354.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.523097000226358, -34.731860000438644 ], [ -58.523097000226358, -34.731945999907907 ], [ -58.523182999695621, -34.732032000276547 ], [ -58.523312000248552, -34.732074999561519 ], [ -58.523375999602649, -34.732074999561519 ], [ -58.523548000339929, -34.731924999838839 ], [ -58.523548000339929, -34.731860000438644 ], [ -58.523729999739658, -34.731593999863151 ], [ -58.523784000431249, -34.731516999909559 ], [ -58.524578000174529, -34.730916000073307 ], [ -58.526573000443591, -34.729392999986942 ], [ -58.527259999749162, -34.728898999689022 ], [ -58.527881999654539, -34.728447999575451 ], [ -58.528096999676734, -34.728276999783645 ], [ -58.528483000390111, -34.727976000292131 ], [ -58.529084000226362, -34.727547000293782 ], [ -58.529341000386808, -34.727354000386754 ], [ -58.529899000038768, -34.726925000388405 ], [ -58.530456999690728, -34.726496000390057 ], [ -58.531293999618356, -34.725894999654486 ], [ -58.531852000169636, -34.725465999656137 ], [ -58.532623999797693, -34.72484399975076 ], [ -58.532795999635653, -34.724736000166217 ], [ -58.534250000137376, -34.7236709996169 ], [ -58.534641000181978, -34.723383999871658 ], [ -58.534641000181978, -34.723383999871658 ], [ -58.534318999722018, -34.722998000057601 ], [ -58.533911999838892, -34.722482999690612 ], [ -58.533182000348972, -34.721732000131681 ], [ -58.533418000440349, -34.721539000224652 ], [ -58.532989000442001, -34.721002999788539 ], [ -58.532580999613401, -34.720530999605899 ], [ -58.532281000167984, -34.720100999561453 ], [ -58.531916000423053, -34.719693999678327 ], [ -58.530456999690728, -34.718040999892196 ], [ -58.529470000040419, -34.716946999804179 ], [ -58.528718999582111, -34.717505000355459 ], [ -58.528074999561568, -34.717955999569654 ], [ -58.527495999840482, -34.718405999637127 ], [ -58.52644399989066, -34.717484000286333 ], [ -58.525757999731866, -34.716840000265734 ], [ -58.524814000265849, -34.715981000222939 ], [ -58.523847999785346, -34.715102000157117 ], [ -58.522946999604301, -34.714286000298614 ], [ -58.523654999878318, -34.713706999678266 ], [ -58.523955000223054, -34.713470999586946 ], [ -58.524116999599812, -34.713350000302228 ], [ -58.524384000221403, -34.713149000026306 ], [ -58.524684999712917, -34.71289199986586 ], [ -58.524705999782043, -34.712741000097026 ], [ -58.524662999597695, -34.712697999912734 ], [ -58.524534999990237, -34.712633999659317 ], [ -58.524406000336626, -34.71265599977454 ], [ -58.523032999972941, -34.713727999747334 ], [ -58.522668000228009, -34.713643000324168 ], [ -58.521852000369506, -34.713470999586946 ], [ -58.519492000355513, -34.712977000188346 ], [ -58.518311999898856, -34.712720000027957 ], [ -58.517325000248547, -34.71248399993658 ], [ -58.516231000160474, -34.712268999914386 ], [ -58.514922000050205, -34.711968999569649 ], [ -58.514041999938286, -34.711754000446717 ], [ -58.513935000399897, -34.71201199975394 ], [ -58.512862000380949, -34.711733000377649 ], [ -58.511724000062486, -34.71145400010198 ], [ -58.510779999697206, -34.71121800001066 ], [ -58.511081000088041, -34.712527000120929 ], [ -58.510964000088507, -34.7131799996572 ], [ -58.509150000072395, -34.715015999788534 ], [ -58.509063999703756, -34.714887000134922 ], [ -58.507174999826361, -34.71241999968322 ], [ -58.506466999552345, -34.711089000357049 ], [ -58.506382000129179, -34.710981999919341 ], [ -58.506188000176053, -34.710745999827964 ], [ -58.505523000086328, -34.710123999922587 ], [ -58.504986999650271, -34.709629999624724 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.498507000297764, -34.703642999624662 ], [ -58.497926999631261, -34.704008000268971 ], [ -58.497776999908581, -34.704071999623068 ], [ -58.497391000094524, -34.704136999922582 ], [ -58.497176000072329, -34.704157999991651 ], [ -58.496125000168604, -34.704223000291165 ], [ -58.495973000353615, -34.704173999830175 ], [ -58.495953000330644, -34.704114999807359 ], [ -58.495995999615673, -34.704030000384193 ], [ -58.496189000421964, -34.703965000084622 ], [ -58.496404999590993, -34.703894999554564 ], [ -58.496983000165301, -34.703707999924234 ], [ -58.497068999634564, -34.703515000017205 ], [ -58.496787000119923, -34.702718000135576 ], [ -58.49614700028377, -34.701969999815617 ], [ -58.495095000333947, -34.701153999957114 ], [ -58.49415099996861, -34.700638999590126 ], [ -58.494172000037736, -34.70061800042032 ], [ -58.49415099996861, -34.700510999982612 ], [ -58.494107999784319, -34.700488999867389 ], [ -58.49391499987729, -34.700510999982612 ], [ -58.493034999765371, -34.699801999662498 ], [ -58.492674000204886, -34.699432999733119 ], [ -58.492197999837799, -34.698943999665801 ], [ -58.491052000049706, -34.696883999996544 ], [ -58.490610000351182, -34.696090000253264 ], [ -58.49043799961396, -34.695982999815556 ], [ -58.490331000075571, -34.695960999700333 ], [ -58.490652999636211, -34.695704000439207 ], [ -58.491404000094462, -34.695102999703636 ], [ -58.492241000022091, -34.694458999683036 ], [ -58.491383000025394, -34.693344000425213 ], [ -58.490459999729183, -34.692077999599974 ], [ -58.489407999779303, -34.690467999998134 ], [ -58.488915000426914, -34.689653000185785 ], [ -58.488528999713537, -34.689373999910117 ], [ -58.48805700043016, -34.689158999887866 ], [ -58.487240999672338, -34.688795000189089 ], [ -58.486705000135601, -34.688387000259809 ], [ -58.486590000228261, -34.68825699966078 ], [ -58.486533000297698, -34.68819400035278 ], [ -58.48585399956238, -34.687442999894472 ], [ -58.485717999585972, -34.687293000171792 ], [ -58.485363000302186, -34.686871999643017 ], [ -58.48439000039815, -34.685717000339253 ], [ -58.484344000075509, -34.685661999601564 ], [ -58.484151000168481, -34.685383000225215 ], [ -58.484065999845996, -34.685253999672284 ], [ -58.483465000009687, -34.684588999582616 ], [ -58.483057000080464, -34.684095000184072 ], [ -58.48231399999105, -34.683381999679511 ], [ -58.481984000061516, -34.683065000349416 ], [ -58.481555000063167, -34.682528999913359 ], [ -58.481039999696179, -34.681799000423496 ], [ -58.481022999811557, -34.681760999570429 ], [ -58.480474999721423, -34.680525000128625 ], [ -58.480117000299288, -34.679717999785794 ], [ -58.479807000392725, -34.67890800020399 ], [ -58.479624000047522, -34.678430999790749 ], [ -58.479409000025271, -34.677658000116594 ], [ -58.479409000025271, -34.677583000255197 ], [ -58.479409000025271, -34.677465000209565 ], [ -58.479452000209619, -34.677400999956149 ], [ -58.479558999748008, -34.6773579997718 ], [ -58.479924000392259, -34.676993000026869 ], [ -58.478980000026922, -34.676135000030172 ], [ -58.478830000304242, -34.675876999823629 ], [ -58.478551000028574, -34.675425999710058 ], [ -58.478443999590866, -34.675148000379863 ], [ -58.478379000190671, -34.674954000426737 ], [ -58.478056999730711, -34.673966999877109 ], [ -58.477993000376614, -34.673581000063052 ], [ -58.477929000123197, -34.673258999603092 ], [ -58.477863999823683, -34.673173000133829 ], [ -58.477564000378266, -34.673087999811287 ], [ -58.477499000078751, -34.672980000226801 ], [ -58.477521000193974, -34.672829999604744 ], [ -58.477564000378266, -34.672636999697716 ], [ -58.477521000193974, -34.672508000044104 ], [ -58.477328000286946, -34.672315000137075 ], [ -58.477156000449042, -34.672185999584144 ], [ -58.477113000264694, -34.672057999976687 ], [ -58.477050000057432, -34.671874999631484 ], [ -58.476747999620443, -34.671006000026864 ], [ -58.476706000381569, -34.670919999658224 ], [ -58.476361999806386, -34.670254999568556 ], [ -58.476255000267997, -34.669976000192207 ], [ -58.476147999830289, -34.669696999916596 ], [ -58.475975999992386, -34.668967999573454 ], [ -58.475654000431746, -34.668194999899299 ], [ -58.47563300036262, -34.667915999623631 ], [ -58.475590000178329, -34.667722999716602 ], [ -58.475481999694466, -34.667551999924797 ], [ -58.47516100017998, -34.667336999902602 ], [ -58.474909000250136, -34.66688099955843 ], [ -58.474473999975089, -34.666092000045694 ], [ -58.474280000021963, -34.665579999817112 ], [ -58.473757000185344, -34.664206000306649 ], [ -58.473058000326432, -34.662681000128032 ], [ -58.472928999773501, -34.662358999668072 ], [ -58.472865000419404, -34.662230000014461 ], [ -58.472456999590804, -34.661306999718192 ], [ -58.472327999937193, -34.660985000157609 ], [ -58.471706000031816, -34.659483000140312 ], [ -58.471405999687079, -34.658753999797227 ], [ -58.471169000448981, -34.65828199961453 ], [ -58.471040999942147, -34.658003000238239 ], [ -58.470676000197216, -34.657294999964222 ], [ -58.470353999737256, -34.656564999575039 ], [ -58.470075000360964, -34.655963999738731 ], [ -58.469902999623685, -34.655513999671314 ], [ -58.46921700036421, -34.653969000369045 ], [ -58.468359000367514, -34.652530999705846 ], [ -58.467506999748196, -34.651341999733461 ], [ -58.467397000071458, -34.651167999803306 ], [ -58.467993999723262, -34.650707000127909 ], [ -58.469195000249044, -34.649677000293309 ], [ -58.46953899992485, -34.649569999855544 ], [ -58.469646000362559, -34.649590999924669 ], [ -58.469667000431684, -34.649526999671252 ], [ -58.469731999831879, -34.649441000201932 ], [ -58.469731999831879, -34.649270000410127 ], [ -58.469280999718308, -34.649118999742029 ], [ -58.468766000250696, -34.648368000183041 ], [ -58.468422999721611, -34.647918000115567 ], [ -58.468186999630291, -34.647553000370635 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467050000257245, -34.645878999616116 ], [ -58.466020000422645, -34.645343000079322 ], [ -58.464861000035057, -34.644848999781459 ], [ -58.463809000085234, -34.644356000429013 ], [ -58.463166000110789, -34.644033999969054 ], [ -58.462843999650829, -34.64371200040847 ], [ -58.462693999928092, -34.643433000132802 ], [ -58.462650999743801, -34.643197000041482 ], [ -58.462543000159314, -34.643025000203579 ], [ -58.462393000436577, -34.642874999581522 ], [ -58.462006999723201, -34.642703999789717 ], [ -58.461841000161996, -34.642690000043444 ], [ -58.461749999562812, -34.642681999674494 ], [ -58.461449000071241, -34.642745999927911 ], [ -58.461277000233338, -34.642832000296551 ], [ -58.461041000142018, -34.642917999765814 ], [ -58.460740999797281, -34.642874999581522 ], [ -58.460376000052293, -34.642745999927911 ], [ -58.459453999802236, -34.642316999929562 ], [ -58.458724000312316, -34.641974000299854 ], [ -58.457993999923133, -34.641630999770769 ], [ -58.45767300040859, -34.641480000001934 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.456255999814516, -34.640793999843197 ], [ -58.456019999723196, -34.64064400012046 ], [ -58.455741000346848, -34.640493000351626 ], [ -58.455462000071179, -34.6403219996605 ], [ -58.455225999979859, -34.64017199993782 ], [ -58.454925999635122, -34.639977999984694 ], [ -58.454710999612928, -34.63976400000854 ], [ -58.454517999705899, -34.639571000101512 ], [ -58.454390000098385, -34.639399000263609 ], [ -58.454303999729746, -34.639312999894969 ], [ -58.454088999707551, -34.63911999998794 ], [ -58.453895999800523, -34.638927000080969 ], [ -58.453680999778271, -34.638712000058717 ], [ -58.453487999871243, -34.638583999551884 ], [ -58.452523000336157, -34.638046999969049 ], [ -58.451450000317209, -34.637446000132741 ], [ -58.450419999583289, -34.636867000411712 ], [ -58.449497000186341, -34.636265999676084 ], [ -58.448509999636713, -34.635580000416667 ], [ -58.447458999732987, -34.634956999565816 ], [ -58.447265999826016, -34.63478599977401 ], [ -58.446385999714096, -34.634098999569119 ], [ -58.445076999603828, -34.633132999987936 ], [ -58.444733999974062, -34.63287599982749 ], [ -58.443468000048142, -34.631953000430599 ], [ -58.442351999844902, -34.631137999718874 ], [ -58.442158999937874, -34.630987999996137 ], [ -58.441000000449606, -34.630128999953342 ], [ -58.439518999602114, -34.628841999958297 ], [ -58.440292000175646, -34.627640000285737 ], [ -58.440591999621063, -34.627168000103097 ], [ -58.440806999643257, -34.626438999760012 ], [ -58.440549000336034, -34.626416999644789 ], [ -58.439111999718989, -34.626244999806829 ], [ -58.438210000391166, -34.62613800026844 ], [ -58.437696000070332, -34.626074000015024 ], [ -58.436171999937812, -34.625966999577315 ], [ -58.435270999756767, -34.62590200017712 ], [ -58.434327000290807, -34.625858999992829 ], [ -58.43282500027351, -34.625709000270092 ], [ -58.431407999679379, -34.625558999648092 ], [ -58.430078000399362, -34.625429999994481 ], [ -58.428596999551871, -34.625258000156521 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.427482000294049, -34.623585000347418 ], [ -58.427803999854689, -34.622061000214956 ], [ -58.426623000251197, -34.62189000042315 ], [ -58.425185999634152, -34.621675000400899 ], [ -58.424048000215009, -34.621524999778899 ], [ -58.423726999801147, -34.62148199959455 ], [ -58.42222499978385, -34.621375000056162 ], [ -58.421452000109696, -34.62133199987187 ], [ -58.420979999926999, -34.621288999687522 ], [ -58.420507999744359, -34.621266999572356 ], [ -58.419413999656342, -34.621181000103036 ], [ -58.418083000330171, -34.621073999665327 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.415079000295577, -34.620859999689173 ], [ -58.413834999585504, -34.620731000035562 ], [ -58.412568999659584, -34.620623999597854 ], [ -58.410809000335064, -34.620323000106339 ], [ -58.410078999945824, -34.620173000383602 ], [ -58.409264000133476, -34.620022999761602 ], [ -58.409328000386893, -34.618692000435431 ], [ -58.409392999787087, -34.617511999978774 ], [ -58.409457000040504, -34.61658999972866 ], [ -58.409693000131824, -34.61523800033342 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.408620000112876, -34.61395000029222 ], [ -58.407547000093928, -34.613778999601095 ], [ -58.406539000374551, -34.613627999832261 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.404221999645529, -34.613370999671872 ], [ -58.40314899962658, -34.613328000386844 ], [ -58.401452999656158, -34.613242000018261 ], [ -58.400229999914529, -34.613177999764844 ], [ -58.398856999550844, -34.613113000364649 ], [ -58.397418999786964, -34.613049000111232 ], [ -58.396152999860988, -34.612962999742592 ], [ -58.394716000143262, -34.612877000273272 ], [ -58.393278000379382, -34.612769999835564 ], [ -58.393299999595285, -34.611590000278227 ], [ -58.393341999733479, -34.61040999982157 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.388256999960561, -34.609100999711302 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.386260999645401, -34.60937999998697 ], [ -58.384844999996687, -34.609272000402427 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.381969999615762, -34.609078999596136 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.380681999574563, -34.608994000172913 ], [ -58.379179999557266, -34.608885999689107 ], [ -58.377786000023832, -34.60882200033501 ], [ -58.376391000444301, -34.60873599996637 ], [ -58.374928000426848, -34.608628000381884 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371785000277498, -34.587818000300445 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.372271000206467, -34.586419999683187 ], [ -58.372464000113496, -34.586419999683187 ], [ -58.372657000020467, -34.586334000213867 ], [ -58.373064999949747, -34.586334000213867 ], [ -58.374458000336404, -34.585519000401518 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 353.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.796468298159262, -34.350893637460842 ], [ -58.797954273910072, -34.352313813547418 ], [ -58.793287981054192, -34.355565413622074 ], [ -58.791100142218127, -34.357210405228152 ], [ -58.788583305060833, -34.354630510059295 ], [ -58.779097186799163, -34.361336592506703 ], [ -58.76493929237629, -34.371612306739287 ], [ -58.763886497748402, -34.372665101367176 ], [ -58.75511320918271, -34.376086683907793 ], [ -58.730257386015012, -34.408723317372157 ], [ -58.738789409145149, -34.413153828097848 ], [ -58.741004664507983, -34.410368308978242 ], [ -58.742024559303765, -34.409299064434308 ], [ -58.74488136139297, -34.410820681669932 ], [ -58.737835314013637, -34.419536395529406 ], [ -58.738290428357985, -34.419744761132847 ], [ -58.739145823993141, -34.419432212727692 ], [ -58.739979286406879, -34.420852388814261 ], [ -58.737577598662035, -34.4218750252627 ], [ -58.738416544381131, -34.422341106217758 ], [ -58.739474822314364, -34.422911369974521 ], [ -58.730109336770489, -34.434941741920241 ], [ -58.727521216643609, -34.438023359528941 ], [ -58.724768597356118, -34.436444167587119 ], [ -58.721807612465192, -34.440145398700771 ], [ -58.720420336210744, -34.439427085699464 ], [ -58.717442901403764, -34.443270882752309 ], [ -58.716077558370728, -34.442415487117152 ], [ -58.71564986055315, -34.442859634850784 ], [ -58.708093865775943, -34.438505890400059 ], [ -58.706448874169872, -34.438286558185922 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 352.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.455076000257179, -34.587084999772856 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.455419999932985, -34.587214000325787 ], [ -58.455677000093431, -34.587150000072427 ], [ -58.456385000367447, -34.586870999796758 ], [ -58.457328999833408, -34.586549000236118 ], [ -58.459689999893556, -34.585669000124199 ], [ -58.459882999800584, -34.585625999939907 ], [ -58.460096999776681, -34.585625999939907 ], [ -58.460398000167515, -34.585669000124199 ], [ -58.461106000441532, -34.585840999962159 ], [ -58.461514000370755, -34.58603399986913 ], [ -58.461964000438229, -34.586291000029576 ], [ -58.462157000345258, -34.58644199979841 ], [ -58.462907999904246, -34.587084999772856 ], [ -58.463465999556206, -34.587643000324135 ], [ -58.466234000398742, -34.590239999576283 ], [ -58.466642000328022, -34.590583000105312 ], [ -58.466984999957731, -34.590496999736729 ], [ -58.467177999864759, -34.590368000083117 ], [ -58.467672000162622, -34.589961000199935 ], [ -58.467908000253942, -34.589767000246809 ], [ -58.468207999699359, -34.589531000155489 ], [ -58.468894999904307, -34.588973999650307 ], [ -58.469238000433336, -34.588737000412209 ], [ -58.470225000083644, -34.587921999700484 ], [ -58.469280999718308, -34.587041999588564 ], [ -58.470290000383159, -34.586313000144798 ], [ -58.470504000359313, -34.586698999958855 ], [ -58.470869000104244, -34.587364000048524 ], [ -58.470869000104244, -34.587513999771204 ], [ -58.470933000357661, -34.587579000070775 ], [ -58.471898999938844, -34.588308000413861 ], [ -58.472113999961095, -34.588480000251764 ], [ -58.473444000140432, -34.587749999862581 ], [ -58.474710000066409, -34.587063999703787 ], [ -58.475375000156077, -34.586698999958855 ], [ -58.476019000176677, -34.586334000213867 ], [ -58.476427000105957, -34.585927000330742 ], [ -58.477135000379917, -34.585068000287947 ], [ -58.477627999732363, -34.584488999667542 ], [ -58.477993000376614, -34.584037999553971 ], [ -58.478936999842631, -34.584745999827987 ], [ -58.479431000140494, -34.585132999688142 ], [ -58.480697000066471, -34.586077000053479 ], [ -58.481704999785848, -34.586827999612467 ], [ -58.482541999713476, -34.587450000417164 ], [ -58.483421999825396, -34.588136999722735 ], [ -58.484236999637801, -34.588737000412209 ], [ -58.484687999751372, -34.589081000088015 ], [ -58.485073999565373, -34.588716000343084 ], [ -58.485439000209624, -34.588329999629764 ], [ -58.486125000368418, -34.587622000255067 ], [ -58.486446999929058, -34.587277999679884 ], [ -58.486811999673989, -34.586870999796758 ], [ -58.487455999694589, -34.586204999660936 ], [ -58.488099999715189, -34.585539999571267 ], [ -58.488829000058274, -34.584832000196627 ], [ -58.488829000058274, -34.584832000196627 ], [ -58.489559000447457, -34.585283000310199 ], [ -58.490287999891223, -34.585754999593519 ], [ -58.490867999658406, -34.586098000122547 ], [ -58.491426000209685, -34.586462999867479 ], [ -58.491961999746422, -34.586806000396564 ], [ -58.492541000366828, -34.587171000141495 ], [ -58.493678999785971, -34.587879000415512 ], [ -58.494236000291153, -34.588223000091318 ], [ -58.494793999943113, -34.588586999790152 ], [ -58.495351999595073, -34.588931000365335 ], [ -58.495932000261575, -34.589273999995044 ], [ -58.497111999818912, -34.590003000338129 ], [ -58.498228000022152, -34.590711999758923 ], [ -58.499493999948072, -34.591484000286357 ], [ -58.500824000127466, -34.592299000098706 ], [ -58.502154000306803, -34.593114999957265 ], [ -58.503484999632974, -34.593929999769614 ], [ -58.504127999607476, -34.593222000394974 ], [ -58.505137000272327, -34.593866000415517 ], [ -58.505887999831259, -34.593587000139905 ], [ -58.506295999760539, -34.593437000417168 ], [ -58.507410999917681, -34.593028999588626 ], [ -58.508549000236144, -34.592599999590277 ], [ -58.508999000303561, -34.592427999752317 ], [ -58.509685999609133, -34.592170999591929 ], [ -58.510994999719401, -34.591720000377677 ], [ -58.5124330003826, -34.591269000264106 ], [ -58.513892000215606, -34.590840000265757 ], [ -58.515372000117679, -34.590411000267409 ], [ -58.516681000227948, -34.590003000338129 ], [ -58.517947000153868, -34.589638999739975 ], [ -58.518268999714508, -34.589553000270712 ], [ -58.518720999874176, -34.589395000179081 ], [ -58.519126999711204, -34.589251999879821 ], [ -58.520479000005821, -34.588866000065821 ], [ -58.52122999956481, -34.589317000179392 ], [ -58.522109999676729, -34.589874999831352 ], [ -58.523118000295426, -34.59053999992102 ], [ -58.523333000317677, -34.590668999574632 ], [ -58.524019999623249, -34.59109799957298 ], [ -58.52462100035882, -34.591463000217232 ], [ -58.524898999689071, -34.591634000009037 ], [ -58.525865000169574, -34.590560999990089 ], [ -58.526808999635591, -34.589466999902072 ], [ -58.527796000185219, -34.588437000067472 ], [ -58.528676000297139, -34.588973999650307 ], [ -58.529534000293836, -34.589531000155489 ], [ -58.530456999690728, -34.590088999807449 ], [ -58.530543000059367, -34.590175000176089 ], [ -58.530843000404104, -34.590347000013992 ], [ -58.531058000426356, -34.590475999667603 ], [ -58.532237999983693, -34.591227000125912 ], [ -58.533375000256001, -34.591935000399928 ], [ -58.534212000183629, -34.592470999936666 ], [ -58.535092000295549, -34.593049999657694 ], [ -58.535972000407469, -34.593565000024682 ], [ -58.536936999942554, -34.594080000391671 ], [ -58.537301999687486, -34.594315999583671 ], [ -58.537773999870183, -34.594594999859339 ], [ -58.538268000168046, -34.594874000134951 ], [ -58.538525000328434, -34.595024999903785 ], [ -58.538697000166394, -34.595153000410619 ], [ -58.539298000002645, -34.595582000408967 ], [ -58.540133999884119, -34.596118999991802 ], [ -58.541013999996039, -34.596697999712887 ], [ -58.541829999854542, -34.597235000195042 ], [ -58.542665999736073, -34.597792999847002 ], [ -58.543545999847993, -34.598371999568087 ], [ -58.544382999775564, -34.598930000119367 ], [ -58.545262999887484, -34.599487999771327 ], [ -58.546077999699889, -34.600046000322607 ], [ -58.546658000366392, -34.600432000136664 ], [ -58.548202999668661, -34.600217000114412 ], [ -58.549662000400929, -34.600003000138315 ], [ -58.551164000418225, -34.599767000046995 ], [ -58.552666000435522, -34.599552000024744 ], [ -58.553524000432219, -34.599508999840452 ], [ -58.553845999992859, -34.599508999840452 ], [ -58.554853999712293, -34.599465999656104 ], [ -58.555841000261921, -34.599423000371132 ], [ -58.556850000027453, -34.599380000186841 ], [ -58.558438000413332, -34.599315999933424 ], [ -58.560003999784726, -34.599251999680007 ], [ -58.561656000424023, -34.599187000279812 ], [ -58.561720999824217, -34.600196000045344 ], [ -58.561764000008566, -34.601246999949069 ], [ -58.561850000377149, -34.602298999898892 ], [ -58.561892999662177, -34.603349999802617 ], [ -58.561956999915594, -34.60431600028312 ], [ -58.562043000284177, -34.605775000116125 ], [ -58.562043000284177, -34.605903999769737 ], [ -58.563866999862114, -34.605818000300417 ], [ -58.564811000227451, -34.605796000185194 ], [ -58.565712000408439, -34.605753000000902 ], [ -58.566591999621039, -34.605710999862708 ], [ -58.567513999871153, -34.605667999678417 ], [ -58.568329999729656, -34.605625000393388 ], [ -58.568393999983073, -34.606698000412337 ], [ -58.568459000282587, -34.60770600013177 ], [ -58.568522999636684, -34.608757000035496 ], [ -58.568586999890101, -34.609808999985319 ], [ -58.569489000117244, -34.609786999870096 ], [ -58.571290999579901, -34.60970200044693 ], [ -58.573092999941935, -34.60961600007829 ], [ -58.5748740002349, -34.60952999970965 ], [ -58.576676999743711, -34.609444000240387 ], [ -58.578522000290036, -34.609357999871747 ], [ -58.578586999690231, -34.610366999637279 ], [ -58.578650999943648, -34.611439999656227 ], [ -58.58041000012139, -34.611354000186907 ], [ -58.582276999883618, -34.611267999818267 ], [ -58.584080000291749, -34.611182000349004 ], [ -58.585153000310697, -34.611161000279878 ], [ -58.586247000398714, -34.611439999656227 ], [ -58.587320000417662, -34.611804000254381 ], [ -58.588307000067971, -34.612234000298827 ], [ -58.589271999603056, -34.612684000366301 ], [ -58.590130999645851, -34.611632999563255 ], [ -58.590387999806296, -34.611311000002615 ], [ -58.590667000081964, -34.610925000188558 ], [ -58.591354000286856, -34.610001999892347 ], [ -58.591504000009536, -34.609808999985319 ], [ -58.592061999661496, -34.609015000242039 ], [ -58.592318999821941, -34.60873599996637 ], [ -58.592877000373221, -34.608005999577188 ], [ -58.593112999565221, -34.607812999670159 ], [ -58.593370999771764, -34.607619999763131 ], [ -58.593563999678793, -34.60747000004045 ], [ -58.594400999606421, -34.606739999651211 ], [ -58.594530000159352, -34.606633000112822 ], [ -58.594614999582518, -34.606546999744182 ], [ -58.595645000316495, -34.605667999678417 ], [ -58.595839000269621, -34.605516999909582 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 351.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.736596087003733, -34.422291756469626 ], [ -58.740086210861278, -34.42083593889825 ], [ -58.73959819668481, -34.420005218137192 ], [ -58.739085507634258, -34.419429471075055 ], [ -58.738263011831222, -34.419769436006973 ], [ -58.737966913342127, -34.419451404296467 ], [ -58.73498399522979, -34.41806961134737 ], [ -58.740993697897288, -34.410420400379166 ], [ -58.741673627761131, -34.409554038133301 ], [ -58.737923046899297, -34.40764584787027 ], [ -58.733020971913213, -34.40503031121662 ], [ -58.73042188517563, -34.408588976391073 ], [ -58.724127050629733, -34.41626560388606 ], [ -58.724170917072556, -34.416473969489495 ], [ -58.724192850293974, -34.416945533749903 ], [ -58.724291549790337, -34.417131966131926 ], [ -58.724510882004481, -34.417460964453142 ], [ -58.731375980307135, -34.421008663016906 ], [ -58.733744768219879, -34.422072424255489 ], [ -58.734271165533819, -34.423125218883371 ], [ -58.739908003437279, -34.420778364192053 ], [ -58.743886141471272, -34.422960719722766 ], [ -58.744911519572391, -34.423552916700935 ], [ -58.749819077863826, -34.417214215712228 ], [ -58.751666951767973, -34.418261527034758 ], [ -58.749210430969583, -34.421376044475579 ], [ -58.75353127558818, -34.423898364938211 ], [ -58.763785056599353, -34.410694565646843 ], [ -58.770979153223202, -34.40764584787027 ], [ -58.770518555573503, -34.406724652570873 ], [ -58.772158063874208, -34.406132455592683 ], [ -58.772119680736729, -34.406050206012381 ], [ -58.772174513790269, -34.405918606683898 ], [ -58.77224031345451, -34.405880223546419 ], [ -58.772333529645522, -34.405863773630358 ], [ -58.777246571242323, -34.399552489168407 ], [ -58.774066254137253, -34.397732031791016 ], [ -58.776369242385741, -34.394760080289387 ], [ -58.780975218882737, -34.397315300584154 ], [ -58.781742881632233, -34.397732031791016 ], [ -58.776681790790896, -34.404169432276092 ], [ -58.772371912783001, -34.406088589149839 ], [ -58.770584355237737, -34.406889151731455 ], [ -58.771538450369256, -34.408490276894696 ], [ -58.771258801796229, -34.408249011459141 ], [ -58.769690576465109, -34.41026686782925 ], [ -58.767837219255604, -34.412597272604508 ], [ -58.766400593252975, -34.411780260106831 ], [ -58.764201787806194, -34.41055748301298 ], [ -58.763757640072555, -34.410804231753893 ], [ -58.754649869880282, -34.422269823248186 ], [ -58.753608041863103, -34.423733865777578 ], [ -58.749155597916015, -34.421343144643423 ], [ -58.751787584485726, -34.418173794149062 ], [ -58.749731344978137, -34.417181315880079 ], [ -58.74887869099566, -34.416715234925029 ], [ -58.748286494017478, -34.417526764117355 ], [ -58.743883399818564, -34.422875728489743 ], [ -58.740149268872791, -34.420797555760743 ], [ -58.734150532816017, -34.423404867456341 ], [ -58.733492536173593, -34.421694076186029 ], [ -58.734271165533791, -34.421359594559469 ], [ -58.727828281743363, -34.417855762438535 ], [ -58.724439599034859, -34.416057238282576 ], [ -58.733064838355993, -34.405266093346775 ], [ -58.740357634476226, -34.408978291071143 ], [ -58.741566703306724, -34.409614354492156 ], [ -58.734877070775376, -34.417970911850986 ], [ -58.738188987208908, -34.419906518640794 ], [ -58.739027932928003, -34.419665253205238 ], [ -58.739779145761439, -34.420745464359889 ], [ -58.736785261038392, -34.422127257308979 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 349.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.735914786313586, -34.3849751218861 ], [ -58.736994997468202, -34.385528935726796 ], [ -58.737332220747447, -34.386992978256202 ], [ -58.737699602206149, -34.388388479468667 ], [ -58.738757880139381, -34.388969709836147 ], [ -58.738113591760339, -34.389858005303424 ], [ -58.738445331734241, -34.391263102300265 ], [ -58.739459743224657, -34.394957479282219 ], [ -58.730005153968811, -34.408469714499724 ], [ -58.730432851786361, -34.408575268127791 ], [ -58.746904701068466, -34.387343909798801 ], [ -58.754263296852947, -34.391423488981857 ], [ -58.751916442161637, -34.394335124124581 ], [ -58.751642276893961, -34.394335124124581 ], [ -58.751411978069108, -34.394510589895894 ], [ -58.751346178404866, -34.394642189224378 ], [ -58.751455844511938, -34.394850554827812 ], [ -58.751543577397591, -34.394916354492054 ], [ -58.748440026567479, -34.398809501293087 ], [ -58.743932749566852, -34.396221381166207 ], [ -58.741410429104207, -34.394905387881352 ], [ -58.738592010152473, -34.397855406161561 ], [ -58.736223222239722, -34.400629958670464 ], [ -58.735724241452537, -34.401260538786119 ], [ -58.738284945052648, -34.402582015376325 ], [ -58.736319180083399, -34.405054986090775 ], [ -58.742586598102505, -34.408388835745718 ], [ -58.742139708716202, -34.409011190903342 ], [ -58.740870323526849, -34.408325777734142 ], [ -58.734416473125705, -34.416619277081388 ], [ -58.73368171020833, -34.4173979064416 ], [ -58.738232853651787, -34.419700894690095 ], [ -58.739175982172597, -34.419536395529484 ], [ -58.73988881186856, -34.420775622539388 ], [ -58.737465190902292, -34.42196001649576 ], [ -58.734361640072173, -34.423188276894955 ], [ -58.733550110879847, -34.421784550724446 ], [ -58.734317773629343, -34.421521352067472 ], [ -58.725758333972429, -34.416717976577765 ], [ -58.725029054360405, -34.417611755350393 ], [ -58.72378434404515, -34.41695924201332 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 345.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.418045526239716, -34.655489886162776 ], [ -58.4166881057415, -34.654879046938575 ], [ -58.417163202915873, -34.662616343778403 ], [ -58.421574819535074, -34.662616343778403 ], [ -58.422185658759268, -34.662073375579112 ], [ -58.425307725905164, -34.66410950632644 ], [ -58.429040632275253, -34.668317509870903 ], [ -58.439085543962044, -34.680127068205373 ], [ -58.438881930887312, -34.681484488703582 ], [ -58.439357028061686, -34.682231069977604 ], [ -58.441121674709365, -34.682841909201798 ], [ -58.45982014207226, -34.704789701882305 ], [ -58.458437269939708, -34.706053799721268 ], [ -58.457784011324939, -34.706622219554895 ], [ -58.456799881463738, -34.707088832851156 ], [ -58.455934525896126, -34.707343349194574 ], [ -58.455349138306268, -34.706732509970379 ], [ -58.453940814539372, -34.707572413903648 ], [ -58.454254718029581, -34.707877833515745 ], [ -58.455552751380999, -34.707496059000619 ], [ -58.456316300411245, -34.708115382102932 ], [ -58.455578203015335, -34.70903164093923 ], [ -58.452727619969089, -34.712628805259499 ], [ -58.453245136534029, -34.712925740993484 ], [ -58.456265397142559, -34.709116479720372 ], [ -58.458157301961947, -34.707351833072693 ], [ -58.459429883679022, -34.706766445482835 ], [ -58.460151013318701, -34.705129057006864 ], [ -58.462594370215484, -34.70359347506826 ], [ -58.470484376861371, -34.697977147756887 ], [ -58.491185039459147, -34.682468618564783 ], [ -58.528921329309533, -34.653419819902993 ], [ -58.530821718007033, -34.615412045952979 ], [ -58.499601046548094, -34.549984377939033 ], [ -58.490370587160236, -34.545504890294929 ], [ -58.474760251430766, -34.538310561654392 ], [ -58.467226567665669, -34.535731462707787 ], [ -58.466072760242191, -34.536953141156175 ], [ -58.467430180740408, -34.537428238330556 ], [ -58.466412115366744, -34.538649916778944 ], [ -58.465122565893438, -34.538242690629481 ], [ -58.462882822071386, -34.54183985494975 ], [ -58.454466814982453, -34.549169925640108 ], [ -58.448833519914864, -34.543197275447966 ], [ -58.438177769003879, -34.548694828465734 ], [ -58.436888219530573, -34.551138185362518 ], [ -58.435123572882894, -34.553174316109846 ], [ -58.432340860861558, -34.55188476663654 ], [ -58.437261510167573, -34.549119022371428 ], [ -58.437431187729857, -34.547948247191719 ], [ -58.438720737203155, -34.545301277220197 ], [ -58.441147126343715, -34.545420051513794 ], [ -58.44106228756258, -34.543282114229108 ], [ -58.448850487671095, -34.539243788246914 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 344.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.462634999905276, -34.719268999864425 ], [ -58.463359000017817, -34.719671999563104 ], [ -58.462350000252286, -34.720959999604247 ], [ -58.461235000095144, -34.720336999652773 ], [ -58.460139999960973, -34.719714999747396 ], [ -58.459089000057247, -34.71913600002631 ], [ -58.458037000107424, -34.718535000190059 ], [ -58.456943000019407, -34.717913000284682 ], [ -58.455848999931334, -34.71731200044843 ], [ -58.454775999912442, -34.716710999712802 ], [ -58.453680999778271, -34.716131999991774 ], [ -58.452608999805477, -34.715487999971174 ], [ -58.451450000317209, -34.714909000250145 ], [ -58.45179199990082, -34.714608999905352 ], [ -58.452544000405226, -34.713706999678266 ], [ -58.452660000358662, -34.713567000416674 ], [ -58.452952000334506, -34.713213000279723 ], [ -58.452973000403631, -34.713084999772889 ], [ -58.452930000219283, -34.713020000372694 ], [ -58.452729999989458, -34.712915000027181 ], [ -58.452729999989458, -34.712915000027181 ], [ -58.453338000148563, -34.712162000375997 ], [ -58.453842000008251, -34.711431999986758 ], [ -58.454486000028851, -34.710357999921712 ], [ -58.455232000256558, -34.709428000202024 ], [ -58.456097999722886, -34.708443999790688 ], [ -58.456292999722109, -34.708221000298863 ], [ -58.456328999583604, -34.708162000276047 ], [ -58.456267000321759, -34.707974999746398 ], [ -58.455800000369663, -34.707541999563603 ], [ -58.45557900007077, -34.707486999725234 ], [ -58.454411000167511, -34.707885000092631 ], [ -58.454261999591552, -34.707877999769835 ], [ -58.453970999661863, -34.707557000255292 ], [ -58.455398999863917, -34.70671199995877 ], [ -58.455521000094052, -34.706843999750731 ], [ -58.45597600039207, -34.707345000371447 ], [ -58.456789000112224, -34.707078999795954 ], [ -58.457218000110572, -34.706904999865799 ], [ -58.457654000431717, -34.70671199995877 ], [ -58.458351000198434, -34.706268000168052 ], [ -58.458601000036083, -34.706218999707005 ], [ -58.458850999873732, -34.70616800005314 ], [ -58.459066999942081, -34.706024999753879 ], [ -58.459947000053944, -34.705231000010599 ], [ -58.460483999636836, -34.704908999550639 ], [ -58.46142599990992, -34.704323999552912 ], [ -58.461728000346909, -34.704136999922582 ], [ -58.462994000272829, -34.703407000432662 ], [ -58.465569000309074, -34.701711999609074 ], [ -58.466007999869248, -34.701416000348104 ], [ -58.467156999795691, -34.700638999590126 ], [ -58.468122000230096, -34.699759000377526 ], [ -58.468766000250696, -34.699073000218732 ], [ -58.469174000179919, -34.698578999920869 ], [ -58.469839000269587, -34.698043000384132 ], [ -58.467628999978331, -34.696069000184195 ], [ -58.465312000148629, -34.69396600033059 ], [ -58.463143999995566, -34.691992000130654 ], [ -58.463315999833469, -34.691777000108402 ], [ -58.464088000360903, -34.691198000387374 ], [ -58.465268999964337, -34.690318000275454 ], [ -58.465482999940434, -34.690167999653397 ], [ -58.464409999921543, -34.689181000003089 ], [ -58.463723999762749, -34.688601000235906 ], [ -58.464217000014514, -34.688215000421906 ], [ -58.464774999666474, -34.687786000423557 ], [ -58.465890999869714, -34.68692800042686 ], [ -58.466491999705966, -34.686456000244164 ], [ -58.466984999957731, -34.686090999599912 ], [ -58.467736000416039, -34.685555000063175 ], [ -58.467929000323068, -34.685317999925701 ], [ -58.468337000252347, -34.684997000411215 ], [ -58.469410000271239, -34.684159999584267 ], [ -58.469646000362559, -34.683987999746364 ], [ -58.470054000291839, -34.683666000185724 ], [ -58.470353999737256, -34.683430000094404 ], [ -58.469023999557919, -34.68218600028365 ], [ -58.468080000091902, -34.68130600017173 ], [ -58.467134999680468, -34.680554999713422 ], [ -58.466599000143674, -34.680189999968491 ], [ -58.466062999707617, -34.679696999716725 ], [ -58.465934000054006, -34.679568000063114 ], [ -58.465526000124783, -34.679182000249057 ], [ -58.465097000126434, -34.678581000412805 ], [ -58.464453000105834, -34.677829999954497 ], [ -58.462829999904557, -34.67648900016718 ], [ -58.461728000346909, -34.675577000378212 ], [ -58.461126999611281, -34.675083000080349 ], [ -58.460597000351243, -34.674644999666953 ], [ -58.459775000216041, -34.673966999877109 ], [ -58.459518000055596, -34.673839000269595 ], [ -58.459066999942081, -34.673687999601441 ], [ -58.458766999597287, -34.673667000431692 ], [ -58.458573999690316, -34.673559999993984 ], [ -58.458445000036704, -34.673431000340372 ], [ -58.458380999783287, -34.673258999603092 ], [ -58.458380999783287, -34.673130999995635 ], [ -58.458230000014453, -34.672657999766841 ], [ -58.457866000315619, -34.672250999883715 ], [ -58.457245999603174, -34.671664999839834 ], [ -58.455921999700479, -34.670413999706284 ], [ -58.455140999657374, -34.66967599984747 ], [ -58.454175000076134, -34.668752999551259 ], [ -58.453702999893494, -34.668430999990619 ], [ -58.453507999894214, -34.668343000429104 ], [ -58.452608999805477, -34.667937999738854 ], [ -58.452330000429129, -34.667744999831825 ], [ -58.452178999760974, -34.667594000062991 ], [ -58.452072000222586, -34.667465999556214 ], [ -58.451664000293363, -34.666242999814529 ], [ -58.451450000317209, -34.665942000323014 ], [ -58.4513429998795, -34.665749000415985 ], [ -58.451148999926374, -34.665555999609637 ], [ -58.450698999858901, -34.665340999587443 ], [ -58.450470000090377, -34.665268999864395 ], [ -58.449948000299912, -34.665105000395386 ], [ -58.449775999562689, -34.664997999957677 ], [ -58.449304000279369, -34.66461200014362 ], [ -58.449025000003701, -34.664440000305717 ], [ -58.448682000373992, -34.664289999683717 ], [ -58.448424000167449, -34.664096999776689 ], [ -58.447974000099975, -34.663710999962632 ], [ -58.447738000008655, -34.66349599994038 ], [ -58.447501999917336, -34.663238999779992 ], [ -58.446449999967456, -34.662379999737141 ], [ -58.445548999786467, -34.661693999578347 ], [ -58.444583000205228, -34.660899999835067 ], [ -58.443574999586531, -34.660127000160912 ], [ -58.442824000027542, -34.659526000324604 ], [ -58.441622000354982, -34.658538999774976 ], [ -58.441343000079371, -34.658324999798879 ], [ -58.440591999621063, -34.657745000031696 ], [ -58.438811000227417, -34.656350999598885 ], [ -58.438038999700041, -34.655792999946925 ], [ -58.437352000394469, -34.655256000364091 ], [ -58.437008999865384, -34.654999000203645 ], [ -58.436022000215075, -34.654311999998754 ], [ -58.435077999849796, -34.653561000439765 ], [ -58.434411999713973, -34.653025000003709 ], [ -58.433661000154984, -34.652424000167457 ], [ -58.43297499999619, -34.651908999800469 ], [ -58.432073999815202, -34.651201000425772 ], [ -58.432009000415007, -34.65115800024148 ], [ -58.431879999862076, -34.651028999688549 ], [ -58.430957999611962, -34.650300000244783 ], [ -58.430421000029071, -34.649827000015989 ], [ -58.429348000010179, -34.648861999581584 ], [ -58.428297000106454, -34.647918000115567 ], [ -58.428104000199426, -34.647831999746927 ], [ -58.42752499957902, -34.647166999657259 ], [ -58.426687999651449, -34.646393999983047 ], [ -58.426343999975586, -34.646029000238116 ], [ -58.426064999699918, -34.645728999893379 ], [ -58.426043999630849, -34.645643000424059 ], [ -58.425744000185432, -34.645364000148447 ], [ -58.425442999794541, -34.645020999619419 ], [ -58.425421999725472, -34.644848999781459 ], [ -58.425100000164832, -34.644785000427362 ], [ -58.424456000144232, -34.64427000006043 ], [ -58.423662000400952, -34.643626000039831 ], [ -58.423598000147535, -34.643455000248025 ], [ -58.422824999574004, -34.642789000112202 ], [ -58.422160000383656, -34.642295999860437 ], [ -58.421794999739404, -34.641995000368922 ], [ -58.420571999997776, -34.641029999934517 ], [ -58.420014000345816, -34.640600999936169 ], [ -58.419842999654691, -34.640450000167334 ], [ -58.419328000187022, -34.640021000168986 ], [ -58.418554999613491, -34.639312999894969 ], [ -58.417675000400891, -34.638647999805301 ], [ -58.417310999802737, -34.638305000175592 ], [ -58.417095999780543, -34.639098999918872 ], [ -58.416088000061109, -34.638906000011843 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.414563999928589, -34.638668999874426 ], [ -58.413190999564961, -34.638411999713981 ], [ -58.411624000147469, -34.638133000337632 ], [ -58.411195000149121, -34.638069000084215 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.407547000093928, -34.637446000132741 ], [ -58.405616000078282, -34.637102999603712 ], [ -58.405744999731894, -34.635900999931152 ], [ -58.405895000353951, -34.634700000304747 ], [ -58.406024000007562, -34.63366999957077 ], [ -58.406131000445271, -34.632596999551822 ], [ -58.406216999914591, -34.631845999992834 ], [ -58.406345999568202, -34.630859000342525 ], [ -58.406409999821619, -34.630279999722177 ], [ -58.406518000305425, -34.629292000025714 ], [ -58.406689000097231, -34.628091000399309 ], [ -58.406754000396745, -34.627211000287389 ], [ -58.406904000119482, -34.62590200017712 ], [ -58.406968000372899, -34.625343999625841 ], [ -58.407074999911288, -34.624379000090755 ], [ -58.407225999680122, -34.623198999634099 ], [ -58.407354000186899, -34.622018000030607 ], [ -58.407569000209151, -34.620859999689173 ], [ -58.407784000231402, -34.619701000200962 ], [ -58.407933999954082, -34.618886000388557 ], [ -58.40804100039179, -34.618263000437082 ], [ -58.408126999861111, -34.617447999725357 ], [ -58.40821300022975, -34.616482000144174 ], [ -58.408384000021556, -34.615065999596141 ], [ -58.408620000112876, -34.61395000029222 ], [ -58.408705999582196, -34.612597999997661 ], [ -58.408813000019904, -34.611439999656227 ], [ -58.408899000388544, -34.610474000074987 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.408791999950779, -34.609208000149067 ], [ -58.406303000283174, -34.608950999988622 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.403427999902249, -34.601010999857692 ], [ -58.402375999952369, -34.601076000157263 ], [ -58.400960000303712, -34.601182999695652 ], [ -58.399800999916181, -34.601140000410624 ], [ -58.398621000358844, -34.601076000157263 ], [ -58.398771000081524, -34.599767000046995 ], [ -58.398878999666067, -34.599166000210687 ], [ -58.399007000172901, -34.598951000188492 ], [ -58.399050000357192, -34.598737000212338 ], [ -58.399007000172901, -34.59830800021399 ], [ -58.398878999666067, -34.597084999573042 ], [ -58.398534999990204, -34.595431999786911 ], [ -58.398149000176204, -34.594445000136602 ], [ -58.398062999807564, -34.594252000229574 ], [ -58.397484000086479, -34.592899999935014 ], [ -58.39714099955745, -34.592085000122609 ], [ -58.396775999812519, -34.591161999826397 ], [ -58.395832000346502, -34.590197000291312 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.391861999831406, -34.591762999662649 ], [ -58.390853000065874, -34.592557000305248 ], [ -58.390038000253469, -34.593264999679946 ], [ -58.39008100043776, -34.594274000344797 ], [ -58.390059000322594, -34.594703000343145 ], [ -58.390059000322594, -34.595045999972854 ], [ -58.389974, -34.595776000362093 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.379953000130797, -34.595195999695591 ], [ -58.3784510001135, -34.595068000088077 ], [ -58.377742999839541, -34.595024999903785 ], [ -58.376970000165329, -34.595711000062579 ], [ -58.376862999727621, -34.595797000431162 ], [ -58.376520000097912, -34.596011999554094 ], [ -58.376176000422049, -34.596140000060927 ], [ -58.375832999892964, -34.596205000360442 ], [ -58.375533000447547, -34.596096999876579 ], [ -58.375360999710324, -34.59599000033819 ], [ -58.375018000080615, -34.595603999624814 ], [ -58.374716999689724, -34.595089000157202 ], [ -58.374395000129084, -34.594552999721088 ], [ -58.373922999946444, -34.593758999977808 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.372635999951399, -34.59156999975562 ], [ -58.372785999674079, -34.591441000102009 ], [ -58.372958000411359, -34.591354999733426 ], [ -58.37355900024761, -34.591076000357077 ], [ -58.373580000316736, -34.590991000034592 ], [ -58.373472999879027, -34.590819000196632 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.372464000113496, -34.589595999555684 ], [ -58.372271000206467, -34.589402999648655 ], [ -58.372014000046022, -34.589273999995044 ], [ -58.371777999954702, -34.589230999810752 ], [ -58.371391000094548, -34.589273999995044 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371606000116799, -34.587643000324135 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.37220699995305, -34.586141000306895 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.371712999655188, -34.585153999757267 ], [ -58.371691999586062, -34.585047000218822 ], [ -58.371777999954702, -34.58491799966589 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.373129000203164, -34.584295999760513 ], [ -58.374909999596753, -34.583394999579525 ], [ -58.376541000166981, -34.582450000067411 ], [ -58.377270999656844, -34.583243999810691 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375188999872421, -34.58500400003453 ], [ -58.375167999803296, -34.58509000040317 ], [ -58.375082000334032, -34.585153999757267 ], [ -58.373360000063883, -34.586161000329867 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 341.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.511360000363709, -34.702162999722589 ], [ -58.510287000344761, -34.70117600007228 ], [ -58.509214000325812, -34.700167000306749 ], [ -58.508162000375989, -34.699179999757121 ], [ -58.508720000027949, -34.698771999827898 ], [ -58.508011999753933, -34.698172000037744 ], [ -58.507433000032904, -34.698578999920869 ], [ -58.506724999758887, -34.697957000015492 ], [ -58.505222999741591, -34.696583999651807 ], [ -58.504665000089631, -34.696090000253264 ], [ -58.504213999976059, -34.695683000370138 ], [ -58.503227000325751, -34.694760000073927 ], [ -58.502239999776123, -34.69381599970859 ], [ -58.501725000308454, -34.693386999710242 ], [ -58.501188999872397, -34.692914000380767 ], [ -58.500223000291214, -34.692056000384071 ], [ -58.499192999557238, -34.691155000203025 ], [ -58.49874300038914, -34.690747000273802 ], [ -58.498205999906929, -34.690254000022037 ], [ -58.497198000187495, -34.689352999841049 ], [ -58.496532000051729, -34.68875200000474 ], [ -58.496189000421964, -34.6884300004441 ], [ -58.495780999593421, -34.688064999799849 ], [ -58.495158999688044, -34.687529000263112 ], [ -58.494687000404724, -34.68707800014954 ], [ -58.494215000222027, -34.686649000151192 ], [ -58.493571000201484, -34.686069000384009 ], [ -58.492819999743176, -34.685404000294341 ], [ -58.492670000020439, -34.685232999603215 ], [ -58.491619000116714, -34.684310000206324 ], [ -58.492841999858342, -34.684609999651741 ], [ -58.494022000314999, -34.684888999927352 ], [ -58.495052000149656, -34.686176999968552 ], [ -58.495975000445867, -34.685640000385661 ], [ -58.496210999637867, -34.685511999878827 ], [ -58.496424999614021, -34.685383000225215 ], [ -58.49685399961237, -34.685125000018672 ], [ -58.497776999908581, -34.684588999582616 ], [ -58.498721000273918, -34.684030999930656 ], [ -58.499643999670809, -34.683495000393918 ], [ -58.500716999689757, -34.682914999727416 ], [ -58.501767999593483, -34.68233600000633 ], [ -58.502883999796722, -34.681691999985787 ], [ -58.502068999984317, -34.680705000335479 ], [ -58.501209999941523, -34.679717999785794 ], [ -58.501982999615677, -34.679266999672279 ], [ -58.502282999960414, -34.679095999880474 ], [ -58.502390000398179, -34.679030999580903 ], [ -58.503355999979362, -34.678472999928942 ], [ -58.504086000368602, -34.679353000040862 ], [ -58.504665000089631, -34.679975999992337 ], [ -58.504965000434368, -34.680083000430102 ], [ -58.505523000086328, -34.680554999713422 ], [ -58.506273999645316, -34.679910999692822 ], [ -58.507004000034556, -34.679309999856571 ], [ -58.507775999662613, -34.678644999766902 ], [ -58.508419999683213, -34.678130000299234 ], [ -58.507797999777836, -34.67768000023176 ], [ -58.507433000032904, -34.67744400014044 ], [ -58.507283000310167, -34.677314999587509 ], [ -58.506575000036207, -34.676821000188966 ], [ -58.506446000382596, -34.676734999820326 ], [ -58.506231000360344, -34.676585000097646 ], [ -58.505415999648619, -34.676027000445686 ], [ -58.505243999810716, -34.675920000007977 ], [ -58.504536000436019, -34.675512000078697 ], [ -58.504127999607476, -34.675275999987377 ], [ -58.503592000070682, -34.674975999642641 ], [ -58.503184000141459, -34.674760999620389 ], [ -58.502647999705403, -34.674482000244097 ], [ -58.501704000239386, -34.673988999992332 ], [ -58.500694999574534, -34.673452000409441 ], [ -58.500115999853449, -34.673152000064704 ], [ -58.499751000108517, -34.672959000157675 ], [ -58.499150000272266, -34.672636999697716 ], [ -58.498936000296112, -34.672508000044104 ], [ -58.498249000091221, -34.672057999976687 ], [ -58.497926999631261, -34.671799999770144 ], [ -58.497412000163649, -34.671435000025213 ], [ -58.495739000354547, -34.670040999592402 ], [ -58.493614000385776, -34.667958999807979 ], [ -58.491768999839451, -34.666006999723209 ], [ -58.491018000280462, -34.66525600016422 ], [ -58.490073999915126, -34.6643760000523 ], [ -58.488915000426914, -34.663367000286769 ], [ -58.48711300006488, -34.662787999666421 ], [ -58.485911000392321, -34.662422999921489 ], [ -58.485309999656693, -34.662037000107432 ], [ -58.485031000280401, -34.661865000269529 ], [ -58.484130000099412, -34.661285999649124 ], [ -58.483228999918367, -34.660706999928038 ], [ -58.482326999691225, -34.660127000160912 ], [ -58.481426000409556, -34.659548000439827 ], [ -58.480846999789151, -34.65916199972645 ], [ -58.480525000228511, -34.658967999773324 ], [ -58.480289000137191, -34.658818000050644 ], [ -58.479838000023619, -34.65851799970585 ], [ -58.479645000116648, -34.65836799998317 ], [ -58.479344999771854, -34.658196000145267 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.478186000283642, -34.657316000033347 ], [ -58.477950000192322, -34.657102000057193 ], [ -58.477499000078751, -34.656715000197039 ], [ -58.477005999826986, -34.656243000014399 ], [ -58.476554999713414, -34.655836000131274 ], [ -58.475524999878814, -34.654890999719839 ], [ -58.475204000364272, -34.654613000389588 ], [ -58.474710000066409, -34.654162000276074 ], [ -58.474088000161032, -34.653582999655669 ], [ -58.473680000231809, -34.653217999910737 ], [ -58.473251000233461, -34.65283200009668 ], [ -58.472564000028513, -34.652231000260429 ], [ -58.472048999661581, -34.65171599989344 ], [ -58.470825999919896, -34.650599999690201 ], [ -58.470075000360964, -34.649913000384629 ], [ -58.46986100038481, -34.649719999578281 ], [ -58.469667000431684, -34.649526999671252 ], [ -58.469280999718308, -34.649118999742029 ], [ -58.468766000250696, -34.648368000183041 ], [ -58.468422999721611, -34.647918000115567 ], [ -58.468186999630291, -34.647553000370635 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467050000257245, -34.645878999616116 ], [ -58.466020000422645, -34.645343000079322 ], [ -58.464861000035057, -34.644848999781459 ], [ -58.463809000085234, -34.644356000429013 ], [ -58.463166000110789, -34.644033999969054 ], [ -58.462843999650829, -34.64371200040847 ], [ -58.462693999928092, -34.643433000132802 ], [ -58.462650999743801, -34.643197000041482 ], [ -58.462543000159314, -34.643025000203579 ], [ -58.462393000436577, -34.642874999581522 ], [ -58.462006999723201, -34.642703999789717 ], [ -58.461749999562812, -34.642681999674494 ], [ -58.461449000071241, -34.642745999927911 ], [ -58.461277000233338, -34.642832000296551 ], [ -58.461041000142018, -34.642917999765814 ], [ -58.460740999797281, -34.642874999581522 ], [ -58.460376000052293, -34.642745999927911 ], [ -58.459453999802236, -34.642316999929562 ], [ -58.458724000312316, -34.641974000299854 ], [ -58.457993999923133, -34.641630999770769 ], [ -58.45767300040859, -34.641480000001934 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.456255999814516, -34.640793999843197 ], [ -58.456019999723196, -34.64064400012046 ], [ -58.455741000346848, -34.640493000351626 ], [ -58.455462000071179, -34.6403219996605 ], [ -58.455225999979859, -34.64017199993782 ], [ -58.454925999635122, -34.639977999984694 ], [ -58.454710999612928, -34.63976400000854 ], [ -58.454517999705899, -34.639571000101512 ], [ -58.454390000098385, -34.639399000263609 ], [ -58.454303999729746, -34.639312999894969 ], [ -58.454088999707551, -34.63911999998794 ], [ -58.453895999800523, -34.638927000080969 ], [ -58.453680999778271, -34.638712000058717 ], [ -58.453487999871243, -34.638583999551884 ], [ -58.452523000336157, -34.638046999969049 ], [ -58.451450000317209, -34.637446000132741 ], [ -58.450419999583289, -34.636867000411712 ], [ -58.449497000186341, -34.636265999676084 ], [ -58.448509999636713, -34.635580000416667 ], [ -58.447458999732987, -34.634956999565816 ], [ -58.447265999826016, -34.63478599977401 ], [ -58.446385999714096, -34.634098999569119 ], [ -58.445076999603828, -34.633132999987936 ], [ -58.444733999974062, -34.63287599982749 ], [ -58.443468000048142, -34.631953000430599 ], [ -58.443638999839948, -34.631545999648097 ], [ -58.444067999838296, -34.630515999813497 ], [ -58.444475999767519, -34.629550000232257 ], [ -58.444991000134507, -34.628347999660434 ], [ -58.445505999602176, -34.627168000103097 ], [ -58.44604300008433, -34.625858999992829 ], [ -58.446536000336096, -34.624700999651395 ], [ -58.445678000339399, -34.624207000252795 ], [ -58.444991000134507, -34.623821000438795 ], [ -58.443617999770822, -34.623004999680973 ], [ -58.442780999843251, -34.622790999704819 ], [ -58.441922999846497, -34.622833999889167 ], [ -58.441214999572537, -34.622854999958236 ], [ -58.440849999827606, -34.622877000073458 ], [ -58.440936000196189, -34.622168999799442 ], [ -58.440957000265314, -34.621910999592899 ], [ -58.441106999987994, -34.620817000404202 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.437760000323692, -34.618864000273334 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.435291999825893, -34.617770000185317 ], [ -58.434713000104807, -34.617511999978774 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.428512000128649, -34.614766000150723 ], [ -58.427632000016729, -34.6143580002215 ], [ -58.426151000068558, -34.613714000200901 ], [ -58.424928000326929, -34.613198999833912 ], [ -58.423598000147535, -34.612597999997661 ], [ -58.422417999690879, -34.612061999561604 ], [ -58.421044000180416, -34.611482999840518 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.417288999687571, -34.610925000188558 ], [ -58.416774000219903, -34.612212000183604 ], [ -58.416215999668623, -34.613521000293872 ], [ -58.415959000407497, -34.614421999575598 ], [ -58.415294000317829, -34.6143580002215 ], [ -58.414520999744298, -34.614271999852861 ], [ -58.412890000073389, -34.614100000014957 ], [ -58.411302999733607, -34.614035999761541 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.408620000112876, -34.61395000029222 ], [ -58.407547000093928, -34.613778999601095 ], [ -58.406539000374551, -34.613627999832261 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.404221999645529, -34.613370999671872 ], [ -58.40314899962658, -34.613328000386844 ], [ -58.401452999656158, -34.613242000018261 ], [ -58.400229999914529, -34.613177999764844 ], [ -58.398856999550844, -34.613113000364649 ], [ -58.397418999786964, -34.613049000111232 ], [ -58.396152999860988, -34.612962999742592 ], [ -58.394716000143262, -34.612877000273272 ], [ -58.393278000379382, -34.612769999835564 ], [ -58.39175500029296, -34.612684000366301 ], [ -58.390359999814109, -34.612576999928535 ], [ -58.388944000165452, -34.612490999559952 ], [ -58.387506000401572, -34.612427000205855 ], [ -58.386154000106956, -34.612297999652924 ], [ -58.384758999628104, -34.612168999999312 ], [ -58.383299999795099, -34.612041000391798 ], [ -58.381840999962151, -34.611889999723644 ], [ -58.381433000032871, -34.611847000438672 ], [ -58.381219000056774, -34.611826000369604 ], [ -58.380960999850231, -34.611804000254381 ], [ -58.380510999782757, -34.611783000185255 ], [ -58.379051999949809, -34.611718999931838 ], [ -58.377635000254998, -34.611632999563255 ], [ -58.377571000001581, -34.612834000088981 ], [ -58.377527999817289, -34.613972000407443 ], [ -58.376091000099507, -34.613929000223152 ], [ -58.374631000220461, -34.613842999854512 ], [ -58.373257999856776, -34.613757000385192 ], [ -58.371863000277187, -34.613627999832261 ], [ -58.371155000003228, -34.613606999763192 ], [ -58.370748000120045, -34.613606999763192 ], [ -58.369503000263194, -34.613606999763192 ], [ -58.369566999617291, -34.612297999652924 ], [ -58.369566999617291, -34.611139000164655 ], [ -58.369439000009777, -34.611139000164655 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.368194000152926, -34.611139000164655 ], [ -58.368044000430245, -34.611439999656227 ], [ -58.367958000061606, -34.612255000367952 ], [ -58.3671430002492, -34.612147999930187 ], [ -58.366499000228657, -34.612104999745895 ], [ -58.366391999790892, -34.611998000207507 ], [ -58.36626300013728, -34.611976000092284 ], [ -58.3661130004146, -34.611998000207507 ], [ -58.36602700004596, -34.612082999630672 ], [ -58.366070000230309, -34.612147999930187 ], [ -58.366155999699572, -34.612191000114535 ], [ -58.366306000321629, -34.612212000183604 ], [ -58.366327000390697, -34.612555999859467 ], [ -58.365983999861669, -34.615580999963129 ], [ -58.36587700032328, -34.616718000235494 ], [ -58.365768999839418, -34.617855999654637 ], [ -58.36564100023196, -34.617876999723705 ], [ -58.365554999863321, -34.617984000161414 ], [ -58.365598000047612, -34.618091999745957 ], [ -58.365747999770349, -34.618133999884151 ], [ -58.365834000138932, -34.618133999884151 ], [ -58.365898000392349, -34.618091999745957 ], [ -58.365919999608252, -34.618027000345762 ], [ -58.366456000044309, -34.618069999630734 ], [ -58.366327000390697, -34.619229000018265 ], [ -58.366590999974619, -34.619257000410187 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 340.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.951907754694837, -34.886681396247049 ], [ -57.954706818400787, -34.888300969072439 ], [ -57.954902806311452, -34.888470231358923 ], [ -57.955567383499414, -34.888862207180246 ], [ -57.955893436114422, -34.888994053592874 ], [ -57.956046663026399, -34.889015434092215 ], [ -57.956199889938368, -34.889131245130336 ], [ -57.956349553433789, -34.889234584210506 ], [ -57.956424385181492, -34.889279126917472 ], [ -57.956493871804369, -34.889435917246004 ], [ -57.956379842474512, -34.89171472213453 ], [ -57.956331736350997, -34.892398898113569 ], [ -57.956727275588882, -34.892413151779799 ], [ -57.957361563736121, -34.892491546944065 ], [ -57.957771356640237, -34.892569942108331 ], [ -57.958284488624514, -34.892619829940138 ], [ -57.958565998532563, -34.892680408021612 ], [ -57.958772676692895, -34.892765930018996 ], [ -57.959004298769138, -34.892855015432936 ], [ -57.959349950175216, -34.892965481346216 ], [ -57.960673759426342, -34.893403781582784 ], [ -57.960645252093883, -34.89348217674705 ], [ -57.960732555799538, -34.893513356641925 ], [ -57.961620737376492, -34.894031833751058 ], [ -57.96272539650932, -34.894904870807643 ], [ -57.960398485497258, -34.896583240006237 ], [ -57.956181182001416, -34.899688757536111 ], [ -57.952545160831541, -34.902625012779488 ], [ -57.949185749871923, -34.905085551912443 ], [ -57.952243161278261, -34.907841854619683 ], [ -57.954604815601769, -34.910109078404439 ], [ -57.954553146061677, -34.910214199192886 ], [ -57.954476532605689, -34.910326446814445 ], [ -57.95439279231659, -34.910524216433387 ], [ -57.954344686193068, -34.910648936012905 ], [ -57.954350031317901, -34.910766528759304 ], [ -57.954351813026179, -34.910887684922258 ], [ -57.954401700857986, -34.910973206919635 ], [ -57.95444802527323, -34.911049820375624 ], [ -57.954480096022252, -34.91112821553989 ], [ -57.954513948479544, -34.911165631413745 ], [ -57.954533547270614, -34.911190575329648 ], [ -57.954045359202233, -34.91152019136122 ], [ -57.952030247138957, -34.913007917773989 ], [ -57.949671265377873, -34.914768245553397 ], [ -57.947134112788923, -34.916806519824284 ], [ -57.948164831028187, -34.917723208733719 ], [ -57.953246263039219, -34.922259438011444 ], [ -57.956349998860816, -34.925216182900066 ], [ -57.958300969426034, -34.923732019903859 ], [ -57.959229239439267, -34.924743139352067 ], [ -57.961249696627384, -34.926562263504685 ], [ -57.96210491660117, -34.926180977933029 ], [ -57.963148997652524, -34.927046888156504 ], [ -57.962482638756271, -34.927527058537635 ], [ -57.96539038666721, -34.93034215761805 ], [ -57.966915528953812, -34.930536363820437 ], [ -57.969552457206383, -34.932881091915291 ], [ -57.969609471871301, -34.934228063374029 ], [ -57.970595647403563, -34.935100209576483 ], [ -57.973678002725819, -34.937817314701597 ], [ -57.968411273053817, -34.941709456436556 ], [ -57.966305293868331, -34.943313884741585 ], [ -57.972829909585151, -34.949410890471484 ], [ -57.965979241253301, -34.954447779775542 ], [ -57.996834865224876, -34.982609460829636 ], [ -58.003013829535561, -34.98828954682233 ], [ -58.021037590483473, -35.004510218992166 ], [ -58.020973448985437, -35.004716897152505 ], [ -58.021001956317903, -35.004909321646615 ], [ -58.02108747831528, -35.005123126640065 ], [ -58.02110173198151, -35.005308424301056 ], [ -58.020973448985437, -35.005636258624349 ], [ -58.01488000667208, -35.010304334314696 ], [ -57.999935037629825, -35.021279657311837 ], [ -57.994917747116837, -35.025042625196576 ], [ -57.980664080886754, -35.048475652478828 ], [ -57.97707928382988, -35.05375307240049 ], [ -57.97442810191108, -35.057373503622927 ], [ -57.969097230741035, -35.065070483387174 ], [ -57.966617092816996, -35.06740808464891 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 339.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.389100000164831, -34.584653000035871 ], [ -58.389638999839917, -34.584412999760104 ], [ -58.390177000368226, -34.584166000060804 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.391024999903777, -34.584960999850239 ], [ -58.390531999652012, -34.585368999779462 ], [ -58.390295999560692, -34.585840999962159 ], [ -58.390531999652012, -34.586720000027924 ], [ -58.390467000251817, -34.586870999796758 ], [ -58.390101999607566, -34.587084999772856 ], [ -58.389781000093024, -34.587277999679884 ], [ -58.389201000325841, -34.587665000439358 ], [ -58.389974, -34.588372999814055 ], [ -58.39096099965036, -34.589187999626461 ], [ -58.391948000199989, -34.590088999807449 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.406624999843814, -34.581956999815645 ], [ -58.406216999914591, -34.581206000256657 ], [ -58.407289999933482, -34.580798000327434 ], [ -58.408256000414042, -34.580432999683126 ], [ -58.40844900032107, -34.580369000329085 ], [ -58.409821999785436, -34.579853999962097 ], [ -58.410380000336716, -34.5808200004426 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412118000445332, -34.582644000020537 ], [ -58.413384000371252, -34.583479999902011 ], [ -58.414284999652978, -34.584059999669194 ], [ -58.414992999926938, -34.584509999736667 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.417439000309571, -34.586077000053479 ], [ -58.418790999704811, -34.586935000050175 ], [ -58.419477999909702, -34.587342999979398 ], [ -58.42016500011465, -34.587771999977747 ], [ -58.421495000293987, -34.588586999790152 ], [ -58.422289000037267, -34.589124000272363 ], [ -58.423212000333535, -34.589725000108615 ], [ -58.423940999777301, -34.59021800036038 ], [ -58.424907000257804, -34.59086200038098 ], [ -58.425893999908112, -34.59150600040158 ], [ -58.426859000342574, -34.592149000376025 ], [ -58.428061000015077, -34.592965000234528 ], [ -58.429177000218317, -34.593693999678294 ], [ -58.430078000399362, -34.594315999583671 ], [ -58.431214999772408, -34.595024999903785 ], [ -58.432309999906522, -34.595711000062579 ], [ -58.433360999810247, -34.59639800026747 ], [ -58.434454999898264, -34.597084999573042 ], [ -58.435527999917213, -34.597770999731836 ], [ -58.436600999936161, -34.598457999936727 ], [ -58.437481000048081, -34.597534999640459 ], [ -58.438488999767458, -34.598157000445156 ], [ -58.439754999693434, -34.598973000303658 ], [ -58.440806999643257, -34.599810000231287 ], [ -58.441837000377234, -34.600646000112761 ], [ -58.442824000027542, -34.601461999971264 ], [ -58.443296000210182, -34.601847999785321 ], [ -58.443983000415074, -34.602255999714544 ], [ -58.444970000065382, -34.602877999619921 ], [ -58.445956999715747, -34.603479000355549 ], [ -58.446965000334444, -34.604123000376148 ], [ -58.447201000425764, -34.604273000098829 ], [ -58.447759000077724, -34.604594999659469 ], [ -58.447887999731336, -34.604681000028108 ], [ -58.448917999565992, -34.605346000117777 ], [ -58.449926000184746, -34.605968000023154 ], [ -58.450742000043249, -34.606483000390085 ], [ -58.45102100031886, -34.606419000136725 ], [ -58.452007999969169, -34.606160999930182 ], [ -58.453015999688603, -34.605881999654514 ], [ -58.454025000353454, -34.605645999563194 ], [ -58.454989999888539, -34.605389000302068 ], [ -58.455805999747042, -34.605174000279874 ], [ -58.456578000274476, -34.604959000257622 ], [ -58.456814000365796, -34.60463799984376 ], [ -58.45743700031727, -34.60375799973184 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.459624999594041, -34.605216999564846 ], [ -58.46052599977503, -34.605860999585445 ], [ -58.461598999793978, -34.606589999928531 ], [ -58.462157000345258, -34.606976999788685 ], [ -58.462714999997218, -34.607341000386839 ], [ -58.463959999854069, -34.60817800031441 ], [ -58.464409999921543, -34.608607000312759 ], [ -58.464646000012863, -34.608843000404079 ], [ -58.464838999919891, -34.60905800042633 ], [ -58.465354000286823, -34.609637000147416 ], [ -58.465934000054006, -34.610281000167959 ], [ -58.466555999959382, -34.610602999728599 ], [ -58.467844000000582, -34.611311000002615 ], [ -58.468615999628639, -34.610302000237084 ], [ -58.469367000086947, -34.609314999687456 ], [ -58.470117999645936, -34.608328000037147 ], [ -58.471277000033467, -34.60890799980433 ], [ -58.471834999685427, -34.609187000079942 ], [ -58.472393000236707, -34.609487000424679 ], [ -58.473529999609752, -34.610088000260987 ], [ -58.474731000135534, -34.61073200028153 ], [ -58.476019000176677, -34.611439999656227 ], [ -58.477262999987431, -34.612104999745895 ], [ -58.478594000212922, -34.612791999950787 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.480653999882122, -34.612427000205855 ], [ -58.481468999694528, -34.611418000440324 ], [ -58.481855000407904, -34.610903000073336 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.482628000082116, -34.60993799963893 ], [ -58.482992999827047, -34.60946600035561 ], [ -58.483508000194036, -34.608864999619982 ], [ -58.484451999659996, -34.607770000385187 ], [ -58.485203000118304, -34.60691200038849 ], [ -58.486210999837738, -34.605753000000902 ], [ -58.487069999880532, -34.604808999635566 ], [ -58.488207000152897, -34.603479000355549 ], [ -58.489000999896177, -34.602578000174503 ], [ -58.489730000239263, -34.601654999878292 ], [ -58.489966000330583, -34.601355000432875 ], [ -58.490244999706931, -34.600925000388429 ], [ -58.49043799961396, -34.600711000412275 ], [ -58.490910999842754, -34.599981000023092 ], [ -58.491532999748074, -34.599123000026395 ], [ -58.492091000299411, -34.598371999568087 ], [ -58.492819999743176, -34.597320999664362 ], [ -58.492970000365176, -34.597063000357139 ], [ -58.494343999875639, -34.595045999972854 ], [ -58.495030000034433, -34.594274000344797 ], [ -58.495717000239324, -34.593479999702197 ], [ -58.495889000077227, -34.593307999864237 ], [ -58.496339000144701, -34.592793000396625 ], [ -58.496983000165301, -34.592106000191734 ], [ -58.497584000001552, -34.591441000102009 ], [ -58.498228000022152, -34.590711999758923 ], [ -58.498570999651861, -34.590347000013992 ], [ -58.498893000111821, -34.590003000338129 ], [ -58.49953700013242, -34.589273999995044 ], [ -58.500180000106866, -34.588543999605861 ], [ -58.500845000196534, -34.587836000231164 ], [ -58.501489000217134, -34.587106999888078 ], [ -58.502239999776123, -34.586291000029576 ], [ -58.503013000349654, -34.58541199996381 ], [ -58.503807000092934, -34.584552999920959 ], [ -58.504536000436019, -34.583715999993387 ], [ -58.505265999925939, -34.582922000250051 ], [ -58.505931000015607, -34.582213999976091 ], [ -58.506252999576247, -34.581850000277257 ], [ -58.506575000036207, -34.581484999633005 ], [ -58.507840999962127, -34.582257000160382 ], [ -58.509171000141521, -34.58309400008801 ], [ -58.510501000320858, -34.583909999946513 ], [ -58.511166999557361, -34.583179999557274 ], [ -58.51196100019996, -34.582300000344674 ], [ -58.512474999621475, -34.581741999793394 ], [ -58.512474999621475, -34.581635000255005 ], [ -58.512711999758949, -34.581635000255005 ], [ -58.513376999848617, -34.582043000184285 ], [ -58.513935000399897, -34.582385999813994 ], [ -58.515328999933388, -34.583200999626399 ], [ -58.515264999679971, -34.582750999558925 ], [ -58.515136000026359, -34.582385999813994 ], [ -58.514986000303622, -34.581977999884771 ], [ -58.514520000397681, -34.580967000026988 ], [ -58.514470999936634, -34.580862999727628 ], [ -58.514063000007411, -34.580239999776097 ], [ -58.513248000195006, -34.578867000311789 ], [ -58.513186000033841, -34.578745000081653 ], [ -58.512689999643726, -34.577773000223715 ], [ -58.512131999991766, -34.577493999948103 ], [ -58.511317000179361, -34.578416000198217 ], [ -58.510051000253441, -34.577664999739909 ], [ -58.509429000348064, -34.577301000041075 ], [ -58.508848999681561, -34.576978999581115 ], [ -58.508269999960476, -34.576634999905252 ], [ -58.507690000193293, -34.576271000206475 ], [ -58.506552999920984, -34.575605000070652 ], [ -58.505415999648619, -34.574918999911858 ], [ -58.504257000160408, -34.574231999706967 ], [ -58.502991000234431, -34.573524000332327 ], [ -58.504192999906991, -34.572793999943087 ], [ -58.505330000179299, -34.572128999853419 ], [ -58.506660000358693, -34.57137800029443 ], [ -58.507884000146476, -34.570692000135637 ], [ -58.50633899994483, -34.569961999746454 ], [ -58.505286999995008, -34.569447000278785 ], [ -58.504213999976059, -34.56895400002702 ], [ -58.503656000324099, -34.568674999751408 ], [ -58.50309799977282, -34.568417000444185 ], [ -58.502326000144762, -34.568051999799934 ], [ -58.501511000332357, -34.567665999985877 ], [ -58.500995999965369, -34.567408999825432 ], [ -58.500416000198186, -34.56713000044914 ], [ -58.499836999577838, -34.566851000173472 ], [ -58.499257999856752, -34.56657199989786 ], [ -58.498700000204792, -34.566292999622192 ], [ -58.498120000437609, -34.566035000314969 ], [ -58.496962000096175, -34.565476999763689 ], [ -58.495630999870684, -34.564833999789244 ], [ -58.494451000313347, -34.564276000137227 ], [ -58.493335000110108, -34.563760999770295 ], [ -58.491939999631256, -34.56309599968057 ], [ -58.490996000165239, -34.562644999567055 ], [ -58.491939999631256, -34.56127200010269 ], [ -58.492347999560479, -34.560692000335507 ], [ -58.492713000204731, -34.560133999784227 ], [ -58.493099000018788, -34.559577000178365 ], [ -58.493506999948067, -34.558997000411182 ], [ -58.495416999894587, -34.556271999752937 ], [ -58.495526999571325, -34.55610700023783 ], [ -58.495587999686393, -34.556014999592492 ], [ -58.495609999801616, -34.555779000400491 ], [ -58.495437999963713, -34.555757000285269 ], [ -58.495223999987559, -34.555670999916686 ], [ -58.494623000151307, -34.555349000356046 ], [ -58.493699999855096, -34.555264000033503 ], [ -58.49359300031665, -34.555220999849212 ], [ -58.492928000226982, -34.55517799966492 ], [ -58.492390999744828, -34.555135000379948 ], [ -58.491189000072268, -34.555070000080377 ], [ -58.490523999982599, -34.555026999896086 ], [ -58.489966000330583, -34.555026999896086 ], [ -58.489559000447457, -34.555627999732337 ], [ -58.489021999965303, -34.556379000190645 ], [ -58.488077999599966, -34.555929000123228 ], [ -58.487905999762063, -34.555820999639366 ], [ -58.487134000133949, -34.555478000009657 ], [ -58.487542000063229, -34.554899000288572 ], [ -58.488228000221966, -34.553889999623721 ], [ -58.488807999989149, -34.553095999880441 ], [ -58.489323000356137, -34.552324000252383 ], [ -58.489858999892874, -34.551550999678852 ], [ -58.490417000444154, -34.550756999935572 ], [ -58.491039000349531, -34.551079000395532 ], [ -58.491146999934074, -34.551143999795727 ], [ -58.491317999725879, -34.551229000118212 ], [ -58.492241000022091, -34.551723000416075 ], [ -58.493164000318302, -34.552216999814618 ], [ -58.493720999924165, -34.551444000140464 ], [ -58.494278999576125, -34.550650000397184 ], [ -58.495201999872336, -34.551143999795727 ], [ -58.496125000168604, -34.551615999978367 ], [ -58.497047000418718, -34.552109000230132 ], [ -58.498034000069026, -34.552666999882092 ], [ -58.498721000273918, -34.551895000254035 ], [ -58.499299999994946, -34.551164999864795 ], [ -58.499613000039858, -34.550813999866136 ], [ -58.499643999670809, -34.550779000050795 ], [ -58.499857999646906, -34.550650000397184 ], [ -58.500287999691409, -34.550241999568584 ], [ -58.500438000313409, -34.55011399996107 ], [ -58.500588000036146, -34.549706000031847 ], [ -58.500716999689757, -34.549534000193887 ], [ -58.501275000241037, -34.54876199966651 ], [ -58.502390000398179, -34.549277000033499 ], [ -58.503442000348002, -34.54979200040043 ], [ -58.504536000436019, -34.550284999752876 ], [ -58.505588000385842, -34.550779000050795 ], [ -58.506702999643664, -34.551294000417727 ], [ -58.507775999662613, -34.551808999885395 ], [ -58.508848999681561, -34.552324000252383 ], [ -58.509921999700509, -34.552838999719995 ], [ -58.510952000434429, -34.553331999971761 ], [ -58.512110999922641, -34.553847000338749 ], [ -58.513140999757297, -34.554361999806417 ], [ -58.51425599991444, -34.55485600010428 ], [ -58.514766000050827, -34.555104999895775 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 338.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.581543, -34.489375 ], [ -58.581819, -34.490413 ], [ -58.582123, -34.491515 ], [ -58.582336, -34.49229 ], [ -58.582434, -34.492676 ], [ -58.582443, -34.49271 ], [ -58.582676, -34.493592 ], [ -58.583063, -34.49325 ], [ -58.5837, -34.493807 ], [ -58.584467, -34.49448 ], [ -58.583692, -34.495102 ], [ -58.582945, -34.495718 ], [ -58.582722, -34.495882 ], [ -58.582424, -34.496003 ], [ -58.582439, -34.496113 ], [ -58.582431, -34.496199 ], [ -58.582405, -34.496261 ], [ -58.582305, -34.496401 ], [ -58.582246, -34.496543 ], [ -58.582222, -34.496717 ], [ -58.582418, -34.497555 ], [ -58.582483, -34.497869 ], [ -58.582622999999899, -34.49851 ], [ -58.582854, -34.499438 ], [ -58.582939, -34.499612 ], [ -58.583349, -34.500297 ], [ -58.583506, -34.500525 ], [ -58.583831, -34.501051 ], [ -58.584015, -34.501392 ], [ -58.584019, -34.501404 ], [ -58.584207, -34.501804 ], [ -58.584525, -34.502479 ], [ -58.584584, -34.502554 ], [ -58.58496, -34.503412 ], [ -58.584361, -34.503921 ], [ -58.583827, -34.5044 ], [ -58.58376, -34.504476 ], [ -58.583227, -34.504886 ], [ -58.583181, -34.504956 ], [ -58.582675, -34.505388 ], [ -58.582444, -34.505593 ], [ -58.581701, -34.506241 ], [ -58.581441, -34.506461 ], [ -58.580951, -34.506882 ], [ -58.5806, -34.507181 ], [ -58.579938, -34.507745 ], [ -58.57966, -34.507988 ], [ -58.57922, -34.508347 ], [ -58.578539, -34.508945 ], [ -58.577762, -34.509593 ], [ -58.577627, -34.509742 ], [ -58.576984, -34.510282 ], [ -58.576614, -34.510607 ], [ -58.576296, -34.510878 ], [ -58.575609, -34.511474 ], [ -58.574978, -34.512021 ], [ -58.574606, -34.512342 ], [ -58.574298, -34.512603 ], [ -58.573575, -34.513195 ], [ -58.572548, -34.514088 ], [ -58.572211, -34.514382 ], [ -58.571528, -34.514966 ], [ -58.570812, -34.515578 ], [ -58.570518, -34.515832 ], [ -58.570091, -34.516201 ], [ -58.569514, -34.516712 ], [ -58.568843, -34.516143 ], [ -58.568259, -34.515619 ], [ -58.568035, -34.514633 ], [ -58.56782, -34.513691 ], [ -58.567158, -34.513135 ], [ -58.566144, -34.514007 ], [ -58.565133, -34.514879 ], [ -58.564117, -34.515741 ], [ -58.563102999999899, -34.516618 ], [ -58.56234, -34.517278 ], [ -58.56206, -34.517522 ], [ -58.561142, -34.518334 ], [ -58.560310999999899, -34.519025 ], [ -58.559867, -34.519408 ], [ -58.559436, -34.51977 ], [ -58.558588, -34.520495 ], [ -58.557889, -34.52109 ], [ -58.55771, -34.521243 ], [ -58.557323, -34.521589 ], [ -58.556716, -34.522109 ], [ -58.556116, -34.52262 ], [ -58.555657, -34.523011 ], [ -58.554879, -34.523666 ], [ -58.555565, -34.524206 ], [ -58.556242, -34.524738 ], [ -58.554855, -34.525907 ], [ -58.554207, -34.525379 ], [ -58.553517, -34.52485 ], [ -58.552352, -34.523823 ], [ -58.551756, -34.523303 ], [ -58.5512, -34.522817 ], [ -58.550634, -34.522326 ], [ -58.549935, -34.521747 ], [ -58.549533, -34.52142 ], [ -58.549077, -34.521014 ], [ -58.54829, -34.521661 ], [ -58.548013, -34.521878 ], [ -58.546996, -34.522674 ], [ -58.546132, -34.523362 ], [ -58.54591, -34.52351 ], [ -58.545052, -34.522732 ], [ -58.544185, -34.521986 ], [ -58.543303, -34.521226 ], [ -58.544369, -34.520389 ], [ -58.544531, -34.520261 ], [ -58.544058, -34.519194 ], [ -58.543585, -34.518115 ], [ -58.543091, -34.517012 ], [ -58.542781, -34.516237 ], [ -58.54241, -34.515446 ], [ -58.542035, -34.514572 ], [ -58.541676, -34.513759 ], [ -58.541473, -34.513298 ], [ -58.541334, -34.512957 ], [ -58.540991, -34.512157 ], [ -58.540700999999899, -34.511485 ], [ -58.540389, -34.510763 ], [ -58.540064, -34.510015 ], [ -58.539828, -34.509397 ], [ -58.539833, -34.509157 ], [ -58.539573, -34.508887 ], [ -58.539264, -34.50875 ], [ -58.538267, -34.508333 ], [ -58.537397, -34.507989 ], [ -58.536647, -34.50768 ], [ -58.535603, -34.507238 ], [ -58.535934, -34.506832 ], [ -58.536827, -34.505759 ], [ -58.536341, -34.504461 ], [ -58.535876, -34.504664 ], [ -58.535638, -34.50478 ], [ -58.535108, -34.505049 ], [ -58.534833, -34.505098 ], [ -58.534252, -34.505104 ], [ -58.534042, -34.504965 ], [ -58.53333, -34.504621 ], [ -58.532345, -34.504193 ], [ -58.531424, -34.503765 ], [ -58.53048, -34.503339 ], [ -58.529514, -34.502887 ], [ -58.528561, -34.502453 ], [ -58.527971, -34.502183 ], [ -58.527582, -34.502003 ], [ -58.526563, -34.501536 ], [ -58.525242, -34.500944 ], [ -58.524755, -34.500724 ], [ -58.523572, -34.500187 ], [ -58.523381, -34.500099 ], [ -58.522974, -34.499915 ], [ -58.522779, -34.499822 ], [ -58.522421, -34.499663 ], [ -58.521647, -34.499298 ], [ -58.52151, -34.499238 ], [ -58.520568, -34.498854 ], [ -58.519476, -34.498328 ], [ -58.518168, -34.497759 ], [ -58.517004, -34.497229 ], [ -58.515805, -34.496677 ], [ -58.51458, -34.496146 ], [ -58.514144, -34.495946 ], [ -58.513376, -34.495601 ], [ -58.512179, -34.495062 ], [ -58.511455, -34.493764 ], [ -58.510261, -34.493216 ], [ -58.509279, -34.492744 ], [ -58.509069, -34.492644 ], [ -58.507916, -34.492118 ], [ -58.506801, -34.491579 ], [ -58.505907, -34.491146 ], [ -58.505217, -34.490811 ], [ -58.504784, -34.490598 ], [ -58.503677, -34.49006 ], [ -58.502546, -34.489511 ], [ -58.500993, -34.488735 ], [ -58.500856, -34.489018 ], [ -58.500573, -34.489536 ], [ -58.500174999999899, -34.49027 ], [ -58.499777, -34.491001 ], [ -58.499704, -34.491115 ], [ -58.499214, -34.491983 ], [ -58.49878, -34.49276 ], [ -58.498748, -34.492845 ], [ -58.498243, -34.494045 ], [ -58.498129, -34.494478 ], [ -58.498069, -34.494866 ], [ -58.497893, -34.496036 ], [ -58.497794, -34.496854 ], [ -58.49772, -34.497151 ], [ -58.497633, -34.497765 ], [ -58.497033, -34.498902 ], [ -58.496723, -34.499485 ], [ -58.496399, -34.500132 ], [ -58.495938, -34.501072 ], [ -58.495547, -34.501802 ], [ -58.495154, -34.502593 ], [ -58.494624, -34.503603 ], [ -58.494148, -34.504469 ], [ -58.493665, -34.505392 ], [ -58.493186, -34.506336 ], [ -58.493296, -34.506374 ], [ -58.492992999999899, -34.50696 ], [ -58.492953, -34.507038 ], [ -58.492921, -34.5071 ], [ -58.492795, -34.507349 ], [ -58.492566, -34.507786 ], [ -58.492546, -34.507824 ], [ -58.492273, -34.508315 ], [ -58.492208, -34.50843 ], [ -58.492144, -34.508543 ], [ -58.491758, -34.509229 ], [ -58.491668, -34.50939 ], [ -58.491416999999899, -34.509822 ], [ -58.491122, -34.510318 ], [ -58.490929, -34.510639 ], [ -58.490442, -34.51145 ], [ -58.490387, -34.511541 ], [ -58.48995, -34.5123 ], [ -58.489946, -34.512308 ], [ -58.48945, -34.513184 ], [ -58.489304, -34.513487 ], [ -58.489254, -34.51359 ], [ -58.488949, -34.514231 ], [ -58.488443, -34.515319 ], [ -58.488212, -34.515841 ], [ -58.488152, -34.515961 ], [ -58.488017, -34.516232 ], [ -58.487791999999899, -34.516636 ], [ -58.487478, -34.517196 ], [ -58.487204, -34.517655 ], [ -58.486788, -34.518441 ], [ -58.486434, -34.519052 ], [ -58.486115, -34.519616 ], [ -58.486019, -34.519801 ], [ -58.485792, -34.520211 ], [ -58.485511, -34.520719 ], [ -58.485443, -34.52084 ], [ -58.485376, -34.520947 ], [ -58.485222, -34.520873 ], [ -58.484751, -34.522056 ], [ -58.484723, -34.522136 ], [ -58.484287, -34.522945 ], [ -58.48374, -34.523918 ], [ -58.483248, -34.524808 ], [ -58.483137, -34.525017 ], [ -58.482737, -34.52574 ], [ -58.482625, -34.525941 ], [ -58.482248, -34.526644 ], [ -58.482143, -34.526889 ], [ -58.481575, -34.527843 ], [ -58.481215, -34.528477 ], [ -58.481065, -34.528776 ], [ -58.480992, -34.528904 ], [ -58.480578, -34.529646 ], [ -58.480031, -34.530621 ], [ -58.479527, -34.531631 ], [ -58.479098, -34.53248 ], [ -58.479037, -34.532575 ], [ -58.478806, -34.533026 ], [ -58.47853, -34.533561 ], [ -58.478099, -34.534433 ], [ -58.47764, -34.535379 ], [ -58.477117, -34.536392 ], [ -58.476732, -34.537201 ], [ -58.476161, -34.538297 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 336.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.694994976029768, -34.537435357425828 ], [ -58.698453653921547, -34.534941651955933 ], [ -58.701513700157761, -34.532784654777622 ], [ -58.699459908586064, -34.531061121147111 ], [ -58.697571245984967, -34.529409831441228 ], [ -58.696632074964732, -34.528480980981669 ], [ -58.693824882464732, -34.525555102034062 ], [ -58.69987789129285, -34.520456745067136 ], [ -58.701952323985857, -34.518657097301741 ], [ -58.707054551163004, -34.514354713575869 ], [ -58.707694425924053, -34.513841265682949 ], [ -58.704593097445191, -34.511302407760162 ], [ -58.705071713445882, -34.510888295263605 ], [ -58.704275740204842, -34.510260031133321 ], [ -58.69312050419957, -34.501052800952948 ], [ -58.692346462149928, -34.500374224089434 ], [ -58.698288524950939, -34.497652176214892 ], [ -58.700559048296526, -34.499014490222251 ], [ -58.700770619790092, -34.499035131343568 ], [ -58.700940909041009, -34.499035131343568 ], [ -58.701121518852595, -34.499024810782913 ], [ -58.701333090346161, -34.498988688820596 ], [ -58.701534341279064, -34.498895803774637 ], [ -58.701658188007002, -34.498787437887692 ], [ -58.704488601768503, -34.495244905440536 ], [ -58.705554199656824, -34.495179111866328 ], [ -58.707472533869861, -34.496616249938484 ], [ -58.708597474981993, -34.497689588247304 ], [ -58.710011391792655, -34.49883517048076 ], [ -58.710950562812876, -34.499805303182967 ], [ -58.712054862803683, -34.500775435885174 ], [ -58.712859866535304, -34.501425631206864 ], [ -58.713551344099642, -34.502127429331864 ], [ -58.713964166526111, -34.502498969515685 ], [ -58.722158691691547, -34.506358859203189 ], [ -58.722612796360657, -34.505699633390918 ], [ -58.721751029545395, -34.505235208161139 ], [ -58.721296924876278, -34.505178445077505 ], [ -58.721059551981057, -34.50487398853798 ], [ -58.714593720726441, -34.501473363799938 ], [ -58.712447044108792, -34.500338102127145 ], [ -58.714366668391882, -34.497675397476407 ], [ -58.712426402987475, -34.496622700288903 ], [ -58.710284886650143, -34.494336696102323 ], [ -58.708174331994812, -34.493185953588537 ], [ -58.715336801094111, -34.490022701745694 ], [ -58.725409668299982, -34.485522937297176 ], [ -58.72674102062534, -34.4849759475821 ], [ -58.727933045381775, -34.48445217912851 ], [ -58.728642583927268, -34.484865001554986 ], [ -58.735872136670871, -34.488657807598187 ], [ -58.737925928242554, -34.48974146646767 ], [ -58.73886251912262, -34.488477197786601 ], [ -58.742554699699355, -34.490448424873001 ], [ -58.744783940802314, -34.491604327667112 ], [ -58.748690273012805, -34.486580794765004 ], [ -58.750661500099206, -34.484052257402872 ], [ -58.75250372017733, -34.481565002283382 ], [ -58.758814743022, -34.473504644406546 ], [ -58.759604265912621, -34.472462267779726 ], [ -58.760388628522904, -34.471409570592229 ], [ -58.752462437934668, -34.467219422963552 ], [ -58.751177528132281, -34.467219422963545 ], [ -58.744283393610225, -34.463534982807289 ], [ -58.74362803800819, -34.459520284709868 ], [ -58.732316703522898, -34.453885258588542 ], [ -58.726774562447559, -34.451023883145069 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 334.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.683245231999933, -34.564380756999924 ], [ -58.683341224999936, -34.564475734999917 ], [ -58.683373586999949, -34.564504661999933 ], [ -58.683893109999929, -34.564969045999931 ], [ -58.684759398999915, -34.565769669999952 ], [ -58.686223644999927, -34.567120489999922 ], [ -58.687599814999942, -34.56840676999991 ], [ -58.688979838999899, -34.569700630999932 ], [ -58.689301833999934, -34.570000385999947 ], [ -58.690333002999921, -34.570964147999916 ], [ -58.690352155999904, -34.570979330999933 ], [ -58.690904137999951, -34.571491573999936 ], [ -58.691325769999935, -34.571878609999942 ], [ -58.691494406999936, -34.572030395999946 ], [ -58.692318365999938, -34.572785643999907 ], [ -58.69256575199995, -34.57264587599991 ], [ -58.693485719999899, -34.573511398999926 ], [ -58.694331994999914, -34.574313368999924 ], [ -58.695219286999929, -34.575131996999914 ], [ -58.695249648999948, -34.575139079999929 ], [ -58.695358086999931, -34.575173647999918 ], [ -58.6959180959999, -34.576006535999909 ], [ -58.697221861999935, -34.577935869999919 ], [ -58.6976615559999, -34.578587884999934 ], [ -58.698120333999952, -34.579262754999945 ], [ -58.698131792999902, -34.579278 ], [ -58.700067550999904, -34.581111809999925 ], [ -58.700132327999938, -34.581172679999952 ], [ -58.701016706999951, -34.582063272999903 ], [ -58.701691461999928, -34.582748376999916 ], [ -58.701741038999899, -34.582801679999932 ], [ -58.701794499999949, -34.582870270999933 ], [ -58.702522045999899, -34.583516791999955 ], [ -58.703230532999953, -34.584144282999944 ], [ -58.703961890999949, -34.584794607999925 ], [ -58.704011419999915, -34.584840254999904 ], [ -58.712340565999909, -34.591406536999955 ], [ -58.713452956999902, -34.592414472999906 ], [ -58.7147518619999, -34.593566786999929 ], [ -58.715944395999941, -34.594669954999915 ], [ -58.717075821999913, -34.595693092999909 ], [ -58.718032001999916, -34.596556475999932 ], [ -58.718070095999906, -34.596590706999905 ], [ -58.718672020999918, -34.597138429999916 ], [ -58.719315851999909, -34.597724188999905 ], [ -58.719932853999921, -34.598260342999936 ], [ -58.720541099999934, -34.598774176999939 ], [ -58.720787584999925, -34.598598022999909 ], [ -58.721844831999931, -34.597842446999948 ], [ -58.723216838999917, -34.59683507099993 ], [ -58.724137795999923, -34.596173784999905 ], [ -58.724991972999931, -34.595539583999937 ], [ -58.725041569999917, -34.595501335999927 ], [ -58.725972406999915, -34.594824312999947 ], [ -58.726903243999914, -34.594147290999956 ], [ -58.727338155999917, -34.593818351999914 ], [ -58.728135435999945, -34.593271351999931 ], [ -58.728646603999948, -34.592927080999914 ], [ -58.729348528999935, -34.592433643999925 ], [ -58.730080997999949, -34.591894325999931 ], [ -58.730439621999949, -34.591611293999904 ], [ -58.731004250999945, -34.591179087999933 ], [ -58.731253699999911, -34.590989528999955 ], [ -58.731603212999914, -34.590723929999911 ], [ -58.731329039999935, -34.590456551999921 ], [ -58.730514182999912, -34.589620014999923 ], [ -58.730683488999944, -34.589496452999924 ], [ -58.731074975999945, -34.589210741999921 ], [ -58.731647207999913, -34.588797640999928 ], [ -58.732101146999923, -34.588499266999918 ], [ -58.732357161999914, -34.587925825999946 ], [ -58.732586438999931, -34.58740208599994 ], [ -58.7324893199999, -34.587312651999923 ], [ -58.731935241999906, -34.586802415999955 ], [ -58.731923813999913, -34.586794778999945 ], [ -58.731706746999919, -34.586596161999921 ], [ -58.731318293999948, -34.586256232999915 ], [ -58.731536270999925, -34.586096279999936 ], [ -58.731536839999933, -34.586095861999922 ], [ -58.731558488999951, -34.586079975999951 ], [ -58.732371214999944, -34.585483590999957 ], [ -58.732189883999922, -34.585307050999916 ], [ -58.7317238629999, -34.584853342999907 ], [ -58.731716241999948, -34.584849524999925 ], [ -58.73108028899992, -34.584253667999917 ], [ -58.730333894999944, -34.583558503999939 ], [ -58.729796948999933, -34.583058137999956 ], [ -58.729789332999928, -34.58305049799992 ], [ -58.729835113999911, -34.583016074999932 ], [ -58.729969162999907, -34.582898181999951 ], [ -58.731017926999925, -34.581975819999911 ], [ -58.732357062999938, -34.58090490099994 ], [ -58.732490921999954, -34.581035442999905 ], [ -58.732905407999908, -34.581439657999908 ], [ -58.733667, -34.58218067599995 ], [ -58.733682230999932, -34.582195954999918 ], [ -58.734413450999909, -34.58282233299991 ], [ -58.73441725899994, -34.582826152999928 ], [ -58.735003505999941, -34.583563450999918 ], [ -58.73504928199992, -34.583532848999937 ], [ -58.735198986999933, -34.583409231999951 ], [ -58.736174796999933, -34.58260346499992 ], [ -58.737483446999931, -34.581524918999946 ], [ -58.737567386999899, -34.581452252999952 ], [ -58.73866232499995, -34.580599324999923 ], [ -58.738505520999922, -34.580444446999934 ], [ -58.737420949999944, -34.579373195999949 ], [ -58.737409525999908, -34.579361735999953 ], [ -58.736880637999946, -34.578456239999923 ], [ -58.736880642999949, -34.578452416999937 ], [ -58.736328460999914, -34.577940594999916 ], [ -58.735791514999903, -34.577440229999922 ], [ -58.735265995999953, -34.576947501999939 ], [ -58.734721433999937, -34.57643949699991 ], [ -58.73417687299991, -34.575931490999949 ], [ -58.733601847999921, -34.575392927999928 ], [ -58.733761665999907, -34.575274235999927 ], [ -58.734219872999915, -34.574933936999912 ], [ -58.734925633999922, -34.574417565999909 ], [ -58.734952345999943, -34.574390796999921 ], [ -58.7352346589999, -34.574176604999934 ], [ -58.735608469999931, -34.57395089399995 ], [ -58.736356247999936, -34.573354236999933 ], [ -58.737379149999924, -34.572604472999956 ], [ -58.738551426999948, -34.571744405999937 ], [ -58.739506044999928, -34.571047274999955 ], [ -58.740349935999916, -34.570425894999914 ], [ -58.7412930939999, -34.569740145999958 ], [ -58.741135156999917, -34.56959024899993 ], [ -58.740382882999938, -34.568876269999919 ], [ -58.740500091999934, -34.568791542999918 ], [ -58.741719333999924, -34.567910186999939 ], [ -58.741523468999901, -34.567740728999922 ], [ -58.740782339999953, -34.567099521999921 ], [ -58.740770909999924, -34.567091864999952 ], [ -58.739799576999928, -34.566288689999908 ], [ -58.738809180999908, -34.565481636999948 ], [ -58.73760167599994, -34.564487209999925 ], [ -58.73680930699993, -34.563875075999931 ], [ -58.736180756999943, -34.563381579999941 ], [ -58.735540769999943, -34.562884234999956 ], [ -58.734780387999933, -34.562299782999958 ], [ -58.734061571999916, -34.561761302999912 ], [ -58.733358069999952, -34.561241881999933 ], [ -58.732697000999906, -34.560745406999956 ], [ -58.732506200999921, -34.560611689999917 ], [ -58.732013898999924, -34.560237428999926 ], [ -58.731403310999951, -34.559786726999903 ], [ -58.731376592999936, -34.559763823999958 ], [ -58.730540817999952, -34.559122262999949 ], [ -58.728579220999904, -34.557610039999929 ], [ -58.728052561999903, -34.557201445999908 ], [ -58.727606046999938, -34.556853954999951 ], [ -58.72752588599991, -34.556777645999944 ], [ -58.727018197999939, -34.556293087999904 ], [ -58.726493257999948, -34.555794989999924 ], [ -58.725964356999953, -34.555259149999927 ], [ -58.72548527999993, -34.554776162999929 ], [ -58.7253473049999, -34.554640357999915 ], [ -58.724910387999955, -34.554202679999946 ], [ -58.724232019999931, -34.553554034999934 ], [ -58.72312441899993, -34.552620153999953 ], [ -58.72180599099994, -34.551238568999906 ], [ -58.72100114999995, -34.550484500999914 ], [ -58.720219304999944, -34.549756878999915 ], [ -58.719410628999924, -34.548991412999953 ], [ -58.71844098999992, -34.548105636999935 ], [ -58.717402364999941, -34.547159583999928 ], [ -58.716390557999944, -34.546163675999935 ], [ -58.715515477999929, -34.545336351999936 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 333.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.402763282352225, -35.039805262744991 ], [ -58.413154686273778, -35.027444415686183 ], [ -58.418441086273774, -35.030139443137159 ], [ -58.423649745097293, -35.023816494117561 ], [ -58.404033054901255, -35.012699505882289 ], [ -58.396984521567916, -34.998783835294077 ], [ -58.393719392156157, -34.99772137254898 ], [ -58.3912316745091, -34.996788478431334 ], [ -58.387422356862047, -34.993937968627414 ], [ -58.382187784313039, -34.989506721568596 ], [ -58.382291439214995, -34.988703396078407 ], [ -58.381125321567943, -34.979970470588221 ], [ -58.374258184313049, -34.979167145098025 ], [ -58.374070309803244, -34.981214329411749 ], [ -58.377277133332655, -34.982892243137236 ], [ -58.376091580391481, -34.984401717647039 ], [ -58.381922168626765, -34.989577984313691 ], [ -58.361709462744443, -35.012122925490125 ], [ -58.36281079607776, -35.012654156862673 ], [ -58.363303156862074, -35.012045184313656 ], [ -58.37489954901892, -35.017823945097959 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 332.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.450060000068902, -34.558411000367357 ], [ -58.450334000113969, -34.558245999952874 ], [ -58.450613000389637, -34.558417999790834 ], [ -58.451148999926374, -34.558761000319862 ], [ -58.451964999784877, -34.559254999718405 ], [ -58.452072000222586, -34.559318999971822 ], [ -58.452952000334506, -34.55983400033881 ], [ -58.453832000446425, -34.560369999875547 ], [ -58.454753999797219, -34.560907000357759 ], [ -58.455698000162556, -34.561442999894496 ], [ -58.456085000022711, -34.561701000101039 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.453444999686951, -34.565628000431843 ], [ -58.454539999821122, -34.566228000221997 ], [ -58.455441000002111, -34.566764999804832 ], [ -58.456321000114031, -34.567301000240946 ], [ -58.457222000295019, -34.567815999708557 ], [ -58.457543999855659, -34.568008999615586 ], [ -58.457630000224299, -34.568975000096145 ], [ -58.45767300040859, -34.569404000094494 ], [ -58.457823000131327, -34.569640000185814 ], [ -58.458016000038356, -34.569768999839425 ], [ -58.458852999965927, -34.570562999582705 ], [ -58.459754000146972, -34.571420999579402 ], [ -58.460268999614584, -34.571979000130682 ], [ -58.460870000350212, -34.57257999996699 ], [ -58.461728000346909, -34.573394999779396 ], [ -58.462522000090189, -34.57416800035287 ], [ -58.463402000202109, -34.575005000280498 ], [ -58.464239000129737, -34.575476999563818 ], [ -58.464989999688669, -34.575905999562167 ], [ -58.465911999938783, -34.576420999929155 ], [ -58.467243000164274, -34.577172000387463 ], [ -58.468165000414388, -34.577707999924201 ], [ -58.469087999811279, -34.578223000291189 ], [ -58.469452999556268, -34.578480999598412 ], [ -58.469473999625336, -34.578544999851829 ], [ -58.470869000104244, -34.579338999595109 ], [ -58.472135000030164, -34.5800259998 ], [ -58.473680000231809, -34.580904999865822 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474409999721672, -34.581334999910268 ], [ -58.475481999694466, -34.582149999722674 ], [ -58.476641000082054, -34.583007999719371 ], [ -58.477993000376614, -34.584037999553971 ], [ -58.478936999842631, -34.584745999827987 ], [ -58.479431000140494, -34.585132999688142 ], [ -58.480697000066471, -34.586077000053479 ], [ -58.481704999785848, -34.586827999612467 ], [ -58.482541999713476, -34.587450000417164 ], [ -58.483421999825396, -34.588136999722735 ], [ -58.484236999637801, -34.588737000412209 ], [ -58.484687999751372, -34.589081000088015 ], [ -58.486340000390669, -34.590110999922672 ], [ -58.487476999763715, -34.590819000196632 ], [ -58.488592999966954, -34.59150600040158 ], [ -58.489730000239263, -34.59221399977622 ], [ -58.490652999636211, -34.5927720003275 ], [ -58.490931999911822, -34.592922000050237 ], [ -58.492069000184188, -34.593630000324197 ], [ -58.493164000318302, -34.594337999698894 ], [ -58.494343999875639, -34.595045999972854 ], [ -58.495630999870684, -34.595776000362093 ], [ -58.496918999911884, -34.596655000427859 ], [ -58.497198000187495, -34.596806000196693 ], [ -58.498228000022152, -34.597449000171196 ], [ -58.499558000201489, -34.598265000029699 ], [ -58.500888000380883, -34.59910199995727 ], [ -58.502218999707054, -34.599916999769675 ], [ -58.50309799977282, -34.600453000205732 ], [ -58.503613000139808, -34.600796999881595 ], [ -58.504836999927591, -34.601548000339903 ], [ -58.505523000086328, -34.601977000338252 ], [ -58.506167000106927, -34.602363000152309 ], [ -58.507476000217196, -34.603179000010812 ], [ -58.508334000213893, -34.603715000446869 ], [ -58.509192000210589, -34.604229999914537 ], [ -58.510458000136566, -34.605023999657817 ], [ -58.511230999810778, -34.605516999909582 ], [ -58.511724000062486, -34.605796000185194 ], [ -58.512797000081434, -34.606440000205794 ], [ -58.512989999988463, -34.606589999928531 ], [ -58.513590999824714, -34.606933999604337 ], [ -58.514278000029663, -34.607362999602685 ], [ -58.515543999955582, -34.608157000245342 ], [ -58.516809999881559, -34.608928999873399 ], [ -58.518075999807479, -34.609722999616679 ], [ -58.518247999645439, -34.609830000054387 ], [ -58.519428000102096, -34.610538000328404 ], [ -58.520392999637181, -34.611139000164655 ], [ -58.521937999838769, -34.612041000391798 ], [ -58.523505000155581, -34.613005999926884 ], [ -58.524019999623249, -34.613285000202552 ], [ -58.524491999805889, -34.613563999578901 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.525414000056003, -34.61418600038354 ], [ -58.525821999985283, -34.614486999875112 ], [ -58.526337000352271, -34.614850999573946 ], [ -58.526830999750814, -34.615280999618392 ], [ -58.527367000186871, -34.615730999685866 ], [ -58.527839000369511, -34.616096000330117 ], [ -58.528310999652888, -34.616461000075049 ], [ -58.528782999835528, -34.61682599981998 ], [ -58.529298000202516, -34.617211999634037 ], [ -58.529706000131739, -34.617534000093997 ], [ -58.530091999945796, -34.617855999654637 ], [ -58.530284999852825, -34.617855999654637 ], [ -58.530350000152339, -34.617834000438734 ], [ -58.530435999621659, -34.617813000369608 ], [ -58.530520999944144, -34.617791000254442 ], [ -58.530671999712979, -34.617813000369608 ], [ -58.530993000126841, -34.617834000438734 ], [ -58.531100999711327, -34.617876999723705 ], [ -58.531314999687424, -34.618048999561609 ], [ -58.531293999618356, -34.618154999953219 ], [ -58.531272000402453, -34.618692000435431 ], [ -58.531229000218161, -34.619163999718751 ], [ -58.531229000218161, -34.619272000202614 ], [ -58.531208000149036, -34.620109000130185 ], [ -58.531164999964744, -34.620795000288979 ], [ -58.531100999711327, -34.621288999687522 ], [ -58.531058000426356, -34.622104000399247 ], [ -58.531036000311133, -34.622618999866916 ], [ -58.53095099998859, -34.624379000090755 ], [ -58.530885999689076, -34.625000999996132 ], [ -58.530864999620007, -34.625386999810132 ], [ -58.530864999620007, -34.625731000385315 ], [ -58.530779000150687, -34.627233000402612 ], [ -58.530735999966396, -34.6279839999616 ], [ -58.530692999782048, -34.628499000328532 ], [ -58.530649999597756, -34.629529000163188 ], [ -58.530629000428007, -34.629979000230605 ], [ -58.530543000059367, -34.630751999904817 ], [ -58.530499999875076, -34.631653000085862 ], [ -58.530435999621659, -34.63255400026685 ], [ -58.530414000405756, -34.632983000265199 ], [ -58.530414000405756, -34.633068999734519 ], [ -58.530456999690728, -34.633304999825839 ], [ -58.530629000428007, -34.633605000170576 ], [ -58.53071499989727, -34.633712999755119 ], [ -58.530885999689076, -34.633863000377119 ], [ -58.531121999780453, -34.63399200003073 ], [ -58.531251000333384, -34.634056000284147 ], [ -58.531423000171287, -34.634098999569119 ], [ -58.531680000331733, -34.634162999822536 ], [ -58.532259000052761, -34.634141999753467 ], [ -58.533031999726973, -34.634119999638244 ], [ -58.532903000073361, -34.635086000118747 ], [ -58.532001999892316, -34.635042999934456 ], [ -58.531572999893967, -34.635042999934456 ], [ -58.531444000240356, -34.635086000118747 ], [ -58.530757000035464, -34.635494000048027 ], [ -58.530520999944144, -34.635730000139347 ], [ -58.530371000221464, -34.635900999931152 ], [ -58.530263999783699, -34.636094999884278 ], [ -58.530200000429659, -34.636265999676084 ], [ -58.529985000407407, -34.637381999879324 ], [ -58.529791999601059, -34.63888399989662 ], [ -58.529791999601059, -34.639248999641552 ], [ -58.529877999969699, -34.639785000077666 ], [ -58.529877999969699, -34.640043000284209 ], [ -58.529855999854476, -34.640128999753472 ], [ -58.529727000200864, -34.640257000260306 ], [ -58.529598999694031, -34.640300000444597 ], [ -58.529362999602711, -34.640300000444597 ], [ -58.529211999833876, -34.640257000260306 ], [ -58.529169999695682, -34.64017199993782 ], [ -58.529062000111196, -34.640021000168986 ], [ -58.529105000295488, -34.63952799991722 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.52122999956481, -34.63961400028586 ], [ -58.521166000210712, -34.640257000260306 ], [ -58.520994000372752, -34.641372999564226 ], [ -58.520822999681627, -34.642618000320397 ], [ -58.520694000028016, -34.643476000317094 ], [ -58.520544000305335, -34.644462999967459 ], [ -58.520371999568113, -34.645579000170699 ], [ -58.520265000029667, -34.646350999798756 ], [ -58.520114000260889, -34.647359999564287 ], [ -58.519598999893901, -34.647725000208538 ], [ -58.518311999898856, -34.648668999674555 ], [ -58.517711000062548, -34.649097999672904 ], [ -58.517110000226296, -34.649526999671252 ], [ -58.515908999700514, -34.650406999783172 ], [ -58.514685999958886, -34.651264999779869 ], [ -58.514406999683274, -34.65147999980212 ], [ -58.513248000195006, -34.652316999729692 ], [ -58.512131999991766, -34.653089000257125 ], [ -58.511015999788526, -34.653883000000405 ], [ -58.509900999631384, -34.654676999743685 ], [ -58.508827999612436, -34.655449000271119 ], [ -58.507948000399836, -34.656093000291662 ], [ -58.507004000034556, -34.65693000021929 ], [ -58.50578100029287, -34.657916999869599 ], [ -58.504578999721048, -34.658904000419227 ], [ -58.503119999888042, -34.660127000160912 ], [ -58.501661000055094, -34.661328999833415 ], [ -58.500180000106866, -34.662551999575101 ], [ -58.499192999557238, -34.6633460002177 ], [ -58.498249000091221, -34.664117999845757 ], [ -58.497304999725941, -34.664891000419289 ], [ -58.495073000218724, -34.666736000066294 ], [ -58.493614000385776, -34.667958999807979 ], [ -58.495739000354547, -34.670040999592402 ], [ -58.494536999782667, -34.671264000233407 ], [ -58.493463999763719, -34.672400999606396 ], [ -58.492692000135662, -34.673173000133829 ], [ -58.492197999837799, -34.673752999900955 ], [ -58.491768999839451, -34.674202999968429 ], [ -58.489386999710234, -34.676498999729006 ], [ -58.48782100033884, -34.677851000023566 ], [ -58.487628000431812, -34.678022999861525 ], [ -58.486854999858338, -34.678774000319834 ], [ -58.486361999606572, -34.679182000249057 ], [ -58.485911000392321, -34.679589000132182 ], [ -58.485439000209624, -34.679139000064765 ], [ -58.485031000280401, -34.678752000204611 ], [ -58.484581000212927, -34.678408999675526 ], [ -58.484235000444869, -34.678120999884186 ], [ -58.484194000352772, -34.678087000114942 ], [ -58.483807999639453, -34.677743999585857 ], [ -58.483421999825396, -34.677400999956149 ], [ -58.482628000082116, -34.676734999820326 ], [ -58.481447999625459, -34.675748000170017 ], [ -58.480245999952899, -34.674718000335417 ], [ -58.479495000393911, -34.67409600043004 ], [ -58.478379000190671, -34.674954000426737 ], [ -58.478250999683837, -34.67512600026464 ], [ -58.477820999639391, -34.675404999640989 ], [ -58.477649999847586, -34.675425999710058 ], [ -58.476470000290249, -34.6763279999372 ], [ -58.475760999970134, -34.67688599958916 ], [ -58.475288999787495, -34.677250000187314 ], [ -58.476083000430094, -34.677957999562011 ], [ -58.476747999620443, -34.678538000228457 ], [ -58.477391999641043, -34.679095999880474 ], [ -58.477972000307545, -34.679611000247405 ], [ -58.478486999775157, -34.680040000245754 ], [ -58.479301999587562, -34.680768999689519 ], [ -58.480117000299288, -34.68139199964105 ], [ -58.478551000028574, -34.682593000166776 ], [ -58.477349000356014, -34.683515999563667 ], [ -58.476147999830289, -34.684416999744712 ], [ -58.474967000226854, -34.685317999925701 ], [ -58.473808999885421, -34.686176999968552 ], [ -58.472607000212861, -34.687099000218666 ], [ -58.471426999756204, -34.688001000445752 ], [ -58.470225000083644, -34.688901999727477 ], [ -58.469044999626988, -34.689802999908466 ], [ -58.467844000000582, -34.690704000089511 ], [ -58.466663000397091, -34.691606000316597 ], [ -58.465461999871366, -34.692485000382419 ], [ -58.464689000197154, -34.693065000149602 ], [ -58.465526000124783, -34.69381599970859 ], [ -58.466234000398742, -34.694458999683036 ], [ -58.466984999957731, -34.695145999887927 ], [ -58.467800999816234, -34.695897000346235 ], [ -58.468509000090251, -34.696541000366835 ], [ -58.469259999649239, -34.697205999557184 ], [ -58.470011000107547, -34.697892999762075 ], [ -58.470697000266284, -34.698429000198132 ], [ -58.470483000290187, -34.698601000036092 ], [ -58.470589999828576, -34.698687000404675 ], [ -58.470825999919896, -34.699073000218732 ], [ -58.470891000219467, -34.699179999757121 ], [ -58.471812999570261, -34.700016999684749 ], [ -58.472993000026861, -34.701067999588474 ], [ -58.474877999719865, -34.702768999789441 ], [ -58.476512000428443, -34.704244000360291 ], [ -58.477198999734014, -34.704394000082971 ], [ -58.477413999756266, -34.704437000267319 ], [ -58.477757000285294, -34.704522999736582 ], [ -58.478099999915003, -34.704609000105222 ], [ -58.478464999659991, -34.704694999574542 ], [ -58.478830000304242, -34.704780999943125 ], [ -58.479195000049174, -34.704866000265667 ], [ -58.478830000304242, -34.70600399968481 ], [ -58.478464999659991, -34.707184000141467 ], [ -58.478292999822031, -34.707656000324107 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 331.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.151270428335259, -35.361244440639233 ], [ -58.152178637673494, -35.360150461209088 ], [ -58.153386143270922, -35.358313401411294 ], [ -58.153943453546653, -35.35753935936166 ], [ -58.154253070366508, -35.357167819177839 ], [ -58.158143921735977, -35.351161252872693 ], [ -58.164563310467614, -35.341170950152105 ], [ -58.16778332539409, -35.336444133369021 ], [ -58.172881682361002, -35.328187684839605 ], [ -58.179486841184534, -35.316504810170485 ], [ -58.182748138353652, -35.310353756016077 ], [ -58.191995360706592, -35.293634447744019 ], [ -58.195463069088937, -35.287111853405776 ], [ -58.205824911993354, -35.281373621677837 ], [ -58.207269790486002, -35.276295905832249 ], [ -58.206485427875705, -35.275222567523421 ], [ -58.219654463280115, -35.265397393773426 ], [ -58.21007698298601, -35.245912175244008 ], [ -58.209210055890424, -35.243352676199891 ], [ -58.20293515500807, -35.21994564461901 ], [ -58.203347977434539, -35.215156904471947 ], [ -58.215567521258073, -35.195382710244004 ], [ -58.22316345390513, -35.18349342436165 ], [ -58.232080418316883, -35.16776488991313 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 330.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.526355878550646, -34.792416238661211 ], [ -58.527119428821123, -34.792111915214093 ], [ -58.526285966407386, -34.790524498314241 ], [ -58.525781502314857, -34.78941687063282 ], [ -58.525471695562381, -34.789257854777567 ], [ -58.525257846653595, -34.789181088502616 ], [ -58.524978198080561, -34.789153671975846 ], [ -58.523091941038935, -34.78941687063282 ], [ -58.522924700225659, -34.788407942447762 ], [ -58.522258478625197, -34.788512125249476 ], [ -58.522168004086865, -34.788221510065739 ], [ -58.521825297502268, -34.788259893203211 ], [ -58.521355104068192, -34.787948715624395 ], [ -58.520612116192787, -34.787597784081768 ], [ -58.520206351596634, -34.788262634855897 ], [ -58.518320094555008, -34.790302424447418 ], [ -58.516653169727526, -34.793098910177733 ], [ -58.516115805802883, -34.794239437691274 ], [ -58.515106877617832, -34.79666305865755 ], [ -58.514569513693182, -34.798022918385236 ], [ -58.514273415204087, -34.799108612845238 ], [ -58.513648318393784, -34.801795432468481 ], [ -58.51339608634752, -34.803253991692529 ], [ -58.509755171592744, -34.822807458583334 ], [ -58.510753133167071, -34.823202256568791 ], [ -58.511016331824038, -34.823454488615056 ], [ -58.510873765884845, -34.823860253211215 ], [ -58.509272640721612, -34.824386650525163 ], [ -58.508965575621808, -34.829025526854274 ], [ -58.511520795916567, -34.830352486749831 ], [ -58.511334363534552, -34.831284648659945 ], [ -58.511071164877578, -34.831503980874089 ], [ -58.510983431991924, -34.831865879027418 ], [ -58.511926560512734, -34.8330612395945 ], [ -58.512091059673338, -34.833434104358538 ], [ -58.511652395245058, -34.833938568451075 ], [ -58.510928598938392, -34.8341359674438 ], [ -58.509524872767877, -34.834103067611679 ], [ -58.50871334357555, -34.834245633550871 ], [ -58.50818694626161, -34.834607531704208 ], [ -58.508066313543829, -34.835408094285825 ], [ -58.507748281833322, -34.835660326332089 ], [ -58.507397350290695, -34.837645282870078 ], [ -58.509075241728901, -34.837634316259376 ], [ -58.523510043072136, -34.84477906313505 ], [ -58.526350395245274, -34.846174564347528 ], [ -58.521812960065191, -34.852395374271147 ], [ -58.521418162079748, -34.852713405981646 ], [ -58.522130991775711, -34.853294636349126 ], [ -58.521993909141869, -34.853497518647202 ], [ -58.521111096979944, -34.852927254890432 ], [ -58.521012397483581, -34.853031437692152 ], [ -58.525739006698352, -34.856776535248635 ], [ -58.537752928727997, -34.866161212361234 ], [ -58.550608538129424, -34.876168244631501 ], [ -58.558227590918186, -34.882071022844613 ], [ -58.582761269896388, -34.901351695294053 ], [ -58.583123168049724, -34.901691660225978 ], [ -58.581993607146892, -34.901790359722341 ], [ -58.576148403639998, -34.906769200983383 ], [ -58.575876980025015, -34.90704199542472 ], [ -58.575443798902086, -34.906850079737346 ], [ -58.572488297316518, -34.910501961102817 ], [ -58.586969706755269, -34.918244388262046 ], [ -58.589678459599931, -34.914811839110719 ], [ -58.597481203118058, -34.918935284736577 ], [ -58.599871924252206, -34.915787867463635 ], [ -58.600935685490789, -34.915645301524449 ], [ -58.602764367826204, -34.917109344053848 ], [ -58.602248937122951, -34.91774814912754 ], [ -58.603542997186388, -34.918658377816229 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 329.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.575863, -34.650787 ], [ -58.576008, -34.650681 ], [ -58.576923, -34.649986 ], [ -58.577477, -34.649578 ], [ -58.577919, -34.649242 ], [ -58.578934, -34.648499 ], [ -58.579254, -34.648266 ], [ -58.579727, -34.647911 ], [ -58.580853, -34.648453 ], [ -58.58086, -34.648457 ], [ -58.580893, -34.64846 ], [ -58.581978, -34.648586 ], [ -58.583065, -34.648716 ], [ -58.584141, -34.648838 ], [ -58.584358, -34.64756 ], [ -58.584518, -34.64666 ], [ -58.584675, -34.64576 ], [ -58.584831, -34.644852 ], [ -58.584827, -34.644779 ], [ -58.585011, -34.643917 ], [ -58.585293, -34.64397 ], [ -58.586067, -34.644073 ], [ -58.587154, -34.644203 ], [ -58.58823, -34.644341 ], [ -58.58934, -34.644482 ], [ -58.590256, -34.6446 ], [ -58.59034, -34.645103 ], [ -58.590562, -34.645351 ], [ -58.590675, -34.645477 ], [ -58.591, -34.645779 ], [ -58.59174, -34.64587 ], [ -58.592545, -34.645969 ], [ -58.593208, -34.646049 ], [ -58.59399, -34.646137 ], [ -58.594711, -34.646229 ], [ -58.597008, -34.6465 ], [ -58.598606, -34.646694 ], [ -58.600014, -34.646858 ], [ -58.600685, -34.646938 ], [ -58.601948, -34.647095 ], [ -58.603374, -34.647274 ], [ -58.604431, -34.647392 ], [ -58.605659, -34.647545 ], [ -58.606998, -34.647694 ], [ -58.607738, -34.647775 ], [ -58.607759, -34.647777 ], [ -58.607937, -34.647797 ], [ -58.609467, -34.64819 ], [ -58.610207, -34.648361 ], [ -58.6105, -34.648437 ], [ -58.610989, -34.648552 ], [ -58.611217, -34.648605 ], [ -58.612019, -34.648796 ], [ -58.612499, -34.648918 ], [ -58.613998, -34.649284 ], [ -58.61404, -34.649288 ], [ -58.615009, -34.6493 ], [ -58.616177, -34.649303 ], [ -58.617344, -34.649281 ], [ -58.618504, -34.649258 ], [ -58.619812, -34.649246 ], [ -58.621109, -34.649216 ], [ -58.622639, -34.649189 ], [ -58.622662, -34.650406 ], [ -58.622692, -34.651649 ], [ -58.624199, -34.651623 ], [ -58.625313, -34.651608 ], [ -58.626419, -34.651585 ], [ -58.626446, -34.651585 ], [ -58.627583, -34.651562 ], [ -58.627605, -34.652866 ], [ -58.627621, -34.653797 ], [ -58.628765, -34.653782 ], [ -58.62989, -34.653774 ], [ -58.629913, -34.652954 ], [ -58.629871, -34.652855 ], [ -58.629982, -34.652863 ], [ -58.630547, -34.653103 ], [ -58.630649, -34.65316 ], [ -58.630699, -34.653188 ], [ -58.630718, -34.653198 ], [ -58.630783, -34.653236 ], [ -58.630718, -34.653198 ], [ -58.630714, -34.65316 ], [ -58.630547, -34.652267 ], [ -58.630356, -34.651428 ], [ -58.631359, -34.651279 ], [ -58.632816, -34.651058 ], [ -58.634048, -34.650867 ], [ -58.63522, -34.650673 ], [ -58.636368, -34.650555 ], [ -58.636581, -34.651424 ], [ -58.636894, -34.652374 ], [ -58.637539, -34.652275 ], [ -58.637955, -34.652206 ], [ -58.638985, -34.652039 ], [ -58.640659, -34.651791 ], [ -58.642662, -34.652509 ], [ -58.642685, -34.652738 ], [ -58.642991, -34.653905 ], [ -58.643398, -34.655083 ], [ -58.643681999999899, -34.656292 ], [ -58.643979, -34.657475 ], [ -58.644582, -34.657356 ], [ -58.645953, -34.656994 ], [ -58.646606, -34.656956 ], [ -58.646934, -34.656895 ], [ -58.648051, -34.656567 ], [ -58.650314, -34.656212 ], [ -58.652054, -34.655884 ], [ -58.652622, -34.655777 ], [ -58.652988, -34.655697 ], [ -58.655113, -34.656284 ], [ -58.655872, -34.656517 ], [ -58.656235, -34.656628 ], [ -58.658642, -34.657452 ], [ -58.659662, -34.657761 ], [ -58.660435, -34.657991 ], [ -58.66048, -34.658006 ], [ -58.66049, -34.658009 ], [ -58.661491, -34.658352 ], [ -58.661049, -34.659215 ], [ -58.660884, -34.659534 ], [ -58.660881, -34.659541 ], [ -58.660874, -34.659554 ], [ -58.660859, -34.659583 ], [ -58.661016, -34.660186 ], [ -58.661195, -34.66091 ], [ -58.661268, -34.661209 ], [ -58.661392, -34.661696 ], [ -58.661601, -34.662516 ], [ -58.661804, -34.663314 ], [ -58.662032, -34.664197 ], [ -58.662092, -34.6644 ], [ -58.662345, -34.665352 ], [ -58.662387, -34.665508 ], [ -58.662451, -34.665745 ], [ -58.662653, -34.666554 ], [ -58.662896, -34.667461 ], [ -58.662928, -34.667582 ], [ -58.663226, -34.668671 ], [ -58.663294, -34.668927 ], [ -58.663471999999899, -34.669577 ], [ -58.663615, -34.670108 ], [ -58.663698, -34.670499 ], [ -58.663918, -34.671477 ], [ -58.664088, -34.672245 ], [ -58.664175, -34.672634 ], [ -58.664562, -34.674358 ], [ -58.664745, -34.675163 ], [ -58.664809, -34.675202 ], [ -58.66629, -34.67609 ], [ -58.667164, -34.676785 ], [ -58.667884999999899, -34.677361 ], [ -58.668049, -34.67749 ], [ -58.668907, -34.678165 ], [ -58.669922, -34.678963 ], [ -58.670914, -34.679756 ], [ -58.671926, -34.680548 ], [ -58.67284, -34.681296 ], [ -58.672858, -34.68131 ], [ -58.672876, -34.681326 ], [ -58.674273, -34.681443 ], [ -58.675399, -34.681554 ], [ -58.675662, -34.681576 ], [ -58.676952, -34.681706 ], [ -58.678036, -34.681823 ], [ -58.679246, -34.681937 ], [ -58.680204, -34.682028 ], [ -58.680521, -34.682108 ], [ -58.681116, -34.682661 ], [ -58.681319, -34.682855 ], [ -58.681716, -34.683209 ], [ -58.682334, -34.683781 ], [ -58.682495, -34.68396 ], [ -58.682949, -34.684349 ], [ -58.683503, -34.684859 ], [ -58.683984, -34.685221 ], [ -58.684579, -34.685751 ], [ -58.684743, -34.685919 ], [ -58.685232, -34.686338 ], [ -58.685587, -34.686734 ], [ -58.685835, -34.686936 ], [ -58.686393, -34.687512 ], [ -58.686843, -34.687923 ], [ -58.687588, -34.688686 ], [ -58.688306, -34.68936 ], [ -58.688928, -34.689951 ], [ -58.6896, -34.690587 ], [ -58.690276, -34.691231 ], [ -58.690982, -34.691891 ], [ -58.691527, -34.692508 ], [ -58.691605, -34.692596 ], [ -58.691788, -34.692759 ], [ -58.692576, -34.693091 ], [ -58.69402, -34.694757 ], [ -58.69454, -34.695351 ], [ -58.695129, -34.695885 ], [ -58.695515, -34.696251 ], [ -58.696402, -34.697086 ], [ -58.696509, -34.697166 ], [ -58.697094, -34.697711 ], [ -58.697785, -34.698378 ], [ -58.697881, -34.698427 ], [ -58.698538, -34.69903 ], [ -58.698615, -34.699152 ], [ -58.699517, -34.699952 ], [ -58.700041, -34.700478 ], [ -58.700664, -34.701046 ], [ -58.700721, -34.701092 ], [ -58.701878, -34.702121 ], [ -58.702858, -34.702986 ], [ -58.703907, -34.703932 ], [ -58.704914, -34.704812 ], [ -58.705966, -34.705746 ], [ -58.706771, -34.706463 ], [ -58.707267, -34.70689 ], [ -58.707515, -34.707114 ], [ -58.708285, -34.70777 ], [ -58.708541, -34.708029 ], [ -58.709006, -34.708429 ], [ -58.709074, -34.708494 ], [ -58.710039, -34.709337 ], [ -58.710432, -34.709687 ], [ -58.711061, -34.710221 ], [ -58.711115, -34.710282 ], [ -58.712122, -34.711174 ], [ -58.713113, -34.712058 ], [ -58.713983, -34.712825 ], [ -58.71465, -34.713377 ], [ -58.714742, -34.713492 ], [ -58.714857, -34.713589 ], [ -58.714858, -34.713589 ], [ -58.715768, -34.714357 ], [ -58.716324, -34.714871 ], [ -58.716633, -34.715077 ], [ -58.716965, -34.715478 ], [ -58.71729, -34.715672 ], [ -58.717694, -34.716042 ], [ -58.718045, -34.716332 ], [ -58.71835, -34.716614 ], [ -58.719075, -34.71724 ], [ -58.71922, -34.71732 ], [ -58.719789, -34.717831 ], [ -58.720429, -34.7184 ], [ -58.721578, -34.719372 ], [ -58.72103958699995, -34.72034094299994 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 328.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.408791999950779, -34.652723999612874 ], [ -58.408941999673516, -34.652809999981457 ], [ -58.410443999690813, -34.653217999910737 ], [ -58.411624000147469, -34.653475000071126 ], [ -58.413426999656281, -34.653969000369045 ], [ -58.414800000019966, -34.654311999998754 ], [ -58.415508000293926, -34.654483999836657 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.418255000168074, -34.655192000110674 ], [ -58.419842999654691, -34.655706999578342 ], [ -58.421903000223267, -34.656329000383039 ], [ -58.422824999574004, -34.656822999781582 ], [ -58.423532999848021, -34.657187000379736 ], [ -58.423791000054564, -34.657316000033347 ], [ -58.424820999889221, -34.657788000215987 ], [ -58.425314000140929, -34.658003000238239 ], [ -58.425722000070209, -34.658196000145267 ], [ -58.426795000089157, -34.658668000327907 ], [ -58.427803999854689, -34.659119000441478 ], [ -58.429090999849734, -34.659698000162507 ], [ -58.430228000122042, -34.660191999561107 ], [ -58.431365000394408, -34.660727999997164 ], [ -58.432545999997842, -34.661243000364152 ], [ -58.433746999624304, -34.661822000085181 ], [ -58.434927000080961, -34.662358999668072 ], [ -58.436128999753521, -34.662917000219352 ], [ -58.437696000070332, -34.663603000378146 ], [ -58.437888999977304, -34.66343199968702 ], [ -58.438703999789709, -34.662808999735489 ], [ -58.439648000155046, -34.662037000107432 ], [ -58.440077000153394, -34.661693999578347 ], [ -58.440721000173994, -34.661200000179804 ], [ -58.441707999824303, -34.660406000436524 ], [ -58.442824000027542, -34.659526000324604 ], [ -58.441622000354982, -34.658538999774976 ], [ -58.441343000079371, -34.658324999798879 ], [ -58.440591999621063, -34.657745000031696 ], [ -58.440552999621218, -34.657715000446842 ], [ -58.438811000227417, -34.656350999598885 ], [ -58.438038999700041, -34.655792999946925 ], [ -58.438446999629264, -34.655471000386342 ], [ -58.439518999602114, -34.654633999559394 ], [ -58.440464000013549, -34.653839999816114 ], [ -58.441643999570886, -34.652959999704194 ], [ -58.443038000003639, -34.651845000446372 ], [ -58.443209999841599, -34.651650999593926 ], [ -58.443274000094959, -34.651500999871189 ], [ -58.443296000210182, -34.651201000425772 ], [ -58.443145999588182, -34.651028999688549 ], [ -58.442910000396182, -34.65092200015016 ], [ -58.442867000211834, -34.650856999850646 ], [ -58.442867000211834, -34.650783000035403 ], [ -58.442867000211834, -34.6507500003122 ], [ -58.442930999565931, -34.65068600005884 ], [ -58.443124000372279, -34.650620999759269 ], [ -58.443424999863794, -34.650620999759269 ], [ -58.44460500032045, -34.650856999850646 ], [ -58.444764999605013, -34.650731000335327 ], [ -58.445206000156759, -34.650384999667949 ], [ -58.446472000082679, -34.649398000017641 ], [ -58.449196999841604, -34.647253000025898 ], [ -58.450184000391289, -34.646459000282618 ], [ -58.451127999857249, -34.645685999709087 ], [ -58.451320999764278, -34.645685999709087 ], [ -58.451749999762626, -34.645793000146796 ], [ -58.451921999600586, -34.645878999616116 ], [ -58.452629999874546, -34.646372999913979 ], [ -58.452759000427477, -34.646393999983047 ], [ -58.453251999779923, -34.646287000444659 ], [ -58.453574000239882, -34.64626600037559 ], [ -58.454324999798871, -34.646329999729687 ], [ -58.454840000165859, -34.646480000351687 ], [ -58.455376999748694, -34.646758999728036 ], [ -58.455913000184751, -34.647274000094967 ], [ -58.456079999792109, -34.64748299984052 ], [ -58.456212999630168, -34.648111000022595 ], [ -58.456234999745391, -34.648390000298207 ], [ -58.456191999561099, -34.648776000112264 ], [ -58.456420000182845, -34.648568000412865 ], [ -58.456685999858962, -34.648324999998692 ], [ -58.457651000293367, -34.647380999633356 ], [ -58.458637999943676, -34.646459000282618 ], [ -58.459518000055596, -34.645557000055476 ], [ -58.460697999612933, -34.644462999967459 ], [ -58.460955999819475, -34.643818999946859 ], [ -58.460955999819475, -34.643582999855539 ], [ -58.460955999819475, -34.643346999764162 ], [ -58.460999000003824, -34.643132999788065 ], [ -58.461126999611281, -34.642960999950162 ], [ -58.461277000233338, -34.642832000296551 ], [ -58.461449000071241, -34.642745999927911 ], [ -58.461749999562812, -34.642681999674494 ], [ -58.462006999723201, -34.642703999789717 ], [ -58.462406000136752, -34.642450999813775 ], [ -58.462543000159314, -34.642295999860437 ], [ -58.463166000110789, -34.641200999726323 ], [ -58.463809000085234, -34.640600999936169 ], [ -58.464409999921543, -34.64017199993782 ], [ -58.465097000126434, -34.6396779996399 ], [ -58.465826999616297, -34.63911999998794 ], [ -58.466491999705966, -34.637767999693381 ], [ -58.466984999957731, -34.636673999605364 ], [ -58.467001999842353, -34.636635999651617 ], [ -58.467479000255594, -34.635537000232318 ], [ -58.467951000438291, -34.63446400021337 ], [ -58.468028000391882, -34.634299999845098 ], [ -58.468486999975028, -34.633326999941062 ], [ -58.469023999557919, -34.632146000337627 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.467374999956235, -34.630106999838119 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463998999853914, -34.6291980001875 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.454484999982697, -34.625808000338907 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.453444999686951, -34.62678200028904 ], [ -58.451471000386334, -34.62590200017712 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.453531000055591, -34.624056999630795 ], [ -58.454604000074482, -34.624485999629144 ], [ -58.455055000188054, -34.623434999725418 ], [ -58.455548000439819, -34.622319000421498 ], [ -58.456085000022711, -34.621181000103036 ], [ -58.456620999559448, -34.620000999646379 ], [ -58.457222000295019, -34.618671000366305 ], [ -58.457285999649116, -34.618520999744305 ], [ -58.457779999946979, -34.617490999909649 ], [ -58.458187999876259, -34.616547000443688 ], [ -58.458488000220996, -34.615881000307866 ], [ -58.457285999649116, -34.615817000054449 ], [ -58.456171000391294, -34.615730999685866 ], [ -58.457328999833408, -34.613028000042107 ], [ -58.457092999742088, -34.612919999558301 ], [ -58.457929999669716, -34.611762000116187 ], [ -58.456771000181448, -34.611203999564907 ], [ -58.455633999909139, -34.61073200028153 ], [ -58.454390000098385, -34.610151999615027 ], [ -58.453852999616174, -34.609873000238736 ], [ -58.453166000310603, -34.609508999640582 ], [ -58.452523000336157, -34.60905800042633 ], [ -58.451942999669654, -34.608671999712953 ], [ -58.450978000134569, -34.608005999577188 ], [ -58.450011999654009, -34.607341000386839 ], [ -58.449174999726438, -34.606804999950725 ], [ -58.448231000260421, -34.606117999745834 ], [ -58.447222999641667, -34.605410000371194 ], [ -58.447115000057181, -34.605324000002554 ], [ -58.446300000244776, -34.604808999635566 ], [ -58.445355999879439, -34.60416599966112 ], [ -58.444347000113908, -34.603479000355549 ], [ -58.443402999748571, -34.602835000334949 ], [ -58.442544999751874, -34.60217000024528 ], [ -58.442351999844902, -34.602062999807572 ], [ -58.441106999987994, -34.601290000133361 ], [ -58.440528000266966, -34.602040999692349 ], [ -58.439304999626017, -34.601290000133361 ], [ -58.43994899964656, -34.600603999974567 ], [ -58.440806999643257, -34.599810000231287 ], [ -58.441772000077719, -34.598951000188492 ], [ -58.442737999658902, -34.598093000191739 ], [ -58.443682000024239, -34.597235000195042 ], [ -58.444668999674548, -34.596376000152247 ], [ -58.445505999602176, -34.595582000408967 ], [ -58.44627900017565, -34.594917000319242 ], [ -58.447309000010307, -34.595689999993454 ], [ -58.448380999983101, -34.596461999621567 ], [ -58.449432999932981, -34.597235000195042 ], [ -58.450204999561038, -34.596570000105373 ], [ -58.450978000134569, -34.595839999716191 ], [ -58.451407000132917, -34.595474999971202 ], [ -58.451706999578334, -34.595195999695591 ], [ -58.450592000320512, -34.594358999767962 ], [ -58.449540000370689, -34.593457999586974 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45102100031886, -34.588678000389336 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.453124000172409, -34.586098000122547 ], [ -58.452973000403631, -34.58588400014645 ], [ -58.452350999598934, -34.584811000127502 ], [ -58.451749999762626, -34.58380200036197 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.454025000353454, -34.582944000365273 ], [ -58.455376999748694, -34.582557999651897 ], [ -58.456706999928087, -34.582149999722674 ], [ -58.458401999852356, -34.581850000277257 ], [ -58.459453999802236, -34.581850000277257 ], [ -58.460547999890252, -34.581850000277257 ], [ -58.461900000184812, -34.581807000092908 ], [ -58.463336999902594, -34.581763999908617 ], [ -58.463315999833469, -34.580668999774502 ], [ -58.463251999580052, -34.579574999686429 ], [ -58.463230000364206, -34.578373000013869 ], [ -58.463508999740498, -34.57787999976216 ], [ -58.464088000360903, -34.576978999581115 ], [ -58.464774999666474, -34.575969999815584 ], [ -58.464989999688669, -34.575905999562167 ], [ -58.466062999707617, -34.574983000165275 ], [ -58.467199999979982, -34.573975000445898 ], [ -58.468294000067999, -34.573008999965339 ], [ -58.468080000091902, -34.572880000311727 ], [ -58.468851999719959, -34.572001000245905 ], [ -58.469603000178267, -34.571121000133985 ], [ -58.470417999990673, -34.570133999584357 ], [ -58.471169000448981, -34.569232000256591 ], [ -58.471985000307484, -34.568331000075545 ], [ -58.471040999942147, -34.567730000239294 ], [ -58.470139999761159, -34.56719399980318 ], [ -58.469667000431684, -34.566894000357763 ], [ -58.468165000414388, -34.565971000061552 ], [ -58.468959000157668, -34.565069999880564 ], [ -58.469603000178267, -34.564319000321575 ], [ -58.470440000105896, -34.564854999858312 ], [ -58.471383999571856, -34.565455999694564 ], [ -58.472306999868124, -34.564446999929032 ], [ -58.473121999680473, -34.563545999748044 ], [ -58.474173999630352, -34.564126000414547 ], [ -58.474989000342077, -34.563181000003112 ], [ -58.475739999901009, -34.562215999568707 ], [ -58.476448000175026, -34.561249999987467 ], [ -58.477156000449042, -34.56039199999077 ], [ -58.477846999939061, -34.559470999786754 ], [ -58.477863999823683, -34.559447999625434 ], [ -58.478679999682186, -34.558311000252388 ], [ -58.479710000416162, -34.556958999957828 ], [ -58.479365999840979, -34.556743999935577 ], [ -58.480139000414511, -34.556401000305868 ], [ -58.480997000411207, -34.556035999661617 ], [ -58.481984000061516, -34.555670999916686 ], [ -58.482756999735727, -34.55532800028692 ], [ -58.483894000008036, -34.554833999989057 ], [ -58.484494999844344, -34.554104999645972 ], [ -58.485073999565373, -34.553331999971761 ], [ -58.485931999562069, -34.553783000085332 ], [ -58.486726000204726, -34.554191000014612 ], [ -58.487262999787561, -34.553397000271275 ], [ -58.48782100033884, -34.552602999628675 ], [ -58.488400000059926, -34.551765999701104 ], [ -58.488915000426914, -34.551079000395532 ], [ -58.489450999963651, -34.550306999868099 ], [ -58.490008999615611, -34.549513000124819 ], [ -58.490567000166891, -34.548719000381539 ], [ -58.491146999934074, -34.547924999738882 ], [ -58.491746999724228, -34.547130999995602 ], [ -58.490931999911822, -34.546745000181545 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 327.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.494750999758764, -34.742373999660288 ], [ -58.493743000039387, -34.741773999870134 ], [ -58.491725999655102, -34.740744000035534 ], [ -58.490910999842754, -34.740379000290602 ], [ -58.488829000058274, -34.739306000271654 ], [ -58.488549999782606, -34.739155999649597 ], [ -58.485889000277098, -34.738019000276608 ], [ -58.484151000168481, -34.737288999887369 ], [ -58.483701000101007, -34.737095999980397 ], [ -58.483078000149533, -34.736816999704729 ], [ -58.480697000066471, -34.735764999754906 ], [ -58.480009999861579, -34.735465000309489 ], [ -58.479280000371659, -34.735164999964752 ], [ -58.478572000097699, -34.734863999573861 ], [ -58.477714000101003, -34.734498999828929 ], [ -58.477413999756266, -34.734371000221415 ], [ -58.476833999989083, -34.734135000130095 ], [ -58.476104999645997, -34.733812999670135 ], [ -58.475354000087009, -34.733512000178621 ], [ -58.47516100017998, -34.733447999925204 ], [ -58.475095999880466, -34.733404999740912 ], [ -58.474517000159381, -34.733232999902953 ], [ -58.473786999770198, -34.732847000088952 ], [ -58.472692999682124, -34.732289000436992 ], [ -58.471963000192261, -34.731902999723616 ], [ -58.470848000035119, -34.731345000071656 ], [ -58.469709999716656, -34.73076600035057 ], [ -58.468658999812931, -34.730228999868416 ], [ -58.467500000324719, -34.729650000147331 ], [ -58.466449000420994, -34.729113999711274 ], [ -58.467071000326371, -34.728297999852771 ], [ -58.466298999798937, -34.727075000111142 ], [ -58.465890999869714, -34.726453000205765 ], [ -58.465268999964337, -34.726087999561514 ], [ -58.463980999923194, -34.725358000071594 ], [ -58.462780000296732, -34.7246719999128 ], [ -58.46376699994704, -34.723449000171172 ], [ -58.464689000197154, -34.722310999852709 ], [ -58.463595000109137, -34.721711000062555 ], [ -58.462350000252286, -34.720959999604247 ], [ -58.463359000017817, -34.719671999563104 ], [ -58.463572999993914, -34.719415000301979 ], [ -58.463680999578401, -34.719285999749047 ], [ -58.463959999854069, -34.718943000119339 ], [ -58.464345999668126, -34.71842799975235 ], [ -58.465333000217754, -34.717182999895499 ], [ -58.464260000198806, -34.716582000059191 ], [ -58.463187000179857, -34.716024000407231 ], [ -58.462070999976618, -34.715381000432785 ], [ -58.461020000072892, -34.714779999697157 ], [ -58.459903999869653, -34.714178999860906 ], [ -58.458809999781636, -34.713578000024654 ], [ -58.457779999946979, -34.712977000188346 ], [ -58.456680999628418, -34.712418999637066 ], [ -58.455598000047644, -34.711796999731689 ], [ -58.454517999705899, -34.71121800001066 ], [ -58.455125999864947, -34.710427999552508 ], [ -58.45554500030147, -34.70991800031544 ], [ -58.456265000229564, -34.709058000226491 ], [ -58.456634000158942, -34.708776999858628 ], [ -58.458060000268745, -34.707693000231757 ], [ -58.458116000153268, -34.707372999863992 ], [ -58.45846700015187, -34.707205000210536 ], [ -58.458715999943422, -34.707147000233817 ], [ -58.458902999573752, -34.707139999911021 ], [ -58.459149000126217, -34.707068000188031 ], [ -58.459344000125441, -34.706841999658536 ], [ -58.459330000379168, -34.706584000351313 ], [ -58.459214999572509, -34.706397999867761 ], [ -58.45906199971148, -34.706291000329372 ], [ -58.458865999666102, -34.706208000099082 ], [ -58.458601000036083, -34.706218999707005 ], [ -58.458465000059675, -34.706170000145335 ], [ -58.458445000036704, -34.706067999938227 ], [ -58.458481999944297, -34.705964999684966 ], [ -58.458629999574782, -34.705821000238927 ], [ -58.459826999916061, -34.705072999918968 ], [ -58.459909000100254, -34.704927000380735 ], [ -58.459864999869808, -34.704827000265823 ], [ -58.45753799957896, -34.70214199965352 ], [ -58.454791999750967, -34.698757000035471 ], [ -58.451779000200645, -34.695197999587947 ], [ -58.450226999676261, -34.693364999595019 ], [ -58.449969000369038, -34.693065000149602 ], [ -58.448596000005352, -34.691433999579374 ], [ -58.448038000353392, -34.690789999558774 ], [ -58.446557999551999, -34.689052000349477 ], [ -58.445914000430719, -34.6882799998221 ], [ -58.445591999970759, -34.687936000146237 ], [ -58.445270000410176, -34.687529000263112 ], [ -58.444904999765868, -34.687099000218666 ], [ -58.441235999641606, -34.682786000073804 ], [ -58.440914000081023, -34.68265799956697 ], [ -58.440056000084269, -34.68250799984429 ], [ -58.43962700008592, -34.682443000444096 ], [ -58.439368999879377, -34.682164000168427 ], [ -58.439004000134446, -34.681820999639399 ], [ -58.438961999996252, -34.681756000239204 ], [ -58.43883300034264, -34.68162799973237 ], [ -58.439111999718989, -34.680212000083714 ], [ -58.435357000125407, -34.675727000100949 ], [ -58.433811999923819, -34.673902999623692 ], [ -58.433082000433956, -34.673023000411092 ], [ -58.432202000322036, -34.671971999608047 ], [ -58.431429999794602, -34.67102800014203 ], [ -58.431108000233962, -34.670641000281876 ], [ -58.430592999867031, -34.670019000376499 ], [ -58.428512000128649, -34.667551999924797 ], [ -58.426916000273138, -34.665734999770393 ], [ -58.425871999792889, -34.664546999844106 ], [ -58.423834000238855, -34.66293800028842 ], [ -58.422375000405907, -34.662080000291724 ], [ -58.421837999923696, -34.662594999759392 ], [ -58.420014000345816, -34.662572999644169 ], [ -58.418684000166422, -34.662572999644169 ], [ -58.418298000352365, -34.662551999575101 ], [ -58.417546999894114, -34.662551999575101 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.416109000130234, -34.642124000022534 ], [ -58.415658000016663, -34.642230999560923 ], [ -58.41462900022816, -34.642466999652243 ], [ -58.413148000279932, -34.642789000112202 ], [ -58.413040999842224, -34.642575000136105 ], [ -58.411453000355664, -34.643004000134454 ], [ -58.409307000317767, -34.642703999789717 ], [ -58.409134999580544, -34.641651999839894 ], [ -58.408920999604391, -34.640450000167334 ], [ -58.40877099988171, -34.639934999800346 ], [ -58.408663000297167, -34.639720999824249 ], [ -58.408620000112876, -34.639378000194483 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.409134999580544, -34.636652000389461 ], [ -58.407675999747539, -34.636330999975598 ], [ -58.407805000300471, -34.63510800023397 ], [ -58.407868999654568, -34.634249000191176 ], [ -58.40797700013843, -34.633089999803587 ], [ -58.40804100039179, -34.632038999899862 ], [ -58.40821300022975, -34.630816000158234 ], [ -58.408297999652916, -34.630279999722177 ], [ -58.408340999837208, -34.629485999978897 ], [ -58.40844900032107, -34.628326999591309 ], [ -58.408576999928584, -34.627361000010126 ], [ -58.408663000297167, -34.626395999575664 ], [ -58.408727999697362, -34.626160000383663 ], [ -58.408748999766487, -34.625537000432189 ], [ -58.408878000319419, -34.624615000182075 ], [ -58.40900699997303, -34.623498999978835 ], [ -58.409114000410739, -34.622382999775596 ], [ -58.409199999880059, -34.62124600040255 ], [ -58.409264000133476, -34.620022999761602 ], [ -58.409328000386893, -34.618692000435431 ], [ -58.409392999787087, -34.617511999978774 ], [ -58.409457000040504, -34.61658999972866 ], [ -58.409693000131824, -34.61523800033342 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.410057999876756, -34.612684000366301 ], [ -58.410229999714659, -34.611547000093935 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.406131000445271, -34.609958999707999 ], [ -58.406024000007562, -34.609808999985319 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406173999730242, -34.609187000079942 ], [ -58.406539000374551, -34.609100999711302 ], [ -58.408406000136779, -34.609272000402427 ], [ -58.408791999950779, -34.609208000149067 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 326.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.576290999929654, -34.630880000411651 ], [ -58.574745999728066, -34.630880000411651 ], [ -58.574016000238203, -34.630901999627554 ], [ -58.573007999619449, -34.630880000411651 ], [ -58.572878999965837, -34.630772999973942 ], [ -58.572878999965837, -34.630601000135982 ], [ -58.572986000403546, -34.630451000413302 ], [ -58.571569999855569, -34.629786000323634 ], [ -58.570626000389552, -34.629357000325285 ], [ -58.569616999724701, -34.628906000211714 ], [ -58.568393999983073, -34.628305000375406 ], [ -58.567685999709056, -34.627961999846377 ], [ -58.566978000334416, -34.627597000101446 ], [ -58.566183999691816, -34.627274999641486 ], [ -58.565433000132828, -34.626888999827429 ], [ -58.565153999857159, -34.626803000358109 ], [ -58.564339000044754, -34.626459999829081 ], [ -58.563330000279223, -34.626008999715509 ], [ -58.561656000424023, -34.625322999556715 ], [ -58.560196999691755, -34.624700999651395 ], [ -58.560003999784726, -34.624615000182075 ], [ -58.558395000229041, -34.623950000092407 ], [ -58.558009000414984, -34.623778000254447 ], [ -58.556742999589744, -34.623240999772293 ], [ -58.556570999751784, -34.623177000418195 ], [ -58.555777000008504, -34.622833999889167 ], [ -58.555348000010156, -34.622662000051207 ], [ -58.554490000013459, -34.622297000306276 ], [ -58.553674000154956, -34.621953999777247 ], [ -58.552922999696648, -34.62165400033183 ], [ -58.552278999676048, -34.621375000056162 ], [ -58.551958000161562, -34.62124600040255 ], [ -58.551442999794574, -34.621031000380299 ], [ -58.551099000118711, -34.620902999873522 ], [ -58.550091000399334, -34.620472999829019 ], [ -58.549274999641455, -34.620173000383602 ], [ -58.548395999575689, -34.619829999854574 ], [ -58.547429999994449, -34.619486000178711 ], [ -58.547044000180449, -34.619335999556711 ], [ -58.546164000068529, -34.618992999926945 ], [ -58.544877000073427, -34.618498999629082 ], [ -58.543611000147507, -34.618027000345762 ], [ -58.542837999573976, -34.617748000070094 ], [ -58.542279999922016, -34.617534000093997 ], [ -58.541357999671902, -34.617169000349065 ], [ -58.540155999999342, -34.616740000350717 ], [ -58.538954000326839, -34.61626800016802 ], [ -58.537667000331737, -34.61579599998538 ], [ -58.536657999666886, -34.615409000125226 ], [ -58.536035999761566, -34.615195000149072 ], [ -58.534490999559921, -34.614615000381946 ], [ -58.533418000440349, -34.61418600038354 ], [ -58.532774000419749, -34.614636999597792 ], [ -58.531852000169636, -34.614100000014957 ], [ -58.531379999986996, -34.614443999690764 ], [ -58.531208000149036, -34.614573000243695 ], [ -58.531100999711327, -34.614700999851209 ], [ -58.530241999668533, -34.615023000311169 ], [ -58.530091999945796, -34.614809000335072 ], [ -58.529877999969699, -34.614336000106277 ], [ -58.52968500006267, -34.613907000107929 ], [ -58.52912700041071, -34.612663000297175 ], [ -58.528891000319391, -34.612191000114535 ], [ -58.528204000114499, -34.611783000185255 ], [ -58.527796000185219, -34.612082999630672 ], [ -58.527367000186871, -34.612405000090632 ], [ -58.527002000441939, -34.612684000366301 ], [ -58.526552000374465, -34.612984999857815 ], [ -58.525757999731866, -34.613563999578901 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.524319999967986, -34.61459400031282 ], [ -58.523160999580398, -34.61547400042474 ], [ -58.522003000138284, -34.616395999775534 ], [ -58.521036999657781, -34.617105000095648 ], [ -58.520178999661084, -34.617770000185317 ], [ -58.519384999917747, -34.618392000090694 ], [ -58.518912999735107, -34.618713999651334 ], [ -58.518591000174467, -34.619013999996071 ], [ -58.518268999714508, -34.619250000087391 ], [ -58.517776000362062, -34.619593999763254 ], [ -58.517002999788588, -34.620193999553408 ], [ -58.515929999769639, -34.620967000126939 ], [ -58.515479999702166, -34.621309999756647 ], [ -58.5148139995664, -34.621825000123636 ], [ -58.514278000029663, -34.622233000052859 ], [ -58.513826999916091, -34.622575999682624 ], [ -58.513291000379297, -34.623004999680973 ], [ -58.512753999897143, -34.623412999610196 ], [ -58.512131999991766, -34.622877000073458 ], [ -58.511510000086389, -34.622319000421498 ], [ -58.511015999788526, -34.62189000042315 ], [ -58.510114999607481, -34.621116999849619 ], [ -58.508827999612436, -34.619979999577254 ], [ -58.507905000215544, -34.619486000178711 ], [ -58.506938999734984, -34.618927999627431 ], [ -58.505694999924287, -34.618305999722054 ], [ -58.505137000272327, -34.618006000276637 ], [ -58.504428999998311, -34.617661999701454 ], [ -58.503807000092934, -34.617341000186968 ], [ -58.503312999795071, -34.617082999980425 ], [ -58.502647999705403, -34.616740000350717 ], [ -58.501961000399831, -34.61635399963734 ], [ -58.500952999781077, -34.61579599998538 ], [ -58.499900999831254, -34.61515199996478 ], [ -58.498849999927529, -34.614573000243695 ], [ -58.497776999908581, -34.61395000029222 ], [ -58.496554000166952, -34.613242000018261 ], [ -58.495630999870684, -34.612705999582147 ], [ -58.494321999760416, -34.611932999907992 ], [ -58.493400000409679, -34.611439999656227 ], [ -58.492734000273856, -34.611074999911295 ], [ -58.492197999837799, -34.610774999566559 ], [ -58.491683000370131, -34.61049600019021 ], [ -58.491060999565434, -34.610151999615027 ], [ -58.490138000168542, -34.609637000147416 ], [ -58.488894000357789, -34.608950999988622 ], [ -58.488486000428509, -34.609401000056039 ], [ -58.488120999784257, -34.609786999870096 ], [ -58.487992000130646, -34.609958999707999 ], [ -58.487669999670686, -34.610324000352307 ], [ -58.487498999878881, -34.610538000328404 ], [ -58.4873490001562, -34.610753000350655 ], [ -58.487198000387366, -34.610946000257684 ], [ -58.487026999696241, -34.611161000279878 ], [ -58.486833999789212, -34.611397000371198 ], [ -58.486639999836086, -34.611632999563255 ], [ -58.486446999929058, -34.611889999723644 ], [ -58.486276000137252, -34.612104999745895 ], [ -58.486040000045932, -34.612405000090632 ], [ -58.484774000119955, -34.611740000000964 ], [ -58.484151000168481, -34.611418000440324 ], [ -58.483529000263104, -34.611074999911295 ], [ -58.483228999918367, -34.610925000188558 ], [ -58.482970999711824, -34.610795999635627 ], [ -58.482734999620504, -34.610666999982016 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.480976000342082, -34.609744999731902 ], [ -58.479667000231814, -34.60905800042633 ], [ -58.479044000280339, -34.608714999897302 ], [ -58.478422000374962, -34.608393000336662 ], [ -58.477135000379917, -34.60770600013177 ], [ -58.475889999623746, -34.607041000042102 ], [ -58.474753000250701, -34.606440000205794 ], [ -58.473593999863169, -34.605860999585445 ], [ -58.472456999590804, -34.605259999749137 ], [ -58.471084000126439, -34.604681000028108 ], [ -58.469603000178267, -34.604058000076577 ], [ -58.468272999998931, -34.603479000355549 ], [ -58.466856000304119, -34.602877999619921 ], [ -58.466255999614646, -34.602599000243629 ], [ -58.466020000422645, -34.602556000059337 ], [ -58.465805000400394, -34.602621000358852 ], [ -58.464947000403697, -34.602835000334949 ], [ -58.464366999737194, -34.602985000057686 ], [ -58.462907999904246, -34.603349999802617 ], [ -58.462157000345258, -34.603542999709646 ], [ -58.461492000255589, -34.603715000446869 ], [ -58.460118999891904, -34.604058000076577 ], [ -58.458939000334567, -34.604358999568149 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.456578000274476, -34.604959000257622 ], [ -58.455805999747042, -34.605174000279874 ], [ -58.454989999888539, -34.605389000302068 ], [ -58.454025000353454, -34.605645999563194 ], [ -58.453015999688603, -34.605881999654514 ], [ -58.452007999969169, -34.606160999930182 ], [ -58.45102100031886, -34.606419000136725 ], [ -58.450742000043249, -34.606483000390085 ], [ -58.450633999559386, -34.606503999559891 ], [ -58.449174999726438, -34.606804999950725 ], [ -58.447007999619473, -34.607405999787034 ], [ -58.446536000336096, -34.607534000293811 ], [ -58.44627900017565, -34.607598999694062 ], [ -58.446149999622719, -34.607641999878354 ], [ -58.445442000248079, -34.607728000246993 ], [ -58.44524900034105, -34.607770000385187 ], [ -58.445119999788119, -34.607770000385187 ], [ -58.443747000323754, -34.608027999692411 ], [ -58.442438000213485, -34.608220999599382 ], [ -58.441622000354982, -34.608371000221439 ], [ -58.441429000447954, -34.608800000219787 ], [ -58.440120000337686, -34.608800000219787 ], [ -58.439304999626017, -34.610816999704753 ], [ -58.438404000344292, -34.612813000019912 ], [ -58.437823999677789, -34.614078999945832 ], [ -58.437760000323692, -34.614615000381946 ], [ -58.437609999701692, -34.615923999592837 ], [ -58.437416999794664, -34.616461000075049 ], [ -58.437331000325344, -34.616631999866854 ], [ -58.437095000234024, -34.617082999980425 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.435914999777367, -34.619357999671877 ], [ -58.435484999732921, -34.620408999575602 ], [ -58.435163000172281, -34.621266999572356 ], [ -58.43514300014931, -34.621337000102415 ], [ -58.434648999851447, -34.623026999796139 ], [ -58.434498000082613, -34.624443000344172 ], [ -58.434327000290807, -34.625858999992829 ], [ -58.434112000268556, -34.626760000173817 ], [ -58.433811999923819, -34.628005000030669 ], [ -58.433511000432304, -34.629335000210062 ], [ -58.433275000340927, -34.630408000229011 ], [ -58.433018000180539, -34.631460000178834 ], [ -58.432909999696676, -34.632490000013433 ], [ -58.432803000158287, -34.633391000194479 ], [ -58.432738999904871, -34.63399200003073 ], [ -58.432545999997842, -34.634914000280844 ], [ -58.432309999906522, -34.636072999769056 ], [ -58.432138000068619, -34.636930999765809 ], [ -58.431879999862076, -34.638112000268563 ], [ -58.431773000323687, -34.638668999874426 ], [ -58.431601999632562, -34.639399000263609 ], [ -58.431407999679379, -34.640450000167334 ], [ -58.431280000071922, -34.640943999565877 ], [ -58.431171999588059, -34.641480000001934 ], [ -58.431065000049671, -34.642016999584825 ], [ -58.430915000326991, -34.642745999927911 ], [ -58.430785999774002, -34.643346999764162 ], [ -58.430657000120391, -34.643927000430665 ], [ -58.430421000029071, -34.64506399980371 ], [ -58.431108000233962, -34.645900999731282 ], [ -58.429799000123694, -34.646822999981396 ], [ -58.428403999644843, -34.647809999631761 ], [ -58.428297000106454, -34.647918000115567 ], [ -58.427074000364769, -34.648819000296555 ], [ -58.426043999630849, -34.649548999786475 ], [ -58.425272000002735, -34.650064000153463 ], [ -58.424928000326929, -34.65027800012956 ], [ -58.423897999592953, -34.651050999803772 ], [ -58.423726999801147, -34.65115800024148 ], [ -58.423468999594604, -34.651351000148509 ], [ -58.423039999596256, -34.651693999778217 ], [ -58.422202999668684, -34.65227400044472 ], [ -58.421408999925347, -34.652896000350097 ], [ -58.420615000182067, -34.653497000186348 ], [ -58.419714000001079, -34.654140000160851 ], [ -58.419005999727062, -34.654654999628463 ], [ -58.418255000168074, -34.655192000110674 ], [ -58.418040000145822, -34.655363999948577 ], [ -58.417590000078405, -34.655879000315565 ], [ -58.416774000219903, -34.656650999943622 ], [ -58.416603000428097, -34.656737000312262 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416737000312253, -34.660154999653457 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417225000333474, -34.662551999575101 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 325.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.684995000019171, -34.40956599997088 ], [ -58.685853000015925, -34.41003800015352 ], [ -58.686948000150039, -34.410616999874605 ], [ -58.687977999984696, -34.411175000425885 ], [ -58.689007999819296, -34.411733000077845 ], [ -58.689028999888421, -34.411755000193068 ], [ -58.690124000022536, -34.412333999914097 ], [ -58.691153999857193, -34.41287000035021 ], [ -58.692225999829986, -34.413450000117393 ], [ -58.693298999848935, -34.414007999769353 ], [ -58.694243000214271, -34.414501000021119 ], [ -58.695208999795454, -34.41501600038805 ], [ -58.696604000274363, -34.41574599987797 ], [ -58.697011000157488, -34.415959999854067 ], [ -58.698019999923019, -34.416475000221055 ], [ -58.698964000288356, -34.416989999688667 ], [ -58.699671999662996, -34.416089000406998 ], [ -58.700358999867888, -34.41525199958005 ], [ -58.700668999774507, -34.414823999627856 ], [ -58.700980999773265, -34.414393999583353 ], [ -58.701409999771613, -34.413879000115742 ], [ -58.70156000039367, -34.413814999862325 ], [ -58.701796999631767, -34.413620999909199 ], [ -58.701860999885184, -34.413599999840073 ], [ -58.701904000069533, -34.413535999586657 ], [ -58.702376000252173, -34.413320999564462 ], [ -58.70267599969759, -34.413235000095142 ], [ -58.70544799982531, -34.412661999751435 ], [ -58.707868999954371, -34.412162000076194 ], [ -58.709693000431571, -34.411819000446485 ], [ -58.711881999754439, -34.411368000332914 ], [ -58.712932999658165, -34.411111000172468 ], [ -58.713404999840805, -34.411432999733108 ], [ -58.714220999699364, -34.411882999800582 ], [ -58.714498999928878, -34.412012000353513 ], [ -58.715936999692758, -34.412785000027668 ], [ -58.716667000081941, -34.413170999841725 ], [ -58.717504000009569, -34.413620999909199 ], [ -58.718212000283529, -34.41398599965413 ], [ -58.71984199990834, -34.414844999696925 ], [ -58.72007799999966, -34.414973000203759 ], [ -58.721216000318122, -34.415530999855719 ], [ -58.721283999856666, -34.415898999738999 ], [ -58.721838000223499, -34.416239000129735 ], [ -58.722074000314819, -34.416582999805541 ], [ -58.722095000383945, -34.417140000310724 ], [ -58.720657999766843, -34.418986000003827 ], [ -58.719348999656575, -34.420659999859083 ], [ -58.718190000168306, -34.422204000014517 ], [ -58.715357999971673, -34.425787999816293 ], [ -58.713706000231696, -34.42793399985419 ], [ -58.713255000118124, -34.429242999964458 ], [ -58.713105000395387, -34.429821999685487 ], [ -58.712890000373193, -34.431260000348686 ], [ -58.712696999566845, -34.4313879999562 ], [ -58.711280999918188, -34.43186000013884 ], [ -58.711131000195451, -34.431903000323189 ], [ -58.711152000264576, -34.432160999630412 ], [ -58.711258999802965, -34.432203999814703 ], [ -58.712847000188845, -34.431559999794104 ], [ -58.712654000281873, -34.432290000183343 ], [ -58.712567999913233, -34.432526000274663 ], [ -58.712461000374844, -34.43274000025076 ], [ -58.712267999568496, -34.4330619998114 ], [ -58.711881999754439, -34.433577000178389 ], [ -58.711767999893254, -34.433680999578428 ], [ -58.710379999737142, -34.434949999642754 ], [ -58.70979999996996, -34.435421999825394 ], [ -58.708761999766409, -34.436349000306052 ], [ -58.708599000343554, -34.436494999844342 ], [ -58.707504000209383, -34.437374999956262 ], [ -58.706984999657948, -34.437906000161718 ], [ -58.706559999844103, -34.438341000436765 ], [ -58.706130999845698, -34.438662999997405 ], [ -58.705422999571738, -34.439284999902782 ], [ -58.705208000448806, -34.43962800043181 ], [ -58.704322000060188, -34.441008000218972 ], [ -58.703835000085121, -34.441538000378387 ], [ -58.702619999813123, -34.443129000003296 ], [ -58.700230000214276, -34.446258999553152 ], [ -58.699221999595579, -34.447267000171905 ], [ -58.698900000034939, -34.447631999916837 ], [ -58.698813999666299, -34.447932000261574 ], [ -58.698384999667951, -34.448748000120077 ], [ -58.697568999809448, -34.449777999954676 ], [ -58.696775000066168, -34.450743000389139 ], [ -58.69658200015914, -34.450978999581139 ], [ -58.696003000438054, -34.451686999855099 ], [ -58.695965999631142, -34.451727999947195 ], [ -58.695080000141843, -34.45269599962063 ], [ -58.694501000420814, -34.45333999964123 ], [ -58.694350999798758, -34.453511000332355 ], [ -58.693878999616118, -34.454433999729247 ], [ -58.692141000406821, -34.456708000273977 ], [ -58.69136799983329, -34.457652999786092 ], [ -58.690702999743621, -34.4584040002444 ], [ -58.690080999838244, -34.45911199961904 ], [ -58.689608999655547, -34.459819999893057 ], [ -58.689007999819296, -34.460742000143171 ], [ -58.688556999705725, -34.461321999910297 ], [ -58.688042000238056, -34.461965999930896 ], [ -58.687483999686776, -34.462674000204913 ], [ -58.686882999850525, -34.463252999925942 ], [ -58.686174999576508, -34.46408999985357 ], [ -58.685660000108896, -34.464754999943239 ], [ -58.685253000225714, -34.465485000332478 ], [ -58.684652000389463, -34.466128000306924 ], [ -58.683794000392766, -34.466944000165427 ], [ -58.683123000026399, -34.467526000024861 ], [ -58.682977999634943, -34.467652000439443 ], [ -58.681904999615995, -34.468467000251792 ], [ -58.680896999896561, -34.469132000341517 ], [ -58.679448999671536, -34.469928000177049 ], [ -58.679372999764098, -34.469969000269089 ], [ -58.67853599983647, -34.470356000129243 ], [ -58.677528000117093, -34.470719999828077 ], [ -58.67579500023902, -34.47132599989493 ], [ -58.675746999824128, -34.471342999779552 ], [ -58.672893000411591, -34.472136000376054 ], [ -58.669674000354803, -34.473015999588654 ], [ -58.669094999734398, -34.473101999957294 ], [ -58.666885000342461, -34.473789000162185 ], [ -58.665682999770581, -34.474153999907116 ], [ -58.664289000237147, -34.47460399997459 ], [ -58.663708999570645, -34.474775999812493 ], [ -58.662186000383542, -34.475204999810842 ], [ -58.662077999899736, -34.475247999995133 ], [ -58.660361999906343, -34.47572000017783 ], [ -58.659761000070034, -34.47586999990051 ], [ -58.658430999890697, -34.476213000429595 ], [ -58.657465000309458, -34.476321000014082 ], [ -58.656397999667888, -34.476621000358818 ], [ -58.655941000176995, -34.47675000001243 ], [ -58.654739999651213, -34.477135999826487 ], [ -58.654439000159698, -34.477222000195127 ], [ -58.653813000069874, -34.477386999710234 ], [ -58.652808999635567, -34.477651000193475 ], [ -58.651435000125105, -34.477909000400018 ], [ -58.650898999689048, -34.477972999754115 ], [ -58.649719000131711, -34.478273000098852 ], [ -58.648925000388431, -34.478594999659435 ], [ -58.648173999930123, -34.478809999681687 ], [ -58.647444000440203, -34.478981000372812 ], [ -58.646932000211621, -34.479119000441472 ], [ -58.646885999888923, -34.479132000141647 ], [ -58.646435999821506, -34.479238999680035 ], [ -58.645942000422963, -34.479302999933452 ], [ -58.645104999596015, -34.479411000417315 ], [ -58.644226000429512, -34.479667999678384 ], [ -58.643067000041981, -34.480096999676732 ], [ -58.642158000391362, -34.480253999722265 ], [ -58.640707000027987, -34.480504999606012 ], [ -58.638913000034904, -34.480852000319487 ], [ -58.636822999881474, -34.48125600006432 ], [ -58.636157999791806, -34.481362999602709 ], [ -58.635192000210623, -34.481471000086515 ], [ -58.634891999865886, -34.481535000339932 ], [ -58.632938999735018, -34.482092999991892 ], [ -58.631780000246749, -34.482306999968046 ], [ -58.630686000158732, -34.48252199999024 ], [ -58.629784999977744, -34.4826939998282 ], [ -58.628776000212213, -34.48284399955088 ], [ -58.628196999591808, -34.48292999991952 ], [ -58.627038000103596, -34.48301600028816 ], [ -58.626951999734956, -34.48301600028816 ], [ -58.626565999920899, -34.483037000357228 ], [ -58.625150000272242, -34.483273000448548 ], [ -58.623947999700363, -34.483551999824897 ], [ -58.62353999977114, -34.483616000078314 ], [ -58.621738000308426, -34.483895000353925 ], [ -58.621179999757146, -34.48395999975412 ], [ -58.619505999901946, -34.484173999730274 ], [ -58.619269999810626, -34.484216999914565 ], [ -58.619134999880316, -34.484235999891439 ], [ -58.618347999560513, -34.484345999568177 ], [ -58.61697400005005, -34.484560000443594 ], [ -58.616774999866323, -34.484582999705651 ], [ -58.616588000235993, -34.484602999728622 ], [ -58.615364999594988, -34.484796999681748 ], [ -58.615065000149571, -34.484838999819942 ], [ -58.614635000105125, -34.484925000188582 ], [ -58.614098999669068, -34.484989999588777 ], [ -58.613201999672526, -34.485114999957261 ], [ -58.61302599965012, -34.485140000210777 ], [ -58.611846000092783, -34.485289999933514 ], [ -58.610344000075486, -34.485482999840542 ], [ -58.609421999825372, -34.485604000024523 ], [ -58.607725999854949, -34.48582600036957 ], [ -58.604464999659967, -34.486170000045433 ], [ -58.602808999735487, -34.486276999583822 ], [ -58.602469000244128, -34.486298999699045 ], [ -58.601375000156111, -34.486276999583822 ], [ -58.600429999744676, -34.486276999583822 ], [ -58.599099999565283, -34.486362999952462 ], [ -58.597298000102569, -34.486512999675142 ], [ -58.596162999922456, -34.486685000412422 ], [ -58.595881000407815, -34.486727999697393 ], [ -58.59362799993221, -34.48694199967349 ], [ -58.593370999771764, -34.48694199967349 ], [ -58.593198999933861, -34.486920999604422 ], [ -58.593049000211124, -34.486835000135102 ], [ -58.592620000212776, -34.486512999675142 ], [ -58.592276999683747, -34.486491999606073 ], [ -58.591118000195536, -34.48662000011285 ], [ -58.591079000195634, -34.486635999951375 ], [ -58.590903000173284, -34.486705999582171 ], [ -58.590344999622005, -34.487156999695742 ], [ -58.589873000338628, -34.487243000064382 ], [ -58.589121999880376, -34.487370999671839 ], [ -58.588581000113038, -34.487415999948382 ], [ -58.587555999609663, -34.48750000022477 ], [ -58.587147999680383, -34.487564999624965 ], [ -58.586053999592366, -34.487843999900633 ], [ -58.585473999825183, -34.487951000338342 ], [ -58.585182999895494, -34.487907000107953 ], [ -58.585044999826835, -34.487886000038827 ], [ -58.584572999644195, -34.487886000038827 ], [ -58.583306999718218, -34.487778999601119 ], [ -58.582170000345172, -34.487800999716342 ], [ -58.581783999631853, -34.48782199978541 ], [ -58.581375999702573, -34.487843999900633 ], [ -58.580796999981544, -34.488014999692439 ], [ -58.579831000400304, -34.488165000314496 ], [ -58.578530999805764, -34.488316000083273 ], [ -58.576311999998779, -34.488573000243719 ], [ -58.576075999907403, -34.488658999713039 ], [ -58.574380999983134, -34.488864000173407 ], [ -58.573951999984786, -34.488915999873427 ], [ -58.5727290002431, -34.489002000242067 ], [ -58.57085600020423, -34.489286999895057 ], [ -58.569338000348409, -34.489516999709736 ], [ -58.56901599988845, -34.48958200000925 ], [ -58.568372999913947, -34.489795999985347 ], [ -58.568008000169016, -34.489903000423112 ], [ -58.567193000356667, -34.490247000098918 ], [ -58.566677999989679, -34.490547000443655 ], [ -58.563974000299822, -34.491577000278312 ], [ -58.562395000328934, -34.492316000183223 ], [ -58.561635000354954, -34.492671000366329 ], [ -58.561013000449577, -34.492907999604427 ], [ -58.559897000246337, -34.493294000317803 ], [ -58.558051999700012, -34.49382999985454 ], [ -58.557815999608636, -34.49382999985454 ], [ -58.556613999936133, -34.493659000062735 ], [ -58.556184999937784, -34.493808999785472 ], [ -58.555455000447864, -34.494494999944266 ], [ -58.555240999572447, -34.494581000312849 ], [ -58.554554000266876, -34.494666999782169 ], [ -58.554103000153304, -34.494859999689197 ], [ -58.553009000065288, -34.495804000054534 ], [ -58.551958000161562, -34.496727000350745 ], [ -58.551764000208379, -34.496877000073425 ], [ -58.550970999611877, -34.497606999563345 ], [ -58.549426000309609, -34.498486999675265 ], [ -58.548160000383689, -34.499044000180447 ], [ -58.547887000384719, -34.499162000226079 ], [ -58.547214999972255, -34.49945200010967 ], [ -58.545606000416569, -34.500310000106367 ], [ -58.54489900018865, -34.500644000220404 ], [ -58.544833999889136, -34.500674999851299 ], [ -58.54248300029019, -34.501877999569956 ], [ -58.542065999945919, -34.502091000399332 ], [ -58.541701000200931, -34.50224200016811 ], [ -58.540065000299478, -34.503038000003642 ], [ -58.539275999887423, -34.503421999725447 ], [ -58.53652699992108, -34.504787999766336 ], [ -58.535563999578869, -34.505267000271829 ], [ -58.53362500009365, -34.506200000129866 ], [ -58.532753000350624, -34.506618999667069 ], [ -58.53090200042692, -34.507524000032504 ], [ -58.529655999624651, -34.508133000237706 ], [ -58.528848000135042, -34.508528999613588 ], [ -58.528555000113101, -34.508642000327995 ], [ -58.527625000393414, -34.509000999796285 ], [ -58.526878000119552, -34.509300000094868 ], [ -58.526301999637553, -34.509663999793702 ], [ -58.525301000240916, -34.51029099992968 ], [ -58.525221000148974, -34.510330999975622 ], [ -58.524564000428256, -34.510710000366203 ], [ -58.522632000366457, -34.511821000338841 ], [ -58.52122999956481, -34.512626999736199 ], [ -58.520800999566461, -34.512928000127033 ], [ -58.520625000443374, -34.513063000057343 ], [ -58.520522000190113, -34.513142000103187 ], [ -58.520242999914501, -34.513421000378798 ], [ -58.519749999662736, -34.514000000099884 ], [ -58.519598999893901, -34.514150999868718 ], [ -58.518569000059244, -34.515029999934484 ], [ -58.518179000060741, -34.515399999910017 ], [ -58.517368000432839, -34.516168000252947 ], [ -58.516724000412239, -34.516833000342672 ], [ -58.515663000047368, -34.517702999993389 ], [ -58.514853999612342, -34.518636999897581 ], [ -58.514707000028011, -34.518806999643289 ], [ -58.513524000332325, -34.520000999846218 ], [ -58.512411000267434, -34.521124000372254 ], [ -58.511251999879846, -34.522518999951842 ], [ -58.510515000067187, -34.523524000432246 ], [ -58.508655999774533, -34.52605999956927 ], [ -58.506981999919333, -34.528377000298292 ], [ -58.505694999924287, -34.530094000337783 ], [ -58.505436999717745, -34.530436999967549 ], [ -58.505224999833843, -34.530724999758888 ], [ -58.504836999927591, -34.531251999779897 ], [ -58.504342999629671, -34.531960000053914 ], [ -58.503678000439322, -34.532775999912417 ], [ -58.503505999702099, -34.533076000257154 ], [ -58.503279000025771, -34.533477999909735 ], [ -58.5028619996815, -34.534213999676297 ], [ -58.502218999707054, -34.535179000110702 ], [ -58.501553999617329, -34.536122999576719 ], [ -58.501489000217134, -34.536208999945359 ], [ -58.500480999598437, -34.537710999962655 ], [ -58.499730000039449, -34.538697999612964 ], [ -58.498249000091221, -34.540544000205387 ], [ -58.49685399961237, -34.541959999854043 ], [ -58.496553000120798, -34.542342000382973 ], [ -58.495652999985907, -34.543482999940466 ], [ -58.495429999594762, -34.543792999847028 ], [ -58.495052000149656, -34.544319999868037 ], [ -58.494194000152959, -34.545457000140402 ], [ -58.493958000061639, -34.545628999978305 ], [ -58.493635999601679, -34.545800999816265 ], [ -58.49335700022533, -34.545887000184848 ], [ -58.492862999927468, -34.545908000253974 ], [ -58.492347999560479, -34.545778999701042 ], [ -58.491426000209685, -34.545286000348597 ], [ -58.490288999937377, -34.54478799986623 ], [ -58.488679000335537, -34.544083999776717 ], [ -58.487391000294394, -34.543632999663146 ], [ -58.48670800027395, -34.543365999940875 ], [ -58.485524999678944, -34.54290400021938 ], [ -58.484387000259801, -34.542453000105809 ], [ -58.483592999617201, -34.542173999830197 ], [ -58.483026000449513, -34.541935999646626 ], [ -58.480224999883774, -34.54075800018154 ], [ -58.480099000368511, -34.540697000066473 ], [ -58.479259000302591, -34.540285999998844 ], [ -58.478379000190671, -34.539620999909175 ], [ -58.477863999823683, -34.539256000164244 ], [ -58.477456999940557, -34.539020000072924 ], [ -58.476286999945046, -34.538526999821158 ], [ -58.476083000430094, -34.538441000351838 ], [ -58.47563300036262, -34.53824800044481 ], [ -58.475225000433397, -34.53801200035349 ], [ -58.474710000066409, -34.53777600026217 ], [ -58.473808999885421, -34.537539000124696 ], [ -58.472861000234957, -34.537409999571764 ], [ -58.472414000305832, -34.537281999964307 ], [ -58.471127000310787, -34.536746000427513 ], [ -58.47015999978413, -34.536300999691321 ], [ -58.468649000251105, -34.535607000062953 ], [ -58.468441999698484, -34.535563999878661 ], [ -58.467821999885359, -34.535071999672994 ], [ -58.467436000071302, -34.534899999835091 ], [ -58.467071000326371, -34.534856999650742 ], [ -58.466814000165925, -34.534899999835091 ], [ -58.466705999682119, -34.53498600020373 ], [ -58.466620000212799, -34.535114999857342 ], [ -58.466770999981634, -34.535587000039982 ], [ -58.466792000050702, -34.53569399957837 ], [ -58.466792000050702, -34.53577999994701 ], [ -58.466663000397091, -34.53610200040697 ], [ -58.466298999798937, -34.536681000127999 ], [ -58.465805000400394, -34.537474999871279 ], [ -58.465312000148629, -34.538290999729838 ], [ -58.464861000035057, -34.53904200018809 ], [ -58.464388999852417, -34.539857000000495 ], [ -58.463831000200457, -34.540693999928124 ], [ -58.463380000086886, -34.541336999902569 ], [ -58.463187000179857, -34.541530999855695 ], [ -58.462667999628422, -34.54205000040713 ], [ -58.462628999628578, -34.542089000406975 ], [ -58.462028999838424, -34.542689000197186 ], [ -58.461320000417629, -34.54331200014866 ], [ -58.460677000443184, -34.543934000054037 ], [ -58.459797000331264, -34.544705999682094 ], [ -58.458981999619539, -34.545371999817917 ], [ -58.458165999761036, -34.546036999907585 ], [ -58.457372000017756, -34.546701999997254 ], [ -58.456557000205351, -34.54732399990263 ], [ -58.455762999562751, -34.548032000176647 ], [ -58.455333999564402, -34.54844000010587 ], [ -58.455140999657374, -34.548568999759482 ], [ -58.455033000072831, -34.548633000012899 ], [ -58.454732999728094, -34.548869000104219 ], [ -58.454432000236579, -34.549148000379887 ], [ -58.454196000145259, -34.549341000286915 ], [ -58.454046000422522, -34.549469999940527 ], [ -58.453251999779923, -34.55020000032971 ], [ -58.453015999688603, -34.550499999775127 ], [ -58.452308000313906, -34.551314999587532 ], [ -58.451622000155169, -34.552109000230132 ], [ -58.45125700041018, -34.552452999905995 ], [ -58.450912999835055, -34.552925000088635 ], [ -58.450119000091718, -34.553868999554652 ], [ -58.449304000279369, -34.554790999804766 ], [ -58.448509999636713, -34.555714000100977 ], [ -58.449712000208592, -34.556464999659966 ], [ -58.450891999765929, -34.557129999749634 ], [ -58.452007999969169, -34.557795999885457 ], [ -58.451148999926374, -34.558761000319862 ], [ -58.450613000389637, -34.558417999790834 ], [ -58.449995999815485, -34.558782000388987 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.446406999783164, -34.560435000175062 ], [ -58.44477700015841, -34.561206999803176 ], [ -58.444176000322102, -34.561442999894496 ], [ -58.444197000391227, -34.561635999801524 ], [ -58.444218999607131, -34.561722000170107 ], [ -58.44460500032045, -34.562043999730747 ], [ -58.443638999839948, -34.562838000373347 ], [ -58.442609000005291, -34.563653000185752 ], [ -58.441256999710731, -34.564597999697867 ], [ -58.440356000429063, -34.5653700002253 ], [ -58.439434000178949, -34.566120999784289 ], [ -58.439325999695086, -34.566207000152872 ], [ -58.438102999953458, -34.567301000240946 ], [ -58.437373999610372, -34.568287999891254 ], [ -58.437008999865384, -34.568782000189117 ], [ -58.436557999751869, -34.569317999725854 ], [ -58.435720999824241, -34.570241000022065 ], [ -58.434927000080961, -34.571099000018819 ], [ -58.434091000199487, -34.571979000130682 ], [ -58.433511000432304, -34.57257999996699 ], [ -58.43338299992547, -34.572708999620602 ], [ -58.432523999882676, -34.57360999980159 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.430250000237265, -34.575712999655138 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.428198000037639, -34.577494999994201 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427913000384592, -34.577653000085832 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420528999813428, -34.581892000415451 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.419096000280149, -34.583057000180361 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.417439000309571, -34.586077000053479 ], [ -58.418790999704811, -34.586935000050175 ], [ -58.419477999909702, -34.587342999979398 ], [ -58.42016500011465, -34.587771999977747 ], [ -58.421495000293987, -34.588586999790152 ], [ -58.422289000037267, -34.589124000272363 ], [ -58.423212000333535, -34.589725000108615 ], [ -58.423940999777301, -34.59021800036038 ], [ -58.424907000257804, -34.59086200038098 ], [ -58.425893999908112, -34.59150600040158 ], [ -58.426859000342574, -34.592149000376025 ], [ -58.428061000015077, -34.592965000234528 ], [ -58.429177000218317, -34.593693999678294 ], [ -58.430078000399362, -34.594315999583671 ], [ -58.431214999772408, -34.595024999903785 ], [ -58.432309999906522, -34.595711000062579 ], [ -58.433360999810247, -34.59639800026747 ], [ -58.434454999898264, -34.597084999573042 ], [ -58.435527999917213, -34.597770999731836 ], [ -58.436600999936161, -34.598457999936727 ], [ -58.437609999701692, -34.59910199995727 ], [ -58.438746999974001, -34.599873999585384 ], [ -58.43994899964656, -34.600603999974567 ], [ -58.441106999987994, -34.601290000133361 ], [ -58.442351999844902, -34.602062999807572 ], [ -58.442544999751874, -34.60217000024528 ], [ -58.442351999844902, -34.602233999599378 ], [ -58.441429000447954, -34.602621000358852 ], [ -58.441299999895023, -34.602684999712949 ], [ -58.440120000337686, -34.603179000010812 ], [ -58.439368999879377, -34.603479000355549 ], [ -58.438854000411766, -34.603735999616617 ], [ -58.437877000323283, -34.604224999683936 ], [ -58.437696000070332, -34.60431600028312 ], [ -58.437158999588121, -34.604552000374497 ], [ -58.436623000051384, -34.60431600028312 ], [ -58.43635999961424, -34.60431600028312 ], [ -58.435357000125407, -34.60431600028312 ], [ -58.434756000289156, -34.604444999936732 ], [ -58.434154999553527, -34.604681000028108 ], [ -58.433811999923819, -34.60487399993508 ], [ -58.433419999833063, -34.605190000118341 ], [ -58.433254000271859, -34.605324000002554 ], [ -58.43306100036483, -34.605582000209097 ], [ -58.432909999696676, -34.605818000300417 ], [ -58.432673999605356, -34.606419000136725 ], [ -58.432653000435607, -34.606869000204142 ], [ -58.432673999605356, -34.607105000295462 ], [ -58.432759999973996, -34.607405999787034 ], [ -58.433018000180539, -34.607834999785382 ], [ -58.433211000087567, -34.608048999761479 ], [ -58.433596999901567, -34.608393000336662 ], [ -58.434021999715469, -34.608660000058933 ], [ -58.434175999622653, -34.608757000035496 ], [ -58.434713000104807, -34.608757000035496 ], [ -58.436128999753521, -34.608757000035496 ], [ -58.435699999755116, -34.610281000167959 ], [ -58.435335000010184, -34.611482999840518 ], [ -58.434713000104807, -34.612748999766495 ], [ -58.434433999829196, -34.613370999671872 ], [ -58.433982999715624, -34.614271999852861 ], [ -58.433811999923819, -34.61467999978214 ], [ -58.433725999555179, -34.614850999573946 ], [ -58.433403999994539, -34.615537999778837 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.428791000404317, -34.617169000349065 ], [ -58.428555000312997, -34.618284999652985 ], [ -58.42831900022162, -34.619400999856225 ], [ -58.428061000015077, -34.620666999782145 ], [ -58.427953999577369, -34.621309999756647 ], [ -58.427803999854689, -34.622061000214956 ], [ -58.427482000294049, -34.623585000347418 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.427052000249546, -34.625731000385315 ], [ -58.426987999996186, -34.626030999830732 ], [ -58.426751999904809, -34.626997000311292 ], [ -58.426451999560072, -34.628326999591309 ], [ -58.426216000368072, -34.629378000394354 ], [ -58.425980000276752, -34.630430000344177 ], [ -58.425744000185432, -34.631481000247902 ], [ -58.425529000163181, -34.632361000359822 ], [ -58.425185999634152, -34.633690999639896 ], [ -58.424864000073512, -34.634828999958359 ], [ -58.424671000166484, -34.635600999586416 ], [ -58.424520000397649, -34.636202000321987 ], [ -58.424348999706524, -34.636737999858781 ], [ -58.424198999983844, -34.637145999788004 ], [ -58.424006000076815, -34.637982999715632 ], [ -58.423768999939341, -34.639142000103163 ], [ -58.423490999709827, -34.64017199993782 ], [ -58.423233000402604, -34.641179999657197 ], [ -58.422867999758353, -34.642553000020882 ], [ -58.422824999574004, -34.642789000112202 ], [ -58.421966999577307, -34.643905000315442 ], [ -58.421108999580611, -34.644891999965807 ], [ -58.420121999930302, -34.646008000169047 ], [ -58.419885999838982, -34.646307999614464 ], [ -58.419177999564965, -34.647102000257064 ], [ -58.418427000005977, -34.647423999817704 ], [ -58.417654000331822, -34.647809999631761 ], [ -58.417439000309571, -34.647896000000344 ], [ -58.416687999851263, -34.648175000276012 ], [ -58.416603000428097, -34.648217999560984 ], [ -58.416408999575651, -34.648217999560984 ], [ -58.416324000152429, -34.648197000391235 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416230000314215, -34.646963000142307 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.415357999671926, -34.647102000257064 ], [ -58.415765999601149, -34.647659999909024 ], [ -58.415984999807847, -34.64798899979246 ], [ -58.416194999599497, -34.648303999929624 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416237999783846, -34.648432999583235 ], [ -58.416237999783846, -34.649677000293309 ], [ -58.416237999783846, -34.650772000427423 ], [ -58.416237999783846, -34.651759000077732 ], [ -58.416280999968137, -34.652144999891789 ], [ -58.416302000037206, -34.653325000348445 ], [ -58.416324000152429, -34.654162000276074 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416408999575651, -34.654806000296617 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.41646699955237, -34.655546000247682 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416584999598001, -34.659002000441944 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416989000242154, -34.661436000271124 ], [ -58.416258999852914, -34.662037000107432 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 324.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.411911682363481, -34.627382797971606 ], [ -58.406482000370623, -34.627382797971606 ], [ -58.408110904968481, -34.615166013487674 ], [ -58.404853095772765, -34.615166013487674 ], [ -58.406210516270974, -34.607292974598032 ], [ -58.400237866078832, -34.589375024021599 ], [ -58.397115798932937, -34.58761037737392 ], [ -58.401866770676691, -34.583538115879271 ], [ -58.406210516270974, -34.58340237382945 ], [ -58.410961488014728, -34.581637727181771 ], [ -58.420056205352765, -34.581094758982488 ], [ -58.427657760142772, -34.577701207736951 ], [ -58.451684102961167, -34.566570359651593 ], [ -58.462814951046525, -34.555168027466593 ], [ -58.482904774420106, -34.566027391452316 ], [ -58.491320781509039, -34.555168027466593 ], [ -58.495664527103322, -34.555439511566242 ], [ -58.500415498847076, -34.549874087523555 ], [ -58.499736788597964, -34.545937568078735 ], [ -58.506252406989397, -34.541322338384809 ], [ -58.510053184384397, -34.532906331295877 ], [ -58.516297318676187, -34.52964852210016 ], [ -58.521591258619225, -34.532770589246056 ], [ -58.525120551914583, -34.530734458498735 ], [ -58.540187919444769, -34.536842850740697 ], [ -58.541681081992806, -34.53534968819266 ], [ -58.547517990135127, -34.529784264149981 ], [ -58.544938891188515, -34.52774813340266 ], [ -58.542767018391373, -34.529784264149981 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 323.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.531048, -34.640648 ], [ -58.53097, -34.641921 ], [ -58.531708, -34.642018 ], [ -58.531806, -34.642123 ], [ -58.532561, -34.641543 ], [ -58.533802, -34.64272 ], [ -58.534994, -34.64383 ], [ -58.536175, -34.644942 ], [ -58.536186, -34.644721 ], [ -58.537607, -34.64474 ], [ -58.539062, -34.644745 ], [ -58.540451, -34.644772 ], [ -58.541903, -34.644797 ], [ -58.542476, -34.644775 ], [ -58.54251, -34.644773 ], [ -58.541595, -34.645468 ], [ -58.5416, -34.645473 ], [ -58.54206, -34.645823 ], [ -58.542709, -34.646314 ], [ -58.543353, -34.646802 ], [ -58.543998, -34.647289 ], [ -58.544730999999899, -34.647842 ], [ -58.545451, -34.647177 ], [ -58.546393, -34.646308 ], [ -58.546969, -34.645781 ], [ -58.547556, -34.64525 ], [ -58.548354, -34.644503 ], [ -58.549151, -34.643756 ], [ -58.549719, -34.64323 ], [ -58.550284, -34.642716 ], [ -58.550921, -34.642159 ], [ -58.551135, -34.642079 ], [ -58.552268, -34.642075 ], [ -58.552714, -34.642073 ], [ -58.553664, -34.64206 ], [ -58.554782, -34.642982 ], [ -58.554843, -34.643024 ], [ -58.555839, -34.643793 ], [ -58.555866, -34.643812 ], [ -58.556904, -34.644607 ], [ -58.557735, -34.643867 ], [ -58.558567, -34.64312 ], [ -58.559284, -34.642498 ], [ -58.559734, -34.641865 ], [ -58.559898, -34.641136 ], [ -58.560146, -34.640083 ], [ -58.560989, -34.640194 ], [ -58.561581, -34.64027 ], [ -58.563019, -34.640476 ], [ -58.563274, -34.640553 ], [ -58.564266, -34.640762 ], [ -58.564079, -34.641636 ], [ -58.563831, -34.642254 ], [ -58.563797, -34.64246 ], [ -58.565334, -34.642696 ], [ -58.565136, -34.643585 ], [ -58.564934, -34.644474 ], [ -58.564732, -34.645367 ], [ -58.564533, -34.646255 ], [ -58.564342, -34.647137 ], [ -58.564163, -34.648026 ], [ -58.56398, -34.648933 ], [ -58.565285, -34.650093 ], [ -58.565498, -34.650295 ], [ -58.566528, -34.651199 ], [ -58.567474, -34.652031 ], [ -58.567799, -34.652313 ], [ -58.568485, -34.652935 ], [ -58.569054, -34.653439 ], [ -58.569527, -34.653851 ], [ -58.570366, -34.654598 ], [ -58.57058, -34.654789 ], [ -58.571342, -34.655491 ], [ -58.572117, -34.656204 ], [ -58.572815, -34.65686 ], [ -58.572227, -34.657307 ], [ -58.571621, -34.657768 ], [ -58.572243, -34.65836 ], [ -58.572609, -34.658403 ], [ -58.572654, -34.658408 ], [ -58.572659, -34.658409 ], [ -58.572918, -34.65844 ], [ -58.573711, -34.659153 ], [ -58.574444, -34.659809 ], [ -58.574482, -34.659847 ], [ -58.57523, -34.660503 ], [ -58.575809, -34.661034 ], [ -58.57719, -34.659977 ], [ -58.577824, -34.660553 ], [ -58.576443, -34.661598 ], [ -58.576225, -34.661758 ], [ -58.575592, -34.662239 ], [ -58.574696, -34.662914 ], [ -58.574009, -34.663437 ], [ -58.57391, -34.663513 ], [ -58.573181, -34.664051 ], [ -58.572088, -34.664874 ], [ -58.572085999999899, -34.664875 ], [ -58.570717, -34.665905 ], [ -58.569336, -34.666943 ], [ -58.569248, -34.667007 ], [ -58.568428, -34.667618 ], [ -58.567745, -34.668133 ], [ -58.564449, -34.670605 ], [ -58.563907, -34.671011 ], [ -58.563365, -34.671432 ], [ -58.56227, -34.672244 ], [ -58.561122, -34.673102 ], [ -58.559974, -34.673963 ], [ -58.558868, -34.674778 ], [ -58.558315, -34.675192 ], [ -58.55775, -34.675624 ], [ -58.558536, -34.67633 ], [ -58.559276, -34.676993 ], [ -58.560039, -34.677666 ], [ -58.558926, -34.678501 ], [ -58.557831, -34.679317 ], [ -58.55669, -34.68018 ], [ -58.555542, -34.681038 ], [ -58.554459, -34.681854 ], [ -58.554089, -34.682125 ], [ -58.553982, -34.682205 ], [ -58.554852, -34.682823 ], [ -58.555679, -34.68343 ], [ -58.556549, -34.68404 ], [ -58.557373, -34.684612 ], [ -58.558293, -34.68523 ], [ -58.558872, -34.685539 ], [ -58.559612, -34.685688 ], [ -58.559818, -34.685764 ], [ -58.56002, -34.685841 ], [ -58.560066, -34.685921 ], [ -58.560181, -34.685966 ], [ -58.560333, -34.686001 ], [ -58.56049, -34.685997 ], [ -58.560959, -34.686043 ], [ -58.561131, -34.686058 ], [ -58.561478, -34.686184 ], [ -58.562511, -34.686641 ], [ -58.561298, -34.687569 ], [ -58.560215, -34.688396 ], [ -58.559132, -34.68922 ], [ -58.558041, -34.690037 ], [ -58.558761, -34.690704 ], [ -58.558788, -34.690731 ], [ -58.559526, -34.691373 ], [ -58.56018, -34.691937 ], [ -58.560861, -34.692573 ], [ -58.560895, -34.692603 ], [ -58.561671, -34.693327 ], [ -58.561697, -34.69335 ], [ -58.562358, -34.693962 ], [ -58.56312, -34.694613 ], [ -58.563691, -34.695133 ], [ -58.563856, -34.695177 ], [ -58.56396, -34.695212 ], [ -58.564411, -34.695675 ], [ -58.563282999999899, -34.69653 ], [ -58.562165, -34.697379 ], [ -58.562739, -34.697916 ], [ -58.563306, -34.698415 ], [ -58.563964, -34.699009 ], [ -58.564682, -34.699628 ], [ -58.565405, -34.700248 ], [ -58.564575, -34.70082 ], [ -58.563965, -34.701301 ], [ -58.563938, -34.701316 ], [ -58.563149, -34.701908 ], [ -58.562508, -34.702359 ], [ -58.561882, -34.702837 ], [ -58.561272, -34.703335 ], [ -58.560654, -34.703783 ], [ -58.560074, -34.704233 ], [ -58.559368, -34.703608 ], [ -58.558739, -34.704084 ], [ -58.558129, -34.704609 ], [ -58.557203, -34.705329 ], [ -58.556273, -34.706037 ], [ -58.555347, -34.706748 ], [ -58.555312, -34.706771 ], [ -58.554416, -34.70746 ], [ -58.55402, -34.707764 ], [ -58.553577, -34.708092 ], [ -58.552881, -34.708678 ], [ -58.552853, -34.708702 ], [ -58.553079, -34.708903 ], [ -58.553261, -34.709064 ], [ -58.553608, -34.709377 ], [ -58.553558, -34.709538 ], [ -58.55368, -34.709606 ], [ -58.55497, -34.710262 ], [ -58.557011, -34.711243 ], [ -58.557201, -34.71151 ], [ -58.554512, -34.71323 ], [ -58.554703, -34.713303 ], [ -58.555537999999899, -34.713955 ], [ -58.556072, -34.714134 ], [ -58.557007, -34.714485 ], [ -58.557613, -34.714714 ], [ -58.558373, -34.715224 ], [ -58.55944, -34.716215 ], [ -58.559843, -34.716515 ], [ -58.560791, -34.71722 ], [ -58.560875, -34.717308 ], [ -58.562374, -34.717738 ], [ -58.562553, -34.717784 ], [ -58.562329, -34.718492 ], [ -58.562639, -34.718836 ], [ -58.562811, -34.719019 ], [ -58.564256, -34.720656 ], [ -58.56445, -34.720751 ], [ -58.564595, -34.720866 ], [ -58.564939, -34.721171 ], [ -58.565304, -34.721319 ], [ -58.567092, -34.721694 ], [ -58.567123, -34.72171 ], [ -58.567886, -34.722449 ], [ -58.567994, -34.722554 ], [ -58.567929, -34.722601 ], [ -58.567823, -34.722689 ], [ -58.565549, -34.724446 ], [ -58.564723, -34.725079 ], [ -58.564392, -34.725339 ], [ -58.563896, -34.725724 ], [ -58.563249, -34.726271 ], [ -58.562641, -34.726725 ], [ -58.561917, -34.727293 ], [ -58.562668, -34.727988 ], [ -58.56314, -34.72843 ], [ -58.563365, -34.728641 ], [ -58.563986, -34.729214 ], [ -58.564836, -34.729993 ], [ -58.565834, -34.730903 ], [ -58.566566, -34.731555 ], [ -58.566791, -34.731794 ], [ -58.567255, -34.73228 ], [ -58.567442, -34.732386 ], [ -58.567641, -34.73246 ], [ -58.568663, -34.733275 ], [ -58.569256, -34.732781 ], [ -58.569856, -34.732291 ], [ -58.57113, -34.733382 ], [ -58.572367, -34.73447 ], [ -58.573757, -34.735682 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 322.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.351027999942175, -34.62710399984968 ], [ -58.352770000235296, -34.627381000033097 ], [ -58.354439999906049, -34.62654600019772 ], [ -58.35488000041164, -34.626257000360226 ], [ -58.358687999751339, -34.62268400016643 ], [ -58.357294000217905, -34.622554999613499 ], [ -58.354783000435077, -34.622319000421498 ], [ -58.354290000183312, -34.622083000330178 ], [ -58.355855999554706, -34.618970999811722 ], [ -58.356155999899443, -34.618199000183665 ], [ -58.356327999737346, -34.618112999815025 ], [ -58.356520999644374, -34.618133999884151 ], [ -58.356756999735694, -34.618392000090694 ], [ -58.357036000011362, -34.618713999651334 ], [ -58.357636999847614, -34.619163999718751 ], [ -58.358880999658368, -34.620388000405853 ], [ -58.35922500023355, -34.620708999920339 ], [ -58.359803999954579, -34.62133199987187 ], [ -58.360232999952927, -34.62180400005451 ], [ -58.360534000343819, -34.622083000330178 ], [ -58.361392000340516, -34.623026999796139 ], [ -58.362250000337212, -34.624035000414892 ], [ -58.362335999806533, -34.624142999999435 ], [ -58.362550999828727, -34.624292999722115 ], [ -58.362764999804881, -34.624356999975532 ], [ -58.363000999896201, -34.624379000090755 ], [ -58.363259000102744, -34.624335999906407 ], [ -58.363837999823772, -34.624164000068504 ], [ -58.364030999730801, -34.624142999999435 ], [ -58.364030999730801, -34.624228000321921 ], [ -58.364139000214664, -34.624443000344172 ], [ -58.364117000099441, -34.624506999698212 ], [ -58.363794999639481, -34.624785999973881 ], [ -58.363709000170161, -34.624872000342521 ], [ -58.363709000170161, -34.624936999742715 ], [ -58.363881000008121, -34.625108000433841 ], [ -58.366477000113434, -34.625172999834035 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.369739000354514, -34.625280000271744 ], [ -58.371068999634588, -34.625343999625841 ], [ -58.372635999951399, -34.625452000109647 ], [ -58.373945000061667, -34.625537000432189 ], [ -58.375061000264907, -34.625645000016675 ], [ -58.376218999707021, -34.626266999922052 ], [ -58.377249000440997, -34.626824999574012 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.391068000088069, -34.628176999868629 ], [ -58.390939000434457, -34.629314000140937 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.392312999944977, -34.626438999760012 ], [ -58.393299999595285, -34.626567000266789 ], [ -58.394436999867594, -34.626652999736109 ], [ -58.395530999955668, -34.626760000173817 ], [ -58.397076000157256, -34.626910999942652 ], [ -58.398750000012456, -34.627147000033972 ], [ -58.400102000307015, -34.627296999756709 ], [ -58.401325000048701, -34.627447000378709 ], [ -58.402655000228037, -34.627619000216669 ], [ -58.403749000316054, -34.62774799987028 ], [ -58.404306999968014, -34.62781200012364 ], [ -58.405315999733546, -34.627940999777252 ], [ -58.406689000097231, -34.628091000399309 ], [ -58.40844900032107, -34.628326999591309 ], [ -58.409951000338367, -34.628735000419908 ], [ -58.410937999988676, -34.628970999611909 ], [ -58.411839000169664, -34.629206999703229 ], [ -58.412632999913001, -34.629378000394354 ], [ -58.413190999564961, -34.629507000047965 ], [ -58.414520999744298, -34.629828999608605 ], [ -58.41589500015408, -34.630151000068565 ], [ -58.416494999944234, -34.630215000321982 ], [ -58.417760999870211, -34.630365000044662 ], [ -58.418361999706462, -34.630430000344177 ], [ -58.419177999564965, -34.630536999882622 ], [ -58.420464999560068, -34.630686999605302 ], [ -58.421816999854627, -34.630880000411651 ], [ -58.423125999964896, -34.631073000318679 ], [ -58.424499000328581, -34.631288000340874 ], [ -58.425744000185432, -34.631481000247902 ], [ -58.42720300001838, -34.63152400043225 ], [ -58.428490000013426, -34.631566999717222 ], [ -58.429090999849734, -34.631609999901514 ], [ -58.429712999755111, -34.631953000430599 ], [ -58.429799000123694, -34.632017999830794 ], [ -58.431559000347534, -34.633261999641547 ], [ -58.432116999999494, -34.633584000101507 ], [ -58.432738999904871, -34.63399200003073 ], [ -58.432952999881024, -34.634035000215022 ], [ -58.433275000340927, -34.634119999638244 ], [ -58.433704000339276, -34.634206000006827 ], [ -58.434197999737876, -34.634292000375467 ], [ -58.434970000265253, -34.63446400021337 ], [ -58.435291999825893, -34.634527999567467 ], [ -58.435742999939464, -34.634613999936107 ], [ -58.436343999775715, -34.634721000373816 ], [ -58.436644000120452, -34.63478599977401 ], [ -58.436943999565869, -34.634850000027427 ], [ -58.437309000210178, -34.634914000280844 ], [ -58.437630999770761, -34.634999999750164 ], [ -58.437953000230721, -34.635042999934456 ], [ -58.438875999627612, -34.635235999841484 ], [ -58.440313000244714, -34.635537000232318 ], [ -58.441214999572537, -34.635708000024124 ], [ -58.441879999662206, -34.635858999792958 ], [ -58.442801999912319, -34.636029999584764 ], [ -58.444067999838296, -34.636308999860432 ], [ -58.445828000062136, -34.636652000389461 ], [ -58.446857999896736, -34.635537000232318 ], [ -58.447072999918987, -34.635322000210124 ], [ -58.447458999732987, -34.634956999565816 ], [ -58.448509999636713, -34.635580000416667 ], [ -58.449497000186341, -34.636265999676084 ], [ -58.450419999583289, -34.636867000411712 ], [ -58.451450000317209, -34.637446000132741 ], [ -58.452523000336157, -34.638046999969049 ], [ -58.453487999871243, -34.638583999551884 ], [ -58.453680999778271, -34.638712000058717 ], [ -58.453895999800523, -34.638927000080969 ], [ -58.454088999707551, -34.63911999998794 ], [ -58.454303999729746, -34.639312999894969 ], [ -58.454390000098385, -34.639399000263609 ], [ -58.454517999705899, -34.639571000101512 ], [ -58.454710999612928, -34.63976400000854 ], [ -58.454925999635122, -34.639977999984694 ], [ -58.455225999979859, -34.64017199993782 ], [ -58.455462000071179, -34.6403219996605 ], [ -58.455741000346848, -34.640493000351626 ], [ -58.456019999723196, -34.64064400012046 ], [ -58.456255999814516, -34.640793999843197 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.45767300040859, -34.641480000001934 ], [ -58.457993999923133, -34.641630999770769 ], [ -58.458724000312316, -34.641974000299854 ], [ -58.459453999802236, -34.642316999929562 ], [ -58.460376000052293, -34.642745999927911 ], [ -58.460634000258892, -34.642960999950162 ], [ -58.460719999728155, -34.643068000387871 ], [ -58.460955999819475, -34.643582999855539 ], [ -58.461063000257241, -34.643818999946859 ], [ -58.461235000095144, -34.643969999715694 ], [ -58.461514000370755, -34.644098000222471 ], [ -58.461857000000521, -34.644120000337693 ], [ -58.462242999814521, -34.644055000038179 ], [ -58.462478999905898, -34.643905000315442 ], [ -58.462607999559509, -34.643862000131151 ], [ -58.462780000296732, -34.643884000246373 ], [ -58.463166000110789, -34.644033999969054 ], [ -58.463809000085234, -34.644356000429013 ], [ -58.464861000035057, -34.644848999781459 ], [ -58.466020000422645, -34.645343000079322 ], [ -58.467050000257245, -34.645878999616116 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.468915999973376, -34.646459000282618 ], [ -58.470011000107547, -34.645600000239767 ], [ -58.471298000102593, -34.644570000405167 ], [ -58.472607000212861, -34.643539999671191 ], [ -58.473701000300878, -34.642681999674494 ], [ -58.474816999604798, -34.641781000392825 ], [ -58.475911999738969, -34.640901000280905 ], [ -58.476962999642694, -34.640106999638306 ], [ -58.477413999756266, -34.639741999893317 ], [ -58.478679999682186, -34.640514999567529 ], [ -58.479924000392259, -34.641287000094962 ], [ -58.482006000176739, -34.643047000318745 ], [ -58.484538000028635, -34.645235999641613 ], [ -58.484602000282052, -34.64529999989503 ], [ -58.485095999680595, -34.645728999893379 ], [ -58.485246000302652, -34.64585800044631 ], [ -58.485288999587624, -34.645900999731282 ], [ -58.486061000115001, -34.646586999890076 ], [ -58.486639999836086, -34.647081000187939 ], [ -58.488099999715189, -34.646779999797104 ], [ -58.489622999801554, -34.646307999614464 ], [ -58.491426000209685, -34.645836000331087 ], [ -58.493164000318302, -34.64538600026367 ], [ -58.494837000127404, -34.644935000150099 ], [ -58.495223999987559, -34.644848999781459 ], [ -58.496038999799964, -34.64562200035499 ], [ -58.497219000256621, -34.644677999989653 ], [ -58.498184999837804, -34.643884000246373 ], [ -58.499214999672461, -34.644376999598819 ], [ -58.50024500040638, -34.644848999781459 ], [ -58.501275000241037, -34.645320999964156 ], [ -58.502305000075637, -34.645793000146796 ], [ -58.503334999910294, -34.646307999614464 ], [ -58.504363999698796, -34.646779999797104 ], [ -58.505394000432716, -34.647274000094967 ], [ -58.506531999851859, -34.647809999631761 ], [ -58.506702999643664, -34.647874999931275 ], [ -58.507669000124224, -34.648347000113915 ], [ -58.508956000119269, -34.648925999835001 ], [ -58.510543999605829, -34.649677000293309 ], [ -58.511681999924292, -34.650191999760921 ], [ -58.512647000358754, -34.650663999943617 ], [ -58.513526999571354, -34.651050999803772 ], [ -58.51401999982312, -34.65068600005884 ], [ -58.515179000210651, -34.649784999877795 ], [ -58.516380999883211, -34.648882999650652 ], [ -58.517110000226296, -34.649526999671252 ], [ -58.517776000362062, -34.650128000406824 ], [ -58.518268999714508, -34.650577999574978 ], [ -58.519063000357164, -34.65130799996416 ], [ -58.519834999985221, -34.651995000169052 ], [ -58.520586000443529, -34.652681000327846 ], [ -58.521359000117741, -34.653367999633417 ], [ -58.522109999676729, -34.654032999723142 ], [ -58.522517999605952, -34.654419000436462 ], [ -58.523290000133386, -34.655105999742034 ], [ -58.523890999969638, -34.654654999628463 ], [ -58.524469999690666, -34.654225999630114 ], [ -58.525071000426294, -34.653775999562697 ], [ -58.525672000262546, -34.653325000348445 ], [ -58.526250999983631, -34.652874000234874 ], [ -58.526766000350619, -34.652445000236526 ], [ -58.526851999819883, -34.651415000401926 ], [ -58.526917000119397, -34.65068600005884 ], [ -58.526959000257591, -34.650085000222532 ], [ -58.527044999726911, -34.648755000043195 ], [ -58.527110000026425, -34.647616999724733 ], [ -58.527174000279842, -34.64673799965891 ], [ -58.527216999564814, -34.64618000000695 ], [ -58.52723799963394, -34.645878999616116 ], [ -58.527259999749162, -34.645471999732933 ], [ -58.527302999933454, -34.644785000427362 ], [ -58.527367000186871, -34.643797999877734 ], [ -58.526123000376117, -34.643733999624317 ], [ -58.525735999616643, -34.64371200040847 ], [ -58.525392999986934, -34.64371200040847 ], [ -58.525071000426294, -34.643691000339345 ], [ -58.524705999782043, -34.643669000224122 ], [ -58.524771000081557, -34.642789000112202 ], [ -58.524792000150626, -34.642509999836591 ], [ -58.524814000265849, -34.642252999676145 ], [ -58.524835000334974, -34.642016999584825 ], [ -58.524856999550821, -34.641759000277602 ], [ -58.524877999619946, -34.641545000301505 ], [ -58.524898999689071, -34.641266000025837 ], [ -58.524920999804237, -34.641029999934517 ], [ -58.524941999873363, -34.640771999727974 ], [ -58.524963999988586, -34.640514999567529 ], [ -58.525007000172877, -34.640128999753472 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529105000295488, -34.63952799991722 ], [ -58.529062000111196, -34.640021000168986 ], [ -58.529041000042071, -34.640514999567529 ], [ -58.528997999857779, -34.641738000208477 ], [ -58.528975999742556, -34.641974000299854 ], [ -58.528869000204168, -34.642960999950162 ], [ -58.528826000019819, -34.643862000131151 ], [ -58.528804999950751, -34.644334000313847 ], [ -58.528782999835528, -34.644870999896682 ], [ -58.528782999835528, -34.64506399980371 ], [ -58.528697000366208, -34.645878999616116 ], [ -58.528697000366208, -34.64594399991563 ], [ -58.528655000228014, -34.647102000257064 ], [ -58.528655000228014, -34.647467000001996 ], [ -58.528633000112848, -34.647659999909024 ], [ -58.528568999859431, -34.648776000112264 ], [ -58.528483000390111, -34.649870000200281 ], [ -58.528461000274888, -34.650148999576629 ], [ -58.528461000274888, -34.650321000313852 ], [ -58.528440000205819, -34.650577999574978 ], [ -58.528397000021471, -34.6507500003122 ], [ -58.528310999652888, -34.652530999705846 ], [ -58.528310999652888, -34.652809999981457 ], [ -58.528268000367859, -34.652874000234874 ], [ -58.527818000300442, -34.653454000002057 ], [ -58.527023999657843, -34.654440999652365 ], [ -58.526250999983631, -34.655406000086771 ], [ -58.526037000007477, -34.655577999924731 ], [ -58.525585999893963, -34.65590000038469 ], [ -58.525221000148974, -34.656221999945274 ], [ -58.524941999873363, -34.656393999783234 ], [ -58.525800999916157, -34.656865999965873 ], [ -58.526379999637243, -34.657187000379736 ], [ -58.527002000441939, -34.657508999940376 ], [ -58.528160999930151, -34.658109999776627 ], [ -58.529341000386808, -34.658731999682004 ], [ -58.530027999692379, -34.659097000326256 ], [ -58.530671999712979, -34.659418999886896 ], [ -58.531980999823247, -34.660106000091787 ], [ -58.532627999982196, -34.660451999859845 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 321.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.522560999790244, -34.638819999643204 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.530241999668533, -34.639378000194483 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.531058000426356, -34.640687000304752 ], [ -58.53095099998859, -34.641931000115505 ], [ -58.53095099998859, -34.642724999858785 ], [ -58.532194999799344, -34.643884000246373 ], [ -58.533418000440349, -34.64497800033439 ], [ -58.534597999997686, -34.64609399963831 ], [ -58.535820999739315, -34.64720999984155 ], [ -58.537301999687486, -34.648561000090012 ], [ -58.537151999964806, -34.648689999743624 ], [ -58.537945999708086, -34.649290999579932 ], [ -58.538461000075074, -34.649699000408475 ], [ -58.538996999611811, -34.650085000222532 ], [ -58.539534000093965, -34.650493000151812 ], [ -58.540048999561634, -34.650900000034937 ], [ -58.540563999928622, -34.651330000079383 ], [ -58.541079000295611, -34.651736999962509 ], [ -58.54210900013021, -34.650792999597229 ], [ -58.541829999854542, -34.650577999574978 ], [ -58.542516000013336, -34.649934999600532 ], [ -58.543246000402576, -34.649248000294961 ], [ -58.544018000030633, -34.648561000090012 ], [ -58.544748000419816, -34.647874999931275 ], [ -58.545455999794513, -34.647230999910676 ], [ -58.546400000159849, -34.646329999729687 ], [ -58.547108000433809, -34.646866000165744 ], [ -58.547881000108021, -34.647423999817704 ], [ -58.548910999942677, -34.648239999676207 ], [ -58.549983999961569, -34.649034000318807 ], [ -58.55105599993442, -34.649870000200281 ], [ -58.552107999884242, -34.650663999943617 ], [ -58.553180999903191, -34.65147999980212 ], [ -58.552922999696648, -34.65171599989344 ], [ -58.552451000413271, -34.652144999891789 ], [ -58.553373999810219, -34.652959999704194 ], [ -58.554361000359847, -34.653818999746989 ], [ -58.555540999917184, -34.654890999719839 ], [ -58.556549999682716, -34.655749999762634 ], [ -58.557537000232344, -34.656629999874554 ], [ -58.558523999882652, -34.65748799987125 ], [ -58.559381999879349, -34.658260000398684 ], [ -58.559982999715601, -34.658818000050644 ], [ -58.560154000406726, -34.658967999773324 ], [ -58.561013000449577, -34.659719000231632 ], [ -58.561977999984663, -34.660578000274427 ], [ -58.561828000261983, -34.661564999924735 ], [ -58.561571000101537, -34.663153000310672 ], [ -58.561527999917246, -34.66325999984906 ], [ -58.561291999825869, -34.664655000327969 ], [ -58.561119999987966, -34.665555999609637 ], [ -58.560948000150063, -34.666478999905905 ], [ -58.560819999643229, -34.667616000178214 ], [ -58.560647999805326, -34.668453000105842 ], [ -58.560604999620978, -34.668710000266231 ], [ -58.560626999736201, -34.668859999988968 ], [ -58.561227000425674, -34.669417999640928 ], [ -58.561399000263634, -34.669653999732247 ], [ -58.561828000261983, -34.670040999592402 ], [ -58.562557999751846, -34.67070599968207 ], [ -58.563352000394445, -34.671413999956087 ], [ -58.562236000191206, -34.672271999952784 ], [ -58.561163000172257, -34.673108999880412 ], [ -58.559982999715601, -34.673988999992332 ], [ -58.558887999581486, -34.674803999804681 ], [ -58.558352000044749, -34.675211999733961 ], [ -58.557794000392789, -34.675640999732309 ], [ -58.558567000066944, -34.676349000006326 ], [ -58.559296000410029, -34.677014000095994 ], [ -58.560025999899949, -34.67768000023176 ], [ -58.560755000243034, -34.678366000390554 ], [ -58.561871000446274, -34.677550999678829 ], [ -58.562986999750194, -34.676713999751257 ], [ -58.564210000391142, -34.675833999639337 ], [ -58.564938999834908, -34.676541999913297 ], [ -58.565669000224148, -34.677185999933897 ], [ -58.566419999783136, -34.677851000023566 ], [ -58.567193000356667, -34.678581000412805 ], [ -58.567878999616084, -34.679160000133834 ], [ -58.568480000351713, -34.679717999785794 ], [ -58.569187999726353, -34.680318999622102 ], [ -58.569746000277632, -34.680855000058159 ], [ -58.570324999998718, -34.681349000356022 ], [ -58.570583000205261, -34.681585000447342 ], [ -58.570861999581552, -34.68186399982369 ], [ -58.571569999855569, -34.682207000352719 ], [ -58.572128000406849, -34.682292999822039 ], [ -58.572342000382946, -34.682292999822039 ], [ -58.572772000427449, -34.68218600028365 ], [ -58.573802000262049, -34.681971000261399 ], [ -58.574853000165774, -34.681735000170079 ], [ -58.574938999635094, -34.681799000423496 ], [ -58.575860999885208, -34.68265799956697 ], [ -58.576848999581614, -34.683536999632793 ], [ -58.577770999831728, -34.684373999560364 ], [ -58.578973000403607, -34.685576000132244 ], [ -58.579810000331236, -34.686347999760358 ], [ -58.580432000236556, -34.686885000242512 ], [ -58.580989999888516, -34.687463999963597 ], [ -58.581568999609601, -34.688001000445752 ], [ -58.582106000091812, -34.687613999686278 ], [ -58.582641999628549, -34.68810799998414 ], [ -58.583415000202081, -34.688795000189089 ], [ -58.583993999923109, -34.6893099996567 ], [ -58.584530000359166, -34.689802999908466 ], [ -58.585088000011126, -34.690297000206328 ], [ -58.585667999778309, -34.690811999673997 ], [ -58.586139999961006, -34.690446999929065 ], [ -58.587041000141994, -34.691283999856637 ], [ -58.587921000253914, -34.692077999599974 ], [ -58.588842999604708, -34.692893000311699 ], [ -58.589765999900919, -34.693687000054979 ], [ -58.590045000176588, -34.693643999870631 ], [ -58.590173999830199, -34.69452399998255 ], [ -58.590323999552879, -34.695425000163596 ], [ -58.590496000290159, -34.696347999560487 ], [ -58.591976000192233, -34.696154999653459 ], [ -58.593435000025181, -34.695939999631207 ], [ -58.593606999863084, -34.696883999996544 ], [ -58.593756999585821, -34.697764000108464 ], [ -58.593929000323044, -34.698665000289509 ], [ -58.59410000011485, -34.699587999686401 ], [ -58.594271999952809, -34.700510999982612 ], [ -58.594443999790712, -34.701412000163657 ], [ -58.594594000412769, -34.702313000344645 ], [ -58.595152000064729, -34.702249000091228 ], [ -58.595023000411118, -34.702334000413771 ], [ -58.59465799976681, -34.702612999790063 ], [ -58.593971999608073, -34.703128000157051 ], [ -58.59362799993221, -34.703386000363594 ], [ -58.592555999959416, -34.704180000106874 ], [ -58.59315599974957, -34.704093999738234 ], [ -58.59386400002353, -34.704737999758834 ], [ -58.594636999697741, -34.70544600003285 ], [ -58.595687999601466, -34.70639000039813 ], [ -58.596589999828609, -34.707227000325759 ], [ -58.597534000193889, -34.708085000322455 ], [ -58.598435000374934, -34.708922000250084 ], [ -58.597812999570237, -34.709351000248432 ], [ -58.597512000078723, -34.709587000339752 ], [ -58.597211999733986, -34.709823000431072 ], [ -58.596631999966803, -34.710252000429421 ], [ -58.595516999809661, -34.711068000287923 ], [ -58.594400999606421, -34.711883000100329 ], [ -58.594980000226769, -34.712397999567997 ], [ -58.595537999878729, -34.712912999934929 ], [ -58.596096000430009, -34.713407000232849 ], [ -58.596675000151095, -34.713899999585294 ], [ -58.597232999803055, -34.714414999952226 ], [ -58.598327999937226, -34.713578000024654 ], [ -58.599400999956117, -34.712763000212249 ], [ -58.600280000021939, -34.712076000007357 ], [ -58.601139000064734, -34.711431999986758 ], [ -58.602040000245779, -34.710745999827964 ], [ -58.603156000449019, -34.709908999900392 ], [ -58.603799000423464, -34.709436999717695 ], [ -58.604721999820413, -34.708750000412124 ], [ -58.605794999839304, -34.707934999700456 ], [ -58.60684599974303, -34.707140999957119 ], [ -58.607404000294309, -34.707634000208884 ], [ -58.607961999946326, -34.708148999676553 ], [ -58.608519999598286, -34.708664000043541 ], [ -58.609078000149566, -34.709179000410472 ], [ -58.609743000239234, -34.709780000246781 ], [ -58.609206999803177, -34.710188000176004 ], [ -58.608692000335509, -34.710573999990061 ], [ -58.608540999667355, -34.710681000427769 ], [ -58.607918999761978, -34.711131999642021 ], [ -58.607619000316561, -34.711346999664272 ], [ -58.606696000020349, -34.712032999823066 ], [ -58.607833000292715, -34.713020000372694 ], [ -58.608670000220286, -34.713770999931683 ], [ -58.609463999963566, -34.714522000389991 ], [ -58.609550000332206, -34.714586999790185 ], [ -58.609786000423526, -34.714822999881505 ], [ -58.610043999730749, -34.715080000041951 ], [ -58.610580000166806, -34.715574000339814 ], [ -58.6111159997036, -34.716088999807425 ], [ -58.611653000185754, -34.716582000059191 ], [ -58.610430000444126, -34.717462000171111 ], [ -58.610988000096086, -34.717976999638779 ], [ -58.611523999632823, -34.718492000005767 ], [ -58.612490000113382, -34.719393000186756 ], [ -58.613476999763691, -34.720315999583647 ], [ -58.614614000036056, -34.721409999671721 ], [ -58.613970000015456, -34.721903999969584 ], [ -58.613433999579399, -34.722310999852709 ], [ -58.610623000351154, -34.72443599982148 ], [ -58.610043999730749, -34.724908000004177 ], [ -58.611245000256531, -34.725958999907903 ], [ -58.610408000328903, -34.726602999928446 ], [ -58.609806999593332, -34.727075000111142 ], [ -58.609184999687955, -34.727589999578754 ], [ -58.609034999965218, -34.727697000016519 ], [ -58.608456000244189, -34.728148000130034 ], [ -58.608154999853298, -34.728384000221411 ], [ -58.607855000407881, -34.728620000312731 ], [ -58.607274999741378, -34.729071000426302 ], [ -58.607190000318212, -34.729134999780399 ], [ -58.606567000366738, -34.729629000078262 ], [ -58.607317999925726, -34.73029400016793 ], [ -58.608241000221938, -34.731108999980336 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 320.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.436279000375521, -34.623219999703167 ], [ -58.436236000191229, -34.624528999813435 ], [ -58.434498000082613, -34.624443000344172 ], [ -58.434648999851447, -34.623026999796139 ], [ -58.435163000172281, -34.621266999572356 ], [ -58.435484999732921, -34.620408999575602 ], [ -58.435914999777367, -34.619357999671877 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.437095000234024, -34.617082999980425 ], [ -58.437331000325344, -34.616631999866854 ], [ -58.437416999794664, -34.616461000075049 ], [ -58.437609999701692, -34.615923999592837 ], [ -58.437760000323692, -34.614615000381946 ], [ -58.437823999677789, -34.614078999945832 ], [ -58.438404000344292, -34.612813000019912 ], [ -58.440077000153394, -34.613563999578901 ], [ -58.440893000011897, -34.613863999923637 ], [ -58.441085999918926, -34.613929000223152 ], [ -58.442416000098262, -34.61450799994418 ], [ -58.443747000323754, -34.614980000126877 ], [ -58.44524900034105, -34.615602000032254 ], [ -58.445871000246427, -34.615881000307866 ], [ -58.445934999600524, -34.615988999892409 ], [ -58.446686000058833, -34.615966999777186 ], [ -58.446686000058833, -34.61658999972866 ], [ -58.448509999636713, -34.616996999611786 ], [ -58.449367999633409, -34.617319000071745 ], [ -58.45078500022754, -34.617876999723705 ], [ -58.452007999969169, -34.618348999906402 ], [ -58.453230999710854, -34.618821000089042 ], [ -58.454517999705899, -34.619272000202614 ], [ -58.455548000439819, -34.619636999947545 ], [ -58.456620999559448, -34.620000999646379 ], [ -58.458488000220996, -34.620623999597854 ], [ -58.459066999942081, -34.620837999573951 ], [ -58.460419000236641, -34.621288999687522 ], [ -58.461791999701006, -34.621825000123636 ], [ -58.462801000365857, -34.622189999868567 ], [ -58.463788000016166, -34.622575999682624 ], [ -58.465182999595697, -34.623091000049556 ], [ -58.466642000328022, -34.623476999863612 ], [ -58.468057999976679, -34.623884999792836 ], [ -58.469388000156016, -34.624313999791241 ], [ -58.470782999735604, -34.624742999789589 ], [ -58.472113999961095, -34.625150999718812 ], [ -58.473743999585849, -34.625579999717161 ], [ -58.47492500008866, -34.62590200017712 ], [ -58.476040000245746, -34.626202999668635 ], [ -58.477156000449042, -34.626481999944303 ], [ -58.478208000398865, -34.626760000173817 ], [ -58.479301999587562, -34.627039000449486 ], [ -58.480374999606511, -34.627339999941 ], [ -58.481447999625459, -34.627597000101446 ], [ -58.482864000173436, -34.627940999777252 ], [ -58.484236999637801, -34.628284000306337 ], [ -58.485502999563721, -34.628605999866977 ], [ -58.485953999677292, -34.627597000101446 ], [ -58.486167999653446, -34.627124999918749 ], [ -58.486425999859989, -34.626589000382012 ], [ -58.486597999697892, -34.626202999668635 ], [ -58.487756000039326, -34.626674999851332 ], [ -58.488957999711886, -34.627168000103097 ], [ -58.490266999822154, -34.627682999570709 ], [ -58.491360999910171, -34.628197999937697 ], [ -58.491553999817199, -34.628263000237212 ], [ -58.492412999859994, -34.628649000051269 ], [ -58.493121000134011, -34.628970999611909 ], [ -58.493400000409679, -34.628970999611909 ], [ -58.493550000132359, -34.628928000326937 ], [ -58.493678999785971, -34.628735000419908 ], [ -58.494321999760416, -34.629164000418257 ], [ -58.494430000244279, -34.62924999988752 ], [ -58.494859000242627, -34.629529000163188 ], [ -58.495696000170256, -34.630107999884217 ], [ -58.496210999637867, -34.630430000344177 ], [ -58.497455000347941, -34.630859000342525 ], [ -58.499343000179294, -34.631460000178834 ], [ -58.50000900031506, -34.631738999555125 ], [ -58.500973999850146, -34.632167999553474 ], [ -58.502369000329054, -34.632769000289102 ], [ -58.503571000001614, -34.633283999756713 ], [ -58.504621999905339, -34.63375599993941 ], [ -58.504965000434368, -34.633884000446244 ], [ -58.505569999555803, -34.634085999868944 ], [ -58.505608999555648, -34.634098999569119 ], [ -58.505931000015607, -34.634206000006827 ], [ -58.506724999758887, -34.634355999729564 ], [ -58.508419999683213, -34.634635000005176 ], [ -58.509299999795132, -34.634700000304747 ], [ -58.510265000229538, -34.634763999658787 ], [ -58.511102000157166, -34.634613999936107 ], [ -58.511445999832972, -34.63446400021337 ], [ -58.512689999643726, -34.633926999731216 ], [ -58.513892000215606, -34.63343400037877 ], [ -58.514578000374399, -34.633240999572422 ], [ -58.515158000141525, -34.633132999987936 ], [ -58.516059000322571, -34.633068999734519 ], [ -58.516787999766336, -34.633089999803587 ], [ -58.517089000157171, -34.633047999665393 ], [ -58.518118999991827, -34.63302600044949 ], [ -58.518547999990176, -34.63302600044949 ], [ -58.518890999619884, -34.633068999734519 ], [ -58.519556999755707, -34.63319800028745 ], [ -58.519857000100444, -34.63319800028745 ], [ -58.520006999823124, -34.633176000172227 ], [ -58.520286000098793, -34.63319800028745 ], [ -58.520457999936696, -34.633240999572422 ], [ -58.520650999843724, -34.633412000263547 ], [ -58.520994000372752, -34.633584000101507 ], [ -58.521574000139935, -34.633820000192827 ], [ -58.522967999673426, -34.634141999753467 ], [ -58.523225999879969, -34.63422800012205 ], [ -58.524233999599346, -34.63446400021337 ], [ -58.525585999893963, -34.634570999751816 ], [ -58.526873999935106, -34.634700000304747 ], [ -58.528225000183568, -34.634828999958359 ], [ -58.528655000228014, -34.634828999958359 ], [ -58.529491000109545, -34.634806999843136 ], [ -58.529985000407407, -34.634721000373816 ], [ -58.530312000198592, -34.634692999981894 ], [ -58.53080100026591, -34.634648999751505 ], [ -58.531001999642513, -34.634624000397253 ], [ -58.531078999596104, -34.634613999936107 ], [ -58.531208000149036, -34.634442000098204 ], [ -58.531336999802647, -34.634334999660439 ], [ -58.531680000331733, -34.634162999822536 ], [ -58.531987000099946, -34.634152000214613 ], [ -58.532259000052761, -34.634141999753467 ], [ -58.533031999726973, -34.634119999638244 ], [ -58.532903000073361, -34.635086000118747 ], [ -58.532001999892316, -34.635042999934456 ], [ -58.531685999709055, -34.635042999934456 ], [ -58.531572999893967, -34.635042999934456 ], [ -58.531444000240356, -34.635086000118747 ], [ -58.530757000035464, -34.635494000048027 ], [ -58.530520999944144, -34.635730000139347 ], [ -58.530371000221464, -34.635900999931152 ], [ -58.530263999783699, -34.636094999884278 ], [ -58.530217000314281, -34.636220000252763 ], [ -58.530200000429659, -34.636265999676084 ], [ -58.530065999646126, -34.636961000249926 ], [ -58.530004000384281, -34.637284999902761 ], [ -58.529985000407407, -34.637381999879324 ], [ -58.529979000130709, -34.637495999740565 ], [ -58.529900000084922, -34.638045999922895 ], [ -58.529791999601059, -34.63888399989662 ], [ -58.529791999601059, -34.639248999641552 ], [ -58.529808000338903, -34.639351999894814 ], [ -58.529808000338903, -34.639351999894814 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.532216999914567, -34.639571000101512 ], [ -58.533311000002584, -34.639635000354929 ], [ -58.535092000295549, -34.639741999893317 ], [ -58.535842999854538, -34.639828000261957 ], [ -58.537280999618417, -34.639913999731277 ], [ -58.538610999797754, -34.640021000168986 ], [ -58.539984000161439, -34.640128999753472 ], [ -58.541399999810096, -34.64017199993782 ], [ -58.542880999758268, -34.640149999822597 ], [ -58.543502999663644, -34.640128999753472 ], [ -58.544083000330147, -34.640106999638306 ], [ -58.544726000304649, -34.640106999638306 ], [ -58.545134000233872, -34.640106999638306 ], [ -58.546228000321889, -34.64008599956918 ], [ -58.548954000126969, -34.640043000284209 ], [ -58.549489999663706, -34.640021000168986 ], [ -58.551099000118711, -34.64000000009986 ], [ -58.552644000320299, -34.639956999915569 ], [ -58.553224000087482, -34.639956999915569 ], [ -58.554253999922139, -34.639934999800346 ], [ -58.556035000215047, -34.639913999731277 ], [ -58.557065000049647, -34.639913999731277 ], [ -58.557235999841453, -34.639913999731277 ], [ -58.558202000322012, -34.639892999662152 ], [ -58.558673999605332, -34.639913999731277 ], [ -58.560133000337657, -34.640043000284209 ], [ -58.560970000265286, -34.640128999753472 ], [ -58.561592000170606, -34.640214000076014 ], [ -58.562665000189554, -34.640364999844849 ], [ -58.563266000025862, -34.640450000167334 ], [ -58.563502000117182, -34.64055799975182 ], [ -58.564339000044754, -34.640687000304752 ], [ -58.564080999838211, -34.641651999839894 ], [ -58.564010000161318, -34.641832000046747 ], [ -58.563759000277628, -34.642466999652243 ], [ -58.565389999948479, -34.642724999858785 ], [ -58.565197000041451, -34.643604999970705 ], [ -58.565004000134479, -34.644485000082625 ], [ -58.564768000043102, -34.645364000148447 ], [ -58.564575000136131, -34.646244000260367 ], [ -58.564382000229102, -34.647124000372287 ], [ -58.564210000391142, -34.648045999723081 ], [ -58.564027000045996, -34.64891800036537 ], [ -58.564016999584794, -34.648969000019292 ], [ -58.565303999579896, -34.650106000291657 ], [ -58.565518999602091, -34.650300000244783 ], [ -58.566484000036553, -34.65115800024148 ], [ -58.566527000220844, -34.651201000425772 ], [ -58.567471999732959, -34.6520380003534 ], [ -58.567836000331113, -34.652337999798817 ], [ -58.568522999636684, -34.652959999704194 ], [ -58.569081000187964, -34.653431999886834 ], [ -58.569531000255438, -34.653883000000405 ], [ -58.570390000298232, -34.654613000389588 ], [ -58.570583000205261, -34.654806000296617 ], [ -58.571333999764249, -34.654225999630114 ], [ -58.572063000107335, -34.653646999909085 ], [ -58.572128000406849, -34.653624999793863 ], [ -58.573007999619449, -34.652938999635069 ], [ -58.573844000400243, -34.652294999614469 ], [ -58.573908999800437, -34.652252000329497 ], [ -58.574638000143523, -34.65171599989344 ], [ -58.5748740002349, -34.651544000055537 ], [ -58.575839999816083, -34.6507500003122 ], [ -58.576011999654042, -34.650642999874492 ], [ -58.576440999652391, -34.65147999980212 ], [ -58.576933999904156, -34.652424000167457 ], [ -58.577406000086796, -34.65330400027932 ], [ -58.577857000200368, -34.654140000160851 ], [ -58.578006999923048, -34.654398000367394 ], [ -58.578072000222619, -34.654504999905782 ], [ -58.578865999965899, -34.655235000294965 ], [ -58.579595000308984, -34.65590000038469 ], [ -58.580345999867973, -34.656607999759331 ], [ -58.580924999589001, -34.657123000126319 ], [ -58.581548000439852, -34.657659999709153 ], [ -58.582083999976589, -34.658109999776627 ], [ -58.582363000252201, -34.65836799998317 ], [ -58.583028000341926, -34.658946999704256 ], [ -58.583113999811189, -34.659033000072839 ], [ -58.583887000384721, -34.659719000231632 ], [ -58.583328999833441, -34.660106000091787 ], [ -58.582814000365772, -34.660512999974912 ], [ -58.582127000160881, -34.661028000341901 ], [ -58.58143999995599, -34.661542999809569 ], [ -58.580710999612904, -34.662101000360849 ], [ -58.581548000439852, -34.662808999735489 ], [ -58.582109000230162, -34.663292999572207 ], [ -58.582170000345172, -34.6633460002177 ], [ -58.582405000390395, -34.663281999964283 ], [ -58.582620999559424, -34.6633460002177 ], [ -58.582663999743772, -34.663560000193797 ], [ -58.58276299981253, -34.663584000401272 ], [ -58.583950999738818, -34.663860999685369 ], [ -58.584938000288446, -34.664740999797232 ], [ -58.585860999685337, -34.665576999678763 ], [ -58.586462000420966, -34.666135000230042 ], [ -58.585903999869686, -34.666564000228391 ], [ -58.585110000126349, -34.667165000064642 ], [ -58.586247000398714, -34.66808800036091 ], [ -58.586848000234966, -34.668151999714951 ], [ -58.587320000417662, -34.668387999806328 ], [ -58.587663000047371, -34.668859999988968 ], [ -58.587749000416011, -34.66935400028683 ], [ -58.588822000434959, -34.67023400039875 ], [ -58.589572999993891, -34.670919999658224 ], [ -58.590409999921519, -34.671693000231755 ], [ -58.591182000448896, -34.672400999606396 ], [ -58.592044999776874, -34.673160999580432 ], [ -58.592082999730621, -34.673195000248995 ], [ -58.592169000099261, -34.673280999718315 ], [ -58.591482999940467, -34.673840000315693 ], [ -58.590667000081964, -34.674504000359264 ], [ -58.589659000362531, -34.67536200035596 ], [ -58.589583999601871, -34.675423999617863 ], [ -58.58864999969768, -34.676199000283589 ], [ -58.587685000162594, -34.676993000026869 ], [ -58.586032000376463, -34.678345000321485 ], [ -58.584702000197126, -34.679439000409502 ], [ -58.583993999923109, -34.679738999854919 ], [ -58.583757999831789, -34.679804000154434 ], [ -58.583757999831789, -34.679868000407851 ], [ -58.583993999923109, -34.680212000083714 ], [ -58.584101000360818, -34.680532999598199 ], [ -58.584101000360818, -34.680726999551325 ], [ -58.583993999923109, -34.681004999780896 ], [ -58.583778999900858, -34.681284000056507 ], [ -58.58381499976241, -34.681316999779654 ], [ -58.584122999576721, -34.681585000447342 ], [ -58.585110000126349, -34.68250799984429 ], [ -58.585688999847434, -34.683065000349416 ], [ -58.586226000329589, -34.683558999748016 ], [ -58.586869000304091, -34.684117000299295 ], [ -58.587405999886926, -34.684609999651741 ], [ -58.588092000045719, -34.685275999787507 ], [ -58.587147999680383, -34.685984000061524 ], [ -58.586546999844131, -34.686456000244164 ], [ -58.585517000009474, -34.687227999872277 ], [ -58.584702000197126, -34.687849999777598 ], [ -58.585259999849086, -34.688344000075517 ], [ -58.585818000400366, -34.68883800037338 ], [ -58.586376000052326, -34.689352999841049 ], [ -58.586933999704286, -34.689867000161883 ], [ -58.5878559999544, -34.690660999905162 ], [ -58.588736000066319, -34.691476999763665 ], [ -58.589637000247308, -34.692291999576071 ], [ -58.590538999575131, -34.693129000403019 ], [ -58.591354000286856, -34.692506999598322 ], [ -58.592276999683747, -34.693322000310047 ], [ -58.592941999773416, -34.692806999943059 ], [ -58.593650000047433, -34.692291999576071 ], [ -58.594766000250672, -34.693279000125699 ], [ -58.595452000409466, -34.693879999962007 ], [ -58.596353999737232, -34.694673999705287 ], [ -58.597404999640958, -34.69564000018579 ], [ -58.598177000168391, -34.696347999560487 ], [ -58.599142999749574, -34.697205999557184 ], [ -58.600366000390579, -34.698321999760424 ], [ -58.601095999880442, -34.697785000177589 ], [ -58.601847000338751, -34.697205999557184 ], [ -58.602790999804768, -34.698063999553881 ], [ -58.603714000100979, -34.698901000380829 ], [ -58.604636000351093, -34.6997380003084 ], [ -58.605558999747984, -34.700596000305154 ], [ -58.606482000044252, -34.701433000232726 ], [ -58.607253999672309, -34.70085399961232 ], [ -58.608111999669006, -34.701711999609074 ], [ -58.608842000058189, -34.70117600007228 ], [ -58.609806999593332, -34.700424999613972 ], [ -58.610623000351154, -34.700832000396474 ], [ -58.61135199979492, -34.701325999795017 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 317.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.279110283999955, -34.781920549999938 ], [ -58.279220580999947, -34.780693053999926 ], [ -58.279262542999902, -34.780490874999941 ], [ -58.279096882999909, -34.780404930999907 ], [ -58.278755187999934, -34.780227660999913 ], [ -58.27828216599994, -34.779979705999949 ], [ -58.277038573999903, -34.779296874999943 ], [ -58.275814055999945, -34.778621673999908 ], [ -58.274425506999933, -34.777847289999954 ], [ -58.273334502999944, -34.77723693799993 ], [ -58.27325057999991, -34.777130126999907 ], [ -58.273108950999926, -34.777317392999919 ], [ -58.272563933999947, -34.778038024999944 ], [ -58.271942138999918, -34.778877257999909 ], [ -58.271354674999941, -34.779659270999957 ], [ -58.271252042999947, -34.779595612999913 ], [ -58.270450591999918, -34.779098510999916 ], [ -58.269527434999929, -34.778575896999939 ], [ -58.268550872999924, -34.778026580999949 ], [ -58.268173217999902, -34.777809142999956 ], [ -58.26798114099995, -34.77791031299995 ], [ -58.267173766999917, -34.778335570999957 ], [ -58.266179443999931, -34.778902814999924 ], [ -58.264876885999911, -34.779554946999951 ], [ -58.263716358999943, -34.780229578999922 ], [ -58.262590182999929, -34.780843101999949 ], [ -58.262383323999927, -34.781171652999944 ], [ -58.262360782999906, -34.781207454999958 ], [ -58.262150644999906, -34.781441397999913 ], [ -58.262020483999947, -34.781763575999946 ], [ -58.261890410999911, -34.782127379999906 ], [ -58.261825561999899, -34.782272338999917 ], [ -58.261730193999938, -34.78245925899995 ], [ -58.261695861999954, -34.782520293999937 ], [ -58.26153182999991, -34.782695769999918 ], [ -58.261249541999916, -34.782993316999921 ], [ -58.261248038999952, -34.782994086999906 ], [ -58.2610931399999, -34.783073424999941 ], [ -58.260868072999926, -34.783149718999937 ], [ -58.260608672999922, -34.783172606999926 ], [ -58.260440825999922, -34.783172606999926 ], [ -58.260299682999914, -34.78317642199994 ], [ -58.2601280209999, -34.783191680999948 ], [ -58.259937285999911, -34.783199309999929 ], [ -58.259653461999903, -34.783242359999917 ], [ -58.259631341999921, -34.783245714999907 ], [ -58.259500154999955, -34.783310853999922 ], [ -58.25929210299995, -34.783433659999957 ], [ -58.258911132999913, -34.783687591999922 ], [ -58.258732341999917, -34.783879548999948 ], [ -58.258236118999946, -34.784412312999905 ], [ -58.257519781999918, -34.785190197999952 ], [ -58.256856653999932, -34.785894364999933 ], [ -58.256833915999948, -34.78591851099992 ], [ -58.256442008999954, -34.786329554999952 ], [ -58.256041350999908, -34.786749776999955 ], [ -58.256046390999927, -34.786752186999934 ], [ -58.256067272999928, -34.786762173999932 ], [ -58.256119589999912, -34.786787195999921 ], [ -58.256145514999901, -34.786799594999934 ], [ -58.256392300999948, -34.786917624999944 ], [ -58.257437569999922, -34.787482183999941 ], [ -58.257845756999927, -34.78769961699993 ], [ -58.258837599999936, -34.78821077799995 ], [ -58.259776035999948, -34.78869523599991 ], [ -58.260691584999904, -34.789168250999921 ], [ -58.261561353999923, -34.789614563999919 ], [ -58.262507405999941, -34.790083768999921 ], [ -58.263152130999913, -34.790453778999904 ], [ -58.263850262999938, -34.790850490999958 ], [ -58.264536932999931, -34.79121669299991 ], [ -58.265296065999905, -34.791598159999921 ], [ -58.265917897999941, -34.791949097999918 ], [ -58.266600754999899, -34.792315298999938 ], [ -58.267424753999933, -34.792750164999916 ], [ -58.268294533999949, -34.793211732999907 ], [ -58.269164318999913, -34.793680926999912 ], [ -58.269461871999908, -34.793833511999935 ], [ -58.270236264999937, -34.794222607999927 ], [ -58.271010672999921, -34.794630771999948 ], [ -58.272078820999923, -34.795195333999914 ], [ -58.272868503999916, -34.795634008999912 ], [ -58.273635284999955, -34.796042171999943 ], [ -58.274386800999935, -34.796435077999945 ], [ -58.274692445999904, -34.79660236299992 ], [ -58.274838489999922, -34.796552857999927 ], [ -58.276253563999944, -34.796073185999944 ], [ -58.277711263999947, -34.795571276999908 ], [ -58.277933104999931, -34.795490332999918 ], [ -58.278009991999909, -34.795489584999928 ], [ -58.278199573999927, -34.795303901999944 ], [ -58.278710761999946, -34.795291428999917 ], [ -58.279036874999917, -34.795327851999957 ], [ -58.279034684999942, -34.795445251999922 ], [ -58.279023645999928, -34.796036865999952 ], [ -58.279004253999915, -34.796261618999949 ], [ -58.278933406999954, -34.797412823999935 ], [ -58.278891008999949, -34.798478765999903 ], [ -58.278834929999903, -34.79939476699991 ], [ -58.27880551699991, -34.800561883999933 ], [ -58.278732311999931, -34.801624373999914 ], [ -58.278685478999932, -34.802649088999942 ], [ -58.2786468729999, -34.803711243999942 ], [ -58.278599878999955, -34.804724704999956 ], [ -58.278553691999946, -34.805794435999928 ], [ -58.278549254999916, -34.806826243999922 ], [ -58.278526005999936, -34.807810706999931 ], [ -58.278525326999954, -34.807839479999927 ], [ -58.278259905999903, -34.807830803999934 ], [ -58.276420867999946, -34.807747375999952 ], [ -58.274801009999919, -34.807665568999937 ], [ -58.27312343299991, -34.807580571999949 ], [ -58.273114856999939, -34.807753994999928 ], [ -58.27307275599992, -34.808605323999927 ], [ -58.273022454999932, -34.809656335999932 ], [ -58.272984090999955, -34.810467112999902 ], [ -58.273092368999926, -34.810470085999953 ], [ -58.274699573999953, -34.810514222999927 ], [ -58.276295828999935, -34.810558739999919 ], [ -58.278042065999955, -34.810605551999913 ], [ -58.278218904999903, -34.810603832999902 ], [ -58.278193893999912, -34.810727801999917 ], [ -58.27816505699991, -34.810870738999938 ], [ -58.27816245799994, -34.811017681999942 ], [ -58.278152312999907, -34.811591221999947 ], [ -58.278083975999948, -34.811651916999949 ], [ -58.277967407999938, -34.812639789999935 ], [ -58.277843903999951, -34.81368025799992 ], [ -58.277720399999907, -34.814720725999905 ], [ -58.277617972999906, -34.815622169999926 ], [ -58.277524443999937, -34.816339685999935 ], [ -58.277435082999943, -34.81707967199992 ], [ -58.277374324999926, -34.817669306999903 ], [ -58.277365371999906, -34.818386 ], [ -58.27740330499995, -34.818571507999934 ], [ -58.277427390999947, -34.818689297999924 ], [ -58.277488255999913, -34.819889025999942 ], [ -58.277491694999924, -34.819956804999947 ], [ -58.277578820999906, -34.821475464999935 ], [ -58.277596992999918, -34.822206902999937 ], [ -58.277616832999911, -34.822518114999923 ], [ -58.277660596999908, -34.82342564299995 ], [ -58.277703232999954, -34.824254390999954 ], [ -58.277721270999905, -34.824708191999946 ], [ -58.277746566999951, -34.825131906999957 ], [ -58.277794283999924, -34.826046898999948 ], [ -58.277806004999945, -34.826328175999947 ], [ -58.277844150999954, -34.827111944999956 ], [ -58.277863991999936, -34.827500258999919 ], [ -58.277892243999929, -34.828053196999917 ], [ -58.277907001999949, -34.828325746999951 ], [ -58.277913157999933, -34.82843943599994 ], [ -58.277943831999949, -34.828701768999906 ], [ -58.278085085999919, -34.830160583999941 ], [ -58.278113459999929, -34.830564808999952 ], [ -58.278164552999954, -34.831291635999946 ], [ -58.278197095999928, -34.83168411999992 ], [ -58.278266257999917, -34.832309486999918 ], [ -58.27833791799992, -34.832534020999958 ], [ -58.278398946999914, -34.833023326999921 ], [ -58.278469687999916, -34.833889918999944 ], [ -58.27849804899995, -34.834597655999914 ], [ -58.278548147999913, -34.835363410999946 ], [ -58.278598748999912, -34.835957945999951 ], [ -58.278656887999944, -34.836711897999919 ], [ -58.278733493999937, -34.837348816999906 ], [ -58.27876245899995, -34.837881440999922 ], [ -58.278789526999901, -34.838639783999952 ], [ -58.278884831999903, -34.839266250999913 ], [ -58.278908811999941, -34.839423880999902 ], [ -58.278988371999901, -34.840702796999949 ], [ -58.27902724799992, -34.841604921999931 ], [ -58.27893320499993, -34.842559771999902 ], [ -58.278814537999949, -34.84372125099992 ], [ -58.278774109999915, -34.84439507399992 ], [ -58.27869129599992, -34.845061796999914 ], [ -58.278604008999935, -34.845903692999912 ], [ -58.278503107999938, -34.847127144999945 ], [ -58.27849157299994, -34.847408152999947 ], [ -58.278469191999932, -34.847953355999948 ], [ -58.278459489999932, -34.849131720999935 ], [ -58.278439546999948, -34.849749576999955 ], [ -58.278453378999927, -34.850264309999943 ], [ -58.278513980999946, -34.851011428999925 ], [ -58.278534752999917, -34.852275480999936 ], [ -58.278535284999919, -34.852307857999904 ], [ -58.27827517299994, -34.853662845999906 ], [ -58.278101859999936, -34.85485725399991 ], [ -58.277837833999911, -34.856189379999932 ], [ -58.277593644999911, -34.857693009999934 ], [ -58.276987466999913, -34.861496587999909 ], [ -58.27694651999991, -34.861753514999918 ], [ -58.276663817999918, -34.863161997999953 ], [ -58.276094625999917, -34.865982794999923 ], [ -58.275822718999905, -34.867257758999926 ], [ -58.275613323999949, -34.868063381999946 ], [ -58.275351977999946, -34.869155254999953 ], [ -58.275194176999946, -34.869598362999909 ], [ -58.275050172999954, -34.870548576999909 ], [ -58.275168265999923, -34.87137931299992 ], [ -58.275328016999936, -34.872164086999931 ], [ -58.275429168999949, -34.872628824999936 ], [ -58.275553534999915, -34.873173530999907 ], [ -58.275840027999948, -34.874197934999927 ], [ -58.276061365999908, -34.87675179699994 ], [ -58.275932457999943, -34.876680592999946 ], [ -58.270599925999932, -34.87373511699991 ], [ -58.269134402999953, -34.872929951999936 ], [ -58.268378739999946, -34.872514131999935 ], [ -58.267626882999934, -34.872098293999954 ], [ -58.266863605999902, -34.871682512999939 ], [ -58.265905676999921, -34.871157082999957 ], [ -58.265004989999909, -34.870661882999912 ], [ -58.264917089999926, -34.870770831999948 ], [ -58.263661439999908, -34.872327165999934 ], [ -58.262325468999904, -34.873984784999948 ], [ -58.261068963999946, -34.875551860999906 ], [ -58.260993321999933, -34.875646198999902 ], [ -58.255822341999931, -34.872875984999951 ], [ -58.254284386999927, -34.872048287999917 ], [ -58.253773003999925, -34.871772383999939 ], [ -58.252834107999945, -34.871246861999907 ], [ -58.252677641999924, -34.871366197999919 ], [ -58.251601358999949, -34.872187075999932 ], [ -58.250660962999916, -34.872965720999957 ], [ -58.246670862999906, -34.876054707999913 ], [ -58.246764924999923, -34.876139879999926 ], [ -58.249251296999944, -34.878391264999948 ], [ -58.250761354999952, -34.879764401999921 ], [ -58.25053046499994, -34.879949979999935 ], [ -58.244522943999925, -34.884778530999938 ], [ -58.240021954999918, -34.888430401999926 ], [ -58.238028695999901, -34.889974976999952 ], [ -58.233714056999929, -34.893388247999951 ], [ -58.229403216999913, -34.896793895999906 ], [ -58.229564921999952, -34.896934567999949 ], [ -58.237450177999904, -34.903794211999923 ], [ -58.249579853999933, -34.914372249999928 ], [ -58.263011709999944, -34.926503042999911 ], [ -58.265772401999925, -34.928981871999952 ], [ -58.265719836999949, -34.929205669999931 ], [ -58.265145593999932, -34.931650536999939 ], [ -58.264437984999915, -34.934491476999938 ], [ -58.2642895809999, -34.935146201999942 ], [ -58.263967653999941, -34.936601149999944 ], [ -58.263591294999912, -34.938274338999918 ], [ -58.26337536099993, -34.938852446999931 ], [ -58.263240536999945, -34.938734513999918 ], [ -58.26311693699995, -34.938626398999929 ], [ -58.261378919999913, -34.937074730999939 ], [ -58.259281308999903, -34.935201235999955 ], [ -58.257640662999904, -34.933733857999925 ], [ -58.257145868999942, -34.933295762999933 ], [ -58.256943992999936, -34.933117018999951 ], [ -58.255244727999923, -34.934381565999956 ], [ -58.253495695999902, -34.935682738999958 ], [ -58.251763081999911, -34.93698067999992 ], [ -58.253495695999902, -34.935682738999958 ], [ -58.255244727999923, -34.934381565999956 ], [ -58.256943992999936, -34.933117018999951 ], [ -58.256783051999946, -34.932972468999935 ], [ -58.255898897999941, -34.93217835899992 ], [ -58.252992223999911, -34.929584582999951 ], [ -58.252826210999899, -34.929437969999924 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 315.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619810176027684, -34.647335818810674 ], [ -58.61976775663711, -34.64546936562563 ], [ -58.618452755529468, -34.64549057532092 ], [ -58.614507752206542, -34.642266701637659 ], [ -58.61860122339646, -34.638936779477987 ], [ -58.612768557193206, -34.634079759257816 ], [ -58.602248548332071, -34.635712905794733 ], [ -58.586542768973842, -34.635203873107898 ], [ -58.586362486563921, -34.635500808841883 ], [ -58.58289470138488, -34.638067181971316 ], [ -58.574792597786171, -34.638353512857655 ], [ -58.566425372996399, -34.638258069228876 ], [ -58.563890814409888, -34.637865689866111 ], [ -58.563445410808917, -34.638311093467088 ], [ -58.557612744605663, -34.636529479063178 ], [ -58.551546771754261, -34.634811493745126 ], [ -58.548354712613929, -34.634525162858786 ], [ -58.545289911645305, -34.634885727678622 ], [ -58.538916398212287, -34.6347054452687 ], [ -58.53755897771407, -34.633793428371462 ], [ -58.536106113587074, -34.634217622277156 ], [ -58.531726311510809, -34.634143388343659 ], [ -58.531164254585768, -34.634610001639921 ], [ -58.528566066913406, -34.634832703440409 ], [ -58.529265986857801, -34.635564437927727 ], [ -58.529509898353574, -34.636232543329193 ], [ -58.529340220791298, -34.636624922691958 ], [ -58.529329615943652, -34.638608029201066 ], [ -58.52929780140073, -34.63941399762188 ], [ -58.525925459850477, -34.639106457040256 ], [ -58.522531908604932, -34.638830731001541 ], [ -58.515097910407682, -34.639223110364298 ], [ -58.511354399189955, -34.639329158840724 ], [ -58.502722053209141, -34.637876294713735 ], [ -58.49507595805904, -34.636815809949503 ], [ -58.480207961664547, -34.633464678094541 ], [ -58.471575615683733, -34.631280079480227 ], [ -58.4621160915868, -34.628650077264936 ], [ -58.452359631755883, -34.624980799980698 ], [ -58.441457848379606, -34.620484344580369 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 314.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.532405, -34.57347 ], [ -58.532862, -34.573867 ], [ -58.533898, -34.573032 ], [ -58.534685, -34.573691 ], [ -58.534803, -34.573795 ], [ -58.535555, -34.574427 ], [ -58.536313, -34.57507 ], [ -58.537089, -34.575737 ], [ -58.537901, -34.576376 ], [ -58.538686, -34.577044 ], [ -58.539487, -34.577721 ], [ -58.540225, -34.57834 ], [ -58.541039, -34.578979 ], [ -58.541819, -34.579625 ], [ -58.542585, -34.580297 ], [ -58.54325, -34.580803 ], [ -58.543435, -34.580981 ], [ -58.543478, -34.581027 ], [ -58.544159, -34.581679 ], [ -58.545207, -34.580807 ], [ -58.546257, -34.579953 ], [ -58.547042, -34.580625 ], [ -58.547815, -34.581254 ], [ -58.547842, -34.581272 ], [ -58.548614, -34.581925 ], [ -58.549394, -34.582573 ], [ -58.550148, -34.583239 ], [ -58.550956, -34.583936 ], [ -58.549893, -34.58478 ], [ -58.549325, -34.585285 ], [ -58.548889, -34.585629 ], [ -58.549604, -34.586265 ], [ -58.550336, -34.586909 ], [ -58.551045, -34.587524 ], [ -58.552899, -34.589102 ], [ -58.553415, -34.589461 ], [ -58.554473, -34.588353 ], [ -58.554904, -34.588618 ], [ -58.555319, -34.588834 ], [ -58.555826, -34.589156 ], [ -58.556577, -34.589573 ], [ -58.557105, -34.589076 ], [ -58.557967, -34.58827 ], [ -58.557975, -34.588263 ], [ -58.559075, -34.587296 ], [ -58.560159, -34.586361 ], [ -58.561199, -34.585482 ], [ -58.561211, -34.585474 ], [ -58.562313, -34.584502 ], [ -58.562695, -34.584161 ], [ -58.563343, -34.583605 ], [ -58.563401, -34.583556 ], [ -58.56403, -34.583017 ], [ -58.56498, -34.582208 ], [ -58.565748, -34.581542 ], [ -58.565811, -34.581482 ], [ -58.566476, -34.580899 ], [ -58.567237, -34.580255 ], [ -58.568009, -34.579646 ], [ -58.568026, -34.579627 ], [ -58.568843999999899, -34.578958 ], [ -58.569654, -34.578256 ], [ -58.570474, -34.577618 ], [ -58.57125, -34.577012 ], [ -58.57129, -34.576978 ], [ -58.572151, -34.576337 ], [ -58.572947, -34.575665 ], [ -58.573767, -34.575024 ], [ -58.574593, -34.574372 ], [ -58.575394, -34.573738 ], [ -58.574253, -34.572767 ], [ -58.573122, -34.571841 ], [ -58.572024, -34.570874 ], [ -58.572727, -34.570333 ], [ -58.572909, -34.570208 ], [ -58.573459, -34.569752 ], [ -58.572825, -34.569166 ], [ -58.572299, -34.568681 ], [ -58.571814, -34.568159 ], [ -58.570965, -34.567331 ], [ -58.57095, -34.567319 ], [ -58.570151, -34.566584 ], [ -58.569365, -34.565803 ], [ -58.568687, -34.565162 ], [ -58.568611, -34.565079 ], [ -58.567768, -34.564249 ], [ -58.567156, -34.563713 ], [ -58.566529, -34.563188 ], [ -58.565831, -34.562613 ], [ -58.565171, -34.562105 ], [ -58.56501, -34.562068 ], [ -58.564862, -34.561992 ], [ -58.564243, -34.561281 ], [ -58.563451, -34.56047 ], [ -58.563155, -34.560119 ], [ -58.562816, -34.559762 ], [ -58.56211, -34.559033 ], [ -58.561376, -34.558239 ], [ -58.560643, -34.557446 ], [ -58.559995999999899, -34.556758 ], [ -58.559389, -34.556128 ], [ -58.558485, -34.555206 ], [ -58.558314, -34.555337 ], [ -58.557692, -34.554803 ], [ -58.556669, -34.55395 ], [ -58.555654, -34.553099 ], [ -58.555835, -34.552957 ], [ -58.556414, -34.552503 ], [ -58.557453, -34.551675 ], [ -58.558423, -34.5509 ], [ -58.559373, -34.550129 ], [ -58.559354, -34.54998 ], [ -58.559177, -34.549791 ], [ -58.559009, -34.549629 ], [ -58.557669, -34.548581 ], [ -58.557538, -34.548483 ], [ -58.557501, -34.548372 ], [ -58.557498, -34.548237 ], [ -58.556641, -34.547517 ], [ -58.557936, -34.546497 ], [ -58.55922, -34.545462 ], [ -58.56049, -34.544422 ], [ -58.559625, -34.543688 ], [ -58.55875, -34.542939 ], [ -58.557861, -34.542177 ], [ -58.556997, -34.541438 ], [ -58.556123, -34.540688 ], [ -58.555909, -34.540855 ], [ -58.555247, -34.540281 ], [ -58.55435, -34.539522 ], [ -58.554524, -34.539381 ], [ -58.553742, -34.538714 ], [ -58.553065, -34.538133 ], [ -58.552395, -34.537555 ], [ -58.551717, -34.536978 ], [ -58.551049, -34.536397 ], [ -58.550391, -34.535831 ], [ -58.549706, -34.53525 ], [ -58.548809, -34.534454 ], [ -58.5494, -34.533935 ], [ -58.550048, -34.533402 ], [ -58.550649, -34.532914 ], [ -58.549982, -34.532337 ], [ -58.549763, -34.532151 ], [ -58.549335, -34.531793 ], [ -58.549243, -34.531715 ], [ -58.548705, -34.531222 ], [ -58.54852, -34.531045 ], [ -58.548057, -34.530678 ], [ -58.547863, -34.530522 ], [ -58.547399, -34.530113 ], [ -58.547134, -34.529914 ], [ -58.546725, -34.529594 ], [ -58.5464, -34.52934 ], [ -58.546153, -34.52913 ], [ -58.545671, -34.528732 ], [ -58.545597, -34.528663 ], [ -58.545546, -34.528628 ], [ -58.544968, -34.528179 ], [ -58.544881, -34.528259 ], [ -58.544164, -34.528876 ], [ -58.543411, -34.5295 ], [ -58.543102, -34.529803 ], [ -58.542296, -34.530525 ], [ -58.541621, -34.531098 ], [ -58.54155, -34.531181 ], [ -58.540999, -34.531632 ], [ -58.540783, -34.531831 ], [ -58.540108, -34.53135 ], [ -58.539813, -34.531137 ], [ -58.538245, -34.531307 ], [ -58.538123, -34.530753 ], [ -58.538111, -34.530708 ], [ -58.538032, -34.530174 ], [ -58.537991, -34.529962 ], [ -58.537923, -34.529584 ], [ -58.537864, -34.529315 ], [ -58.537783, -34.528955 ], [ -58.536251, -34.529156 ], [ -58.536183, -34.528747 ], [ -58.537016, -34.528642 ], [ -58.538245, -34.528492 ], [ -58.538388, -34.528579 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 311.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.390046, -34.706625 ], [ -58.389665, -34.70554 ], [ -58.388724, -34.706208 ], [ -58.387714, -34.706934 ], [ -58.386674, -34.707661 ], [ -58.386662, -34.707672 ], [ -58.385933, -34.708205 ], [ -58.385043, -34.708843 ], [ -58.384045, -34.709569 ], [ -58.383107, -34.710251 ], [ -58.382086, -34.710989 ], [ -58.381091, -34.711697 ], [ -58.38108, -34.711705 ], [ -58.380094, -34.712401 ], [ -58.380105, -34.712409 ], [ -58.380918, -34.713179 ], [ -58.38093, -34.713186 ], [ -58.381747, -34.713943 ], [ -58.38172, -34.713963 ], [ -58.38073, -34.714696 ], [ -58.379722, -34.715395 ], [ -58.379707, -34.715402 ], [ -58.378779, -34.71609 ], [ -58.378768, -34.716098 ], [ -58.377813, -34.716769 ], [ -58.37685, -34.717447 ], [ -58.37549, -34.718509 ], [ -58.375386, -34.718513 ], [ -58.374236, -34.719327 ], [ -58.373066, -34.720146 ], [ -58.371921, -34.72099 ], [ -58.370697, -34.721832 ], [ -58.370639, -34.721961 ], [ -58.369618, -34.722647 ], [ -58.368496, -34.723484 ], [ -58.367324, -34.724299 ], [ -58.366007, -34.725217 ], [ -58.365171, -34.725832 ], [ -58.364375, -34.726442 ], [ -58.364314, -34.72647 ], [ -58.364231, -34.726491 ], [ -58.363468, -34.727069 ], [ -58.36318, -34.727277 ], [ -58.362241, -34.727959 ], [ -58.36127, -34.72865 ], [ -58.360289, -34.729347 ], [ -58.359492, -34.729958 ], [ -58.358652, -34.73063 ], [ -58.357784, -34.731273 ], [ -58.356948, -34.731921 ], [ -58.356085, -34.732587 ], [ -58.355252, -34.733237 ], [ -58.354391, -34.733895 ], [ -58.353538, -34.733137 ], [ -58.352666, -34.732377 ], [ -58.3517, -34.731513 ], [ -58.350895, -34.730826 ], [ -58.350546, -34.731875 ], [ -58.35023, -34.732699 ], [ -58.350132, -34.733041 ], [ -58.34973, -34.73407 ], [ -58.349411, -34.734865 ], [ -58.349322, -34.735159 ], [ -58.349121, -34.735638 ], [ -58.348525, -34.735494 ], [ -58.348087, -34.735356 ], [ -58.347945, -34.735327 ], [ -58.347827, -34.73533 ], [ -58.347582, -34.735354 ], [ -58.346642, -34.735618 ], [ -58.346181, -34.735205 ], [ -58.345519, -34.734619 ], [ -58.344946, -34.734058 ], [ -58.344968, -34.733946 ], [ -58.344904, -34.73389 ], [ -58.344768, -34.733765 ], [ -58.343937, -34.733001 ], [ -58.343063, -34.732202 ], [ -58.34222, -34.731418 ], [ -58.341346, -34.730608 ], [ -58.340551, -34.729876 ], [ -58.339806, -34.729182 ], [ -58.339134, -34.728559 ], [ -58.338071, -34.727594 ], [ -58.337193, -34.726838 ], [ -58.336402, -34.726078 ], [ -58.335468, -34.725274 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 310.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370718999682026, -34.586532000351497 ], [ -58.370210999637891, -34.585927000330742 ], [ -58.370081999984279, -34.585775999662587 ], [ -58.369223999987582, -34.58476799994321 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.371262999587714, -34.600774999766372 ], [ -58.372613999836176, -34.600861000135012 ], [ -58.373988000245959, -34.600989999788624 ], [ -58.375360999710324, -34.601073000018914 ], [ -58.376756000189232, -34.601119000341555 ], [ -58.378171999837889, -34.601203999764721 ], [ -58.379609999601769, -34.601269000064235 ], [ -58.381069000334037, -34.601312000248583 ], [ -58.381604999870831, -34.601333000317652 ], [ -58.381927000330734, -34.601355000432875 ], [ -58.382378000444305, -34.601375999602681 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.38463100002059, -34.601397999717847 ], [ -58.384973999650299, -34.601439999856041 ], [ -58.385230999810744, -34.601526000224681 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.386648000404875, -34.60272799989724 ], [ -58.387956999615824, -34.602877999619921 ], [ -58.389458999633064, -34.603028000241977 ], [ -58.390853000065874, -34.603092999642172 ], [ -58.390809999881526, -34.60431600028312 ], [ -58.390788999812457, -34.605539000024805 ], [ -58.390745999628166, -34.606718999582142 ], [ -58.390660000158846, -34.607921000153965 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.391389999648709, -34.609357999871747 ], [ -58.39151900020164, -34.609550999778776 ], [ -58.39151900020164, -34.609722999616679 ], [ -58.391497000086417, -34.609895000353958 ], [ -58.391432999833057, -34.610022999961416 ], [ -58.391347000363737, -34.610131000445278 ], [ -58.391111000272417, -34.61026000009889 ], [ -58.390424000067526, -34.610237999983667 ], [ -58.390359999814109, -34.611375000256032 ], [ -58.390359999814109, -34.612576999928535 ], [ -58.390359999814109, -34.613736000316123 ], [ -58.390380999883178, -34.614850999573946 ], [ -58.390380999883178, -34.615645000216546 ], [ -58.390359999814109, -34.616803999704757 ], [ -58.390337999698886, -34.618027000345762 ], [ -58.390274000344789, -34.618970999811722 ], [ -58.390210000091372, -34.62013000019931 ], [ -58.390038000253469, -34.621439000309579 ], [ -58.389887999631412, -34.622618999866916 ], [ -58.389823000231218, -34.623219999703167 ], [ -58.389781000093024, -34.623627999632447 ], [ -58.389758999977801, -34.623992000230601 ], [ -58.389652000439412, -34.625044000180424 ], [ -58.391325000248514, -34.625237000087452 ], [ -58.392549000036297, -34.625322999556715 ], [ -58.392312999944977, -34.626438999760012 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.391540000270766, -34.630666000435554 ], [ -58.391368000432806, -34.631696000270153 ], [ -58.391174999626514, -34.632853999712268 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.402976999788677, -34.636631000320392 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.405252000379448, -34.637039000249615 ], [ -58.405616000078282, -34.637102999603712 ], [ -58.407547000093928, -34.637446000132741 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.411195000149121, -34.638069000084215 ], [ -58.411624000147469, -34.638133000337632 ], [ -58.413190999564961, -34.638411999713981 ], [ -58.414563999928589, -34.638668999874426 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.416088000061109, -34.638906000011843 ], [ -58.417095999780543, -34.639098999918872 ], [ -58.416709999966486, -34.640493000351626 ], [ -58.416408999575651, -34.641630999770769 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.417804000054502, -34.651845000446372 ], [ -58.418833999889159, -34.65171599989344 ], [ -58.419564000278342, -34.65163000042412 ], [ -58.420014000345816, -34.651587000239829 ], [ -58.42078700001997, -34.65147999980212 ], [ -58.421645000016724, -34.6513940003328 ], [ -58.422610999597907, -34.651264999779869 ], [ -58.423726999801147, -34.65115800024148 ], [ -58.423897999592953, -34.651050999803772 ], [ -58.424907000257804, -34.652059000422469 ], [ -58.425958000161529, -34.653068000188 ], [ -58.42617300018378, -34.653261000095029 ], [ -58.426880999558421, -34.653926000184697 ], [ -58.427588999832437, -34.654613000389588 ], [ -58.42831900022162, -34.655320999764285 ], [ -58.428897999942706, -34.65590000038469 ], [ -58.429649000401014, -34.656586999690262 ], [ -58.430335999706585, -34.657208999595639 ], [ -58.431087000164894, -34.657659999709153 ], [ -58.430399999960002, -34.658345999867947 ], [ -58.429734999870334, -34.659033000072839 ], [ -58.430807999889225, -34.659611999793924 ], [ -58.431858999792951, -34.660191999561107 ], [ -58.43297499999619, -34.660814000365804 ], [ -58.433661000154984, -34.660127000160912 ], [ -58.434240999922167, -34.659548000439827 ], [ -58.434433999829196, -34.659354999633479 ], [ -58.434583999551876, -34.659203999864644 ], [ -58.435378000194532, -34.658411000167462 ], [ -58.436215000122104, -34.65757400023989 ], [ -58.438510999882681, -34.659441000002118 ], [ -58.439518999602114, -34.660212999630176 ], [ -58.440721000173994, -34.661200000179804 ], [ -58.441493999848149, -34.661801000016112 ], [ -58.442481000397834, -34.661007000272775 ], [ -58.443574999586531, -34.660127000160912 ], [ -58.444583000205228, -34.660899999835067 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 309.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.389496, -34.707011 ], [ -58.390046, -34.706625 ], [ -58.389665, -34.70554 ], [ -58.389289, -34.70444 ], [ -58.388399, -34.703682 ], [ -58.387055, -34.704665 ], [ -58.385831, -34.703509 ], [ -58.384914, -34.702796 ], [ -58.384902, -34.702788 ], [ -58.38399, -34.702072 ], [ -58.38399, -34.702068 ], [ -58.383007, -34.701281 ], [ -58.382047, -34.700516 ], [ -58.381157, -34.699821 ], [ -58.381144, -34.699814 ], [ -58.380159, -34.699034 ], [ -58.380152, -34.699026 ], [ -58.38014, -34.699034 ], [ -58.379253, -34.699881 ], [ -58.378408, -34.700693 ], [ -58.378393, -34.700707 ], [ -58.377707, -34.701321 ], [ -58.377043, -34.702005 ], [ -58.376513, -34.702752 ], [ -58.375788, -34.703398 ], [ -58.375305, -34.703759 ], [ -58.374835, -34.704127 ], [ -58.374023, -34.704819 ], [ -58.373705, -34.705058 ], [ -58.372785, -34.70574 ], [ -58.372498, -34.70592 ], [ -58.372363, -34.706004 ], [ -58.371441, -34.706717 ], [ -58.371418, -34.706736 ], [ -58.370939, -34.707058 ], [ -58.370273, -34.707529 ], [ -58.369998, -34.707716 ], [ -58.369085, -34.708337 ], [ -58.369005, -34.708394 ], [ -58.368026, -34.70907 ], [ -58.367923, -34.709146 ], [ -58.367266, -34.709586 ], [ -58.366514, -34.710105 ], [ -58.367419, -34.710987 ], [ -58.367445, -34.711013 ], [ -58.368267, -34.711775 ], [ -58.368244, -34.711798 ], [ -58.367101, -34.712605 ], [ -58.365958, -34.713423 ], [ -58.364811, -34.714259 ], [ -58.364781, -34.714278 ], [ -58.363669, -34.71507 ], [ -58.362538, -34.7159 ], [ -58.361405, -34.716723 ], [ -58.361359, -34.716753 ], [ -58.360259, -34.717545 ], [ -58.358569, -34.718715 ], [ -58.357722, -34.717972 ], [ -58.356849, -34.717203 ], [ -58.356342, -34.716775 ], [ -58.356141, -34.716596 ], [ -58.356008, -34.716482 ], [ -58.35574, -34.716265 ], [ -58.355071, -34.715667 ], [ -58.354253, -34.716292 ], [ -58.354226, -34.716315 ], [ -58.353391, -34.716952 ], [ -58.352583, -34.717592 ], [ -58.351526, -34.718453 ], [ -58.351503, -34.718472 ], [ -58.350611999999899, -34.717677 ], [ -58.35053, -34.717576 ], [ -58.350462, -34.717454 ], [ -58.350145, -34.717618 ], [ -58.349516, -34.718123 ], [ -58.348322, -34.718971 ], [ -58.347166, -34.720005 ], [ -58.346127, -34.720895 ], [ -58.345314, -34.721599 ], [ -58.344448, -34.72228 ], [ -58.34358, -34.72294 ], [ -58.3429, -34.72348 ], [ -58.343502, -34.72404 ], [ -58.343847, -34.7244 ], [ -58.344515, -34.725111 ], [ -58.342913, -34.726047 ], [ -58.341813, -34.726762 ], [ -58.341091, -34.727238 ], [ -58.34044, -34.727671 ], [ -58.339767, -34.728125 ], [ -58.339134, -34.728559 ], [ -58.338482, -34.72903 ], [ -58.337952, -34.729402 ], [ -58.337829, -34.729483 ], [ -58.336886, -34.730106 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 307.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.501704000239386, -34.673988999992332 ], [ -58.501446000032843, -34.674225000083652 ], [ -58.500523999782729, -34.674869000104252 ], [ -58.49977300022374, -34.674159999784138 ], [ -58.499407999579489, -34.673860000338721 ], [ -58.498613999836209, -34.673796000085304 ], [ -58.49708999970369, -34.673624000247344 ], [ -58.495652999985907, -34.673494999694412 ], [ -58.494687000404724, -34.673388000156024 ], [ -58.494043000384124, -34.673323999902607 ], [ -58.492692000135662, -34.673173000133829 ], [ -58.492197999837799, -34.673752999900955 ], [ -58.491768999839451, -34.674202999968429 ], [ -58.493849999577776, -34.676112999914949 ], [ -58.492327000390731, -34.677272000302537 ], [ -58.491275000440851, -34.678109000230108 ], [ -58.489386999710234, -34.676498999729006 ], [ -58.48782100033884, -34.677851000023566 ], [ -58.487628000431812, -34.678022999861525 ], [ -58.486854999858338, -34.678774000319834 ], [ -58.485911000392321, -34.677979999677177 ], [ -58.485116999749721, -34.677314999587509 ], [ -58.484344000075509, -34.676670999566909 ], [ -58.483529000263104, -34.675963000192269 ], [ -58.482348999806447, -34.675018999826932 ], [ -58.481212000433459, -34.673988999992332 ], [ -58.480525000228511, -34.673367000086955 ], [ -58.479903000323191, -34.672872999789092 ], [ -58.479516999609814, -34.672508000044104 ], [ -58.478422000374962, -34.671606999863116 ], [ -58.477156000449042, -34.670577000028459 ], [ -58.476361999806386, -34.669868999754499 ], [ -58.476147999830289, -34.669696999916596 ], [ -58.475975999992386, -34.668967999573454 ], [ -58.475654000431746, -34.668194999899299 ], [ -58.47563300036262, -34.667915999623631 ], [ -58.475590000178329, -34.667722999716602 ], [ -58.475481999694466, -34.667551999924797 ], [ -58.47516100017998, -34.667336999902602 ], [ -58.474473999975089, -34.666092000045694 ], [ -58.474454999998215, -34.666042999584704 ], [ -58.473765999701072, -34.66422600032962 ], [ -58.473058000326432, -34.662681000128032 ], [ -58.472928999773501, -34.662358999668072 ], [ -58.473680000231809, -34.661865000269529 ], [ -58.474324000252352, -34.661372000017764 ], [ -58.475117999995689, -34.660749000066232 ], [ -58.475868999554621, -34.660149000276078 ], [ -58.477026999896111, -34.659247000048993 ], [ -58.477907000008031, -34.658560999890199 ], [ -58.478271999752963, -34.658260000398684 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.478186000283642, -34.657316000033347 ], [ -58.477950000192322, -34.657102000057193 ], [ -58.477499000078751, -34.656715000197039 ], [ -58.477005999826986, -34.656243000014399 ], [ -58.476554999713414, -34.655836000131274 ], [ -58.475524999878814, -34.654890999719839 ], [ -58.475204000364272, -34.654613000389588 ], [ -58.474710000066409, -34.654162000276074 ], [ -58.474088000161032, -34.653582999655669 ], [ -58.473680000231809, -34.653217999910737 ], [ -58.473251000233461, -34.65283200009668 ], [ -58.472564000028513, -34.652231000260429 ], [ -58.472048999661581, -34.65171599989344 ], [ -58.470825999919896, -34.650599999690201 ], [ -58.470075000360964, -34.649913000384629 ], [ -58.46986100038481, -34.649719999578281 ], [ -58.469667000431684, -34.649526999671252 ], [ -58.469280999718308, -34.649118999742029 ], [ -58.468766000250696, -34.648368000183041 ], [ -58.468422999721611, -34.647918000115567 ], [ -58.468186999630291, -34.647553000370635 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467050000257245, -34.645878999616116 ], [ -58.466020000422645, -34.645343000079322 ], [ -58.464861000035057, -34.644848999781459 ], [ -58.463809000085234, -34.644356000429013 ], [ -58.463166000110789, -34.644033999969054 ], [ -58.462843999650829, -34.64371200040847 ], [ -58.462693999928092, -34.643433000132802 ], [ -58.462650999743801, -34.643197000041482 ], [ -58.462543000159314, -34.643025000203579 ], [ -58.462393000436577, -34.642874999581522 ], [ -58.462006999723201, -34.642703999789717 ], [ -58.461749999562812, -34.642681999674494 ], [ -58.461449000071241, -34.642745999927911 ], [ -58.461277000233338, -34.642832000296551 ], [ -58.461041000142018, -34.642917999765814 ], [ -58.460740999797281, -34.642874999581522 ], [ -58.460376000052293, -34.642745999927911 ], [ -58.459453999802236, -34.642316999929562 ], [ -58.458724000312316, -34.641974000299854 ], [ -58.457993999923133, -34.641630999770769 ], [ -58.45767300040859, -34.641480000001934 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.456514000021059, -34.641415999748574 ], [ -58.455376999748694, -34.642466999652243 ], [ -58.454411000167511, -34.643325999695094 ], [ -58.453960000053939, -34.643754999693442 ], [ -58.453360000263785, -34.644313000244722 ], [ -58.452308000313906, -34.643412000063734 ], [ -58.451600000039946, -34.642789000112202 ], [ -58.451363999948626, -34.642575000136105 ], [ -58.451148999926374, -34.642403000298202 ], [ -58.450934999950221, -34.642230999560923 ], [ -58.450806000296609, -34.642102999953465 ], [ -58.450440999652358, -34.641801999562574 ], [ -58.450033999769232, -34.641458999932865 ], [ -58.449090000303215, -34.640622000005237 ], [ -58.448188000076129, -34.639807000192889 ], [ -58.447201000425764, -34.640535999636654 ], [ -58.446235999991359, -34.641287000094962 ], [ -58.44524900034105, -34.642016999584825 ], [ -58.444239999676199, -34.642789000112202 ], [ -58.443660999955171, -34.643303999579871 ], [ -58.443139000164706, -34.643678999785948 ], [ -58.442801999912319, -34.643797999877734 ], [ -58.442202000122165, -34.643733999624317 ], [ -58.441493999848149, -34.643582999855539 ], [ -58.440506000151743, -34.643368999879385 ], [ -58.439863000177297, -34.643240000225774 ], [ -58.439240000225766, -34.643089999603774 ], [ -58.438660999605418, -34.642982000019231 ], [ -58.437781000392818, -34.642811000227425 ], [ -58.436258000306452, -34.642509999836591 ], [ -58.434669999920516, -34.642210000391174 ], [ -58.433124999718927, -34.641887999931214 ], [ -58.432353000090814, -34.641738000208477 ], [ -58.431171999588059, -34.641480000001934 ], [ -58.429927999777306, -34.641266000025837 ], [ -58.429262999687637, -34.641158999588129 ], [ -58.428576000382066, -34.641029999934517 ], [ -58.427996999761717, -34.640943999565877 ], [ -58.427416999994534, -34.640858000096557 ], [ -58.426774000020032, -34.640729000442946 ], [ -58.42617300018378, -34.64064400012046 ], [ -58.424928000326929, -34.640429000098209 ], [ -58.423490999709827, -34.64017199993782 ], [ -58.422310000106393, -34.639977999984694 ], [ -58.420915999673582, -34.639720999824249 ], [ -58.419542000163119, -34.639484999732929 ], [ -58.418554999613491, -34.639312999894969 ], [ -58.417095999780543, -34.639098999918872 ], [ -58.416088000061109, -34.638906000011843 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.414563999928589, -34.638668999874426 ], [ -58.413190999564961, -34.638411999713981 ], [ -58.411624000147469, -34.638133000337632 ], [ -58.411195000149121, -34.638069000084215 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.407547000093928, -34.637446000132741 ], [ -58.405616000078282, -34.637102999603712 ], [ -58.405252000379448, -34.637039000249615 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.402976999788677, -34.636631000320392 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391174999626514, -34.632853999712268 ], [ -58.391368000432806, -34.631696000270153 ], [ -58.391540000270766, -34.630666000435554 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.389479999702189, -34.626739000104749 ], [ -58.389543999955606, -34.626202999668635 ], [ -58.389652000439412, -34.625044000180424 ], [ -58.389758999977801, -34.623992000230601 ], [ -58.389781000093024, -34.623627999632447 ], [ -58.389823000231218, -34.623219999703167 ], [ -58.389887999631412, -34.622618999866916 ], [ -58.390038000253469, -34.621439000309579 ], [ -58.390210000091372, -34.62013000019931 ], [ -58.390274000344789, -34.618970999811722 ], [ -58.390337999698886, -34.618027000345762 ], [ -58.390359999814109, -34.616803999704757 ], [ -58.390380999883178, -34.615645000216546 ], [ -58.390380999883178, -34.614850999573946 ], [ -58.390359999814109, -34.613736000316123 ], [ -58.390359999814109, -34.612576999928535 ], [ -58.390359999814109, -34.611375000256032 ], [ -58.390424000067526, -34.610237999983667 ], [ -58.391111000272417, -34.61026000009889 ], [ -58.391347000363737, -34.610131000445278 ], [ -58.391432999833057, -34.610022999961416 ], [ -58.391497000086417, -34.609895000353958 ], [ -58.39151900020164, -34.609722999616679 ], [ -58.39151900020164, -34.609550999778776 ], [ -58.391389999648709, -34.609357999871747 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.390660000158846, -34.607921000153965 ], [ -58.390745999628166, -34.606718999582142 ], [ -58.390788999812457, -34.605539000024805 ], [ -58.389329999979452, -34.605410000371194 ], [ -58.387871000146504, -34.605346000117777 ], [ -58.386475999667596, -34.605237999633914 ], [ -58.385037999903716, -34.605153000210748 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.382163000422111, -34.604981000372845 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.380876000427065, -34.604895000004205 ], [ -58.380317999875729, -34.60487399993508 ], [ -58.379437999763866, -34.604808999635566 ], [ -58.377956999815638, -34.605645999563194 ], [ -58.377399000163678, -34.605924999838805 ], [ -58.376520000097912, -34.606397000021502 ], [ -58.375575999732575, -34.606869000204142 ], [ -58.375039000149684, -34.607169999695714 ], [ -58.373580000316736, -34.607899000038799 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.37215800039138, -34.607920000107868 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.37416899959959, -34.591353999687271 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.372818000250447, -34.589652000339527 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.374706000081801, -34.586144000445245 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 305.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619159000087734, -34.648861999581584 ], [ -58.619828000361906, -34.648861999581584 ], [ -58.619828000361906, -34.649227000225835 ], [ -58.619828000361906, -34.65051400022088 ], [ -58.621158999688021, -34.650471000036589 ], [ -58.622724999958734, -34.650406999783172 ], [ -58.624162999722614, -34.650342000382977 ], [ -58.62418399979174, -34.65163000042412 ], [ -58.624226999976031, -34.652874000234874 ], [ -58.625343000179271, -34.652853000165805 ], [ -58.626479999552316, -34.652853000165805 ], [ -58.626522999736608, -34.653796999631766 ], [ -58.626522999736608, -34.654697999812811 ], [ -58.626543999805733, -34.655685000362439 ], [ -58.626586999990025, -34.65716600031061 ], [ -58.626609000105248, -34.658411000167462 ], [ -58.626609000105248, -34.659333000417575 ], [ -58.626652000289539, -34.660512999974912 ], [ -58.625471999832882, -34.660491999905844 ], [ -58.624398999813934, -34.660469999790621 ], [ -58.622832000396443, -34.660448999721496 ], [ -58.621459000032758, -34.660448999721496 ], [ -58.621545000401397, -34.661264000433221 ], [ -58.621545000401397, -34.661907999554501 ], [ -58.621587999686369, -34.661950999738792 ], [ -58.620837000127437, -34.662594999759392 ], [ -58.620622000105186, -34.662787999666421 ], [ -58.619978000084586, -34.663324000102477 ], [ -58.619399000363558, -34.663796000285117 ], [ -58.619142000203112, -34.664011000307369 ], [ -58.618734000273832, -34.6643760000523 ], [ -58.618411999813873, -34.664655000327969 ], [ -58.618047000068941, -34.66493399970426 ], [ -58.617640000185816, -34.66525600016422 ], [ -58.617317999725856, -34.66549200025554 ], [ -58.616824000327313, -34.665899000138722 ], [ -58.616610000351216, -34.666070999976625 ], [ -58.615751000308364, -34.666800000319711 ], [ -58.615515000217044, -34.666994000272837 ], [ -58.614872000242599, -34.667551999924797 ], [ -58.614056000384096, -34.668260000198813 ], [ -58.613605000270525, -34.66864600001287 ], [ -58.613433999579399, -34.668774999666482 ], [ -58.6127899995588, -34.669311000102539 ], [ -58.61199599981552, -34.66864600001287 ], [ -58.611181000003114, -34.667980999923145 ], [ -58.610430000444126, -34.667357999971671 ], [ -58.609656999870595, -34.666714999997225 ], [ -58.609121000333857, -34.666178000414334 ], [ -58.608583999851646, -34.665663000047346 ], [ -58.608069000384035, -34.665169999795637 ], [ -58.607296999856601, -34.664525999775037 ], [ -58.606438999859904, -34.663796000285117 ], [ -58.605645000116624, -34.66311000012638 ], [ -58.604872000442413, -34.662445000036655 ], [ -58.605666000185693, -34.661757999831764 ], [ -58.605987999746333, -34.661521999740444 ], [ -58.606588999582641, -34.661007000272775 ], [ -58.607426000409532, -34.660363000252232 ], [ -58.607404000294309, -34.660276999883592 ], [ -58.606631999766932, -34.659633999909147 ], [ -58.605772999724138, -34.660385000367455 ], [ -58.60525800025647, -34.660835000434872 ], [ -58.603820999639368, -34.661972999854015 ], [ -58.602448000175002, -34.663174000379797 ], [ -58.601030999580928, -34.664353999937077 ], [ -58.600022999861494, -34.665212999979929 ], [ -58.599829999954466, -34.665405999886957 ], [ -58.5998079998393, -34.66549200025554 ], [ -58.599743999585883, -34.665619999863054 ], [ -58.599550999678854, -34.666758000181517 ], [ -58.59948600027866, -34.666972000157614 ], [ -58.599357999771826, -34.667121999880351 ], [ -58.598949999842603, -34.667486999625282 ], [ -58.598220000352683, -34.668109000429979 ], [ -58.597996999961538, -34.668291999875862 ], [ -58.596439000059775, -34.669569000309082 ], [ -58.595881000407815, -34.670040999592402 ], [ -58.595129999949506, -34.670663000397099 ], [ -58.594443999790712, -34.671242000118184 ], [ -58.593478000209529, -34.672035999861464 ], [ -58.592855000257998, -34.672554000366802 ], [ -58.592082999730621, -34.673195000248995 ], [ -58.591375000355924, -34.673773999970081 ], [ -58.590580999713325, -34.674439000059749 ], [ -58.589958999807948, -34.674954000426737 ], [ -58.589015000341931, -34.675748000170017 ], [ -58.588924999788844, -34.675823000031357 ], [ -58.587598999793954, -34.676928999773452 ], [ -58.58673999975116, -34.677637000047469 ], [ -58.586139999961006, -34.678109000230108 ], [ -58.585517000009474, -34.678623999697777 ], [ -58.585131000195474, -34.678946000157737 ], [ -58.584615999828486, -34.679353000040862 ], [ -58.584437999713884, -34.679442999694629 ], [ -58.584358999668041, -34.679481999694474 ], [ -58.583844000200429, -34.679654000431754 ], [ -58.583693999578372, -34.679717999785794 ], [ -58.582320000067909, -34.680018000130531 ], [ -58.58143999995599, -34.680212000083714 ], [ -58.580581999959293, -34.680426000059811 ], [ -58.579637999593956, -34.680641000082062 ], [ -58.578779999597259, -34.68083399998909 ], [ -58.577556999855631, -34.681113000264702 ], [ -58.576654999628488, -34.68130600017173 ], [ -58.576046000322606, -34.681454999848313 ], [ -58.575775999562666, -34.681520000147827 ], [ -58.574853000165774, -34.681735000170079 ], [ -58.573848999731524, -34.681960999800253 ], [ -58.573802000262049, -34.681971000261399 ], [ -58.572772000427449, -34.68218600028365 ], [ -58.572342000382946, -34.682292999822039 ], [ -58.572238000083587, -34.682319000121709 ], [ -58.571827000016015, -34.68242200037497 ], [ -58.571140999857221, -34.682572000097707 ], [ -58.569985999654136, -34.682831000350347 ], [ -58.569896000000369, -34.682851000373319 ], [ -58.569317000279284, -34.683001000096056 ], [ -58.566634999805331, -34.683601999932307 ], [ -58.564400000159822, -34.684120999584422 ], [ -58.563587999586446, -34.684310000206324 ], [ -58.562814999912291, -34.684482000044227 ], [ -58.562617999820816, -34.684536999882596 ], [ -58.561828000261983, -34.684761000319838 ], [ -58.561184000241383, -34.685060999765255 ], [ -58.560726999851113, -34.685353999787196 ], [ -58.560046999969018, -34.685791000154495 ], [ -58.558377000298265, -34.687038000103598 ], [ -58.556914000280869, -34.688129000053266 ], [ -58.556570999751784, -34.688408000328934 ], [ -58.556434999775377, -34.688512999775071 ], [ -58.555841000261921, -34.688965999980894 ], [ -58.554703999989556, -34.689846000092814 ], [ -58.554188999622568, -34.690231999906814 ], [ -58.553696000270179, -34.690596999651746 ], [ -58.553438000063636, -34.690789999558774 ], [ -58.552837000227328, -34.691240999672345 ], [ -58.552022000414922, -34.691862999577722 ], [ -58.551357000325254, -34.692377999944711 ], [ -58.550692000235586, -34.692850000127351 ], [ -58.549168000103066, -34.694008999615619 ], [ -58.548609999551786, -34.694437999613967 ], [ -58.546323000206257, -34.696179999907031 ], [ -58.544018000030633, -34.697935999946424 ], [ -58.542859999689199, -34.698793999943121 ], [ -58.542429999644753, -34.699136999572829 ], [ -58.541979999577279, -34.699437999963664 ], [ -58.541829999854542, -34.699523000286206 ], [ -58.541529000363028, -34.699651999939817 ], [ -58.541272000202582, -34.699780999593429 ], [ -58.541100000364679, -34.69991000014636 ], [ -58.540756999835651, -34.700273999845194 ], [ -58.540177000068468, -34.70085399961232 ], [ -58.539984000161439, -34.700983000165309 ], [ -58.5398979997928, -34.701047000418669 ], [ -58.5384709996369, -34.702125999814996 ], [ -58.537173000033874, -34.703107000087925 ], [ -58.536636999597818, -34.703515000017205 ], [ -58.536075999807508, -34.703942999969456 ], [ -58.533911999838892, -34.705595999755531 ], [ -58.531852000169636, -34.707184000141467 ], [ -58.529619999763156, -34.708814999812375 ], [ -58.528546999744208, -34.709479999902044 ], [ -58.527903999769705, -34.710016000338101 ], [ -58.526981000372814, -34.710681000427769 ], [ -58.526058000076603, -34.711410999917689 ], [ -58.525092999642197, -34.712141000306872 ], [ -58.524384000221403, -34.711518000355397 ], [ -58.523698000062609, -34.710916999619769 ], [ -58.522989999788592, -34.710294999714449 ], [ -58.522345999768049, -34.709672999809072 ], [ -58.521831000300381, -34.709523000086335 ], [ -58.520737000212364, -34.709264999879792 ], [ -58.519685000262484, -34.708985999604181 ], [ -58.518612000243593, -34.708729000343055 ], [ -58.517540000270742, -34.708493000251735 ], [ -58.516467000251794, -34.708213999976067 ], [ -58.515394000232902, -34.707955999769524 ], [ -58.514278000029663, -34.707677000393232 ], [ -58.513205000010714, -34.707420000232787 ], [ -58.512154000106989, -34.707162000026244 ], [ -58.511381000432777, -34.706969000119216 ], [ -58.510586999790178, -34.706776000212187 ], [ -58.510265000229538, -34.707677000393232 ], [ -58.509985999953869, -34.708450000067387 ], [ -58.510010000161344, -34.70853200025158 ], [ -58.510029000138218, -34.708599999790124 ], [ -58.510350999698858, -34.709629999624724 ], [ -58.510501000320858, -34.710273999645324 ], [ -58.510779999697206, -34.71121800001066 ], [ -58.510990000388176, -34.712132999937978 ], [ -58.511081000088041, -34.712527000120929 ], [ -58.510978999880876, -34.713136000326131 ], [ -58.510972999604235, -34.713171000141472 ], [ -58.509876000277131, -34.71428100006807 ], [ -58.509150000072395, -34.715015999788534 ], [ -58.509063999703756, -34.714887000134922 ], [ -58.507316000033313, -34.712603000028366 ], [ -58.507174999826361, -34.71241999968322 ], [ -58.506466999552345, -34.711089000357049 ], [ -58.506382000129179, -34.710981999919341 ], [ -58.506188000176053, -34.710745999827964 ], [ -58.505523000086328, -34.710123999922587 ], [ -58.504986999650271, -34.709629999624724 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.498507000297764, -34.703642999624662 ], [ -58.497926999631261, -34.704008000268971 ], [ -58.497776999908581, -34.704071999623068 ], [ -58.497391000094524, -34.704136999922582 ], [ -58.497176000072329, -34.704157999991651 ], [ -58.496169000398993, -34.704220000152816 ], [ -58.496098999868934, -34.704214999922272 ], [ -58.495981999869343, -34.704182000199125 ], [ -58.495954000376798, -34.704112999715107 ], [ -58.495990000238294, -34.704042000038214 ], [ -58.496037999753867, -34.704005000130621 ], [ -58.496985000257496, -34.703702999693633 ], [ -58.497068999634564, -34.703515000017205 ], [ -58.496790000258272, -34.702721000273925 ], [ -58.496146000237673, -34.701969999815617 ], [ -58.495095000333947, -34.701153999957114 ], [ -58.49415099996861, -34.700638999590126 ], [ -58.494172000037736, -34.70061800042032 ], [ -58.49415099996861, -34.700510999982612 ], [ -58.494107999784319, -34.700488999867389 ], [ -58.49391499987729, -34.700510999982612 ], [ -58.493034999765371, -34.699801999662498 ], [ -58.492259999998964, -34.699007999919218 ], [ -58.492197999837799, -34.698943999665801 ], [ -58.491556999955549, -34.69779699983161 ], [ -58.49067399970528, -34.696218999906876 ], [ -58.490610000351182, -34.696090000253264 ], [ -58.49043799961396, -34.695982999815556 ], [ -58.490331000075571, -34.695960999700333 ], [ -58.490652999636211, -34.695704000439207 ], [ -58.491404000094462, -34.695102999703636 ], [ -58.492241000022091, -34.694458999683036 ], [ -58.491383000025394, -34.693344000425213 ], [ -58.490459999729183, -34.692077999599974 ], [ -58.489386999710234, -34.690490000113357 ], [ -58.488979999827109, -34.689760999770272 ], [ -58.488915000426914, -34.689653000185785 ], [ -58.488271000406314, -34.688601000235906 ], [ -58.488163999968606, -34.6884300004441 ], [ -58.487863999623869, -34.687807999639404 ], [ -58.487756000039326, -34.687442999894472 ], [ -58.487712999855034, -34.686670000220317 ], [ -58.488120999784257, -34.685704999785855 ], [ -58.488250000337189, -34.685511999878827 ], [ -58.488400000059926, -34.685317999925701 ], [ -58.48861500008212, -34.685103999949604 ], [ -58.488700000404663, -34.684997000411215 ], [ -58.488915000426914, -34.684824999673936 ], [ -58.490094999984194, -34.683944999562016 ], [ -58.490480999798251, -34.683666000185724 ], [ -58.490695999820502, -34.683473000278696 ], [ -58.491039000349531, -34.683343999725764 ], [ -58.491833000092868, -34.682721999820387 ], [ -58.492218999906868, -34.682443000444096 ], [ -58.492670000020439, -34.68209999991501 ], [ -58.493614000385776, -34.68139199964105 ], [ -58.49391499987729, -34.681176999618799 ], [ -58.494601000036084, -34.680662000151131 ], [ -58.494880000311753, -34.680382999875519 ], [ -58.495351999595073, -34.680083000430102 ], [ -58.495739000354547, -34.679804000154434 ], [ -58.496189000421964, -34.679460999625405 ], [ -58.497111999818912, -34.678731000135485 ], [ -58.497412000163649, -34.678495000044165 ], [ -58.498184999837804, -34.677957999562011 ], [ -58.498849999927529, -34.677422000025217 ], [ -58.499129000203141, -34.677229000118245 ], [ -58.500180000106866, -34.676371000121492 ], [ -58.501017000034494, -34.67577000028524 ], [ -58.501853999962066, -34.675105000195572 ], [ -58.502239999776123, -34.674782999735612 ], [ -58.502647999705403, -34.674482000244097 ], [ -58.501704000239386, -34.673988999992332 ], [ -58.500694999574534, -34.673452000409441 ], [ -58.500115999853449, -34.673152000064704 ], [ -58.499751000108517, -34.672959000157675 ], [ -58.499150000272266, -34.672636999697716 ], [ -58.498936000296112, -34.672508000044104 ], [ -58.498249000091221, -34.672057999976687 ], [ -58.497926999631261, -34.671799999770144 ], [ -58.497412000163649, -34.671435000025213 ], [ -58.495739000354547, -34.670040999592402 ], [ -58.493614000385776, -34.667958999807979 ], [ -58.491768999839451, -34.666006999723209 ], [ -58.491018000280462, -34.66525600016422 ], [ -58.490073999915126, -34.6643760000523 ], [ -58.488915000426914, -34.663367000286769 ], [ -58.48711300006488, -34.662787999666421 ], [ -58.485911000392321, -34.662422999921489 ], [ -58.485309999656693, -34.662037000107432 ], [ -58.485031000280401, -34.661865000269529 ], [ -58.484130000099412, -34.661285999649124 ], [ -58.483228999918367, -34.660706999928038 ], [ -58.482326999691225, -34.660127000160912 ], [ -58.481426000409556, -34.659548000439827 ], [ -58.480846999789151, -34.65916199972645 ], [ -58.480525000228511, -34.658967999773324 ], [ -58.480289000137191, -34.658818000050644 ], [ -58.479838000023619, -34.65851799970585 ], [ -58.479645000116648, -34.65836799998317 ], [ -58.479344999771854, -34.658196000145267 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.478186000283642, -34.657316000033347 ], [ -58.477950000192322, -34.657102000057193 ], [ -58.477499000078751, -34.656715000197039 ], [ -58.477005999826986, -34.656243000014399 ], [ -58.476554999713414, -34.655836000131274 ], [ -58.475524999878814, -34.654890999719839 ], [ -58.475204000364272, -34.654613000389588 ], [ -58.474710000066409, -34.654162000276074 ], [ -58.474088000161032, -34.653582999655669 ], [ -58.473680000231809, -34.653217999910737 ], [ -58.473251000233461, -34.65283200009668 ], [ -58.472564000028513, -34.652231000260429 ], [ -58.472048999661581, -34.65171599989344 ], [ -58.470825999919896, -34.650599999690201 ], [ -58.470075000360964, -34.649913000384629 ], [ -58.46986100038481, -34.649719999578281 ], [ -58.469667000431684, -34.649526999671252 ], [ -58.469280999718308, -34.649118999742029 ], [ -58.468766000250696, -34.648368000183041 ], [ -58.468422999721611, -34.647918000115567 ], [ -58.468186999630291, -34.647553000370635 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467050000257245, -34.645878999616116 ], [ -58.466020000422645, -34.645343000079322 ], [ -58.464861000035057, -34.644848999781459 ], [ -58.463809000085234, -34.644356000429013 ], [ -58.463166000110789, -34.644033999969054 ], [ -58.462843999650829, -34.64371200040847 ], [ -58.462693999928092, -34.643433000132802 ], [ -58.462650999743801, -34.643197000041482 ], [ -58.462543000159314, -34.643025000203579 ], [ -58.462393000436577, -34.642874999581522 ], [ -58.462203999814676, -34.642791000204454 ], [ -58.462006999723201, -34.642703999789717 ], [ -58.461749999562812, -34.642681999674494 ], [ -58.461449000071241, -34.642745999927911 ], [ -58.461277000233338, -34.642832000296551 ], [ -58.461041000142018, -34.642917999765814 ], [ -58.460740999797281, -34.642874999581522 ], [ -58.460376000052293, -34.642745999927911 ], [ -58.459453999802236, -34.642316999929562 ], [ -58.458724000312316, -34.641974000299854 ], [ -58.457993999923133, -34.641630999770769 ], [ -58.45767300040859, -34.641480000001934 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.456255999814516, -34.640793999843197 ], [ -58.456019999723196, -34.64064400012046 ], [ -58.455741000346848, -34.640493000351626 ], [ -58.455462000071179, -34.6403219996605 ], [ -58.455225999979859, -34.64017199993782 ], [ -58.454925999635122, -34.639977999984694 ], [ -58.454710999612928, -34.63976400000854 ], [ -58.454517999705899, -34.639571000101512 ], [ -58.454390000098385, -34.639399000263609 ], [ -58.454303999729746, -34.639312999894969 ], [ -58.454088999707551, -34.63911999998794 ], [ -58.453895999800523, -34.638927000080969 ], [ -58.453680999778271, -34.638712000058717 ], [ -58.453487999871243, -34.638583999551884 ], [ -58.452523000336157, -34.638046999969049 ], [ -58.451450000317209, -34.637446000132741 ], [ -58.450419999583289, -34.636867000411712 ], [ -58.449497000186341, -34.636265999676084 ], [ -58.448509999636713, -34.635580000416667 ], [ -58.447458999732987, -34.634956999565816 ], [ -58.447265999826016, -34.63478599977401 ], [ -58.446385999714096, -34.634098999569119 ], [ -58.445076999603828, -34.633132999987936 ], [ -58.444733999974062, -34.63287599982749 ], [ -58.443468000048142, -34.631953000430599 ], [ -58.442351999844902, -34.631137999718874 ], [ -58.442158999937874, -34.630987999996137 ], [ -58.441664999639954, -34.631630999970639 ], [ -58.441150000172343, -34.631373999810194 ], [ -58.440914000081023, -34.631245000156582 ], [ -58.440677999989646, -34.631115999603651 ], [ -58.440377999644909, -34.630944999811845 ], [ -58.440099000268617, -34.630795000089165 ], [ -58.439841000062074, -34.630666000435554 ], [ -58.439604999970754, -34.630536999882622 ], [ -58.439347999810309, -34.630387000159885 ], [ -58.438724999858835, -34.630107999884217 ], [ -58.438317999975652, -34.630022000414954 ], [ -58.436880000211772, -34.629828999608605 ], [ -58.435357000125407, -34.629593000416605 ], [ -58.434454999898264, -34.629463999863674 ], [ -58.433511000432304, -34.629335000210062 ], [ -58.432030999630911, -34.629099000118742 ], [ -58.430657000120391, -34.628906000211714 ], [ -58.429326999941054, -34.628735000419908 ], [ -58.427868000108106, -34.628499000328532 ], [ -58.426451999560072, -34.628326999591309 ], [ -58.425249999887569, -34.628154999753406 ], [ -58.423812000123689, -34.627940999777252 ], [ -58.422503000013421, -34.62774799987028 ], [ -58.42119499994925, -34.627532999848029 ], [ -58.419950000092399, -34.627404000194417 ], [ -58.418512000328519, -34.627233000402612 ], [ -58.417439000309571, -34.62710399984968 ], [ -58.415979999577303, -34.62693200001172 ], [ -58.414607000112937, -34.62678200028904 ], [ -58.413447999725349, -34.626652999736109 ], [ -58.411988999892401, -34.626481999944303 ], [ -58.410207999599436, -34.6263100001064 ], [ -58.409543000409087, -34.626244999806829 ], [ -58.408963999788739, -34.626180999553469 ], [ -58.408727999697362, -34.626160000383663 ], [ -58.408748999766487, -34.625537000432189 ], [ -58.406968000372899, -34.625343999625841 ], [ -58.406904000119482, -34.62590200017712 ], [ -58.406754000396745, -34.627211000287389 ], [ -58.406689000097231, -34.628091000399309 ], [ -58.406518000305425, -34.629292000025714 ], [ -58.406409999821619, -34.630279999722177 ], [ -58.406345999568202, -34.630859000342525 ], [ -58.406216999914591, -34.631845999992834 ], [ -58.406131000445271, -34.632596999551822 ], [ -58.406024000007562, -34.63366999957077 ], [ -58.404543000059391, -34.633155000103102 ], [ -58.403813999716249, -34.63287599982749 ], [ -58.403127000410677, -34.632596999551822 ], [ -58.401990000138369, -34.632146000337627 ], [ -58.400552000374489, -34.631587999786291 ], [ -58.399157999941679, -34.631115999603651 ], [ -58.397741000246924, -34.630623000251205 ], [ -58.39626100034485, -34.630343999975594 ], [ -58.394629999774622, -34.630043999630857 ], [ -58.391905000015697, -34.629550000232257 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.380081999784409, -34.6263100001064 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.379062999557732, -34.629125000418412 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.378603999974587, -34.629004000234374 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 304.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.43915499990328, -34.621695999570704 ], [ -58.438274999791361, -34.62156799996319 ], [ -58.438724999858835, -34.620173000383602 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.489130000449109, -34.636973999950101 ], [ -58.488185000037674, -34.636737999858781 ], [ -58.487283999856686, -34.636523999882627 ], [ -58.486875999927406, -34.637832999992895 ], [ -58.486683000020378, -34.638411999713981 ], [ -58.486490000113349, -34.639098999918872 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.486962000296046, -34.64088000021178 ], [ -58.487799000223617, -34.641287000094962 ], [ -58.488721999620566, -34.641716000093311 ], [ -58.489559000447457, -34.642102999953465 ], [ -58.490160000283765, -34.642403000298202 ], [ -58.490910999842754, -34.642768000043134 ], [ -58.491640000185839, -34.643110999672842 ], [ -58.492284000206382, -34.643412000063734 ], [ -58.493614000385776, -34.644055000038179 ], [ -58.494687000404724, -34.644527000220819 ], [ -58.495095000333947, -34.644721000174002 ], [ -58.495223999987559, -34.644848999781459 ], [ -58.496038999799964, -34.64562200035499 ], [ -58.496790000258272, -34.646329999729687 ], [ -58.497540999817261, -34.647016999934579 ], [ -58.498292000275569, -34.647703000093315 ], [ -58.499042999834558, -34.648390000298207 ], [ -58.499428999648558, -34.648755000043195 ], [ -58.499794000292866, -34.649097999672904 ], [ -58.500544999851797, -34.649784999877795 ], [ -58.501296000310106, -34.650471000036589 ], [ -58.502196999591831, -34.65130799996416 ], [ -58.50309799977282, -34.652209000145206 ], [ -58.504021000069031, -34.653089000257125 ], [ -58.504621999905339, -34.653646999909085 ], [ -58.505715999993356, -34.654440999652365 ], [ -58.506488999667567, -34.655020000272771 ], [ -58.507196999941527, -34.655556999855605 ], [ -58.507948000399836, -34.656093000291662 ], [ -58.508742000143172, -34.65669400012797 ], [ -58.509235000394938, -34.657036999757679 ], [ -58.509622000255092, -34.657294999964222 ], [ -58.510501000320858, -34.657873999685307 ], [ -58.511381000432777, -34.658475000420879 ], [ -58.512154000106989, -34.65892599963513 ], [ -58.512324999898794, -34.659010999957616 ], [ -58.513248000195006, -34.659568999609576 ], [ -58.513463000217257, -34.659698000162507 ], [ -58.514191999661023, -34.660106000091787 ], [ -58.514535000190051, -34.660298999998815 ], [ -58.514899999934983, -34.660512999974912 ], [ -58.515565000024708, -34.660899999835067 ], [ -58.516573999790239, -34.661458000386347 ], [ -58.516703000343171, -34.661521999740444 ], [ -58.517518000155519, -34.661993999923141 ], [ -58.518432000036739, -34.662476999713704 ], [ -58.518655000427884, -34.662594999759392 ], [ -58.518999000103747, -34.662724000312323 ], [ -58.519449000171164, -34.662895000104129 ], [ -58.519985999754056, -34.663088000011157 ], [ -58.520544000305335, -34.663303000033409 ], [ -58.521058999773004, -34.66349599994038 ], [ -58.521402000302032, -34.663624999593992 ], [ -58.521638000393352, -34.663688999847409 ], [ -58.522152999861021, -34.663881999754437 ], [ -58.523160999580398, -34.664247000398689 ], [ -58.523461999971289, -34.664353999937077 ], [ -58.524148000130083, -34.664590000028454 ], [ -58.524705999782043, -34.664826000119774 ], [ -58.524898999689071, -34.664891000419289 ], [ -58.526123000376117, -34.665405999886957 ], [ -58.525414000056003, -34.666048999861403 ], [ -58.524684999712917, -34.666714999997225 ], [ -58.523955000223054, -34.667380000086894 ], [ -58.523461999971289, -34.667809000085242 ], [ -58.522967999673426, -34.668238000083591 ], [ -58.522517999605952, -34.66864600001287 ], [ -58.521810000231312, -34.669267999918191 ], [ -58.521338000048615, -34.669696999916596 ], [ -58.520843999750753, -34.670125999914944 ], [ -58.520371999568113, -34.670533999844167 ], [ -58.519878000169513, -34.670962999842516 ], [ -58.520028999938347, -34.671071000326378 ], [ -58.520908000004169, -34.671756999585796 ], [ -58.521981000023118, -34.672508000044104 ], [ -58.522946999604301, -34.673216000318121 ], [ -58.523526000224706, -34.673667000431692 ], [ -58.524062999807541, -34.674075000360915 ], [ -58.524599000243597, -34.674461000174972 ], [ -58.525135999826489, -34.67489000017332 ], [ -58.525672000262546, -34.6752980001026 ], [ -58.526164999614991, -34.6756839999166 ], [ -58.526615999728563, -34.6752980001026 ], [ -58.527153000210774, -34.674825999919904 ], [ -58.527603000278191, -34.674439000059749 ], [ -58.528096999676734, -34.673988999992332 ], [ -58.528546999744208, -34.673581000063052 ], [ -58.529018999926848, -34.673152000064704 ], [ -58.530027999692379, -34.673945999807984 ], [ -58.531100999711327, -34.674739999551321 ], [ -58.532109000330081, -34.67553400019392 ], [ -58.532838999819944, -34.676027000445686 ], [ -58.533675999747572, -34.676607000212869 ], [ -58.534512999675144, -34.677185999933897 ], [ -58.535328000386869, -34.677786999770206 ], [ -58.536143000199274, -34.678366000390554 ], [ -58.537065999596166, -34.679010000411154 ], [ -58.537988999892377, -34.679632000316531 ], [ -58.53863199986688, -34.680083000430102 ], [ -58.53910400004952, -34.679654000431754 ], [ -58.539770000185342, -34.680125999715074 ], [ -58.540413000159788, -34.680597999897714 ], [ -58.541100000364679, -34.681091000149479 ], [ -58.542516000013336, -34.682120999984136 ], [ -58.542665999736073, -34.68233600000633 ], [ -58.542022999761571, -34.682829000258096 ], [ -58.542665999736073, -34.683409000025279 ], [ -58.543266999572324, -34.683966999677239 ], [ -58.543996999961564, -34.684609999651741 ], [ -58.544768999589621, -34.685340000040924 ], [ -58.545542000163152, -34.686048000314941 ], [ -58.546292999722141, -34.686713000404609 ], [ -58.547108000433809, -34.687442999894472 ], [ -58.547924000292312, -34.688172000237557 ], [ -58.548567000266814, -34.68875200000474 ], [ -58.549274999641455, -34.689394999979243 ], [ -58.550347999660403, -34.688601000235906 ], [ -58.551463999863643, -34.687765000354432 ], [ -58.552536999882591, -34.686948999596609 ], [ -58.552623000251231, -34.687034999965249 ], [ -58.553030000134356, -34.687399999710181 ], [ -58.553524000432219, -34.687849999777598 ], [ -58.554103000153304, -34.688365000144586 ], [ -58.555176000172253, -34.6893099996567 ], [ -58.555712999755087, -34.688922999796546 ], [ -58.555841000261921, -34.688965999980894 ], [ -58.555926999731184, -34.689031000280409 ], [ -58.556013000099824, -34.689094999634506 ], [ -58.555476999663767, -34.689502999563729 ], [ -58.554896999896584, -34.689931999562077 ], [ -58.554382000428916, -34.690340000390677 ], [ -58.555132999987904, -34.691025999650094 ], [ -58.555863000377144, -34.691669999670694 ], [ -58.556635000005201, -34.692377999944711 ], [ -58.557343000279218, -34.693043000034379 ], [ -58.557987000299761, -34.693643999870631 ], [ -58.558737999858749, -34.694308999960356 ], [ -58.559531999602086, -34.695039000349539 ], [ -58.560261999991269, -34.695683000370138 ], [ -58.560948000150063, -34.696305000275515 ], [ -58.561635000354954, -34.696927000180892 ], [ -58.562170999891691, -34.697420999579435 ], [ -58.562729000442971, -34.697935999946424 ], [ -58.563287000094931, -34.698429000198132 ], [ -58.564382000229102, -34.697592000270561 ], [ -58.565476000317119, -34.696755000342932 ], [ -58.566141000406787, -34.697356000179241 ], [ -58.566848999781485, -34.698000000199784 ], [ -58.567557000055444, -34.698622000105161 ], [ -58.567128000057096, -34.698943999665801 ], [ -58.567685999709056, -34.699481000148012 ], [ -58.568244000260336, -34.699974000399777 ], [ -58.568801999912353, -34.700488999867389 ], [ -58.569402999748604, -34.701025000303503 ], [ -58.569939000184661, -34.70149799963292 ], [ -58.570561000090038, -34.702055000138103 ], [ -58.571140999857221, -34.702569999605771 ], [ -58.571719999578249, -34.703107000087925 ], [ -58.572278000129586, -34.703621999555594 ], [ -58.572835999781546, -34.704114999807359 ], [ -58.574274000444746, -34.705402999848502 ], [ -58.573415000401894, -34.706024999753879 ], [ -58.572620999759295, -34.706625999590187 ], [ -58.572191999760946, -34.70694800005009 ], [ -58.571526999671278, -34.707441000301856 ], [ -58.570840000365706, -34.707955999769524 ], [ -58.570260999745301, -34.708384999767873 ], [ -58.570175000275981, -34.708471000136512 ], [ -58.571420000132832, -34.709587000339752 ], [ -58.572663999943586, -34.710702999643672 ], [ -58.573608000308923, -34.711560999640369 ], [ -58.574617000074454, -34.712461999821414 ], [ -58.575603999724763, -34.713341999933334 ], [ -58.576591000274391, -34.714265000229545 ], [ -58.577749999762659, -34.715295000064145 ], [ -58.577126999811128, -34.715745000131619 ], [ -58.576075999907403, -34.716538999874899 ], [ -58.575346000417539, -34.71707600035711 ], [ -58.574681000327871, -34.717568999709499 ], [ -58.574059000422494, -34.718063000007419 ], [ -58.573264999779894, -34.718641999728447 ], [ -58.572642999874517, -34.719113999911144 ], [ -58.572042000038209, -34.719565000024716 ], [ -58.571977999784849, -34.719608000209007 ], [ -58.571311999649026, -34.720100999561453 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 303.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.39167, -34.706751 ], [ -58.39181, -34.706745 ], [ -58.391909, -34.706741 ], [ -58.393095, -34.706726 ], [ -58.394364, -34.706675 ], [ -58.395688, -34.706643 ], [ -58.396994, -34.706657 ], [ -58.398977, -34.706728 ], [ -58.398948, -34.70745 ], [ -58.398963, -34.707567 ], [ -58.400053, -34.707212 ], [ -58.400349, -34.707122 ], [ -58.401157, -34.706873 ], [ -58.402049, -34.70661 ], [ -58.403778, -34.706102 ], [ -58.404736, -34.705788 ], [ -58.405435, -34.705686 ], [ -58.40613, -34.705594 ], [ -58.406808, -34.705499 ], [ -58.408197, -34.705319 ], [ -58.408605, -34.705262 ], [ -58.409539, -34.705136 ], [ -58.410663, -34.704975 ], [ -58.410827, -34.704967 ], [ -58.411786, -34.70484 ], [ -58.412912, -34.70468 ], [ -58.412666, -34.7035 ], [ -58.414492, -34.703219 ], [ -58.414813, -34.703561 ], [ -58.415582, -34.704388 ], [ -58.416307, -34.705142 ], [ -58.416487, -34.705352 ], [ -58.417186999999899, -34.706222 ], [ -58.417852, -34.707036 ], [ -58.418041, -34.707261 ], [ -58.418364, -34.707638 ], [ -58.418968, -34.708377 ], [ -58.419611, -34.709063 ], [ -58.419667, -34.70912 ], [ -58.420812, -34.709691 ], [ -58.422025, -34.710298 ], [ -58.423228, -34.71093 ], [ -58.424451, -34.711573 ], [ -58.425615, -34.712189 ], [ -58.426034, -34.711673 ], [ -58.426361, -34.711212 ], [ -58.427173, -34.710208 ], [ -58.42756, -34.709746 ], [ -58.427885, -34.709235 ], [ -58.428257, -34.708743 ], [ -58.428652, -34.708227 ], [ -58.429416, -34.707215 ], [ -58.430172, -34.706245 ], [ -58.430932, -34.705273 ], [ -58.431705, -34.704274 ], [ -58.432892, -34.7049 ], [ -58.434136, -34.705563 ], [ -58.435325, -34.706196 ], [ -58.4365, -34.706825 ], [ -58.437094, -34.707122 ], [ -58.43823, -34.707707 ], [ -58.439451, -34.70835 ], [ -58.440534, -34.708928 ], [ -58.441608, -34.709504 ], [ -58.442621, -34.710044 ], [ -58.443712, -34.710633 ], [ -58.444346, -34.710926 ], [ -58.444472, -34.710984 ], [ -58.446025, -34.711777 ], [ -58.446316, -34.711903 ], [ -58.447378, -34.712527 ], [ -58.448319, -34.713079 ], [ -58.448461, -34.713145 ], [ -58.449387, -34.713647 ], [ -58.450483, -34.714243 ], [ -58.450972, -34.714548 ], [ -58.451123, -34.714638 ], [ -58.451603, -34.7143 ], [ -58.452218, -34.713514 ], [ -58.452252, -34.713467 ], [ -58.452291, -34.713424 ], [ -58.452749, -34.712883 ], [ -58.453133, -34.712405 ], [ -58.45428, -34.710983 ], [ -58.45468, -34.710451 ], [ -58.455708, -34.709174 ], [ -58.456169, -34.708729 ], [ -58.456513, -34.708458 ], [ -58.456665, -34.708349 ], [ -58.457644, -34.707574 ], [ -58.458056, -34.70725 ], [ -58.458172, -34.707155 ], [ -58.458232, -34.707028 ], [ -58.458251, -34.706948 ], [ -58.458268, -34.70687 ], [ -58.458264, -34.706809 ], [ -58.458261, -34.706698 ], [ -58.458261, -34.706588 ], [ -58.458288, -34.70649 ], [ -58.458326, -34.70643 ], [ -58.45839, -34.706356 ], [ -58.45841, -34.706335 ], [ -58.458485, -34.706271 ], [ -58.458529, -34.706239 ], [ -58.45864, -34.706177 ], [ -58.458824, -34.706121 ], [ -58.458985, -34.706059 ], [ -58.459041, -34.70603 ], [ -58.459086, -34.706004 ], [ -58.459174, -34.705942 ], [ -58.459307, -34.705833 ], [ -58.459455, -34.705696 ], [ -58.45963, -34.705519 ], [ -58.459751, -34.705397 ], [ -58.459868, -34.70529 ], [ -58.460219, -34.705075 ], [ -58.460464, -34.705409 ], [ -58.460914, -34.705928 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 301.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.406538000328396, -34.609100999711302 ], [ -58.406173999730242, -34.609187000079942 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.410229999714659, -34.611547000093935 ], [ -58.410057999876756, -34.612684000366301 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.409693000131824, -34.61523800033342 ], [ -58.409457000040504, -34.61658999972866 ], [ -58.409392999787087, -34.617511999978774 ], [ -58.409328000386893, -34.618692000435431 ], [ -58.409264000133476, -34.620022999761602 ], [ -58.409199999880059, -34.62124600040255 ], [ -58.409114000410739, -34.622382999775596 ], [ -58.40900699997303, -34.623498999978835 ], [ -58.408878000319419, -34.624615000182075 ], [ -58.408748999766487, -34.625537000432189 ], [ -58.408727999697362, -34.626160000383663 ], [ -58.408663000297167, -34.626395999575664 ], [ -58.408576999928584, -34.627361000010126 ], [ -58.40844900032107, -34.628326999591309 ], [ -58.408340999837208, -34.629485999978897 ], [ -58.408297999652916, -34.630279999722177 ], [ -58.40821300022975, -34.630816000158234 ], [ -58.40804100039179, -34.632038999899862 ], [ -58.40797700013843, -34.633089999803587 ], [ -58.407868999654568, -34.634249000191176 ], [ -58.407805000300471, -34.63510800023397 ], [ -58.407675999747539, -34.636330999975598 ], [ -58.409134999580544, -34.636652000389461 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.408620000112876, -34.639378000194483 ], [ -58.408663000297167, -34.639720999824249 ], [ -58.40877099988171, -34.639934999800346 ], [ -58.408920999604391, -34.640450000167334 ], [ -58.409134999580544, -34.641651999839894 ], [ -58.409307000317767, -34.642703999789717 ], [ -58.411453000355664, -34.643004000134454 ], [ -58.413040999842224, -34.642575000136105 ], [ -58.413148000279932, -34.642789000112202 ], [ -58.41462900022816, -34.642466999652243 ], [ -58.415658000016663, -34.642230999560923 ], [ -58.416109000130234, -34.642124000022534 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416254999668467, -34.648055000138129 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416538000128583, -34.654869999650714 ], [ -58.416603000428097, -34.656564999575039 ], [ -58.416603000428097, -34.656737000312262 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416536000036331, -34.658500999821229 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416768999989301, -34.660322000160136 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417546999894114, -34.662551999575101 ], [ -58.418298000352365, -34.662551999575101 ], [ -58.418684000166422, -34.662572999644169 ], [ -58.420014000345816, -34.662572999644169 ], [ -58.421837999923696, -34.662594999759392 ], [ -58.422375000405907, -34.662080000291724 ], [ -58.423834000238855, -34.66293800028842 ], [ -58.424773000373648, -34.663680000331681 ], [ -58.425871999792889, -34.664546999844106 ], [ -58.426574999836305, -34.665346999864084 ], [ -58.428512000128649, -34.667551999924797 ], [ -58.430592999867031, -34.670019000376499 ], [ -58.431108000233962, -34.670641000281876 ], [ -58.431429999794602, -34.67102800014203 ], [ -58.432202000322036, -34.671971999608047 ], [ -58.431280000071922, -34.673280999718315 ], [ -58.430636000051322, -34.674181999899361 ], [ -58.429992000030722, -34.675105000195572 ], [ -58.428897999942706, -34.674567999713361 ], [ -58.427845999992883, -34.674032000176624 ], [ -58.426687999651449, -34.673473999625344 ], [ -58.426043999630849, -34.674374999806332 ], [ -58.4253790004405, -34.6752980001026 ], [ -58.424263000237204, -34.674760999620389 ], [ -58.424027000145884, -34.675105000195572 ], [ -58.423855000307981, -34.67536200035596 ], [ -58.422954000126936, -34.676585000097646 ], [ -58.422481999944296, -34.677250000187314 ], [ -58.422417999690879, -34.677314999587509 ], [ -58.423662000400952, -34.677614999932246 ], [ -58.423339999940993, -34.678172999584206 ], [ -58.422589000382004, -34.679203000318182 ], [ -58.421837999923696, -34.680254000221908 ], [ -58.421066000295639, -34.68130600017173 ], [ -58.420830000204319, -34.681648999801439 ], [ -58.420658000366359, -34.681884999892759 ], [ -58.420335999906456, -34.68233600000633 ], [ -58.419606999563314, -34.683386999910056 ], [ -58.418856000004382, -34.684438999859935 ], [ -58.418233000052851, -34.685317999925701 ], [ -58.418125999615143, -34.685489999763661 ], [ -58.417590000078405, -34.686434000128941 ], [ -58.417161000080057, -34.687529000263112 ], [ -58.416946000057806, -34.68804399973078 ], [ -58.415487000224857, -34.687979000330586 ], [ -58.416430999690817, -34.688901999727477 ], [ -58.416796000335125, -34.688601000235906 ], [ -58.416946000057806, -34.68804399973078 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 300.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.505373000363647, -34.706668999774479 ], [ -58.505007999719396, -34.70694800005009 ], [ -58.504965000434368, -34.707290999679856 ], [ -58.504750999558951, -34.707892000415427 ], [ -58.504750999558951, -34.708556999605776 ], [ -58.504828000411862, -34.709018000180492 ], [ -58.504836999927591, -34.709071999972764 ], [ -58.504836999927591, -34.709264999879792 ], [ -58.504750999558951, -34.709330000179307 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.498507000297764, -34.703642999624662 ], [ -58.497926999631261, -34.704008000268971 ], [ -58.497776999908581, -34.704071999623068 ], [ -58.497391000094524, -34.704136999922582 ], [ -58.497176000072329, -34.704157999991651 ], [ -58.496099999915032, -34.704224000337319 ], [ -58.495976999638799, -34.704180000106874 ], [ -58.495955000422896, -34.70411199966901 ], [ -58.495998999754022, -34.704015999738544 ], [ -58.496189000421964, -34.703965000084622 ], [ -58.496983000165301, -34.703707999924234 ], [ -58.497068999634564, -34.703515000017205 ], [ -58.496790000258272, -34.702721000273925 ], [ -58.496146000237673, -34.701969999815617 ], [ -58.495095000333947, -34.701153999957114 ], [ -58.49415099996861, -34.700638999590126 ], [ -58.494172000037736, -34.70061800042032 ], [ -58.49415099996861, -34.700510999982612 ], [ -58.494107999784319, -34.700488999867389 ], [ -58.49391499987729, -34.700510999982612 ], [ -58.493034999765371, -34.699801999662498 ], [ -58.492191000414323, -34.698932000011723 ], [ -58.490610000351182, -34.696090000253264 ], [ -58.49043799961396, -34.695982999815556 ], [ -58.490331000075571, -34.695960999700333 ], [ -58.489665999985846, -34.696562000435904 ], [ -58.489450999963651, -34.696840999812252 ], [ -58.489280000171846, -34.696991000434252 ], [ -58.488657000220371, -34.697463999763727 ], [ -58.488120999784257, -34.697913999831201 ], [ -58.487669999670686, -34.698085999669104 ], [ -58.487606000316646, -34.698106999738229 ], [ -58.486661999951309, -34.698750999758772 ], [ -58.485825000023681, -34.698043000384132 ], [ -58.485095999680595, -34.697378000294407 ], [ -58.484344000075509, -34.696712000158641 ], [ -58.483592999617201, -34.696025999999847 ], [ -58.483315000287007, -34.695789999908527 ], [ -58.482649000151184, -34.697185000387435 ], [ -58.482369999875573, -34.697785000177589 ], [ -58.482305999622156, -34.697849999577784 ], [ -58.481704999785848, -34.698342999829549 ], [ -58.480803999604859, -34.69911600040308 ], [ -58.479172999933951, -34.697634999555532 ], [ -58.478551000028574, -34.697033999719281 ], [ -58.476663000197277, -34.695210000141344 ], [ -58.476383999921609, -34.69493199991183 ], [ -58.476255000267997, -34.694803000258219 ], [ -58.475804000154426, -34.694588000235967 ], [ -58.478401000305894, -34.692636000151253 ], [ -58.479280000371659, -34.691948999946362 ], [ -58.479537999678882, -34.691733999924111 ], [ -58.479752999701134, -34.691519999948014 ], [ -58.480159999584259, -34.691261999741471 ], [ -58.481039999696179, -34.690639999836094 ], [ -58.480332000321539, -34.690146000437551 ], [ -58.479537999678882, -34.689438000163534 ], [ -58.478787000119894, -34.68875200000474 ], [ -58.478014000445739, -34.688064999799849 ], [ -58.477262999987431, -34.687377999594958 ], [ -58.476491000359317, -34.686670000220317 ], [ -58.477670999916654, -34.685769000039272 ], [ -58.478872999589214, -34.684888999927352 ], [ -58.478099999915003, -34.684202999768559 ], [ -58.477349000356014, -34.683515999563667 ], [ -58.476576999828637, -34.682829000258096 ], [ -58.477799999570266, -34.681907000007982 ], [ -58.479301999587562, -34.680768999689519 ], [ -58.478486999775157, -34.680040000245754 ], [ -58.477972000307545, -34.679611000247405 ], [ -58.477391999641043, -34.679095999880474 ], [ -58.476747999620443, -34.678538000228457 ], [ -58.476083000430094, -34.677957999562011 ], [ -58.475288999787495, -34.677250000187314 ], [ -58.475760999970134, -34.67688599958916 ], [ -58.476470000290249, -34.6763279999372 ], [ -58.477649999847586, -34.675425999710058 ], [ -58.476684000266346, -34.674589999828584 ], [ -58.475696999716718, -34.673667000431692 ], [ -58.474560000343672, -34.672551000228452 ], [ -58.473808999885421, -34.671886000138727 ], [ -58.473079000395501, -34.671177999864767 ], [ -58.472327999937193, -34.670490999659876 ], [ -58.471577000378204, -34.669805000400402 ], [ -58.470440000105896, -34.670683999566904 ], [ -58.469238000433336, -34.67158599979399 ], [ -58.468552000274542, -34.672165000414395 ], [ -58.468359000367514, -34.672143000299172 ], [ -58.467156999795691, -34.671929000323075 ], [ -58.465868999754491, -34.671693000231755 ], [ -58.464432000036709, -34.670384000121487 ], [ -58.464345999668126, -34.670254999568556 ], [ -58.464217000014514, -34.669846999639276 ], [ -58.464239000129737, -34.669632999663179 ], [ -58.464173999830166, -34.66935400028683 ], [ -58.464046000222709, -34.669224999733899 ], [ -58.463852000269583, -34.669161000379802 ], [ -58.46353099985572, -34.66920399966483 ], [ -58.463016000388052, -34.66967599984747 ], [ -58.462264999929744, -34.670533999844167 ], [ -58.461845000346443, -34.67086699991205 ], [ -58.459969000169167, -34.672358000321424 ], [ -58.459520000147847, -34.672596999651773 ], [ -58.459110000126373, -34.672657999766841 ], [ -58.458917000219344, -34.672636999697716 ], [ -58.458488000220996, -34.672508000044104 ], [ -58.458337999598939, -34.672400999606396 ], [ -58.458222999691657, -34.672290999929658 ], [ -58.45668699990506, -34.670813000119836 ], [ -58.456106000091779, -34.670254999568556 ], [ -58.454412000213608, -34.668721999920308 ], [ -58.454067999638426, -34.668409999921494 ], [ -58.453574000239882, -34.668130999645882 ], [ -58.452779999597283, -34.667809000085242 ], [ -58.452458000036643, -34.667572999993922 ], [ -58.452330000429129, -34.667444000340311 ], [ -58.452265000129614, -34.667314999787379 ], [ -58.451858000246489, -34.666027999792334 ], [ -58.451778000154547, -34.665884000346296 ], [ -58.451749999762626, -34.665834999885305 ], [ -58.451686000408529, -34.665728000346917 ], [ -58.45157899997082, -34.665619999863054 ], [ -58.4513429998795, -34.665449000071249 ], [ -58.451063999603832, -34.665320000417637 ], [ -58.450011999654009, -34.66493399970426 ], [ -58.449948000299912, -34.664891000419289 ], [ -58.449090000303215, -34.66422600032962 ], [ -58.448832000096672, -34.664096999776689 ], [ -58.448552999821061, -34.66390399986966 ], [ -58.447802000262072, -34.663375999802497 ], [ -58.447759000077724, -34.6633460002177 ], [ -58.447501999917336, -34.663238999779992 ], [ -58.446449999967456, -34.662379999737141 ], [ -58.445548999786467, -34.661693999578347 ], [ -58.444583000205228, -34.660899999835067 ], [ -58.443574999586531, -34.660127000160912 ], [ -58.442824000027542, -34.659526000324604 ], [ -58.441622000354982, -34.658538999774976 ], [ -58.441343000079371, -34.658324999798879 ], [ -58.441085999918926, -34.657831000400279 ], [ -58.441061999711451, -34.657812000423462 ], [ -58.439969999715686, -34.65693000021929 ], [ -58.439498000432309, -34.656265000129622 ], [ -58.439219000156697, -34.656029000038302 ], [ -58.438446999629264, -34.655471000386342 ], [ -58.437673999955109, -34.654869999650714 ], [ -58.437228000072082, -34.654584999997724 ], [ -58.436128999753521, -34.654204999561045 ], [ -58.435185000287504, -34.653454000002057 ], [ -58.434520000197836, -34.652938999635069 ], [ -58.433768999739527, -34.652337999798817 ], [ -58.43306100036483, -34.65180200026208 ], [ -58.432181000252911, -34.651028999688549 ], [ -58.431323000256214, -34.650300000244783 ], [ -58.430613999936099, -34.649719999578281 ], [ -58.430443000144294, -34.649548999786475 ], [ -58.430250000237265, -34.649354999833349 ], [ -58.429863000377111, -34.649075999557681 ], [ -58.429498999778957, -34.648755000043195 ], [ -58.429155000103151, -34.648453999652304 ], [ -58.428854999758414, -34.648175000276012 ], [ -58.428403999644843, -34.647809999631761 ], [ -58.428167999553523, -34.647510000186344 ], [ -58.427609999901506, -34.647038000003647 ], [ -58.427246000202729, -34.64665200018959 ], [ -58.426838000273449, -34.64626600037559 ], [ -58.426451999560072, -34.645878999616116 ], [ -58.426279999722169, -34.645751000008602 ], [ -58.426043999630849, -34.645643000424059 ], [ -58.425744000185432, -34.645364000148447 ], [ -58.425442999794541, -34.645020999619419 ], [ -58.425421999725472, -34.644848999781459 ], [ -58.425314000140929, -34.644655999874431 ], [ -58.424627999982192, -34.644141000406819 ], [ -58.423855000307981, -34.643497000386219 ], [ -58.423598000147535, -34.643455000248025 ], [ -58.422824999574004, -34.642789000112202 ], [ -58.422160000383656, -34.642295999860437 ], [ -58.421794999739404, -34.641995000368922 ], [ -58.420571999997776, -34.641029999934517 ], [ -58.420014000345816, -34.640600999936169 ], [ -58.419842999654691, -34.640450000167334 ], [ -58.419328000187022, -34.640021000168986 ], [ -58.418554999613491, -34.639312999894969 ], [ -58.417675000400891, -34.638647999805301 ], [ -58.417310999802737, -34.638305000175592 ], [ -58.416194999599497, -34.637511000432255 ], [ -58.415658000016663, -34.637124999718935 ], [ -58.414563999928589, -34.636480999698335 ], [ -58.413813000369657, -34.636029999584764 ], [ -58.412417999890749, -34.635192999657193 ], [ -58.410981000172967, -34.63422800012205 ], [ -58.409543000409087, -34.633155000103102 ], [ -58.40804100039179, -34.632038999899862 ], [ -58.406560000443619, -34.630472999629205 ], [ -58.406409999821619, -34.630279999722177 ], [ -58.405529999709699, -34.629184999588006 ], [ -58.405143999895643, -34.629142000303034 ], [ -58.403535000339957, -34.628970999611909 ], [ -58.402375999952369, -34.628841999958297 ], [ -58.401110000026449, -34.62869200023556 ], [ -58.399909000399987, -34.628540999567406 ], [ -58.398600000289719, -34.628390999844726 ], [ -58.396840000065936, -34.628069000284086 ], [ -58.396539999721142, -34.629184999588006 ], [ -58.39626100034485, -34.630343999975594 ], [ -58.391905000015697, -34.629550000232257 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.378, -34.625645000016675 ], [ -58.376756000189232, -34.625108000433841 ], [ -58.375490000263255, -34.624549999882561 ], [ -58.374009000315084, -34.624422000275047 ], [ -58.37267900013569, -34.624292999722115 ], [ -58.371198000187519, -34.624228000321921 ], [ -58.369739000354514, -34.624142999999435 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368602000082205, -34.620173000383602 ], [ -58.369008999965331, -34.619206999903099 ], [ -58.369310000356165, -34.618392000090694 ], [ -58.369566999617291, -34.617770000185317 ], [ -58.369416999894611, -34.617447999725357 ], [ -58.369439000009777, -34.617039999796134 ], [ -58.369267000171874, -34.617018999727009 ], [ -58.368966999827137, -34.616996999611786 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.367421999625549, -34.61682599981998 ], [ -58.36658499969792, -34.616782999635689 ], [ -58.366456000044309, -34.618069999630734 ], [ -58.365919999608252, -34.618027000345762 ], [ -58.36587700032328, -34.617940999977122 ], [ -58.365768999839418, -34.617855999654637 ], [ -58.36587700032328, -34.616718000235494 ], [ -58.365983999861669, -34.615580999963129 ], [ -58.366327000390697, -34.612555999859467 ], [ -58.366306000321629, -34.612212000183604 ], [ -58.366456000044309, -34.612191000114535 ], [ -58.366499000228657, -34.612104999745895 ], [ -58.3671430002492, -34.612147999930187 ], [ -58.367958000061606, -34.612255000367952 ], [ -58.369180999803234, -34.612297999652924 ], [ -58.369373999710263, -34.612297999652924 ], [ -58.369439000009777, -34.611139000164655 ], [ -58.369482000194125, -34.609916000423027 ], [ -58.369503000263194, -34.60952999970965 ], [ -58.369416999894611, -34.609314999687456 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367980000176829, -34.607749000316062 ], [ -58.368129999899509, -34.607556000409033 ], [ -58.368390000198303, -34.607404999740879 ], [ -58.368623000151274, -34.607320000317713 ], [ -58.369267000171874, -34.607190999764782 ], [ -58.369760999570417, -34.606997999857754 ], [ -58.369889000077251, -34.606891000319365 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370615000281987, -34.600751999605052 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.370436000121288, -34.585649000101228 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.369052000149622, -34.583995000268999 ], [ -58.370210999637891, -34.58333000017933 ], [ -58.373429999694679, -34.581527999817297 ], [ -58.373922999946444, -34.581249000440948 ], [ -58.374309999806599, -34.581013000349628 ], [ -58.375039000149684, -34.580562000236057 ], [ -58.376068999984341, -34.580003999684777 ], [ -58.376327000190884, -34.57994000033068 ], [ -58.379686999555361, -34.580149000076233 ], [ -58.379781000292894, -34.580154000306834 ], [ -58.379996000315145, -34.580090000053417 ], [ -58.380232000406465, -34.579961000399805 ], [ -58.381780999893181, -34.579065000449361 ], [ -58.382677999889722, -34.578544999851829 ], [ -58.383042999634711, -34.578373000013869 ], [ -58.383429000348031, -34.578245000406412 ], [ -58.384115999653602, -34.578180000106897 ], [ -58.384608999905367, -34.578180000106897 ], [ -58.385252999925967, -34.578265999576161 ], [ -58.386105999692063, -34.578553000220722 ], [ -58.386122000429907, -34.578696999666761 ], [ -58.384970000365172, -34.579452000309516 ], [ -58.384656000274163, -34.579558999847904 ], [ -58.384425000413387, -34.579471000286389 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 299.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370210999637891, -34.58333000017933 ], [ -58.369052000149622, -34.583995000268999 ], [ -58.368730999735817, -34.584167000106902 ], [ -58.366627999882269, -34.585389999848587 ], [ -58.367206999603297, -34.586098000122547 ], [ -58.367421999625549, -34.58635600032909 ], [ -58.367936999992537, -34.586978000234467 ], [ -58.368107999784343, -34.587235000394912 ], [ -58.369180999803234, -34.588543999605861 ], [ -58.369246000102805, -34.588629999974501 ], [ -58.370232999753114, -34.589831999647004 ], [ -58.370340000190822, -34.589939000084769 ], [ -58.370489999913502, -34.589961000199935 ], [ -58.370661999751462, -34.589961000199935 ], [ -58.370799999820122, -34.589856999900576 ], [ -58.370833000442587, -34.589831999647004 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371326999841131, -34.589037999903724 ], [ -58.371541999863382, -34.588523000436055 ], [ -58.371691999586062, -34.588480000251764 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.372189000022274, -34.588737000412209 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.371239000279616, -34.607853999762256 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.374931999711976, -34.608629000427982 ], [ -58.376391000444301, -34.60873599996637 ], [ -58.377786000023832, -34.60882200033501 ], [ -58.379179999557266, -34.608885999689107 ], [ -58.380681999574563, -34.608994000172913 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.381090000403162, -34.60961600007829 ], [ -58.381047000218871, -34.610795999635627 ], [ -58.380960999850231, -34.611804000254381 ], [ -58.380918999712037, -34.613028000042107 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380790000058425, -34.61523800033342 ], [ -58.380746999874077, -34.616395999775534 ], [ -58.380681999574563, -34.617577000278288 ], [ -58.380640000335688, -34.618456000344111 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.380679000335533, -34.621287999641424 ], [ -58.380787999966174, -34.6218820000542 ], [ -58.380767999943203, -34.622104000399247 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.381411999963802, -34.622768999589596 ], [ -58.381390999894677, -34.622941000326875 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.381390999894677, -34.628991999680977 ], [ -58.381347999710385, -34.630151000068565 ], [ -58.381347999710385, -34.630708999720525 ], [ -58.381927000330734, -34.630772999973942 ], [ -58.382677999889722, -34.630859000342525 ], [ -58.384115999653602, -34.630987999996137 ], [ -58.385532000201636, -34.631095000433902 ], [ -58.386733999874139, -34.631201999972291 ], [ -58.387805999846989, -34.631309999556777 ], [ -58.389029999634715, -34.631416999994485 ], [ -58.390660000158846, -34.631545999648097 ], [ -58.391368000432806, -34.631696000270153 ], [ -58.391174999626514, -34.632853999712268 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.40244100025194, -34.635171999588067 ], [ -58.404049999807626, -34.635515000117095 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.403535000339957, -34.637960999600409 ], [ -58.403320000317706, -34.638862999827552 ], [ -58.403256000064289, -34.63920600035658 ], [ -58.402976999788677, -34.64040800002914 ], [ -58.402718999582135, -34.641587999586477 ], [ -58.404671999713003, -34.642080999838242 ], [ -58.406067000191854, -34.642273999745271 ], [ -58.407397000371247, -34.642445999583174 ], [ -58.407289999933482, -34.643068000387871 ], [ -58.407161000279871, -34.643733999624317 ], [ -58.406989999588745, -34.644570000405167 ], [ -58.406754000396745, -34.645728999893379 ], [ -58.408104999745888, -34.64594399991563 ], [ -58.40947900015567, -34.64618000000695 ], [ -58.410830000404133, -34.646393999983047 ], [ -58.412568999659584, -34.646673000258716 ], [ -58.413919999908046, -34.646909000350036 ], [ -58.415185999833966, -34.647124000372287 ], [ -58.415357999671926, -34.647102000257064 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.418255000168074, -34.655192000110674 ], [ -58.419842999654691, -34.655706999578342 ], [ -58.421903000223267, -34.656329000383039 ], [ -58.422824999574004, -34.656822999781582 ], [ -58.423532999848021, -34.657187000379736 ], [ -58.423791000054564, -34.657316000033347 ], [ -58.424820999889221, -34.657788000215987 ], [ -58.425314000140929, -34.658003000238239 ], [ -58.425722000070209, -34.658196000145267 ], [ -58.426795000089157, -34.658668000327907 ], [ -58.427803999854689, -34.659119000441478 ], [ -58.429090999849734, -34.659698000162507 ], [ -58.430228000122042, -34.660191999561107 ], [ -58.431365000394408, -34.660727999997164 ], [ -58.432545999997842, -34.661243000364152 ], [ -58.433746999624304, -34.661822000085181 ], [ -58.434927000080961, -34.662358999668072 ], [ -58.436128999753521, -34.662917000219352 ], [ -58.437696000070332, -34.663603000378146 ], [ -58.437974000299846, -34.663688999847409 ], [ -58.43836100016, -34.663947000053952 ], [ -58.438531999951806, -34.66413999996098 ], [ -58.439325999695086, -34.665062000211094 ], [ -58.44018499973788, -34.665984999607986 ], [ -58.440979000380537, -34.666736000066294 ], [ -58.441299999895023, -34.667015000341962 ], [ -58.443103000303154, -34.668580999713299 ], [ -58.443511000232434, -34.669096000080287 ], [ -58.443788999562628, -34.669417999640928 ], [ -58.444626000389576, -34.67046999959075 ], [ -58.44484100041177, -34.670726999751196 ], [ -58.445140999857244, -34.671221000049059 ], [ -58.44548500043237, -34.671693000231755 ], [ -58.445892000315496, -34.672379000390492 ], [ -58.447351000148501, -34.674825999919904 ], [ -58.447449000171162, -34.67497899978099 ], [ -58.448380999983101, -34.676435000374909 ], [ -58.450008000368882, -34.679090999649873 ], [ -58.450076999953524, -34.679203000318182 ], [ -58.450290999929678, -34.679460999625405 ], [ -58.450870999696861, -34.680168999899365 ], [ -58.451063999603832, -34.680426000059811 ], [ -58.452358999967828, -34.681639000239613 ], [ -58.453746000077786, -34.682936999842639 ], [ -58.456255999814516, -34.685147000133895 ], [ -58.456921999950282, -34.685597000201369 ], [ -58.456986000203699, -34.685661999601564 ], [ -58.45743700031727, -34.686069000384009 ], [ -58.457665000039697, -34.68627600003731 ], [ -58.457887000384744, -34.686477000313289 ], [ -58.458380999783287, -34.68692800042686 ], [ -58.458809999781636, -34.68748600007882 ], [ -58.46028999968371, -34.688879999612254 ], [ -58.460955999819475, -34.688215000421906 ], [ -58.462221999745452, -34.68692800042686 ], [ -58.462857000250324, -34.686292999921989 ], [ -58.462951000088538, -34.686198000037621 ], [ -58.462930000019469, -34.686069000384009 ], [ -58.462843999650829, -34.685897999692884 ], [ -58.462907999904246, -34.685769000039272 ], [ -58.464475000221057, -34.684159999584267 ], [ -58.466170000145326, -34.682443000444096 ], [ -58.467050000257245, -34.68154200026305 ], [ -58.467134999680468, -34.68162799973237 ], [ -58.467457000140428, -34.681928000077107 ], [ -58.46758000041666, -34.682035999661593 ], [ -58.467821999885359, -34.682249999637747 ], [ -58.469646000362559, -34.683987999746364 ], [ -58.469410000271239, -34.684159999584267 ], [ -58.468337000252347, -34.684997000411215 ], [ -58.467929000323068, -34.685317999925701 ], [ -58.467736000416039, -34.685555000063175 ], [ -58.466984999957731, -34.686090999599912 ], [ -58.466491999705966, -34.686456000244164 ], [ -58.465890999869714, -34.68692800042686 ], [ -58.464774999666474, -34.687786000423557 ], [ -58.464217000014514, -34.688215000421906 ], [ -58.463723999762749, -34.688601000235906 ], [ -58.464409999921543, -34.689181000003089 ], [ -58.465482999940434, -34.690167999653397 ], [ -58.465955000123131, -34.689781999839397 ], [ -58.466427000305771, -34.689417000094409 ], [ -58.467093000441594, -34.690017999930717 ], [ -58.467844000000582, -34.690704000089511 ], [ -58.466663000397091, -34.691606000316597 ], [ -58.465461999871366, -34.692485000382419 ], [ -58.464689000197154, -34.693065000149602 ], [ -58.465526000124783, -34.69381599970859 ], [ -58.466234000398742, -34.694458999683036 ], [ -58.466984999957731, -34.695145999887927 ], [ -58.467800999816234, -34.695897000346235 ], [ -58.468509000090251, -34.696541000366835 ], [ -58.469259999649239, -34.697205999557184 ], [ -58.470011000107547, -34.697892999762075 ], [ -58.470697000266284, -34.698429000198132 ], [ -58.470483000290187, -34.698601000036092 ], [ -58.470589999828576, -34.698687000404675 ], [ -58.470825999919896, -34.699073000218732 ], [ -58.470891000219467, -34.699179999757121 ], [ -58.471812999570261, -34.700016999684749 ], [ -58.472993000026861, -34.701067999588474 ], [ -58.474872000342486, -34.702763999558897 ], [ -58.476512000428443, -34.704244000360291 ], [ -58.477198999734014, -34.704394000082971 ], [ -58.477413999756266, -34.704437000267319 ], [ -58.477757000285294, -34.704522999736582 ], [ -58.478099999915003, -34.704609000105222 ], [ -58.478464999659991, -34.704694999574542 ], [ -58.478830000304242, -34.704780999943125 ], [ -58.479195000049174, -34.704866000265667 ], [ -58.478830000304242, -34.70600399968481 ], [ -58.478760999820224, -34.706227000075955 ], [ -58.478921000004107, -34.706226000029858 ], [ -58.479039000049795, -34.706212000283529 ], [ -58.479121000233931, -34.706180999753315 ], [ -58.479223999587873, -34.706045999823004 ], [ -58.479247999795291, -34.705923999592869 ], [ -58.479231999956767, -34.70582000019283 ], [ -58.479205999657097, -34.705731999731938 ], [ -58.479143000349154, -34.7056509995939 ], [ -58.479054999888319, -34.705612999640152 ], [ -58.478967000326747, -34.705576999778657 ], [ -58.479120000187834, -34.705197000241299 ], [ -58.47922799977232, -34.705102000356987 ], [ -58.479354000186902, -34.705040000195822 ], [ -58.479379000440474, -34.70496300024223 ], [ -58.47928799984129, -34.704817999850775 ], [ -58.480083999676822, -34.704100000014932 ], [ -58.480872000042723, -34.703376999948546 ], [ -58.481409999671712, -34.702900999581402 ], [ -58.481636000201206, -34.702638000043635 ], [ -58.481919999808099, -34.701743000139288 ], [ -58.482097999922701, -34.701315000187037 ], [ -58.482301000290875, -34.700762999912456 ], [ -58.482386999760195, -34.700640999682321 ], [ -58.482732000381475, -34.700610000051427 ], [ -58.482628000082116, -34.700339000144709 ], [ -58.483378999641104, -34.700016999684749 ], [ -58.486661999951309, -34.698750999758772 ], [ -58.487606000316646, -34.698106999738229 ], [ -58.487669999670686, -34.698085999669104 ], [ -58.488120999784257, -34.697913999831201 ], [ -58.488657000220371, -34.697463999763727 ], [ -58.489280000171846, -34.696991000434252 ], [ -58.489450999963651, -34.696840999812252 ], [ -58.489665999985846, -34.696562000435904 ], [ -58.490238000283455, -34.696046000022818 ], [ -58.490331000075571, -34.695960999700333 ], [ -58.49043799961396, -34.695982999815556 ], [ -58.490610000351182, -34.696090000253264 ], [ -58.491092000095705, -34.696955999719592 ], [ -58.492195999745547, -34.698940000380674 ], [ -58.493034999765371, -34.699801999662498 ], [ -58.49391499987729, -34.700510999982612 ], [ -58.494107999784319, -34.700488999867389 ], [ -58.49415099996861, -34.700510999982612 ], [ -58.494172000037736, -34.70061800042032 ], [ -58.49415099996861, -34.700638999590126 ], [ -58.494000000199833, -34.700681999774417 ], [ -58.493935999946416, -34.700660999705349 ], [ -58.493142000203079, -34.70126200044092 ], [ -58.491918999562131, -34.701862000231074 ], [ -58.492025999999839, -34.701990999884686 ], [ -58.492305000275508, -34.702205999906937 ], [ -58.492562999582731, -34.702441999998257 ], [ -58.492819999743176, -34.702655999974354 ], [ -58.493077999949719, -34.702892000065731 ], [ -58.493314000041039, -34.703107000087925 ], [ -58.493571000201484, -34.703343000179245 ], [ -58.493829000408027, -34.703557000155399 ], [ -58.494321999760416, -34.704030000384193 ], [ -58.494430000244279, -34.704136999922582 ], [ -58.494666000335599, -34.704244000360291 ], [ -58.495008999965307, -34.704286999645262 ], [ -58.496125000168604, -34.704223000291165 ], [ -58.497176000072329, -34.704157999991651 ], [ -58.497391000094524, -34.704136999922582 ], [ -58.497776999908581, -34.704071999623068 ], [ -58.497926999631261, -34.704008000268971 ], [ -58.498507000297764, -34.703642999624662 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.504986999650271, -34.709629999624724 ], [ -58.505523000086328, -34.710123999922587 ], [ -58.506188000176053, -34.710745999827964 ], [ -58.506382000129179, -34.710981999919341 ], [ -58.506466999552345, -34.711089000357049 ], [ -58.507174999826361, -34.71241999968322 ], [ -58.509063999703756, -34.714887000134922 ], [ -58.509150000072395, -34.715015999788534 ], [ -58.510972999604235, -34.713171000141472 ], [ -58.511081000088041, -34.712527000120929 ], [ -58.510779999697206, -34.71121800001066 ], [ -58.510501000320858, -34.710273999645324 ], [ -58.510350999698858, -34.709629999624724 ], [ -58.510029000138218, -34.708599999790124 ], [ -58.509985999953869, -34.708450000067387 ], [ -58.510265000229538, -34.707677000393232 ], [ -58.510586999790178, -34.706776000212187 ], [ -58.511381000432777, -34.706969000119216 ], [ -58.512154000106989, -34.707162000026244 ], [ -58.513205000010714, -34.707420000232787 ], [ -58.514278000029663, -34.707677000393232 ], [ -58.515394000232902, -34.707955999769524 ], [ -58.516467000251794, -34.708213999976067 ], [ -58.517540000270742, -34.708493000251735 ], [ -58.518612000243593, -34.708729000343055 ], [ -58.519685000262484, -34.708985999604181 ], [ -58.520737000212364, -34.709264999879792 ], [ -58.521831000300381, -34.709523000086335 ], [ -58.522345999768049, -34.709672999809072 ], [ -58.522989999788592, -34.710294999714449 ], [ -58.523698000062609, -34.710916999619769 ], [ -58.524642000427946, -34.710188000176004 ], [ -58.525608000009129, -34.709457999786821 ], [ -58.526530000259243, -34.708771999628027 ], [ -58.527195000348968, -34.709373000363655 ], [ -58.527903999769705, -34.710016000338101 ], [ -58.528546999744208, -34.709479999902044 ], [ -58.529619999763156, -34.708814999812375 ], [ -58.531852000169636, -34.707184000141467 ], [ -58.532517000259304, -34.707870000300204 ], [ -58.533246999749224, -34.708578999720999 ], [ -58.533696999816641, -34.709007999719347 ], [ -58.533976000092309, -34.709351000248432 ], [ -58.534040000345726, -34.709436999717695 ], [ -58.534212000183629, -34.709887999831267 ], [ -58.534276000437046, -34.710231000360352 ], [ -58.534318999722018, -34.7106600003587 ], [ -58.534397999767862, -34.711385999664117 ], [ -58.534576999928561, -34.71304199958854 ], [ -58.534667999628425, -34.713894000207915 ], [ -58.534856000204229, -34.715637999693911 ], [ -58.535521000293897, -34.715595000408882 ], [ -58.536315000037177, -34.715531000155465 ], [ -58.536401000405817, -34.715531000155465 ], [ -58.537065999596166, -34.715487999971174 ], [ -58.537259000402514, -34.715487999971174 ], [ -58.537860000238766, -34.715423999717757 ], [ -58.53807400021492, -34.715401999602534 ], [ -58.539061999911326, -34.715338000248494 ], [ -58.539619000416508, -34.715295000064145 ], [ -58.540348999906371, -34.715166000410534 ], [ -58.541163999718776, -34.715015999788534 ], [ -58.541915000177084, -34.714887000134922 ], [ -58.542731000035587, -34.714737000412185 ], [ -58.543460000378673, -34.714586999790185 ], [ -58.543611000147507, -34.714564999674963 ], [ -58.543781999939313, -34.714479000205642 ], [ -58.543804000054536, -34.714414999952226 ], [ -58.543868000307953, -34.714371999767934 ], [ -58.543974999846341, -34.714371999767934 ], [ -58.544061000214924, -34.714414999952226 ], [ -58.544361999706496, -34.714800999766283 ], [ -58.544618999866884, -34.714822999881505 ], [ -58.545026999796164, -34.714673000158768 ], [ -58.545627999632416, -34.714437000067448 ], [ -58.545863999723792, -34.714350999698809 ], [ -58.546379000090724, -34.714157999791837 ], [ -58.546721999720489, -34.714050000207294 ], [ -58.547108000433809, -34.713899999585294 ], [ -58.547601999832409, -34.713727999747334 ], [ -58.547837999923729, -34.713621000208946 ], [ -58.548095000084118, -34.713534999840306 ], [ -58.548910999942677, -34.713235000394889 ], [ -58.549662000400929, -34.712956000119277 ], [ -58.550540999567431, -34.712612999590192 ], [ -58.550970999611877, -34.712461999821414 ], [ -58.551184999588031, -34.712440999752289 ], [ -58.552107999884242, -34.712591000374346 ], [ -58.552493999698299, -34.71265599977454 ], [ -58.553416999994511, -34.712848999681569 ], [ -58.55442699980614, -34.713058000326384 ], [ -58.554660999805265, -34.713105999841957 ], [ -58.555519999848059, -34.714050000207294 ], [ -58.557730000139372, -34.714586999790185 ], [ -58.558159000137721, -34.714993999673311 ], [ -58.559918000315406, -34.716604000174414 ], [ -58.560454999898298, -34.717097000426179 ], [ -58.560475999967366, -34.717226000079791 ], [ -58.562622000005263, -34.717761999616528 ], [ -58.562364999844817, -34.718556000259184 ], [ -58.56245000016736, -34.718856999750699 ], [ -58.562771999727943, -34.71922200039495 ], [ -58.564445999583199, -34.720724000412247 ], [ -58.564938999834908, -34.721131000295372 ], [ -58.567106999988027, -34.721711000062555 ], [ -58.568008000169016, -34.722590000128378 ], [ -58.568170999591928, -34.722467999898242 ], [ -58.570217999561009, -34.720917000319275 ], [ -58.570517999905746, -34.720681000227955 ], [ -58.570732999927941, -34.720530999605899 ], [ -58.571311999649026, -34.720100999561453 ], [ -58.571955999669626, -34.719608000209007 ], [ -58.572042000038209, -34.719542999909493 ], [ -58.572642999874517, -34.719113999911144 ], [ -58.573264999779894, -34.718641999728447 ], [ -58.574059000422494, -34.718063000007419 ], [ -58.574681000327871, -34.717568999709499 ], [ -58.575346000417539, -34.71707600035711 ], [ -58.576076999953557, -34.716538999874899 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 298.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.120103344999904, -34.55920534899991 ], [ -59.119551072999911, -34.559333814999945 ], [ -59.119514604999949, -34.559244067999941 ], [ -59.119089856999949, -34.558198774999937 ], [ -59.11865593999994, -34.557100390999949 ], [ -59.118014625999933, -34.555473695999922 ], [ -59.117914003999942, -34.555484778999926 ], [ -59.1176210349999, -34.555517049999935 ], [ -59.117247037999903, -34.555334842999912 ], [ -59.117048909999937, -34.555442316999915 ], [ -59.116944496999906, -34.555498954999905 ], [ -59.116336977999936, -34.55599591999993 ], [ -59.115750415999912, -34.556485267999903 ], [ -59.113662253999905, -34.55813762899993 ], [ -59.113369657999954, -34.558339639999929 ], [ -59.11241055399995, -34.558997953999949 ], [ -59.112158777999923, -34.559169994999934 ], [ -59.11198505099992, -34.559236797999915 ], [ -59.110888548999924, -34.559658432999925 ], [ -59.110539945999903, -34.559798627999953 ], [ -59.1096375219999, -34.560154797999928 ], [ -59.109215648999907, -34.560321515999931 ], [ -59.109153664999951, -34.560336667999934 ], [ -59.108063772999913, -34.560776199999907 ], [ -59.108098406999943, -34.56084545899995 ], [ -59.108672223999918, -34.561992951999912 ], [ -59.109244004999937, -34.563117342999931 ], [ -59.109819832999904, -34.564280093999912 ], [ -59.109900159999938, -34.564419351999902 ], [ -59.110545538999929, -34.565721180999958 ], [ -59.110998267999946, -34.566652015999921 ], [ -59.111611157999903, -34.567872850999947 ], [ -59.111435347999929, -34.567925210999931 ], [ -59.111294399999906, -34.567967187999955 ], [ -59.109995040999934, -34.568343998999921 ], [ -59.108604900999921, -34.568742284999928 ], [ -59.107174594999947, -34.569155227999943 ], [ -59.105847479999909, -34.569508589999941 ], [ -59.104604767999945, -34.569898922999926 ], [ -59.103249519999906, -34.57029293699992 ], [ -59.101893210999947, -34.570713483999953 ], [ -59.100603103999902, -34.571103715999925 ], [ -59.099159687999929, -34.571535621999942 ], [ -59.098546308999914, -34.571706105999908 ], [ -59.0977810199999, -34.571950824999931 ], [ -59.096874610999919, -34.572225231999937 ], [ -59.095942008999941, -34.572503813999901 ], [ -59.094945318999919, -34.572806034999928 ], [ -59.094610914999919, -34.572897991999923 ], [ -59.092805809999902, -34.573439133999955 ], [ -59.091820421999955, -34.573737405999907 ], [ -59.091170362999947, -34.573917257999938 ], [ -59.091100342999937, -34.574008143999947 ], [ -59.090507673999923, -34.574777431999905 ], [ -59.089771733999953, -34.575710503999915 ], [ -59.089386347999948, -34.576196195999955 ], [ -59.089124201999937, -34.576562891999913 ], [ -59.089043311999944, -34.576582819999942 ], [ -59.088944123999909, -34.576607255999932 ], [ -59.087279523999939, -34.577017345999934 ], [ -59.086140499999942, -34.577332778999903 ], [ -59.08566223899993, -34.577467168999931 ], [ -59.085329911999906, -34.577571118999913 ], [ -59.085056037999948, -34.577654479999921 ], [ -59.083512341999949, -34.578022177999912 ], [ -59.0831255249999, -34.57811221299994 ], [ -59.082220487999905, -34.578326180999909 ], [ -59.081596802999911, -34.578476279999904 ], [ -59.081191333999925, -34.578573861999928 ], [ -59.080520919999913, -34.578712648999954 ], [ -59.065158471999951, -34.581892926999956 ], [ -59.059886395999911, -34.58314175299995 ], [ -59.059310894999953, -34.583279657999924 ], [ -59.058086527999933, -34.583570792999922 ], [ -59.040715922999937, -34.587887721999948 ], [ -59.038900214999899, -34.588366485999927 ], [ -59.037944955999933, -34.58872434299991 ], [ -59.037755623999942, -34.588795269999935 ], [ -59.037002945999916, -34.589019659999906 ], [ -59.032681742999955, -34.590307905999907 ], [ -59.030356581999911, -34.590863357999922 ], [ -59.027882913999917, -34.591204698999945 ], [ -59.02608693399992, -34.591629912999906 ], [ -59.023872510999922, -34.591953776999958 ], [ -59.023634874999914, -34.591988530999913 ], [ -59.02354362299991, -34.592001876999916 ], [ -59.019015054999954, -34.593300129999932 ], [ -59.018605560999902, -34.593407374999913 ], [ -59.018439522999927, -34.593441859999928 ], [ -59.018034012999919, -34.593533804999936 ], [ -59.017064794999953, -34.593736878999948 ], [ -59.016570403999935, -34.593855628999904 ], [ -59.015662922999923, -34.594051029999946 ], [ -59.014106080999909, -34.594412359999922 ], [ -59.012518584999953, -34.59477682399995 ], [ -59.010732643999916, -34.595156297999949 ], [ -59.010488413999951, -34.595213249999915 ], [ -59.008912364999901, -34.595570091999946 ], [ -59.007550016999915, -34.595877577999943 ], [ -59.006374657999913, -34.596143308999956 ], [ -59.00556182899993, -34.596325515999922 ], [ -59.004630698999904, -34.596530475999941 ], [ -59.003676808999899, -34.596739571999933 ], [ -59.002769721999925, -34.596945335999919 ], [ -59.001855045999946, -34.597158731999912 ], [ -59.001616898999941, -34.597219710999923 ], [ -58.998880399999905, -34.597863716999939 ], [ -58.998566632999939, -34.597947568999928 ], [ -58.997353368999939, -34.598229552999953 ], [ -58.995410625999909, -34.598683018999907 ], [ -58.994858751999914, -34.598820215999922 ], [ -58.994303162999927, -34.598945959999924 ], [ -58.993702173999907, -34.599090771999954 ], [ -58.993135199999926, -34.599227962999919 ], [ -58.992572060999919, -34.599353704999942 ], [ -58.992175203999921, -34.599445157999924 ], [ -58.99181982999994, -34.599544260999949 ], [ -58.9916459989999, -34.599578545999918 ], [ -58.991475902999923, -34.599620466999909 ], [ -58.991347411999925, -34.59964713599993 ], [ -58.989102397999943, -34.600168622999945 ], [ -58.987827974999902, -34.60048977799994 ], [ -58.984264312999926, -34.601325652999947 ], [ -58.983366489999923, -34.601553252999906 ], [ -58.977592444999914, -34.602953886999956 ], [ -58.975724891999903, -34.603401969999936 ], [ -58.973130788999924, -34.604029088999937 ], [ -58.971825980999938, -34.604354446999935 ], [ -58.971369950999929, -34.604437049999945 ], [ -58.971316650999938, -34.604453201999945 ], [ -58.968924430999948, -34.60501191499992 ], [ -58.966483164999943, -34.605555470999946 ], [ -58.965612279999903, -34.605755451999926 ], [ -58.964946609999913, -34.605918259999953 ], [ -58.96302948999994, -34.606386367999903 ], [ -58.961602920999951, -34.606744177999929 ], [ -58.960062344999926, -34.607122638999954 ], [ -58.958867466999948, -34.607446928999934 ], [ -58.958855739999933, -34.607407372999944 ], [ -58.958838583999921, -34.60734950199992 ], [ -58.95740431899992, -34.607715203999931 ], [ -58.955915181999899, -34.608048847999953 ], [ -58.954554970999936, -34.608340792999911 ], [ -58.954342827999938, -34.608370038999908 ], [ -58.95294419399994, -34.608661043999916 ], [ -58.951584073999925, -34.608949165999945 ], [ -58.951382818999946, -34.609005459999935 ], [ -58.951316930999951, -34.608831231999943 ], [ -58.951154986999939, -34.608403006999936 ], [ -58.9508168939999, -34.607426718999932 ], [ -58.950500211999952, -34.606519825999953 ], [ -58.950214084999914, -34.605621331999942 ], [ -58.949892921999947, -34.604741111999942 ], [ -58.949580172999902, -34.60383048999995 ], [ -58.949711720999915, -34.603795445999936 ], [ -58.949771834999922, -34.603782039999942 ], [ -58.949804480999944, -34.603774758999919 ], [ -58.951137796999944, -34.603482154999938 ], [ -58.952532588999929, -34.603191055999957 ], [ -58.952737503999913, -34.603142502999958 ], [ -58.954090121999911, -34.60284654499992 ], [ -58.955564126999946, -34.60246079399991 ], [ -58.955492575999926, -34.602256969999928 ], [ -58.955200417999947, -34.601424720999944 ], [ -58.95495677699995, -34.600727503999906 ], [ -58.954735188999905, -34.600076971999954 ], [ -58.954517505999945, -34.59941858499991 ], [ -58.954498955999952, -34.599391406999928 ], [ -58.954429297999923, -34.599355898999931 ], [ -58.954325914999913, -34.599303198999905 ], [ -58.953709849999939, -34.598930085999939 ], [ -58.953052491999927, -34.598530017999906 ], [ -58.952346200999955, -34.598106974999951 ], [ -58.951136236999901, -34.597399616999951 ], [ -58.951335609999944, -34.597160168999949 ], [ -58.951749742999937, -34.59666279299995 ], [ -58.952294727999913, -34.595946177999906 ], [ -58.951199852999935, -34.596073608999916 ], [ -58.949225319999925, -34.596303420999902 ], [ -58.949004817999935, -34.595741848999921 ], [ -58.94868529799993, -34.594928098999958 ], [ -58.948657752999907, -34.594793509999931 ], [ -58.948419397999942, -34.594148710999946 ], [ -58.948217331999899, -34.593614245999902 ], [ -58.948115955999924, -34.593346106999945 ], [ -58.947873332999905, -34.592704370999911 ], [ -58.947698312999933, -34.592466693999938 ], [ -58.947512789999905, -34.592017947999921 ], [ -58.947242210999946, -34.591348350999908 ], [ -58.947096415999908, -34.590955029999918 ], [ -58.946877117999918, -34.59040609199991 ], [ -58.946825606999937, -34.590301067999917 ], [ -58.946726953999928, -34.59005189599992 ], [ -58.94633882699992, -34.589129401999912 ], [ -58.946283756999946, -34.589008779999915 ], [ -58.946012889999906, -34.588358726999957 ], [ -58.945840616999931, -34.587961755999913 ], [ -58.945474772999944, -34.587070310999934 ], [ -58.945222569999942, -34.586439617999929 ], [ -58.944899961999909, -34.585700177999911 ], [ -58.944757206999952, -34.585357634999923 ], [ -58.944716605999929, -34.585283771999912 ], [ -58.944458822999934, -34.584774290999917 ], [ -58.944119551999904, -34.584136627999953 ], [ -58.943966906999947, -34.583950514999913 ], [ -58.943284706999918, -34.583179397999913 ], [ -58.942736719999914, -34.582559399999923 ], [ -58.94204366699995, -34.581753212999956 ], [ -58.941380132999939, -34.581001454999921 ], [ -58.940780229999916, -34.580303795999953 ], [ -58.94017286199994, -34.579598391999923 ], [ -58.93955750899994, -34.578920423999932 ], [ -58.938983785999937, -34.578245957999911 ], [ -58.938819134999903, -34.578049027999953 ], [ -58.93873046899995, -34.577942979999932 ], [ -58.938175261999902, -34.571110654999927 ], [ -58.936344741999903, -34.56253843199994 ], [ -58.936372313999925, -34.562643731999913 ], [ -58.936344741999903, -34.56253843199994 ], [ -58.93612971899995, -34.56171072199993 ], [ -58.935921686999905, -34.560844687999918 ], [ -58.935788933999902, -34.560243062999916 ], [ -58.935721889999911, -34.560028471999942 ], [ -58.93557504499995, -34.559495825999932 ], [ -58.935028982999938, -34.557357571999944 ], [ -58.934988407999924, -34.557150641999954 ], [ -58.934781456999929, -34.556361250999942 ], [ -58.934554270999911, -34.555472227999928 ], [ -58.934413432999918, -34.554564032999906 ], [ -58.934049782999921, -34.553077215999906 ], [ -58.933718216999921, -34.551483085999905 ], [ -58.933421837999902, -34.54993879299991 ], [ -58.930623433999926, -34.535909768999943 ], [ -58.928736287999925, -34.531982753999955 ], [ -58.928404297999919, -34.530289720999917 ], [ -58.92761381899993, -34.526230213999952 ], [ -58.926601638999955, -34.518828667999912 ], [ -58.926599852999914, -34.518815609999933 ], [ -58.926367102999905, -34.518225438999934 ], [ -58.925036415999955, -34.514851290999957 ], [ -58.924716943999954, -34.514111527999944 ], [ -58.924545304999924, -34.513718524999945 ], [ -58.924398226999926, -34.513327595999954 ], [ -58.924031913999954, -34.512353945999905 ], [ -58.923946707999903, -34.512127470999928 ], [ -58.923871866999946, -34.511784730999921 ], [ -58.923696698999947, -34.510952926999948 ], [ -58.923469630999932, -34.510001681999938 ], [ -58.923400242999946, -34.509755180999946 ], [ -58.923340108999923, -34.509373983999922 ], [ -58.923298881999926, -34.50920452999992 ], [ -58.923188810999932, -34.508592273999909 ], [ -58.923049092999918, -34.507814440999937 ], [ -58.922992732999944, -34.507429403999936 ], [ -58.922833201999936, -34.506385938999927 ], [ -58.922811231999901, -34.506220378999956 ], [ -58.922614505999945, -34.505019015999949 ], [ -58.922499110999922, -34.504318220999949 ], [ -58.922324613999933, -34.503297814999939 ], [ -58.922178795999912, -34.502385249999918 ], [ -58.922145827999941, -34.502250455999956 ], [ -58.92200013899992, -34.501345589999914 ], [ -58.921829674999913, -34.500336741999945 ], [ -58.921560007999915, -34.49867717199993 ], [ -58.921547911999937, -34.498642501999939 ], [ -58.921114822999925, -34.495250477999946 ], [ -58.921047683999916, -34.49468066299994 ], [ -58.921017583999912, -34.49448813999993 ], [ -58.920941411999934, -34.493837472999928 ], [ -58.920724059999941, -34.492093346999923 ], [ -58.920634820999908, -34.49135027199992 ], [ -58.920534648999933, -34.490641812999911 ], [ -58.920520225999951, -34.490468570999951 ], [ -58.92051964399991, -34.490433928999948 ], [ -58.920315874999915, -34.488813003999951 ], [ -58.9201470779999, -34.48744619699994 ], [ -58.920057451999924, -34.48668002699992 ], [ -58.919751636999933, -34.484239015999947 ], [ -58.919935770999928, -34.484004653999932 ], [ -58.919899220999923, -34.482742079999923 ], [ -58.919880170999932, -34.481556934999958 ], [ -58.919875015999935, -34.481080792999933 ], [ -58.919861065999953, -34.480217552999932 ], [ -58.919850245999953, -34.479075583999929 ], [ -58.919831296999917, -34.477794267999911 ], [ -58.919831745999943, -34.476516788999902 ], [ -58.919821310999907, -34.475518051999927 ], [ -58.919799221999938, -34.474511593999921 ], [ -58.919607904999907, -34.472580236999931 ], [ -58.919523862999938, -34.472433917999922 ], [ -58.918879354999945, -34.471311815999911 ], [ -58.918509655999912, -34.47082471899995 ], [ -58.918299488999935, -34.470538634999912 ], [ -58.91802705799995, -34.47017136799991 ], [ -58.917742971999928, -34.469796379999934 ], [ -58.917645674999903, -34.469664935999958 ], [ -58.917482215999939, -34.469444576999933 ], [ -58.917373274999932, -34.469309282999916 ], [ -58.91619447699992, -34.467882958999951 ], [ -58.915766487999917, -34.46734951399992 ], [ -58.915299398999935, -34.466696132999914 ], [ -58.915209857999912, -34.466564675999905 ], [ -58.915179789999911, -34.466526270999907 ], [ -58.91515538099992, -34.466495093999924 ], [ -58.915148093999903, -34.466484753999907 ], [ -58.915100885999948, -34.466417768999918 ], [ -58.914403512999911, -34.465207358999919 ], [ -58.914263320999908, -34.46498695799994 ], [ -58.914270438999949, -34.464894133999906 ], [ -58.914342000999909, -34.463960960999941 ], [ -58.914408861999902, -34.462865304999923 ], [ -58.914494912999942, -34.461696063999909 ], [ -58.914576889999921, -34.460453277999932 ], [ -58.914643585999954, -34.459291824999923 ], [ -58.914687086999947, -34.458775029999913 ], [ -58.914735703999952, -34.458124275999921 ], [ -58.914827822999939, -34.456956728999955 ], [ -58.914932117999911, -34.455727900999932 ], [ -58.914992163999955, -34.455096234999928 ], [ -58.915047411999922, -34.454564083999912 ], [ -58.915144127999952, -34.453733272999955 ], [ -58.915198570999905, -34.453702434999911 ], [ -58.915261504999933, -34.453619854999943 ], [ -58.915938734999941, -34.452731206999943 ], [ -58.916447912999899, -34.452055594999933 ], [ -58.916363671999932, -34.452009241999917 ], [ -58.916013024999927, -34.451816299999905 ], [ -58.915404949999925, -34.451482049999925 ], [ -58.914877575999924, -34.451204869999913 ], [ -58.91480432599991, -34.451178384999935 ], [ -58.914515425999923, -34.451140555999928 ], [ -58.913869337999927, -34.451055955999948 ], [ -58.912691066999912, -34.450888607999957 ], [ -58.912369735999903, -34.450916720999942 ], [ -58.911893558999907, -34.450956951999956 ], [ -58.9109701779999, -34.450834474999908 ], [ -58.909509686999911, -34.450649157999919 ], [ -58.909231622999926, -34.450600555999927 ], [ -58.909111878999909, -34.450581916999909 ], [ -58.906724815999951, -34.450201426999911 ], [ -58.906296202999954, -34.45011900399993 ], [ -58.906222151999941, -34.45002345499995 ], [ -58.906036806999907, -34.449784301999955 ], [ -58.905917792999901, -34.44963073699995 ], [ -58.905463012999917, -34.449035633999927 ], [ -58.904304679999939, -34.447559444999911 ], [ -58.90378871799993, -34.446888058999946 ], [ -58.903360552999914, -34.44634259399993 ], [ -58.902940018999914, -34.445808578999902 ], [ -58.902523459999941, -34.445263066999928 ], [ -58.90222127699991, -34.444896941999957 ], [ -58.9017276699999, -34.444317305999903 ], [ -58.901310860999899, -34.443798581999943 ], [ -58.900538174999951, -34.442864205999911 ], [ -58.900312397999926, -34.442601088999936 ], [ -58.899724520999939, -34.442174913999906 ], [ -58.899398830999928, -34.441931847999911 ], [ -58.899148283999921, -34.44174486299994 ], [ -58.899117586999921, -34.441718201999947 ], [ -58.898022570999899, -34.440919092999934 ], [ -58.89751156299991, -34.440546174999952 ], [ -58.896097641999916, -34.439514945999917 ], [ -58.895894147999911, -34.439351234999947 ], [ -58.895482970999922, -34.43905826799994 ], [ -58.894864395999946, -34.438605430999928 ], [ -58.894472561999919, -34.438312383999914 ], [ -58.893492171999924, -34.437665873999947 ], [ -58.892907912999931, -34.43726646999994 ], [ -58.892296611999939, -34.436863351999932 ], [ -58.891612272999907, -34.436410786999943 ], [ -58.890843470999926, -34.435889686999928 ], [ -58.889940021999905, -34.43528878099994 ], [ -58.889920821999908, -34.435273552999945 ], [ -58.888994269999955, -34.434661260999917 ], [ -58.888159953999946, -34.434113643999922 ], [ -58.88635312699995, -34.432904177999944 ], [ -58.885234614999945, -34.432135779999953 ], [ -58.883823848999953, -34.431181073999937 ], [ -58.883462497999915, -34.430937649999919 ], [ -58.883085815999948, -34.430678981999904 ], [ -58.882693766999921, -34.430408895999904 ], [ -58.882605505999948, -34.430332724999914 ], [ -58.882478917999947, -34.430218442999944 ], [ -58.881611997999926, -34.429433700999937 ], [ -58.880802568999911, -34.428706122999927 ], [ -58.880208059999916, -34.428161343999932 ], [ -58.879393996999909, -34.427417637999952 ], [ -58.878761603999919, -34.426843987999916 ], [ -58.878465976999905, -34.426573981999923 ], [ -58.876568775999942, -34.424849173999917 ], [ -58.875797826999928, -34.424132547999932 ], [ -58.875270292999915, -34.423668036999914 ], [ -58.8750109799999, -34.423534688999951 ], [ -58.874870839999915, -34.423462624999956 ], [ -58.8743819419999, -34.423236470999939 ], [ -58.871960877999925, -34.422290407999924 ], [ -58.871729567999921, -34.422196279999923 ], [ -58.871453419999909, -34.422072478999951 ], [ -58.871188549999943, -34.42196767799993 ], [ -58.870763233999924, -34.421793857999944 ], [ -58.870501969999907, -34.421669651999935 ], [ -58.869845318999921, -34.421397845999934 ], [ -58.869442375999938, -34.421231143999933 ], [ -58.869356581999909, -34.421198716999925 ], [ -58.869083832999934, -34.421020762999945 ], [ -58.868493452999928, -34.420627458999945 ], [ -58.868314077999912, -34.420504894999908 ], [ -58.86806004999994, -34.420345740999949 ], [ -58.867880330999924, -34.420165266999902 ], [ -58.867236774999924, -34.419591919999903 ], [ -58.867132030999926, -34.419502085999909 ], [ -58.866982356999927, -34.419367133999913 ], [ -58.866783870999939, -34.419160137999938 ], [ -58.866687765999927, -34.419063628999936 ], [ -58.866562966999936, -34.418938304999926 ], [ -58.866521803999944, -34.418900806999943 ], [ -58.866087528999913, -34.418472380999958 ], [ -58.865219969999941, -34.417619398999932 ], [ -58.865174072999935, -34.417574272999957 ], [ -58.865110330999926, -34.417494911999938 ], [ -58.864960265999912, -34.417294326999922 ], [ -58.864161386999911, -34.416261826999914 ], [ -58.863973949999945, -34.416035225999906 ], [ -58.86351652299993, -34.414842878999934 ], [ -58.863293160999945, -34.414207947999955 ], [ -58.863012237999953, -34.413281112999925 ], [ -58.862389059999941, -34.411127920999945 ], [ -58.862270260999935, -34.410987336999938 ], [ -58.86208920699994, -34.410773079999956 ], [ -58.861849259999929, -34.410478396999906 ], [ -58.861519408999925, -34.410085754999955 ], [ -58.861080906999916, -34.409572493999917 ], [ -58.860949953999921, -34.409456340999952 ], [ -58.860601932999941, -34.409137557999941 ], [ -58.859251627999924, -34.408004160999951 ], [ -58.857486389999906, -34.406565377999925 ], [ -58.856753524999931, -34.405994450999913 ], [ -58.855990982999913, -34.405439774999934 ], [ -58.855912424999929, -34.40537239899993 ], [ -58.85511312999995, -34.404895944999907 ], [ -58.854014600999903, -34.404168889999937 ], [ -58.85339773599992, -34.403702937999924 ], [ -58.851699066999913, -34.402192846999924 ], [ -58.851242648999914, -34.401795911999955 ], [ -58.850602651999907, -34.401195439999924 ], [ -58.84967463299995, -34.400351784999941 ], [ -58.847520485999951, -34.398603048999917 ], [ -58.845274089999918, -34.396988098999941 ], [ -58.83882581599994, -34.394123961999924 ], [ -58.837148276999926, -34.393038046999948 ], [ -58.836005209999939, -34.392331505999948 ], [ -58.835339830999942, -34.391843699999924 ], [ -58.835267583999951, -34.391788526999903 ], [ -58.833728424999947, -34.390613122999923 ], [ -58.833526492999908, -34.390452556999946 ], [ -58.83293567599992, -34.389985898999953 ], [ -58.832894535999912, -34.389952261999952 ], [ -58.832146717999933, -34.389370155999927 ], [ -58.832071972999927, -34.389318122999953 ], [ -58.831167382999922, -34.388659177999955 ], [ -58.830270280999912, -34.388007752999954 ], [ -58.829350736999913, -34.387337627999955 ], [ -58.82932087599994, -34.387322992999941 ], [ -58.829055614999902, -34.387152558999958 ], [ -58.828297138999915, -34.38665569199992 ], [ -58.827516311999943, -34.386155569999914 ], [ -58.827366820999941, -34.386051502999919 ], [ -58.827071676999935, -34.38586257299994 ], [ -58.826638159999902, -34.38556155099991 ], [ -58.826376735999929, -34.385410320999938 ], [ -58.826156605999927, -34.38525736899993 ], [ -58.825894375999951, -34.385085709999942 ], [ -58.82582924399992, -34.385051774999909 ], [ -58.82561009099993, -34.38493759399995 ], [ -58.824745510999946, -34.384252719999949 ], [ -58.824246082999935, -34.383669090999945 ], [ -58.823883727999942, -34.383245643999942 ], [ -58.823502402999907, -34.382667787999935 ], [ -58.823265668999909, -34.382383269999934 ], [ -58.823202867999953, -34.382337411999913 ], [ -58.822534030999918, -34.381778382999926 ], [ -58.822493381999948, -34.381743915999948 ], [ -58.822097984999914, -34.381410758999948 ], [ -58.821754339999927, -34.381127468999921 ], [ -58.821658262999904, -34.381047059999958 ], [ -58.821026366999945, -34.380514776999917 ], [ -58.820900744999904, -34.380415298999935 ], [ -58.820265140999936, -34.379875295999909 ], [ -58.820024943999954, -34.379672330999938 ], [ -58.819670185999939, -34.379369759999918 ], [ -58.819160256999908, -34.378948643999934 ], [ -58.818254920999948, -34.378190488999905 ], [ -58.817493716999934, -34.377558768999904 ], [ -58.817412428999944, -34.377493716999936 ], [ -58.817150059999904, -34.377271597999936 ], [ -58.816446841999948, -34.376724035999928 ], [ -58.815646876999949, -34.376091683999903 ], [ -58.81503829299993, -34.37556617599995 ], [ -58.813802754999926, -34.374255824999921 ], [ -58.812727770999913, -34.373083556999916 ], [ -58.812645989999908, -34.372991290999948 ], [ -58.811745674999941, -34.372018956999909 ], [ -58.811525871999947, -34.371800035999911 ], [ -58.811150407999946, -34.371377148999954 ], [ -58.810480284999926, -34.370681744999956 ], [ -58.809989203999919, -34.370151380999914 ], [ -58.809583758999906, -34.369709379999904 ], [ -58.809267345999899, -34.369378949999941 ], [ -58.808723683999915, -34.368821914999955 ], [ -58.80834743999992, -34.368445510999948 ], [ -58.808254747999911, -34.36832622299994 ], [ -58.8080357259999, -34.368060819999926 ], [ -58.807689656999912, -34.367691907999927 ], [ -58.807388527999933, -34.367353604999948 ], [ -58.807243255999936, -34.36720764699993 ], [ -58.80618662899991, -34.366070082999954 ], [ -58.805319757999939, -34.365136200999927 ], [ -58.803823720999901, -34.363549173999957 ], [ -58.803124397999909, -34.36278817199991 ], [ -58.802771011999937, -34.362403830999938 ], [ -58.802101214999936, -34.361689058999957 ], [ -58.801766445999931, -34.361323925999955 ], [ -58.801547163999942, -34.361074015999918 ], [ -58.801412800999913, -34.360955077999904 ], [ -58.801078032999953, -34.360589944999901 ], [ -58.800921915999936, -34.36041309399991 ], [ -58.800836150999942, -34.360332478999908 ], [ -58.799772076999943, -34.359187230999908 ], [ -58.799438283999905, -34.358763994999947 ], [ -58.799126569999942, -34.358379305999904 ], [ -58.798463031999916, -34.357517308999945 ], [ -58.798396013999934, -34.357448155999919 ], [ -58.79814456899993, -34.35714261499993 ], [ -58.797880040999928, -34.356821175999926 ], [ -58.797850514999936, -34.356774947999952 ], [ -58.797383073999924, -34.35619016499993 ], [ -58.797226631999933, -34.356032680999931 ], [ -58.796891277999919, -34.355702409999935 ], [ -58.796481393999954, -34.355299174999914 ], [ -58.79630248199993, -34.355126387999917 ], [ -58.795579517999954, -34.354419806999942 ], [ -58.794837612999913, -34.353713382999956 ], [ -58.794092374999934, -34.352979876999939 ], [ -58.793972721999921, -34.353060175999929 ], [ -58.793058019999933, -34.353674036999905 ], [ -58.792946923999921, -34.353748552999946 ], [ -58.792835113999899, -34.353638248999914 ], [ -58.79242527699995, -34.353233935999924 ], [ -58.792287450999936, -34.35309566199993 ], [ -58.792399123999928, -34.353019225999958 ], [ -58.793421665999915, -34.352319334999947 ], [ -58.79459043199995, -34.351515607999943 ], [ -58.794529631999922, -34.35146356599995 ], [ -58.794097529999931, -34.351093701999957 ], [ -58.793980327999918, -34.350966454999934 ], [ -58.793878052999901, -34.35085541299992 ], [ -58.793300816999931, -34.35026767599993 ], [ -58.792622791999918, -34.34959170299993 ], [ -58.791866383999945, -34.348846671999922 ], [ -58.79116595499994, -34.348151519999931 ], [ -58.790465590999929, -34.347452494999914 ], [ -58.790514469999948, -34.34742058899991 ], [ -58.791721747999929, -34.346632546999956 ], [ -58.792909129999941, -34.34584802899991 ], [ -58.792810678999899, -34.345754070999931 ], [ -58.792197075999923, -34.345168466999951 ], [ -58.79201835799995, -34.344984058999955 ], [ -58.791716318999931, -34.34469998499992 ], [ -58.791096760999949, -34.344151329999931 ], [ -58.790255529999911, -34.34372071699994 ], [ -58.788832185999922, -34.34299287999994 ], [ -58.787825829999917, -34.342470696999953 ], [ -58.787559526999928, -34.342314131999956 ], [ -58.786711174999937, -34.341856467999946 ], [ -58.78660607799992, -34.34179925199993 ], [ -58.786549708999928, -34.341772612999932 ], [ -58.786043750999909, -34.341451512999924 ], [ -58.785556604999954, -34.341138001999923 ], [ -58.785196504999931, -34.340928 ], [ -58.784401838999941, -34.340431156999955 ], [ -58.784117049999907, -34.340247635999958 ], [ -58.783734674999948, -34.340010708999955 ], [ -58.783101020999936, -34.339624836999917 ], [ -58.783026034999921, -34.339578987999914 ], [ -58.782422686999951, -34.339192861999948 ], [ -58.781957944999931, -34.338898529999938 ], [ -58.781819208999934, -34.338814483999954 ], [ -58.781163084999946, -34.338413307999929 ], [ -58.7808895309999, -34.338237437999908 ], [ -58.780675807999955, -34.338107543999911 ], [ -58.78028585699991, -34.337870679999924 ], [ -58.779937447999941, -34.337641214999906 ], [ -58.779416986999934, -34.337281507999933 ], [ -58.778769137999916, -34.336613026999942 ], [ -58.777849556999911, -34.335660219999909 ], [ -58.77761126799993, -34.335414342999911 ], [ -58.777269393999916, -34.335246789999928 ], [ -58.77717546699995, -34.335201099999949 ], [ -58.776235778999933, -34.334758890999922 ], [ -58.776002946999938, -34.334649321999905 ], [ -58.775814961999913, -34.334565687999941 ], [ -58.775195029999907, -34.33426490599993 ], [ -58.774973145999923, -34.334169936999956 ], [ -58.774578625999936, -34.333979586999931 ], [ -58.774015127999917, -34.333701570999949 ], [ -58.772926602999917, -34.333195049999915 ], [ -58.772838748999902, -34.333138230999907 ], [ -58.771873925999955, -34.332648873999915 ], [ -58.770908709999901, -34.332182753999916 ], [ -58.769782570999951, -34.331642174999956 ], [ -58.768708699999934, -34.331207743999926 ], [ -58.76863216299995, -34.331166754999913 ], [ -58.76761651399994, -34.330943265999906 ], [ -58.766661701999908, -34.330775804999917 ], [ -58.766399710999906, -34.330741006999915 ], [ -58.765870574999951, -34.330491101999939 ], [ -58.765290457999924, -34.330243178999922 ], [ -58.764992695999922, -34.330113496999957 ], [ -58.764478242999928, -34.329899903999944 ], [ -58.764222887999949, -34.32950317399991 ], [ -58.763834797999948, -34.329144603999907 ], [ -58.763146987999903, -34.328805132999946 ], [ -58.762470593999922, -34.328484734999904 ], [ -58.762207834999913, -34.328355048999924 ], [ -58.761713279999924, -34.328107119999913 ], [ -58.76090565699991, -34.327710433999925 ], [ -58.760186984999905, -34.327351890999921 ], [ -58.759769459999916, -34.327161178999916 ], [ -58.759039270999949, -34.326791190999927 ], [ -58.758722413999919, -34.326634805999902 ], [ -58.75862077599993, -34.326749024999913 ], [ -58.757903664999901, -34.327554901999918 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 296.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.953787000269813, -34.90555099997863 ], [ -57.954490000313228, -34.906182000299054 ], [ -57.955348000309925, -34.906976000042334 ], [ -57.955348000309925, -34.907125999765015 ], [ -57.95526299998744, -34.908821999735437 ], [ -57.955240999872217, -34.908972000357494 ], [ -57.9551769996188, -34.909959000007802 ], [ -57.954919000311577, -34.909980000076871 ], [ -57.95470500033548, -34.910087999661414 ], [ -57.9545329995982, -34.910195000099122 ], [ -57.95438299987552, -34.910344999821859 ], [ -57.9542970004062, -34.910645000166596 ], [ -57.954318999622103, -34.910903000373139 ], [ -57.954447000128937, -34.911159999634208 ], [ -57.954575999782548, -34.911289000187139 ], [ -57.95509100014948, -34.911504000209391 ], [ -57.95526299998744, -34.911504000209391 ], [ -57.9555850004474, -34.911438999909876 ], [ -57.955862999777594, -34.911311000302362 ], [ -57.956270999706817, -34.911697000116419 ], [ -57.957280000371668, -34.91262000041263 ], [ -57.958310000206325, -34.913563999878647 ], [ -57.959296999856633, -34.914465000059636 ], [ -57.960284000406261, -34.915388000355904 ], [ -57.960776999758707, -34.915838000423321 ], [ -57.96071300040461, -34.916804000004561 ], [ -57.961892999961947, -34.916868000257978 ], [ -57.962021999615558, -34.916760999820269 ], [ -57.96206499979985, -34.915902999823516 ], [ -57.962644000420255, -34.915515999963361 ], [ -57.963780999793244, -34.914680000081887 ], [ -57.964875999927415, -34.913864000223384 ], [ -57.965991000084557, -34.913027000295756 ], [ -57.967171999687992, -34.912169000299059 ], [ -57.968222999591717, -34.911374999656459 ], [ -57.968352000144648, -34.911268000118071 ], [ -57.969468000347888, -34.910452000259568 ], [ -57.970604999720933, -34.909573000193745 ], [ -57.971720999924173, -34.908736000266174 ], [ -57.972836000081315, -34.907920000407671 ], [ -57.973974000399778, -34.907062000410974 ], [ -57.975110999772767, -34.90620400041422 ], [ -57.975968999769464, -34.907019000226626 ], [ -57.976120000437618, -34.907147999880237 ], [ -57.976313000344646, -34.907319999718197 ], [ -57.977128000157052, -34.908071000176449 ], [ -57.978136999922583, -34.908950000242271 ], [ -57.97914499964196, -34.909872999639163 ], [ -57.980154000306811, -34.910817000004499 ], [ -57.98114099995712, -34.911718000185544 ], [ -57.981290999679857, -34.911846999839156 ], [ -57.982148999676554, -34.91262000041263 ], [ -57.982278000229485, -34.912770000135367 ], [ -57.983264999879793, -34.913650000247287 ], [ -57.98429499971445, -34.914593999713247 ], [ -57.985345999618175, -34.915538000078584 ], [ -57.986289999983455, -34.916418000190504 ], [ -57.986483999936581, -34.916567999913241 ], [ -57.987385000117627, -34.917382999725589 ], [ -57.987470999586947, -34.917469000094229 ], [ -57.988222000045198, -34.918134000183898 ], [ -57.988458000136575, -34.918349000206149 ], [ -57.988757999581992, -34.918648999651566 ], [ -57.988993999673312, -34.918993000226749 ], [ -57.989251999879855, -34.919422000225097 ], [ -57.98942299967166, -34.919851000223446 ], [ -57.98957300029366, -34.920323000406086 ], [ -57.98965899976298, -34.920752000404434 ], [ -57.989788000315912, -34.921481999894354 ], [ -57.989810000431135, -34.921782000239091 ], [ -57.989810000431135, -34.922317999775828 ], [ -57.989810000431135, -34.922812000073691 ], [ -57.989810000431135, -34.922940999727302 ], [ -57.989767000246843, -34.923327000440679 ], [ -57.989680999878203, -34.923735000369902 ], [ -57.989615999578689, -34.923991999631028 ], [ -57.989531000155466, -34.924249999837571 ], [ -57.989316000133272, -34.92480800038885 ], [ -57.988993999673312, -34.925536999832616 ], [ -57.988672000112672, -34.926095000383896 ], [ -57.988222000045198, -34.926674000104981 ], [ -57.987814000115975, -34.92718899957265 ], [ -57.987428000301918, -34.927533000147776 ], [ -57.986741000097027, -34.928047999615444 ], [ -57.986569000259124, -34.928176000122278 ], [ -57.985860999985107, -34.92869099958989 ], [ -57.98556099964037, -34.928926999681266 ], [ -57.984402000152159, -34.929785999724061 ], [ -57.983285999948919, -34.930622999651689 ], [ -57.982170999791776, -34.931459000432483 ], [ -57.982121000183952, -34.93149700038623 ], [ -57.981054999588537, -34.932296000360111 ], [ -57.979960000353685, -34.933112000218614 ], [ -57.979831999846851, -34.93319699964178 ], [ -57.980304000029548, -34.933626999686226 ], [ -57.981333999864148, -34.934571000051562 ], [ -57.981403000348166, -34.934634000258882 ], [ -57.982341999583582, -34.935493000301676 ], [ -57.984337999898742, -34.937316999879613 ], [ -57.98644099975229, -34.939248999941356 ], [ -57.988501000320866, -34.941114999657486 ], [ -57.9895090000403, -34.942037999953698 ], [ -57.9905389998749, -34.942961000249909 ], [ -57.991547999640431, -34.943862000430954 ], [ -57.992556000259185, -34.944828000012137 ], [ -57.992705999981865, -34.944955999619651 ], [ -57.993692999632174, -34.945857999846794 ], [ -57.99472300036615, -34.946802000212074 ], [ -57.995688999947333, -34.947681000277896 ], [ -57.996207999599449, -34.948167000206865 ], [ -57.996675999597642, -34.948603999674788 ], [ -57.997706000331618, -34.949548000040124 ], [ -57.998800000419635, -34.950556999805656 ], [ -57.999809000185166, -34.951457999986644 ], [ -58.000018999976817, -34.951642000377944 ], [ -58.000839000019766, -34.952359000167689 ], [ -58.0018469997392, -34.953281999564581 ], [ -58.002898999689023, -34.954225999929918 ], [ -58.004163000422068, -34.955373999810206 ], [ -58.005002000441948, -34.956135999876437 ], [ -58.006128000207013, -34.957175000126085 ], [ -58.00802699964629, -34.958924999888779 ], [ -58.00905700038021, -34.959848000184991 ], [ -58.010087000214867, -34.960749000366036 ], [ -58.011117000049467, -34.961692999832053 ], [ -58.011745000231542, -34.962269000314052 ], [ -58.012666000435559, -34.963112999665157 ], [ -58.013491999855887, -34.963871000446261 ], [ -58.014721999920312, -34.964998000257481 ], [ -58.015994000122987, -34.966153999607343 ], [ -58.017318000025625, -34.967358000271474 ], [ -58.018204000414244, -34.968158000291453 ], [ -58.019048999811446, -34.968921000403782 ], [ -58.020408000428858, -34.970148000329914 ], [ -58.020858999643053, -34.970577000328262 ], [ -58.021395000079167, -34.971048999611583 ], [ -58.021910000446098, -34.971498999679056 ], [ -58.022403999844698, -34.971928999723502 ], [ -58.023520000047938, -34.972958999558159 ], [ -58.027596000055325, -34.97664899975149 ], [ -58.029634999655457, -34.978537999628941 ], [ -58.031211000387316, -34.97995300013082 ], [ -58.03278900031205, -34.981369999825574 ], [ -58.033819000146707, -34.982293000121842 ], [ -58.035857999746838, -34.984158999837916 ], [ -58.036908999650564, -34.985147000433699 ], [ -58.03793900038454, -34.986068999784493 ], [ -58.038453999852152, -34.986519999898007 ], [ -58.04096499963498, -34.988815999658641 ], [ -58.041221999795425, -34.989051999749961 ], [ -58.041501000071037, -34.989395000278989 ], [ -58.041650999793774, -34.989737999908698 ], [ -58.041672999908997, -34.989888999677532 ], [ -58.041780000346705, -34.990060000368658 ], [ -58.041909000000317, -34.990145999837978 ], [ -58.042122999976414, -34.990211000137492 ], [ -58.042273999745248, -34.990211000137492 ], [ -58.042810000181305, -34.990447000228812 ], [ -58.043088999557654, -34.990704000389258 ], [ -58.043539999671225, -34.991133000387606 ], [ -58.04409700017635, -34.991669999970497 ], [ -58.045105999941882, -34.992571000151486 ], [ -58.046113999661316, -34.993494000447697 ], [ -58.04658699989011, -34.993901000330879 ], [ -58.047101000210944, -34.994394999729423 ], [ -58.048109999976475, -34.995339000094759 ], [ -58.048217000414184, -34.995424999564023 ], [ -58.049311999649035, -34.996389999998485 ], [ -58.05027700008344, -34.997270000110348 ], [ -58.051306999918097, -34.998235999691587 ], [ -58.052315999683572, -34.999136999872576 ], [ -58.053346000417548, -35.000038000053621 ], [ -58.054460999675371, -35.000982000418958 ], [ -58.055449000271096, -35.001925999884918 ], [ -58.056500000174822, -35.002871000296409 ], [ -58.057507999894256, -35.003814999762369 ], [ -58.059846999839124, -35.005959999754168 ], [ -58.062421999875369, -35.008385000067676 ], [ -58.064975999842488, -35.010810000381184 ], [ -58.067571999947802, -35.01321299968015 ], [ -58.06935300024071, -35.014844000250378 ], [ -58.070254000421755, -35.015637999993658 ], [ -58.07111299956523, -35.016409999621715 ], [ -58.072850999673847, -35.018041000191943 ], [ -58.075511000032577, -35.020423000321159 ], [ -58.078257999906725, -35.022740000150861 ], [ -58.079138000018645, -35.023533999894141 ], [ -58.080018000130565, -35.024349999752644 ], [ -58.080876000127262, -35.025144000395244 ], [ -58.083515000416867, -35.027524999579043 ], [ -58.085208000248997, -35.02907600005733 ], [ -58.086325999645112, -35.030099999615231 ], [ -58.087120000287769, -35.030894000257888 ], [ -58.087317000379244, -35.031036999657772 ], [ -58.087978000284465, -35.031517000209362 ], [ -58.089136999772677, -35.032568000113088 ], [ -58.089693000231762, -35.033060000318699 ], [ -58.089994999769374, -35.033339999741145 ], [ -58.090789000411974, -35.034049000061259 ], [ -58.091303999879642, -35.034521000243899 ], [ -58.092720999574453, -35.035808000239001 ], [ -58.093472000032762, -35.03647300032867 ], [ -58.093708000124082, -35.036409000075253 ], [ -58.09396500028447, -35.036216000168224 ], [ -58.09408500042241, -35.035959000007779 ], [ -58.094115000007207, -35.035893999708264 ], [ -58.094158000191499, -35.035657999616944 ], [ -58.094180000306721, -35.035400000309721 ], [ -58.09413700012243, -35.035164000218401 ], [ -58.094028999638567, -35.034907000057956 ], [ -58.093385999664122, -35.034134000383744 ], [ -58.093085000172607, -35.033705000385396 ], [ -58.09284900008123, -35.032739999950991 ], [ -58.092805999896939, -35.032288999837419 ], [ -58.092805999896939, -35.031623999747751 ], [ -58.092856999550861, -35.030905999911909 ], [ -58.09302099991919, -35.028577000428186 ], [ -58.093085000172607, -35.027890000223294 ], [ -58.093109000380025, -35.027448999671549 ], [ -58.09317099964187, -35.026280999768289 ], [ -58.093278000079579, -35.025851999769941 ], [ -58.093514000170956, -35.025272000002758 ], [ -58.093944000215402, -35.024629000028312 ], [ -58.094436999567847, -35.024113999661324 ], [ -58.094780000096875, -35.023835000284976 ], [ -58.095080999588447, -35.023663000447073 ], [ -58.097033999719258, -35.022118000245484 ], [ -58.097806000246692, -35.021542999809526 ], [ -58.10005899982292, -35.019864999769879 ], [ -58.101796999931537, -35.018577999774834 ], [ -58.10272499955903, -35.017877999869768 ], [ -58.106287000144903, -35.015191000064533 ], [ -58.108686000158741, -35.013382000279023 ], [ -58.113406000186728, -35.009822999831556 ], [ -58.113533999794242, -35.009737000362236 ], [ -58.113663000347174, -35.009650999993596 ], [ -58.115872999739111, -35.007977000138396 ], [ -58.116470000290235, -35.007534000393775 ], [ -58.117821999685475, -35.006528999913371 ], [ -58.119971999907818, -35.004929999919511 ], [ -58.120593999813195, -35.004436999667746 ], [ -58.121387999556475, -35.003814999762369 ], [ -58.122160000083909, -35.003191999810895 ], [ -58.123848999731536, -35.001883999746724 ], [ -58.126537999628965, -34.999801999962301 ], [ -58.126794999789354, -34.999587999986147 ], [ -58.127289000087217, -34.999201000125993 ], [ -58.127803999554885, -34.998794000242867 ], [ -58.129271999802882, -34.997634999855336 ], [ -58.130480999798237, -34.996679999882019 ], [ -58.132110000276271, -34.995393999933128 ], [ -58.132696000320095, -34.994931000165479 ], [ -58.132996999811667, -34.994695000074159 ], [ -58.13442800015207, -34.993576999778668 ], [ -58.136923000096317, -34.991626999786149 ], [ -58.13782500032346, -34.990939999581258 ], [ -58.139688999947339, -34.989478999656058 ], [ -58.139906000061785, -34.989308999910349 ], [ -58.140351999944812, -34.988961000050097 ], [ -58.140593000266733, -34.988773000373612 ], [ -58.141149999872539, -34.988322000260041 ], [ -58.145706999578351, -34.984805999996865 ], [ -58.14754499980188, -34.983387000209859 ], [ -58.149760000323738, -34.981643999870641 ], [ -58.152227999922218, -34.979685000362451 ], [ -58.154690000143376, -34.977764999954729 ], [ -58.156290000183333, -34.976520000097878 ], [ -58.159432000286529, -34.974073999715245 ], [ -58.160140999707323, -34.973473999925091 ], [ -58.160805999796992, -34.972744000435227 ], [ -58.161364000348271, -34.971906999608279 ], [ -58.161771000231454, -34.970919999957971 ], [ -58.161771000231454, -34.970876999773679 ], [ -58.161814000415745, -34.970748000120068 ], [ -58.161943000069357, -34.970018999776983 ], [ -58.162006000276676, -34.968137000222328 ], [ -58.162029000437997, -34.967464999809863 ], [ -58.162090999699842, -34.96481399986618 ], [ -58.162092999792094, -34.96469699986659 ], [ -58.162337000252307, -34.963515000217058 ], [ -58.162394000182928, -34.963238000033641 ], [ -58.162985999604132, -34.961339999741142 ], [ -58.16345200040945, -34.959845000046698 ], [ -58.163746999624266, -34.95889899958911 ], [ -58.164368000382865, -34.956908000403871 ], [ -58.164396999921564, -34.956806000196707 ], [ -58.165164000218397, -34.954144999791879 ], [ -58.165376000102299, -34.953411000117512 ], [ -58.166065000399385, -34.951058000426315 ], [ -58.166148999776453, -34.950770999781753 ], [ -58.166598999843927, -34.949290999879679 ], [ -58.167056000234197, -34.947762999562713 ], [ -58.16709300014179, -34.947639000139702 ], [ -58.167307000117944, -34.946845000396422 ], [ -58.167779000300584, -34.945191999710971 ], [ -58.167825999770059, -34.945066000195709 ], [ -58.167994000322835, -34.944612999989886 ], [ -58.168376999998486, -34.94331400034082 ], [ -58.168701999697475, -34.942209999791601 ], [ -58.168843999950582, -34.941766000000882 ], [ -58.168874000434755, -34.941673000208766 ], [ -58.169003000088367, -34.941201000026069 ], [ -58.169105000295474, -34.940855000258011 ], [ -58.169409999971492, -34.939827999662384 ], [ -58.169491000109531, -34.939473000378598 ], [ -58.169559999694172, -34.939162999572716 ], [ -58.169989999738675, -34.936094000137928 ], [ -58.1701610004298, -34.934807000142882 ], [ -58.170167999853277, -34.934759999774144 ], [ -58.170246999899064, -34.934185000237505 ], [ -58.170359999714151, -34.93333199957209 ], [ -58.170590000428149, -34.931588000086094 ], [ -58.170769999735683, -34.930031000230429 ], [ -58.170934000103955, -34.928606000166724 ], [ -58.171127000010983, -34.927446999779193 ], [ -58.17127699973372, -34.925772999923936 ], [ -58.171255999664595, -34.925085999719045 ], [ -58.171170000195332, -34.922103999799731 ], [ -58.171170000195332, -34.920858999942823 ], [ -58.171151000218458, -34.919738999555136 ], [ -58.171127000010983, -34.918262999837509 ], [ -58.171148000080109, -34.917425999909938 ], [ -58.1711910002644, -34.915859999639224 ], [ -58.17125100033337, -34.914425000013694 ], [ -58.171421000079022, -34.910335000260034 ], [ -58.17142700035572, -34.910172999983899 ], [ -58.171406000286652, -34.909657999616968 ], [ -58.171531999801914, -34.908785999873942 ], [ -58.171739000354535, -34.907355999579693 ], [ -58.171845999892923, -34.9066120003435 ], [ -58.17191300028469, -34.906150999768784 ], [ -58.172063000007427, -34.905110000326204 ], [ -58.172195999845485, -34.904193000306691 ], [ -58.172221000099057, -34.904015000192089 ], [ -58.172327999637446, -34.903393000286712 ], [ -58.172362000306009, -34.903140000310714 ], [ -58.172497000236319, -34.902100000014968 ], [ -58.172585999843989, -34.901419000086719 ], [ -58.172593000166785, -34.901326000294659 ], [ -58.17262900002828, -34.900861000434759 ], [ -58.172606999913057, -34.90017300018377 ], [ -58.17257999956729, -34.899339000394491 ], [ -58.172564999774863, -34.898865000119599 ], [ -58.172564999774863, -34.89799300037663 ], [ -58.172564999774863, -34.897363000102303 ], [ -58.172570000005464, -34.897092000195585 ], [ -58.172585999843989, -34.896269000014286 ], [ -58.17257999956729, -34.895636999647763 ], [ -58.172566999867115, -34.89416500011464 ], [ -58.172564999774863, -34.893930000069417 ], [ -58.172574000189911, -34.89342300007138 ], [ -58.172585999843989, -34.892728000396858 ], [ -58.172597000351232, -34.89239700042117 ], [ -58.172624999843833, -34.891535000240026 ], [ -58.17262900002828, -34.891398000217521 ], [ -58.17262900002828, -34.89109699982663 ], [ -58.17262900002828, -34.890319999967971 ], [ -58.17262900002828, -34.889959999554264 ], [ -58.17262900002828, -34.889745999578167 ], [ -58.172638000443328, -34.889624000247352 ], [ -58.172672000212572, -34.889187999926207 ], [ -58.172743999935619, -34.888678999835918 ], [ -58.172906000211697, -34.887526999771183 ], [ -58.172929000373017, -34.887364000348271 ], [ -58.173058000026629, -34.886594999959243 ], [ -58.173165999611172, -34.885944999661945 ], [ -58.173358000371366, -34.884793999643307 ], [ -58.173512000278549, -34.883866000015871 ], [ -58.173673999655307, -34.882692999882011 ], [ -58.173788000415868, -34.881870999746809 ], [ -58.17406699979216, -34.880389999798581 ], [ -58.174107999884257, -34.880229999614755 ], [ -58.174323999952605, -34.879382000079204 ], [ -58.174421999975266, -34.879089000057263 ], [ -58.174431000390314, -34.879059999619244 ], [ -58.174709999766662, -34.878437999713867 ], [ -58.174989000042274, -34.877751000408296 ], [ -58.175353999787205, -34.876850000227307 ], [ -58.175485999579166, -34.876541000366842 ], [ -58.175610999947651, -34.876249000390999 ], [ -58.176190999714834, -34.874897000096439 ], [ -58.176347999760367, -34.874495999590692 ], [ -58.17696300024221, -34.872922999896502 ], [ -58.177160000333686, -34.872469999690679 ], [ -58.177456999640754, -34.871785999624137 ], [ -58.177552000424441, -34.87154600024769 ], [ -58.177863000377101, -34.870764000158431 ], [ -58.178471999682984, -34.869232999703115 ], [ -58.17895899965805, -34.868008999915389 ], [ -58.179276999933563, -34.86730199968747 ], [ -58.179731000185484, -34.866291999875841 ], [ -58.180303999629814, -34.865036000411067 ], [ -58.181045999673131, -34.863407999979188 ], [ -58.181168999949364, -34.863138000118568 ], [ -58.181330000179344, -34.8626799996822 ], [ -58.181861000384799, -34.861160999780282 ], [ -58.18237799994472, -34.859686000108752 ], [ -58.182799999620272, -34.858482000343997 ], [ -58.18290700005798, -34.858180999953163 ], [ -58.182934999550525, -34.858093000391591 ], [ -58.183078999895883, -34.8576240003473 ], [ -58.183336000056329, -34.857001000395826 ], [ -58.183910000446133, -34.855816999754666 ], [ -58.18434499982186, -34.854919999758124 ], [ -58.184576999728733, -34.854212000383484 ], [ -58.18473099963586, -34.853740000200787 ], [ -58.18514199970349, -34.852576999628809 ], [ -58.185503000163294, -34.851550999978599 ], [ -58.185548000439837, -34.851411999863842 ], [ -58.185973000253739, -34.850076000307126 ], [ -58.186103999999546, -34.849663000147302 ], [ -58.186555000113117, -34.848139000014783 ], [ -58.186919999858048, -34.847281000018086 ], [ -58.187504999855832, -34.845760000023915 ], [ -58.187777999854745, -34.845048999611606 ], [ -58.188399999760122, -34.843955000422909 ], [ -58.188657999966665, -34.843396999871629 ], [ -58.189186000033828, -34.841887000384702 ], [ -58.189258999802973, -34.841680999878179 ], [ -58.18955900014771, -34.841401999602567 ], [ -58.189774000169905, -34.841250999833733 ], [ -58.189822999731632, -34.841194999949266 ], [ -58.189923999892642, -34.841080000041927 ], [ -58.190309999706699, -34.840607999859287 ], [ -58.19047700021332, -34.84053600013624 ], [ -58.19096000000394, -34.840329999629716 ], [ -58.192421999975295, -34.839704000439212 ], [ -58.194253999922125, -34.838919000211661 ], [ -58.196884999842837, -34.837793000446595 ], [ -58.198523999882639, -34.837091000449277 ], [ -58.199352000294539, -34.836737000312269 ], [ -58.200434999875313, -34.8362739996453 ], [ -58.20269099958989, -34.835308000064117 ], [ -58.205035999811514, -34.834308999860411 ], [ -58.206407000082947, -34.833725999954879 ], [ -58.207778000354381, -34.833142000003249 ], [ -58.209073999865154, -34.832589999728668 ], [ -58.20919299995694, -34.832540000120844 ], [ -58.210214000275869, -34.832102999753602 ], [ -58.212862000081202, -34.830972999804032 ], [ -58.214022999661665, -34.830479000405489 ], [ -58.215547999840283, -34.829829000108248 ], [ -58.216338000298435, -34.829492999901959 ], [ -58.218397999967692, -34.828612999790039 ], [ -58.219578000424349, -34.828119000391496 ], [ -58.2200289996386, -34.827925999585148 ], [ -58.220630000374172, -34.827669000324079 ], [ -58.221681000277897, -34.827218000210507 ], [ -58.222839999766109, -34.826724999958742 ], [ -58.223763000062377, -34.826338000098588 ], [ -58.224942999619714, -34.825608999755502 ], [ -58.225255999664626, -34.825294999664436 ], [ -58.225585999594159, -34.824964999734902 ], [ -58.226100999961147, -34.824214000175914 ], [ -58.22635900016769, -34.823505999901954 ], [ -58.226465999706079, -34.823184000341314 ], [ -58.226531000005593, -34.822133000437589 ], [ -58.226405999637109, -34.820967999773302 ], [ -58.226166000260662, -34.818720999574452 ], [ -58.22612300007637, -34.818334999760395 ], [ -58.226315999983399, -34.817390000248281 ], [ -58.226767000096913, -34.816489000067236 ], [ -58.227217000164387, -34.815888000230984 ], [ -58.228698000112558, -34.813914000031048 ], [ -58.229698000362362, -34.812609000105226 ], [ -58.229964000038535, -34.812262000291014 ], [ -58.230289999783622, -34.81183100020047 ], [ -58.230629000128204, -34.811382000179094 ], [ -58.231448000125056, -34.810320999814223 ], [ -58.232516999959557, -34.808935999796518 ], [ -58.232945999957906, -34.808357000075432 ], [ -58.233397000071477, -34.807734000123958 ], [ -58.233826000069826, -34.807134000333804 ], [ -58.234298000252465, -34.806511000382329 ], [ -58.234828999558658, -34.805828000361885 ], [ -58.236377999944693, -34.803834000138977 ], [ -58.237281000217934, -34.802670000420164 ], [ -58.237988999592631, -34.801726000054828 ], [ -58.23886899970455, -34.800567999713394 ], [ -58.238997000211327, -34.800439000059782 ], [ -58.239620000162859, -34.799838000223474 ], [ -58.240606999813167, -34.799043999580874 ], [ -58.241829999554795, -34.798100000114857 ], [ -58.242687999551492, -34.797456000094257 ], [ -58.244275999937429, -34.796297999752824 ], [ -58.245177000118417, -34.795611000447252 ], [ -58.246014000046046, -34.795009999711681 ], [ -58.246915000227034, -34.794323000406109 ], [ -58.247279999971965, -34.794044000130441 ], [ -58.247731000085537, -34.793743999785704 ], [ -58.248760999920194, -34.793229000318092 ], [ -58.249790999754794, -34.792649999697687 ], [ -58.25041299966017, -34.792371000321339 ], [ -58.250928000027159, -34.792069999930504 ], [ -58.251893999608342, -34.79138399977171 ], [ -58.25264500006665, -34.790739999751167 ], [ -58.253331000225444, -34.790010000261248 ], [ -58.254018000430335, -34.789237999733871 ], [ -58.254682999620684, -34.788530000359174 ], [ -58.256248999891397, -34.786855999604654 ], [ -58.2570649997499, -34.785955000322986 ], [ -58.257773000023917, -34.785181999749454 ], [ -58.258438000113586, -34.784474000374757 ], [ -58.259038999949837, -34.783701999847381 ], [ -58.259381999579603, -34.783337000102449 ], [ -58.260369000129231, -34.782264000083501 ], [ -58.260621000059075, -34.781959000407483 ], [ -58.261077000403191, -34.781406000086804 ], [ -58.261205000010705, -34.781258999603097 ], [ -58.261893000261693, -34.780461999721467 ], [ -58.26260099963639, -34.779645999862964 ], [ -58.263416000348116, -34.778744999681919 ], [ -58.264081000437784, -34.777994000122987 ], [ -58.264767999743356, -34.777157000195359 ], [ -58.264918000365356, -34.776921000104039 ], [ -58.265175999672579, -34.776577999574954 ], [ -58.265819999693178, -34.775719999578257 ], [ -58.266592000220612, -34.774625000343462 ], [ -58.266785000127641, -34.774389000252143 ], [ -58.267364999894767, -34.773637999793834 ], [ -58.267837000077463, -34.773059000072749 ], [ -58.26828700014488, -34.772458000236497 ], [ -58.268738000258452, -34.771899999685218 ], [ -58.269295999910412, -34.771255999664618 ], [ -58.269702999793537, -34.770805999597144 ], [ -58.270303999629846, -34.770204999760892 ], [ -58.270818999996834, -34.769647000108932 ], [ -58.271355999579669, -34.769088999557653 ], [ -58.271634999855337, -34.768874999581499 ], [ -58.271914000130948, -34.768530999905693 ], [ -58.271944999761899, -34.768489999813596 ], [ -58.272364000198422, -34.767952000184607 ], [ -58.272793000196771, -34.76741599974855 ], [ -58.273244000310342, -34.766835999981367 ], [ -58.273845000146594, -34.76606400035331 ], [ -58.274682000074222, -34.764969000219139 ], [ -58.275517999955696, -34.763918000315414 ], [ -58.276033000322684, -34.763231000110522 ], [ -58.276161999976296, -34.763081000387842 ], [ -58.276526999721227, -34.762609000205146 ], [ -58.276998999903867, -34.762008000368894 ], [ -58.277556999555827, -34.761279000025809 ], [ -58.277771000431301, -34.761020999819266 ], [ -58.278234000198893, -34.760415999798511 ], [ -58.279140999757317, -34.75922799987228 ], [ -58.279573999940112, -34.758660999805272 ], [ -58.280025000053683, -34.758124000222381 ], [ -58.2804750001211, -34.757565999671101 ], [ -58.281398000417369, -34.756365000044696 ], [ -58.28159100032434, -34.756085999769027 ], [ -58.2821489999763, -34.755378000394387 ], [ -58.282577999974706, -34.75481999984305 ], [ -58.282621000158997, -34.754776999658759 ], [ -58.283050000157345, -34.754219000006799 ], [ -58.283522000339985, -34.753597000101422 ], [ -58.283607999809306, -34.753488999617616 ], [ -58.283972999554237, -34.753017000334239 ], [ -58.284079999991945, -34.752888999827462 ], [ -58.284487999921225, -34.752331000175502 ], [ -58.284937999988642, -34.751751000408319 ], [ -58.285474999571534, -34.751150999718845 ], [ -58.285946999754174, -34.750506999698246 ], [ -58.286160999730328, -34.749734000024034 ], [ -58.286375999752522, -34.749112000118657 ], [ -58.28641899993687, -34.748982999565726 ], [ -58.28665500002819, -34.74825400012196 ], [ -58.28689100011951, -34.747481000447749 ], [ -58.286912000188636, -34.747396000125264 ], [ -58.287170000395179, -34.746686999805149 ], [ -58.287578000324402, -34.745785999624161 ], [ -58.287578000324402, -34.745785999624161 ], [ -58.28824300041407, -34.744927999627464 ], [ -58.28888700043467, -34.744111999768904 ], [ -58.289466000155755, -34.743340000140847 ], [ -58.290110000176298, -34.74248200014415 ], [ -58.290716000243151, -34.74160500017058 ], [ -58.292470000190292, -34.739070000180334 ], [ -58.293671999862852, -34.737375000256009 ], [ -58.2937150000472, -34.737332000071717 ], [ -58.294314999837354, -34.736451999959797 ], [ -58.294873000388634, -34.735658000216517 ], [ -58.295537999578983, -34.734734999920249 ], [ -58.296096000130262, -34.733899000038775 ], [ -58.296696999966514, -34.733083000180272 ], [ -58.297318999871891, -34.732225000183576 ], [ -58.297898999639074, -34.731388000255947 ], [ -58.298478000259479, -34.730573000443599 ], [ -58.299056999980507, -34.729735999616651 ], [ -58.299679999932039, -34.728877999619954 ], [ -58.300258999653067, -34.727998000407354 ], [ -58.300838000273473, -34.727203999764754 ], [ -58.300880999558444, -34.727139000364559 ], [ -58.301418000040655, -34.726345999768057 ], [ -58.301482000294016, -34.726260000298737 ], [ -58.302062000061198, -34.725423000371109 ], [ -58.302512000128672, -34.723984999707909 ], [ -58.302897999942729, -34.722697999712864 ], [ -58.302941000127021, -34.722569000059252 ], [ -58.303284999802884, -34.721452999856012 ], [ -58.303670999616884, -34.720143999745744 ], [ -58.304057000330261, -34.71889999993499 ], [ -58.304432999683172, -34.71770899987041 ], [ -58.304443000144317, -34.717677000193362 ], [ -58.304830000004472, -34.716368000083094 ], [ -58.30573100018546, -34.715509000040299 ], [ -58.306632000366506, -34.714629999974477 ], [ -58.307490000363202, -34.713793000046849 ], [ -58.308327000290774, -34.712934000004054 ], [ -58.309227999572499, -34.71201199975394 ], [ -58.309313999941082, -34.71192600028462 ], [ -58.310129999799585, -34.71121800001066 ], [ -58.310579999867059, -34.710766999897089 ], [ -58.311095000234047, -34.710273999645324 ], [ -58.311954000276842, -34.709373000363655 ], [ -58.312790000158316, -34.708621999905347 ], [ -58.313477000363207, -34.707892000415427 ], [ -58.314035000015224, -34.707354999933273 ], [ -58.314765000404407, -34.706668999774479 ], [ -58.315493999848172, -34.705961000399782 ], [ -58.316115999753549, -34.705380999733279 ], [ -58.316738999705024, -34.704780999943125 ], [ -58.317490000163332, -34.704136999922582 ], [ -58.3187990002736, -34.703128000157051 ], [ -58.319956999715714, -34.702249000091228 ], [ -58.320793999643342, -34.701561999886337 ], [ -58.321866999662291, -34.70070399988964 ], [ -58.32289700039621, -34.699888000031137 ], [ -58.32392700023081, -34.699094000287857 ], [ -58.324764000158439, -34.698451000313355 ], [ -58.325514999717427, -34.697849999577784 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.326888000081112, -34.696797999627961 ], [ -58.327532000101655, -34.696283000160292 ], [ -58.328518999752021, -34.695510999632859 ], [ -58.329398999863884, -34.69493199991183 ], [ -58.329914000230872, -34.694545000051676 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.361349000156167, -34.664289999683717 ], [ -58.362873000288687, -34.665405999886957 ], [ -58.363837999823772, -34.666114000160917 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370036999707736, -34.658921000303906 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.370989999588744, -34.656272999599196 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371678999885887, -34.65424399956089 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373216999764679, -34.650751000358355 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.375318000425352, -34.647230999910676 ], [ -58.375832999892964, -34.645235999641613 ], [ -58.376004999730924, -34.644549000336042 ], [ -58.376218999707021, -34.643691000339345 ], [ -58.376487000374709, -34.642702999743619 ], [ -58.376497999982689, -34.642660999605425 ], [ -58.376841999658495, -34.641330000279254 ], [ -58.377034999565524, -34.640279000375529 ], [ -58.377678000439346, -34.638154999553535 ], [ -58.378128999653597, -34.636673999605364 ], [ -58.378708000273946, -34.634828999958359 ], [ -58.379309000110254, -34.63287599982749 ], [ -58.379545000201574, -34.632125000268502 ], [ -58.379179999557266, -34.631416999994485 ], [ -58.379051999949809, -34.631224000087514 ], [ -58.37880999958179, -34.630740000250739 ], [ -58.378687000204877, -34.630493999698274 ], [ -58.378718999881926, -34.630336999652741 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381406999733201, -34.623260999795264 ], [ -58.381390999894677, -34.622941000326875 ], [ -58.381411999963802, -34.622768999589596 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.382957000165391, -34.622210999937636 ], [ -58.384372999814047, -34.62227600023715 ], [ -58.385810999577927, -34.62236199970647 ], [ -58.387162999872487, -34.622447000029013 ], [ -58.388642999774561, -34.622512000328527 ], [ -58.389501999817412, -34.62259799979779 ], [ -58.389887999631412, -34.622618999866916 ], [ -58.391497000086417, -34.622726000304624 ], [ -58.392934999850297, -34.622811999773944 ], [ -58.393771999777925, -34.622854999958236 ], [ -58.394952000234582, -34.62292000025775 ], [ -58.395360000163862, -34.622962000395944 ], [ -58.396367999883239, -34.623047999865264 ], [ -58.397826999716244, -34.623219999703167 ], [ -58.399286000448512, -34.623392000440447 ], [ -58.400423999867655, -34.623542000163127 ], [ -58.400960000303712, -34.623606000416544 ], [ -58.401281999864352, -34.623670999816738 ], [ -58.402161999976272, -34.623756000139224 ], [ -58.402483000390134, -34.622425999959887 ], [ -58.402804999950774, -34.621138999964842 ], [ -58.403191999810929, -34.619829999854574 ], [ -58.403535000339957, -34.618843000204265 ], [ -58.404136000176209, -34.617039999796134 ], [ -58.404565000174557, -34.615817000054449 ], [ -58.404907999804323, -34.614636999597792 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405959999754145, -34.610560000443627 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406173999730242, -34.609187000079942 ], [ -58.406539000374551, -34.609100999711302 ], [ -58.408406000136779, -34.609272000402427 ], [ -58.408791999950779, -34.609208000149067 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 295.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.530144, -34.639449 ], [ -58.531104, -34.639471 ], [ -58.53219, -34.639557 ], [ -58.5333, -34.63964 ], [ -58.534985, -34.639771 ], [ -58.535833, -34.639824 ], [ -58.537258, -34.639947 ], [ -58.538622, -34.640041 ], [ -58.539207, -34.640114 ], [ -58.540009, -34.640141 ], [ -58.54141, -34.640184 ], [ -58.542854, -34.64021 ], [ -58.543511, -34.640208 ], [ -58.544079, -34.64019 ], [ -58.544715, -34.640168 ], [ -58.545142, -34.640156 ], [ -58.546276, -34.64013 ], [ -58.548863, -34.640062 ], [ -58.54945, -34.640044 ], [ -58.551081, -34.639988 ], [ -58.552669, -34.639942 ], [ -58.553205, -34.639953 ], [ -58.554241, -34.639973 ], [ -58.555957, -34.639909 ], [ -58.557236, -34.639889 ], [ -58.558691, -34.63989 ], [ -58.560129, -34.640048 ], [ -58.560987, -34.64013 ], [ -58.561598, -34.640219 ], [ -58.563082, -34.640459 ], [ -58.564255, -34.640663 ], [ -58.565736, -34.640903 ], [ -58.565524, -34.641767 ], [ -58.565316, -34.642664 ], [ -58.565125, -34.643555 ], [ -58.564931, -34.644446 ], [ -58.564736, -34.645341 ], [ -58.564544, -34.646231 ], [ -58.564332, -34.647118 ], [ -58.564143, -34.648009 ], [ -58.563964, -34.64892 ], [ -58.563935, -34.649127 ], [ -58.563753, -34.6501 ], [ -58.563669, -34.650548 ], [ -58.563563, -34.651215 ], [ -58.563421, -34.651982 ], [ -58.563362, -34.652318 ], [ -58.563297, -34.65261 ], [ -58.56319, -34.653261 ], [ -58.563141, -34.653662 ], [ -58.562946, -34.654668 ], [ -58.562782, -34.655646 ], [ -58.562589, -34.656839 ], [ -58.562581, -34.65694 ], [ -58.562368, -34.658042 ], [ -58.562176, -34.659217 ], [ -58.56195, -34.660514 ], [ -58.56181, -34.661535 ], [ -58.561529, -34.663115 ], [ -58.561288, -34.664639 ], [ -58.561101, -34.66553 ], [ -58.56096, -34.666431 ], [ -58.560811, -34.667573 ], [ -58.560615, -34.668448 ], [ -58.560549, -34.668841 ], [ -58.561169, -34.669349 ], [ -58.561505, -34.66966 ], [ -58.561871, -34.669989 ], [ -58.562605, -34.670653 ], [ -58.563388, -34.671408 ], [ -58.562244, -34.672221 ], [ -58.561118, -34.673086 ], [ -58.559977, -34.673946 ], [ -58.558862, -34.674751 ], [ -58.558312, -34.675175 ], [ -58.557751, -34.675619 ], [ -58.558532, -34.676281 ], [ -58.557433, -34.677133 ], [ -58.556347, -34.677964 ], [ -58.555204, -34.678825 ], [ -58.554055, -34.67967 ], [ -58.552937, -34.68047 ], [ -58.553682, -34.681165 ], [ -58.554442, -34.681809 ], [ -58.555199, -34.682524 ], [ -58.555644, -34.682896 ], [ -58.555934, -34.683201 ], [ -58.557034, -34.682377 ], [ -58.55778, -34.683052 ], [ -58.55853, -34.683736 ], [ -58.559311, -34.684434 ], [ -58.55933, -34.684457 ], [ -58.559955, -34.68499 ], [ -58.560206, -34.685259 ], [ -58.560405, -34.685267 ], [ -58.560624, -34.685224 ], [ -58.560852, -34.685216 ], [ -58.561079, -34.685267 ], [ -58.561184, -34.685376 ], [ -58.561236, -34.685599 ], [ -58.561283, -34.685774 ], [ -58.56135, -34.685903 ], [ -58.561416, -34.685993 ], [ -58.561559, -34.686094 ], [ -58.562571, -34.68654 ], [ -58.563522, -34.687066 ], [ -58.564438, -34.687605 ], [ -58.565234, -34.688068 ], [ -58.566244, -34.688677 ], [ -58.567137, -34.689201 ], [ -58.568318, -34.689893 ], [ -58.56951, -34.69059 ], [ -58.570679, -34.69129 ], [ -58.571319, -34.69176 ], [ -58.571955, -34.692313 ], [ -58.572313, -34.692639 ], [ -58.572534, -34.692828 ], [ -58.573158, -34.693381 ], [ -58.573749, -34.693942 ], [ -58.574792, -34.695127 ], [ -58.575704, -34.696207 ], [ -58.576413, -34.697018 ], [ -58.576747, -34.697421 ], [ -58.577349, -34.698113 ], [ -58.577742, -34.698582 ], [ -58.578222, -34.699127 ], [ -58.578719, -34.699708 ], [ -58.579299, -34.700373 ], [ -58.579973, -34.701112 ], [ -58.580199, -34.70136 ], [ -58.580598, -34.701768 ], [ -58.581049, -34.702226 ], [ -58.581145, -34.702336 ], [ -58.581852, -34.703059 ], [ -58.582597, -34.703815 ], [ -58.583392, -34.704645 ], [ -58.584054, -34.705339 ], [ -58.58483, -34.706164 ], [ -58.585131, -34.70648 ], [ -58.585333, -34.706683 ], [ -58.585629, -34.706995 ], [ -58.585975, -34.707353 ], [ -58.586326, -34.707756 ], [ -58.586656, -34.708089 ], [ -58.586862, -34.708309 ], [ -58.587143, -34.708582 ], [ -58.587781, -34.70919 ], [ -58.588183, -34.709571 ], [ -58.58876, -34.710112 ], [ -58.588948, -34.710318 ], [ -58.589511, -34.710917 ], [ -58.590449, -34.7118 ], [ -58.590716, -34.71207 ], [ -58.591109, -34.712456 ], [ -58.591332, -34.712669 ], [ -58.591645, -34.712976 ], [ -58.591962, -34.713305 ], [ -58.592137, -34.713524 ], [ -58.59215, -34.713538 ], [ -58.592524, -34.714241 ], [ -58.592661, -34.714518 ], [ -58.592766, -34.714748 ], [ -58.592841, -34.714906 ], [ -58.592963, -34.715123 ], [ -58.593023, -34.71523 ], [ -58.593142, -34.715415 ], [ -58.593232, -34.715539 ], [ -58.593394, -34.715722 ], [ -58.593712, -34.716053 ], [ -58.59376, -34.716096 ], [ -58.594266, -34.716619 ], [ -58.594799, -34.71719 ], [ -58.594999, -34.71749 ], [ -58.595222, -34.717787 ], [ -58.595421, -34.718107 ], [ -58.59564, -34.718425 ], [ -58.596027, -34.719026 ], [ -58.596442, -34.719701 ], [ -58.596517, -34.719878 ], [ -58.596688, -34.720196 ], [ -58.597322, -34.721526 ], [ -58.59733, -34.721834 ], [ -58.597504, -34.722214 ], [ -58.597675, -34.722586 ], [ -58.597896, -34.723088 ], [ -58.598164, -34.723695 ], [ -58.598212, -34.723804 ], [ -58.598685, -34.724824 ], [ -58.598718, -34.724897 ], [ -58.59936, -34.726217 ], [ -58.599928, -34.727302 ], [ -58.600143, -34.727751 ], [ -58.600656, -34.728794 ], [ -58.601131, -34.729739 ], [ -58.601369, -34.730193 ], [ -58.60193, -34.731319 ], [ -58.602448, -34.732371 ], [ -58.602559, -34.732635 ], [ -58.602594, -34.732686 ], [ -58.602749, -34.73307 ], [ -58.602864, -34.733438 ], [ -58.602935, -34.733667 ], [ -58.603061, -34.734083 ], [ -58.603135, -34.734338 ], [ -58.60333, -34.735012 ], [ -58.603484, -34.735484 ], [ -58.603585, -34.735817 ], [ -58.603654, -34.736043 ], [ -58.60384, -34.736552 ], [ -58.604055, -34.73708 ], [ -58.604282, -34.737577 ], [ -58.604399, -34.737835 ], [ -58.604738, -34.738599 ], [ -58.604773, -34.738673 ], [ -58.604866999999899, -34.738872 ], [ -58.60504, -34.739224 ], [ -58.605197, -34.739489 ], [ -58.605496, -34.739967 ], [ -58.605627, -34.740157 ], [ -58.605867, -34.740505 ], [ -58.606155, -34.740956 ], [ -58.606416, -34.741355 ], [ -58.606574, -34.74161 ], [ -58.606808, -34.741958 ], [ -58.607238, -34.74259 ], [ -58.6075, -34.742984 ], [ -58.607669, -34.743244 ], [ -58.607712, -34.743309 ], [ -58.607951, -34.743681 ], [ -58.608367, -34.744322 ], [ -58.608443, -34.744245 ], [ -58.6085, -34.744327 ], [ -58.609396, -34.74566 ], [ -58.610117, -34.746756 ], [ -58.610307, -34.747057 ], [ -58.610671, -34.747565 ], [ -58.610865, -34.747853 ], [ -58.611247, -34.748439 ], [ -58.611706, -34.749143 ], [ -58.611971, -34.749566 ], [ -58.612409, -34.750193 ], [ -58.61272, -34.750681 ], [ -58.612985, -34.751097 ], [ -58.61312, -34.751292 ], [ -58.613547, -34.751949 ], [ -58.613682, -34.752145 ], [ -58.613876, -34.752504 ], [ -58.614125, -34.753233 ], [ -58.614466, -34.754407 ], [ -58.614715, -34.755499 ], [ -58.614845, -34.756032 ], [ -58.614975, -34.756508 ], [ -58.615341, -34.75744 ], [ -58.61539, -34.757567 ], [ -58.615448999999899, -34.757689 ], [ -58.615502, -34.757774 ], [ -58.615569, -34.757854 ], [ -58.615633, -34.757922 ], [ -58.615731, -34.758002 ], [ -58.615842, -34.758071 ], [ -58.615947, -34.758126 ], [ -58.616096, -34.75818 ], [ -58.616208, -34.758217 ], [ -58.616326999999899, -34.758255 ], [ -58.616436, -34.758288 ], [ -58.616534, -34.758331 ], [ -58.616659, -34.75838 ], [ -58.616751, -34.758426 ], [ -58.616835, -34.75847 ], [ -58.61692, -34.758518 ], [ -58.617001, -34.758573 ], [ -58.617065, -34.758633 ], [ -58.617132, -34.75869 ], [ -58.617199, -34.758769 ], [ -58.617242, -34.758839 ], [ -58.617298, -34.758944 ], [ -58.617355, -34.759054 ], [ -58.617394, -34.759145 ], [ -58.617423, -34.759244 ], [ -58.617449, -34.759326 ], [ -58.617488, -34.759453 ], [ -58.617524, -34.759541 ], [ -58.61755, -34.759606 ], [ -58.6176, -34.759708 ], [ -58.61766, -34.759801 ], [ -58.617733, -34.759894 ], [ -58.617797, -34.759954 ], [ -58.617871, -34.760025 ], [ -58.617983, -34.760082 ], [ -58.618054, -34.760126 ], [ -58.618904, -34.760307 ], [ -58.62021, -34.760547 ], [ -58.620701, -34.760639 ], [ -58.622842, -34.761003 ], [ -58.623036, -34.761053 ], [ -58.623642, -34.761125 ], [ -58.624431999999899, -34.761252 ], [ -58.625774, -34.761479 ], [ -58.626996, -34.761637 ], [ -58.628243, -34.761845 ], [ -58.629462, -34.762056 ], [ -58.629969, -34.762142 ], [ -58.630685, -34.762264 ], [ -58.631394, -34.762395 ], [ -58.632453, -34.762561 ], [ -58.632557, -34.762589 ], [ -58.633789, -34.76279 ], [ -58.635278, -34.763059 ], [ -58.635758, -34.763151 ], [ -58.635811, -34.763158 ], [ -58.637482, -34.763707 ], [ -58.637614, -34.76374 ], [ -58.638247, -34.764068 ], [ -58.639026, -34.764483 ], [ -58.639068, -34.764505 ], [ -58.639822, -34.765 ], [ -58.640465, -34.765512 ], [ -58.641123, -34.766036 ], [ -58.641735, -34.766553 ], [ -58.642394, -34.767139 ], [ -58.643319, -34.767877 ], [ -58.643579, -34.768137 ], [ -58.644166, -34.768619 ], [ -58.644369, -34.768785 ], [ -58.645126, -34.769326 ], [ -58.646085, -34.770013 ], [ -58.64705, -34.770724 ], [ -58.648017, -34.7714 ], [ -58.649024, -34.772108 ], [ -58.649823, -34.771419 ], [ -58.650717, -34.77068 ], [ -58.651541, -34.769908 ], [ -58.65232, -34.769209 ], [ -58.653135, -34.768506 ], [ -58.653849, -34.767883 ], [ -58.654552, -34.76723 ], [ -58.655395, -34.765832 ], [ -58.656056, -34.764674 ], [ -58.656086, -34.764608 ], [ -58.656154999999899, -34.764478 ], [ -58.65655, -34.763794 ], [ -58.656604, -34.76368 ], [ -58.657202, -34.762703 ], [ -58.657682, -34.762007 ], [ -58.657845, -34.761869 ], [ -58.6582, -34.761616 ], [ -58.658767, -34.761284 ], [ -58.659181, -34.76106 ], [ -58.65974, -34.760873 ], [ -58.660495, -34.760711 ], [ -58.661052, -34.760687 ], [ -58.66133, -34.760682 ], [ -58.66197, -34.760689 ], [ -58.662399, -34.760692 ], [ -58.662858, -34.760693 ], [ -58.663725, -34.76071 ], [ -58.664388, -34.760732 ], [ -58.664613, -34.760735 ], [ -58.665428, -34.760749 ], [ -58.665676, -34.760742 ], [ -58.666352, -34.76076 ], [ -58.667079, -34.760748 ], [ -58.668094, -34.760815 ], [ -58.669154, -34.760763 ], [ -58.670356, -34.76059 ], [ -58.670664, -34.760496 ], [ -58.67104, -34.760295 ], [ -58.671448, -34.760035 ], [ -58.671952, -34.75965 ], [ -58.672552, -34.759185 ], [ -58.673121, -34.758781 ], [ -58.673167, -34.758723 ], [ -58.673782, -34.758255 ], [ -58.674366, -34.757805 ], [ -58.674477, -34.757726 ], [ -58.674954, -34.757348 ], [ -58.675237, -34.757163 ], [ -58.675592, -34.756872 ], [ -58.675982, -34.756585 ], [ -58.67673, -34.756022 ], [ -58.677375, -34.755508 ], [ -58.678568, -34.754556 ], [ -58.679754, -34.753601 ], [ -58.680441, -34.753031 ], [ -58.681153, -34.752469 ], [ -58.681877, -34.751881 ], [ -58.68256, -34.751328 ], [ -58.683302, -34.750728 ], [ -58.684003, -34.750155 ], [ -58.684686, -34.749602 ], [ -58.685395, -34.749036 ], [ -58.686035, -34.748516 ], [ -58.686687, -34.747982 ], [ -58.690217, -34.745191 ], [ -58.691641, -34.744076 ], [ -58.692344, -34.743511 ], [ -58.692973, -34.743011 ], [ -58.693756, -34.7424 ], [ -58.694493, -34.743041 ], [ -58.695145, -34.743609 ], [ -58.695874, -34.744234 ], [ -58.696537, -34.744814 ], [ -58.697228, -34.745401 ], [ -58.697987, -34.746088 ], [ -58.699192, -34.747372 ], [ -58.699941, -34.74799 ], [ -58.700735, -34.748639 ], [ -58.701536, -34.74934 ], [ -58.702314, -34.750015 ], [ -58.703119, -34.750729 ], [ -58.703931, -34.751436 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 294.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.46028999968371, -34.688879999612254 ], [ -58.460955999819475, -34.688215000421906 ], [ -58.462221999745452, -34.68692800042686 ], [ -58.462859000342576, -34.686289999783639 ], [ -58.462951000088538, -34.686198000037621 ], [ -58.462930000019469, -34.686069000384009 ], [ -58.462843999650829, -34.685897999692884 ], [ -58.462907999904246, -34.685769000039272 ], [ -58.464475000221057, -34.684159999584267 ], [ -58.466170000145326, -34.682443000444096 ], [ -58.467050000257245, -34.68154200026305 ], [ -58.467134999680468, -34.68162799973237 ], [ -58.467457000140428, -34.681928000077107 ], [ -58.467821999885359, -34.682249999637747 ], [ -58.469646000362559, -34.683987999746364 ], [ -58.470054000291839, -34.683666000185724 ], [ -58.470353999737256, -34.683430000094404 ], [ -58.470546999644284, -34.683280000371667 ], [ -58.471877999869776, -34.684525000228518 ], [ -58.472006000376552, -34.684739000204672 ], [ -58.472221000398804, -34.684845999743061 ], [ -58.473272000302529, -34.684074000114947 ], [ -58.473444000140432, -34.683944999562016 ], [ -58.474623999697769, -34.683022000165124 ], [ -58.474109000230158, -34.682593000166776 ], [ -58.473529999609752, -34.682077999799787 ], [ -58.472885999589153, -34.681520000147827 ], [ -58.473808999885421, -34.680811999873868 ], [ -58.474946000157729, -34.679932999808045 ], [ -58.476062000360969, -34.679052999696125 ], [ -58.476747999620443, -34.678538000228457 ], [ -58.477220999849237, -34.678152000414457 ], [ -58.477929000123197, -34.677614999932246 ], [ -58.477262999987431, -34.677036000211217 ], [ -58.476470000290249, -34.6763279999372 ], [ -58.475546999994037, -34.675468999894406 ], [ -58.474538000228506, -34.674546999644292 ], [ -58.475117999995689, -34.67409600043004 ], [ -58.475696999716718, -34.673667000431692 ], [ -58.476684000266346, -34.674589999828584 ], [ -58.477649999847586, -34.675425999710058 ], [ -58.477693000031877, -34.6752980001026 ], [ -58.478186000283642, -34.674975999642641 ], [ -58.478379000190671, -34.674954000426737 ], [ -58.478443999590866, -34.675148000379863 ], [ -58.478551000028574, -34.675425999710058 ], [ -58.478830000304242, -34.675876999823629 ], [ -58.478980000026922, -34.676135000030172 ], [ -58.479924000392259, -34.676993000026869 ], [ -58.481103999949596, -34.678000999746303 ], [ -58.481897999692876, -34.678687999951194 ], [ -58.482284999553031, -34.679010000411154 ], [ -58.482671000266407, -34.679375000156085 ], [ -58.483057000080464, -34.679674999601502 ], [ -58.483465000009687, -34.680040000245754 ], [ -58.483915000077161, -34.680426000059811 ], [ -58.484430000444149, -34.68083399998909 ], [ -58.485911000392321, -34.679589000132182 ], [ -58.486361999606572, -34.679182000249057 ], [ -58.486854999858338, -34.678774000319834 ], [ -58.487628000431812, -34.678022999861525 ], [ -58.48782100033884, -34.677851000023566 ], [ -58.489386999710234, -34.676498999729006 ], [ -58.491768999839451, -34.674202999968429 ], [ -58.492197999837799, -34.673752999900955 ], [ -58.492692000135662, -34.673173000133829 ], [ -58.493463999763719, -34.672400999606396 ], [ -58.494536999782667, -34.671264000233407 ], [ -58.495739000354547, -34.670040999592402 ], [ -58.497412000163649, -34.671435000025213 ], [ -58.497926999631261, -34.671799999770144 ], [ -58.498249000091221, -34.672057999976687 ], [ -58.498936000296112, -34.672508000044104 ], [ -58.499150000272266, -34.672636999697716 ], [ -58.499751000108517, -34.672959000157675 ], [ -58.500115999853449, -34.673152000064704 ], [ -58.500694999574534, -34.673452000409441 ], [ -58.501704000239386, -34.673988999992332 ], [ -58.502647999705403, -34.674482000244097 ], [ -58.503184000141459, -34.674760999620389 ], [ -58.503592000070682, -34.674975999642641 ], [ -58.504127999607476, -34.675275999987377 ], [ -58.504536000436019, -34.675512000078697 ], [ -58.505243999810716, -34.675920000007977 ], [ -58.505415999648619, -34.676027000445686 ], [ -58.506231000360344, -34.676585000097646 ], [ -58.506446000382596, -34.676734999820326 ], [ -58.506575000036207, -34.676821000188966 ], [ -58.507283000310167, -34.677314999587509 ], [ -58.507433000032904, -34.67744400014044 ], [ -58.507797999777836, -34.67768000023176 ], [ -58.508634999705407, -34.676949999842577 ], [ -58.509364000048549, -34.676305999821977 ], [ -58.510094000437732, -34.675640999732309 ], [ -58.510801999812429, -34.675018999826932 ], [ -58.511810000431126, -34.674032000176624 ], [ -58.512583000105337, -34.673238000433344 ], [ -58.513312000448423, -34.672464999859812 ], [ -58.514170999591897, -34.671842999954436 ], [ -58.515071999772942, -34.671155999749544 ], [ -58.515693999678319, -34.671627999932184 ], [ -58.516337999698862, -34.672101000160978 ], [ -58.516809999881559, -34.672443999790687 ], [ -58.517110000226296, -34.672185999584144 ], [ -58.51773300017777, -34.672657999766841 ], [ -58.518183000245244, -34.673002000342024 ], [ -58.518955999919399, -34.673452000409441 ], [ -58.519707000377707, -34.672787000319772 ], [ -58.520028999938347, -34.672508000044104 ], [ -58.520457999936696, -34.672143000299172 ], [ -58.520908000004169, -34.671756999585796 ], [ -58.521981000023118, -34.672508000044104 ], [ -58.522946999604301, -34.673216000318121 ], [ -58.523526000224706, -34.673667000431692 ], [ -58.524448999621598, -34.672851999719967 ], [ -58.525414000056003, -34.671992999677173 ], [ -58.526379999637243, -34.671155999749544 ], [ -58.527324000002579, -34.67031999986807 ], [ -58.528289999583762, -34.669460999825219 ], [ -58.529211999833876, -34.66864600001287 ], [ -58.530135000130088, -34.667830000154368 ], [ -58.530692999782048, -34.667314999787379 ], [ -58.531336999802647, -34.667594000062991 ], [ -58.531487000424704, -34.667659000362505 ], [ -58.531980999823247, -34.667873000338659 ], [ -58.532689000097264, -34.668194999899299 ], [ -58.53285999988907, -34.668260000198813 ], [ -58.533332000071709, -34.668474000174911 ], [ -58.533998000207475, -34.668732000381453 ], [ -58.535005999926909, -34.669396999571802 ], [ -58.535863999923606, -34.669955000123139 ], [ -58.536744000035526, -34.670512999775099 ], [ -58.537580999963154, -34.671049000211156 ], [ -58.538438999959851, -34.67158599979399 ], [ -58.539319000071771, -34.672165000414395 ], [ -58.540177000068468, -34.672723000066355 ], [ -58.541057000180388, -34.673280999718315 ], [ -58.541829999854542, -34.673796000085304 ], [ -58.542559000197684, -34.674246000152721 ], [ -58.543203000218227, -34.674654000082 ], [ -58.543890000423119, -34.675105000195572 ], [ -58.544554999613524, -34.675555000262989 ], [ -58.544854999958261, -34.67577000028524 ], [ -58.545219999703193, -34.67600600037656 ], [ -58.545906999908084, -34.676477999659937 ], [ -58.546785999973906, -34.677079000395509 ], [ -58.547645000016701, -34.67768000023176 ], [ -58.548331000175494, -34.678130000299234 ], [ -58.548652999736134, -34.678366000390554 ], [ -58.548760000173843, -34.678430999790749 ], [ -58.549725999755026, -34.679139000064765 ], [ -58.550562999682654, -34.679738999854919 ], [ -58.551463999863643, -34.680404999990685 ], [ -58.552365000044688, -34.680983999711771 ], [ -58.553201999972259, -34.681563000332176 ], [ -58.553717000339248, -34.681198999734022 ], [ -58.554832999643168, -34.680382999875519 ], [ -58.555969999915533, -34.679524999878822 ], [ -58.557107000187841, -34.678666999882068 ], [ -58.558202000322012, -34.677851000023566 ], [ -58.559296000410029, -34.677014000095994 ], [ -58.560389999598783, -34.67617800021452 ], [ -58.561462999617675, -34.675341000286892 ], [ -58.562622000005263, -34.674461000174972 ], [ -58.563415999748543, -34.675169000448989 ], [ -58.564210000391142, -34.675833999639337 ], [ -58.564938999834908, -34.676541999913297 ], [ -58.565669000224148, -34.677185999933897 ], [ -58.566419999783136, -34.677851000023566 ], [ -58.567193000356667, -34.678581000412805 ], [ -58.567878999616084, -34.679160000133834 ], [ -58.568480000351713, -34.679717999785794 ], [ -58.569187999726353, -34.680318999622102 ], [ -58.569746000277632, -34.680855000058159 ], [ -58.570324999998718, -34.681349000356022 ], [ -58.570583000205261, -34.681585000447342 ], [ -58.570861999581552, -34.68186399982369 ], [ -58.571569999855569, -34.682207000352719 ], [ -58.571783999831666, -34.68233600000633 ], [ -58.571827000016015, -34.68242200037497 ], [ -58.571977999784849, -34.682528999913359 ], [ -58.572128000406849, -34.68265799956697 ], [ -58.572234999945238, -34.682786000073804 ], [ -58.573007999619449, -34.683495000393918 ], [ -58.573802000262049, -34.684202999768559 ], [ -58.574766999797134, -34.685081999834381 ], [ -58.575711000162471, -34.685918999762009 ], [ -58.576977000088448, -34.68707800014954 ], [ -58.577727999647436, -34.687765000354432 ], [ -58.578286000198716, -34.687357000425209 ], [ -58.578350999598911, -34.687420999779249 ], [ -58.578930000219316, -34.688021999615557 ], [ -58.579723999962596, -34.687420999779249 ], [ -58.580432000236556, -34.686885000242512 ], [ -58.581097000326281, -34.686390999944649 ], [ -58.58167600004731, -34.68692800042686 ], [ -58.582276999883618, -34.68748600007882 ], [ -58.582106000091812, -34.687613999686278 ], [ -58.582641999628549, -34.68810799998414 ], [ -58.583415000202081, -34.688795000189089 ], [ -58.583993999923109, -34.6893099996567 ], [ -58.584530000359166, -34.689802999908466 ], [ -58.585088000011126, -34.690297000206328 ], [ -58.585667999778309, -34.690811999673997 ], [ -58.585303000033377, -34.691090999949665 ], [ -58.586226000329589, -34.691905999762014 ], [ -58.587105000395411, -34.692678000289447 ], [ -58.586310999752811, -34.693279000125699 ], [ -58.587212999979897, -34.694116000053327 ], [ -58.588135000230011, -34.69493199991183 ], [ -58.58738399977176, -34.695510999632859 ], [ -58.586911999589063, -34.695876000277167 ], [ -58.586032000376463, -34.696541000366835 ], [ -58.586096999776657, -34.696883999996544 ], [ -58.586267999568463, -34.697807000292812 ], [ -58.586440000305743, -34.698707999574481 ], [ -58.586590000028423, -34.699587999686401 ], [ -58.586761999866383, -34.700510999982612 ], [ -58.586933999704286, -34.701433000232726 ], [ -58.587084000326286, -34.702355999629617 ], [ -58.585582000309046, -34.702528000366897 ], [ -58.584143999645846, -34.702699000158702 ], [ -58.582705999881966, -34.702870999996605 ], [ -58.581847999885269, -34.702978000434314 ], [ -58.582641999628549, -34.703794000292817 ], [ -58.583436000271149, -34.704630000174348 ], [ -58.584422999921458, -34.704522999736582 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 293.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.751452, -34.520568 ], [ -58.754007, -34.519904 ], [ -58.751576, -34.518897 ], [ -58.756007, -34.517528 ], [ -58.756992, -34.517235 ], [ -58.758056, -34.516905 ], [ -58.759017, -34.516611 ], [ -58.760058, -34.516272 ], [ -58.761066, -34.515972 ], [ -58.762107, -34.51564 ], [ -58.763120999999899, -34.515309 ], [ -58.764136, -34.514978 ], [ -58.764984, -34.514723 ], [ -58.765936, -34.514441 ], [ -58.767011, -34.51408 ], [ -58.768102, -34.513705 ], [ -58.769272, -34.513306 ], [ -58.769303, -34.513299 ], [ -58.770335, -34.512957 ], [ -58.770381, -34.512942 ], [ -58.771478, -34.512597 ], [ -58.771505, -34.512585 ], [ -58.772603, -34.512232 ], [ -58.773711, -34.511906 ], [ -58.774645, -34.511607 ], [ -58.775035, -34.512538 ], [ -58.7753, -34.513173 ], [ -58.776704, -34.512777 ], [ -58.778405, -34.512301 ], [ -58.77992, -34.511868 ], [ -58.780703, -34.511648 ], [ -58.781456, -34.511427 ], [ -58.78224, -34.511197 ], [ -58.783016, -34.510971 ], [ -58.783785, -34.510742 ], [ -58.784554, -34.51052 ], [ -58.785338, -34.510299 ], [ -58.786087, -34.510084 ], [ -58.78686, -34.509859 ], [ -58.787636, -34.509625 ], [ -58.788015, -34.509518 ], [ -58.788199, -34.509469 ], [ -58.789526, -34.509043 ], [ -58.790291, -34.508799 ], [ -58.791017, -34.508566 ], [ -58.791767, -34.508325 ], [ -58.79249, -34.508107 ], [ -58.793259, -34.50787 ], [ -58.794054, -34.507629 ], [ -58.794735, -34.507426 ], [ -58.795627, -34.507143 ], [ -58.796407, -34.506887 ], [ -58.797153, -34.50665 ], [ -58.798763, -34.506175 ], [ -58.800428, -34.505678 ], [ -58.801603, -34.505365 ], [ -58.801884, -34.506018 ], [ -58.80346, -34.505586 ], [ -58.803871999999899, -34.505208 ], [ -58.803895, -34.505185 ], [ -58.804363, -34.504686 ], [ -58.804463, -34.504579 ], [ -58.804839999999899, -34.504174 ], [ -58.804867, -34.504144 ], [ -58.805385, -34.50359 ], [ -58.805862, -34.503075 ], [ -58.806121, -34.5028 ], [ -58.806129, -34.502793 ], [ -58.806338, -34.502571 ], [ -58.806849, -34.50203 ], [ -58.807379, -34.501473 ], [ -58.807851, -34.500981 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 292.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.381175999872482, -34.664440000305717 ], [ -58.380146000037826, -34.665298000302414 ], [ -58.379029999834586, -34.6643760000523 ], [ -58.378, -34.663517000009506 ], [ -58.376992000280552, -34.662637999943684 ], [ -58.376820000442649, -34.662594999759392 ], [ -58.376690999889718, -34.663153000310672 ], [ -58.376391000444301, -34.663023999757741 ], [ -58.376197999637952, -34.662765999551198 ], [ -58.375962000445895, -34.662422999921489 ], [ -58.375704000239352, -34.662058000176501 ], [ -58.375039000149684, -34.661070999626872 ], [ -58.374846000242655, -34.660814000365804 ], [ -58.374480999598404, -34.660342000183107 ], [ -58.373816000408056, -34.659611999793924 ], [ -58.373686999855124, -34.659505000255535 ], [ -58.373429999694679, -34.65939799981777 ], [ -58.372828999858427, -34.659269000164159 ], [ -58.37229300032169, -34.659097000326256 ], [ -58.371202000371966, -34.658542999959423 ], [ -58.371027000395713, -34.658453000305656 ], [ -58.370639999636239, -34.658175000076142 ], [ -58.370468999844434, -34.65796000005389 ], [ -58.370446999729211, -34.657637999593987 ], [ -58.370489999913502, -34.657294999964222 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.37124399961084, -34.655762000316031 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.373836999577804, -34.648347000113915 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.371606000116799, -34.647939000184692 ], [ -58.370512000028725, -34.647746000277664 ], [ -58.369503000263194, -34.647553000370635 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.369246000102805, -34.640106999638306 ], [ -58.369395999825485, -34.639163000172289 ], [ -58.369546000447542, -34.638239999876077 ], [ -58.369566999617291, -34.638003999784701 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.369439000009777, -34.628305000375406 ], [ -58.368473000428594, -34.627468999594612 ], [ -58.368150999968634, -34.627147000033972 ], [ -58.368001000245897, -34.62686799975836 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368602000082205, -34.620173000383602 ], [ -58.368625000243526, -34.620019999623253 ], [ -58.368708999620594, -34.619442999994419 ], [ -58.368751999804886, -34.619185999833974 ], [ -58.368794999989234, -34.619013999996071 ], [ -58.369180999803234, -34.618392000090694 ], [ -58.369566999617291, -34.617770000185317 ], [ -58.369416999894611, -34.617447999725357 ], [ -58.369439000009777, -34.617039999796134 ], [ -58.369439000009777, -34.616547000443688 ], [ -58.369439000009777, -34.615817000054449 ], [ -58.369460000078902, -34.614787000219849 ], [ -58.369503000263194, -34.613605999717095 ], [ -58.369566999617291, -34.612297999652924 ], [ -58.369566999617291, -34.611139000164655 ], [ -58.369609999801582, -34.60993799963893 ], [ -58.369609999801582, -34.60937999998697 ], [ -58.369416999894611, -34.609251000333359 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367980000176829, -34.607749000316062 ], [ -58.368129999899509, -34.607556000409033 ], [ -58.368387000059954, -34.607405999787034 ], [ -58.368623000151274, -34.607320000317713 ], [ -58.369267000171874, -34.607190999764782 ], [ -58.369760999570417, -34.606997999857754 ], [ -58.369889000077251, -34.606891000319365 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370345000421366, -34.604393000236712 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.376690999889718, -34.591870000100357 ], [ -58.377872000392472, -34.59109799957298 ], [ -58.378944000365266, -34.590390000198283 ], [ -58.379437999763866, -34.590110999922672 ], [ -58.380918999712037, -34.589317000179392 ], [ -58.381906000261665, -34.588779999697181 ], [ -58.382827999612459, -34.588287000344735 ], [ -58.383879999562282, -34.587685999609164 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.385918000015636, -34.586612999590216 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.388729000143201, -34.585304000379267 ], [ -58.389425999909918, -34.585045000126627 ], [ -58.389479999702189, -34.585025000103656 ], [ -58.389781000093024, -34.584981999919307 ], [ -58.39016699990708, -34.585047000218822 ], [ -58.391024999903777, -34.584960999850239 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.392312999944977, -34.585025000103656 ], [ -58.393493000401634, -34.585625999939907 ], [ -58.393643000124314, -34.585690000193324 ], [ -58.394973000303708, -34.586334000213867 ], [ -58.396196000045336, -34.58691399998105 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401180999703342, -34.583898000292436 ], [ -58.401257999656934, -34.583844999646999 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.422610999597907, -34.580605000420405 ], [ -58.423619000216661, -34.579897000146389 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426292000275566, -34.578228999668568 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.430978999681031, -34.577773000223715 ], [ -58.431966000230659, -34.578631000220469 ], [ -58.43297499999619, -34.579532000401457 ], [ -58.433596999901567, -34.580068999984292 ], [ -58.434498000082613, -34.580862999727628 ], [ -58.435656999570824, -34.581871000346325 ], [ -58.436408000029132, -34.582515000366925 ], [ -58.437331000325344, -34.58333000017933 ], [ -58.438231999607069, -34.58412399992261 ], [ -58.439175999972406, -34.584938999735016 ], [ -58.440398999714034, -34.585968999569616 ], [ -58.441408000378885, -34.586785000327438 ], [ -58.442372999913971, -34.587513999771204 ], [ -58.443317000279308, -34.588223000091318 ], [ -58.444197000391227, -34.588931000365335 ], [ -58.445076999603828, -34.589595999555684 ], [ -58.445934999600524, -34.590260999645352 ], [ -58.446642999874484, -34.590819000196632 ], [ -58.446793999643319, -34.590991000034592 ], [ -58.447609000355044, -34.591699000308552 ], [ -58.448745999728089, -34.590583000105312 ], [ -58.449174999726438, -34.590197000291312 ], [ -58.449519000301564, -34.589874999831352 ], [ -58.450334000113969, -34.589081000088015 ], [ -58.45054900013622, -34.588866000065821 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.451450000317209, -34.588737000412209 ], [ -58.452779999597283, -34.588265000229512 ], [ -58.454110999822717, -34.587771999977747 ], [ -58.455033000072831, -34.587470999586913 ], [ -58.455204999910791, -34.587277999679884 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.453968000422833, -34.585167000356762 ], [ -58.454517999705899, -34.584552999920959 ], [ -58.454819000096734, -34.58421000029125 ], [ -58.455783999631819, -34.583179999557274 ], [ -58.456706999928087, -34.582149999722674 ], [ -58.457993999923133, -34.580734000074017 ], [ -58.459175000425887, -34.580755000143085 ], [ -58.460547999890252, -34.580755000143085 ], [ -58.461857000000521, -34.580711999958794 ], [ -58.463315999833469, -34.580668999774502 ], [ -58.464711000312377, -34.580625999590154 ], [ -58.466148000030159, -34.58058400035128 ], [ -58.467264000233399, -34.580541000166988 ], [ -58.468400999606388, -34.580519000051765 ], [ -58.46953899992485, -34.580475999867474 ], [ -58.470869000104244, -34.580475999867474 ], [ -58.470869000104244, -34.579338999595109 ], [ -58.470869000104244, -34.578265999576161 ], [ -58.470353999737256, -34.578373000013869 ], [ -58.470761999666536, -34.57787999976216 ], [ -58.471812999570261, -34.576634999905252 ], [ -58.472756999935541, -34.575561999886361 ], [ -58.473680000231809, -34.576099000368515 ], [ -58.474623999697769, -34.576613999836184 ], [ -58.475375000156077, -34.575755999839487 ], [ -58.476168999899357, -34.574875999727567 ], [ -58.476941999573569, -34.573995999615647 ], [ -58.477736000216169, -34.573116000403047 ], [ -58.478507999844282, -34.572237000337225 ], [ -58.479322999656688, -34.571314000041014 ], [ -58.480009999861579, -34.570583999651831 ], [ -58.480824999673928, -34.569619000116745 ], [ -58.479966999677231, -34.569081999634534 ], [ -58.480761000319887, -34.568138000168517 ], [ -58.481661999601556, -34.568674999751408 ], [ -58.482499000428504, -34.567730000239294 ], [ -58.483336000356076, -34.566785999873957 ], [ -58.483744000285355, -34.566335999806483 ], [ -58.484559000097761, -34.565455999694564 ], [ -58.485417000094458, -34.564533000297672 ], [ -58.486340000390669, -34.563524999678975 ], [ -58.486769000389017, -34.563073999565404 ], [ -58.487177000318297, -34.56262400039725 ], [ -58.488141999853383, -34.56127200010269 ], [ -58.489087000264817, -34.559919999808073 ], [ -58.489473000078874, -34.559383000225239 ], [ -58.489837999823806, -34.558846999789182 ], [ -58.490396000375085, -34.558053000045845 ], [ -58.490910999842754, -34.557281000417788 ], [ -58.491447000278811, -34.556507999844257 ], [ -58.491982999815548, -34.5557360002162 ], [ -58.492390999744828, -34.555135000379948 ], [ -58.492520000297759, -34.554962999642669 ], [ -58.492991999581079, -34.554276000337097 ], [ -58.493550000132359, -34.55350399980972 ], [ -58.494107999784319, -34.552710000066384 ], [ -58.494644000220376, -34.551916000323104 ], [ -58.495201999872336, -34.551143999795727 ], [ -58.495739000354547, -34.55035000005239 ], [ -58.496660999705341, -34.550843000304155 ], [ -58.497584000001552, -34.551336999702755 ], [ -58.498721000273918, -34.551895000254035 ], [ -58.499063999903626, -34.552088000161007 ], [ -58.499554000017042, -34.551236999587843 ], [ -58.499794000292866, -34.550885999589184 ], [ -58.499907000107953, -34.550729999589748 ], [ -58.500261000244905, -34.550408000029108 ], [ -58.500534000243874, -34.550139000214642 ], [ -58.500737999758826, -34.54979200040043 ], [ -58.500718999781952, -34.549567999963188 ], [ -58.500699999805079, -34.549500000424644 ], [ -58.50043200003671, -34.548933000357636 ], [ -58.50024500040638, -34.548268000267967 ], [ -58.500115999853449, -34.547903999669813 ], [ -58.500108000383875, -34.547849999877542 ], [ -58.50000900031506, -34.547174000179893 ], [ -58.499942999969448, -34.546622999951467 ], [ -58.499900999831254, -34.546014999792362 ], [ -58.501145999688106, -34.545328999633568 ], [ -58.502326000144762, -34.544642000327997 ], [ -58.502820000442625, -34.544319999868037 ], [ -58.503377000048488, -34.543998000307397 ], [ -58.504, -34.543505000055688 ], [ -58.504406999883088, -34.543161000379826 ], [ -58.504686000158756, -34.542925000288506 ], [ -58.504793999743242, -34.542839999965963 ], [ -58.504901000180951, -34.542711000312352 ], [ -58.505415999648619, -34.542239000129712 ], [ -58.505995000269024, -34.541659000362529 ], [ -58.506123999922636, -34.541508999740529 ], [ -58.506162999922481, -34.541413999856161 ], [ -58.506331999622034, -34.54099700041121 ], [ -58.506605999667102, -34.540324999998688 ], [ -58.506832000196596, -34.539770999631912 ], [ -58.507283000310167, -34.538848000234964 ], [ -58.507690000193293, -34.537839999616267 ], [ -58.508162000375989, -34.536852999965959 ], [ -58.508506000051796, -34.536037000107399 ], [ -58.508935000050144, -34.535285999649147 ], [ -58.509063999703756, -34.535092999742119 ], [ -58.509320999864201, -34.534620999559422 ], [ -58.509342999979424, -34.534535000090159 ], [ -58.509535999886452, -34.534149000276102 ], [ -58.509728999793481, -34.533826999816142 ], [ -58.510136999722704, -34.533076000257154 ], [ -58.510952000434429, -34.532690000443097 ], [ -58.511810000431126, -34.532303999729777 ], [ -58.512668999574657, -34.531938999984845 ], [ -58.513484000286326, -34.531553000170788 ], [ -58.514793000396594, -34.530651999989743 ], [ -58.515500999771291, -34.530179999807103 ], [ -58.515908999700514, -34.52992199960056 ], [ -58.516165999860959, -34.52968600040856 ], [ -58.516616999974531, -34.529149999972503 ], [ -58.516787999766336, -34.528912999835029 ], [ -58.517045999972879, -34.52857000020532 ], [ -58.517303000133325, -34.528184000391263 ], [ -58.517518000155519, -34.527905000115595 ], [ -58.518011999554119, -34.527304000279344 ], [ -58.519148999826427, -34.527884000046527 ], [ -58.520199999730153, -34.528440999652389 ], [ -58.52067199991285, -34.528698999858932 ], [ -58.521251999679976, -34.528978000134543 ], [ -58.522302999583701, -34.529492999602212 ], [ -58.523396999671775, -34.530051000153492 ], [ -58.523396999671775, -34.530051000153492 ], [ -58.523934000153929, -34.529235000294989 ], [ -58.524534999990237, -34.528462999767555 ], [ -58.525071000426294, -34.527712000208624 ], [ -58.525651000193477, -34.526938999635092 ], [ -58.526144000445242, -34.526102999753618 ], [ -58.52644399989066, -34.525694999824339 ], [ -58.526615999728563, -34.525609000355018 ], [ -58.526873999935106, -34.52526599982599 ], [ -58.527603000278191, -34.524449999967487 ], [ -58.526702000097202, -34.523999999900013 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 291.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.812604, -34.505831 ], [ -58.812418, -34.506006 ], [ -58.812052, -34.506392 ], [ -58.811949, -34.506514 ], [ -58.810835, -34.505755 ], [ -58.809805, -34.505061 ], [ -58.809287, -34.505595 ], [ -58.808784, -34.506106 ], [ -58.808277, -34.506618 ], [ -58.807756, -34.507136 ], [ -58.807234, -34.507683 ], [ -58.806735, -34.50821 ], [ -58.80622, -34.508726 ], [ -58.805705, -34.509241 ], [ -58.805183, -34.509776 ], [ -58.804209, -34.50912 ], [ -58.802833, -34.508178 ], [ -58.801627, -34.507358 ], [ -58.80117, -34.507897 ], [ -58.801136, -34.507935 ], [ -58.800548, -34.508496 ], [ -58.800014, -34.509023 ], [ -58.799526, -34.509531 ], [ -58.798477, -34.51062 ], [ -58.797966, -34.511128 ], [ -58.797932, -34.511155 ], [ -58.797444, -34.511625 ], [ -58.797417, -34.511652 ], [ -58.796899, -34.512144 ], [ -58.796865, -34.512174 ], [ -58.796353, -34.512679 ], [ -58.79572, -34.513336 ], [ -58.79517, -34.513909 ], [ -58.794571, -34.514539 ], [ -58.79406, -34.515074 ], [ -58.793552, -34.515624 ], [ -58.793069, -34.516159 ], [ -58.792607, -34.516659 ], [ -58.791185, -34.518137 ], [ -58.79066, -34.518661 ], [ -58.790414, -34.518909 ], [ -58.790145, -34.51918 ], [ -58.789879, -34.519447 ], [ -58.789568, -34.519768 ], [ -58.789338, -34.520021 ], [ -58.790536, -34.520826 ], [ -58.791678, -34.52159 ], [ -58.791144, -34.522134 ], [ -58.790610999999899, -34.522705 ], [ -58.790044, -34.523302 ], [ -58.789434, -34.523905 ], [ -58.788832, -34.524522 ], [ -58.788255, -34.52512 ], [ -58.78767, -34.525728 ], [ -58.787094, -34.526335 ], [ -58.786554, -34.526927 ], [ -58.78608, -34.527459 ], [ -58.785624, -34.527978 ], [ -58.785115, -34.528555 ], [ -58.784428, -34.529236 ], [ -58.783801, -34.529871 ], [ -58.78221, -34.52959 ], [ -58.780598, -34.529221 ], [ -58.780201, -34.529126 ], [ -58.779659, -34.528998 ], [ -58.778559, -34.530187 ], [ -58.777832, -34.529906 ], [ -58.777084, -34.529566 ], [ -58.776326, -34.529216 ], [ -58.774911, -34.52863 ], [ -58.774877, -34.52863 ], [ -58.773102, -34.527982 ], [ -58.772939, -34.527922 ], [ -58.7721, -34.52756 ], [ -58.771782, -34.527423 ], [ -58.770882, -34.527088 ], [ -58.770071, -34.526795 ], [ -58.769244, -34.526483 ], [ -58.769039, -34.526415 ], [ -58.768936, -34.526377 ], [ -58.768303, -34.526113 ], [ -58.767841, -34.52595 ], [ -58.767483, -34.52584 ], [ -58.766745, -34.525604 ], [ -58.766088, -34.525379 ], [ -58.765909, -34.52531 ], [ -58.764828, -34.524873 ], [ -58.764141, -34.52464 ], [ -58.763866, -34.524475 ], [ -58.76313, -34.524046 ], [ -58.762757, -34.523839 ], [ -58.762461, -34.523651 ], [ -58.7621, -34.523432 ], [ -58.761728, -34.523195 ], [ -58.761431, -34.523003 ], [ -58.760984, -34.522792 ], [ -58.760652, -34.522658 ], [ -58.759869, -34.522348 ], [ -58.758602, -34.521815 ], [ -58.75741, -34.521304 ], [ -58.756235, -34.520802 ], [ -58.756028999999899, -34.520725 ], [ -58.754979, -34.520244 ], [ -58.754359, -34.519999 ], [ -58.754007, -34.519904 ], [ -58.751576, -34.518897 ], [ -58.751205, -34.518618 ], [ -58.75103, -34.518518 ], [ -58.750307, -34.51819 ], [ -58.749875, -34.517988 ], [ -58.749021, -34.517587 ], [ -58.748733999999899, -34.517457 ], [ -58.748057, -34.517148 ], [ -58.747537, -34.517547 ], [ -58.746809, -34.518067 ], [ -58.745919999999899, -34.518706 ], [ -58.745133, -34.517969 ], [ -58.744294, -34.517186 ], [ -58.743466, -34.51641 ], [ -58.742637, -34.515646 ], [ -58.742437, -34.515799 ], [ -58.741797, -34.516273 ], [ -58.740969, -34.51686 ], [ -58.740561, -34.517143 ], [ -58.740149, -34.517472 ], [ -58.739571, -34.517901 ], [ -58.739352, -34.518054 ], [ -58.73857, -34.518609 ], [ -58.737933, -34.517949 ], [ -58.737215, -34.51731 ], [ -58.736688999999899, -34.516825 ], [ -58.736147, -34.516309 ], [ -58.735582, -34.515805 ], [ -58.734277, -34.516789 ], [ -58.733067, -34.517658 ], [ -58.731919, -34.518473 ], [ -58.730968, -34.519163 ], [ -58.729868, -34.519969 ], [ -58.728519, -34.520954 ], [ -58.727631, -34.52175 ], [ -58.727054, -34.521188 ], [ -58.726493, -34.520653 ], [ -58.725898, -34.520076 ], [ -58.725738, -34.52021 ], [ -58.72481, -34.519278 ], [ -58.723829, -34.518414 ], [ -58.723959, -34.518289 ], [ -58.723214, -34.517766 ], [ -58.72224, -34.517092 ], [ -58.721634, -34.517661 ], [ -58.721001, -34.518237 ], [ -58.720894, -34.518333 ], [ -58.720477, -34.518718 ], [ -58.719925, -34.519266 ], [ -58.719089, -34.519883 ], [ -58.717943, -34.520687 ], [ -58.717054, -34.521337 ], [ -58.716215, -34.521965 ], [ -58.71597, -34.522141 ], [ -58.714966, -34.522892 ], [ -58.714885, -34.522953 ], [ -58.714104, -34.523545 ], [ -58.713019, -34.524353 ], [ -58.712418, -34.524811 ], [ -58.712157, -34.525007 ], [ -58.711713, -34.525338 ], [ -58.710851, -34.525988 ], [ -58.710514, -34.526226 ], [ -58.710215, -34.52643 ], [ -58.709268, -34.527085 ], [ -58.709138, -34.527177 ], [ -58.708781, -34.527424 ], [ -58.707927, -34.528021 ], [ -58.70732, -34.528476 ], [ -58.70684, -34.528819 ], [ -58.706218, -34.529266 ], [ -58.705771, -34.529587 ], [ -58.705569, -34.529736 ], [ -58.704852, -34.530252 ], [ -58.704593, -34.530431 ], [ -58.70319, -34.531451 ], [ -58.702376999999899, -34.532043 ], [ -58.702, -34.532315 ], [ -58.701511, -34.532673 ], [ -58.701336, -34.532784 ], [ -58.700966, -34.533018 ], [ -58.699963, -34.533736 ], [ -58.699341, -34.534182 ], [ -58.698425, -34.534839 ], [ -58.697231, -34.535698 ], [ -58.696487, -34.536233 ], [ -58.695686, -34.53681 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 290.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.526509000190174, -34.638283000060369 ], [ -58.527174000279842, -34.638348000359883 ], [ -58.527818000300442, -34.638369000429009 ], [ -58.527945999907956, -34.637338999695032 ], [ -58.527280999818231, -34.637275000340935 ], [ -58.526637999843786, -34.637232000156644 ], [ -58.526745000281494, -34.636180000206821 ], [ -58.526851999819883, -34.635301000140998 ], [ -58.526873999935106, -34.634700000304747 ], [ -58.525585999893963, -34.634570999751816 ], [ -58.524233999599346, -34.63446400021337 ], [ -58.523225999879969, -34.63422800012205 ], [ -58.522967999673426, -34.634141999753467 ], [ -58.521574000139935, -34.633820000192827 ], [ -58.521514000071022, -34.633795999985352 ], [ -58.520994000372752, -34.633584000101507 ], [ -58.520650999843724, -34.633412000263547 ], [ -58.520457999936696, -34.633240999572422 ], [ -58.520286000098793, -34.63319800028745 ], [ -58.520006999823124, -34.633176000172227 ], [ -58.519857000100444, -34.63319800028745 ], [ -58.519556999755707, -34.63319800028745 ], [ -58.518890999619884, -34.633068999734519 ], [ -58.518547999990176, -34.63302600044949 ], [ -58.518118999991827, -34.63302600044949 ], [ -58.517089000157171, -34.633047999665393 ], [ -58.516787999766336, -34.633089999803587 ], [ -58.516059000322571, -34.633068999734519 ], [ -58.515158000141525, -34.633132999987936 ], [ -58.514578000374399, -34.633240999572422 ], [ -58.513892000215606, -34.63343400037877 ], [ -58.512689999643726, -34.633926999731216 ], [ -58.511445999832972, -34.63446400021337 ], [ -58.511102000157166, -34.634613999936107 ], [ -58.51024100002212, -34.63476299961269 ], [ -58.509299999795132, -34.634700000304747 ], [ -58.508419999683213, -34.634635000005176 ], [ -58.506724999758887, -34.634355999729564 ], [ -58.505931000015607, -34.634206000006827 ], [ -58.505608999555648, -34.634098999569119 ], [ -58.504965000434368, -34.633884000446244 ], [ -58.504621999905339, -34.63375599993941 ], [ -58.503571000001614, -34.633283999756713 ], [ -58.502369000329054, -34.632769000289102 ], [ -58.500973999850146, -34.632167999553474 ], [ -58.50000900031506, -34.631738999555125 ], [ -58.499343000179294, -34.631460000178834 ], [ -58.497455000347941, -34.630859000342525 ], [ -58.496210999637867, -34.630430000344177 ], [ -58.495696000170256, -34.630107999884217 ], [ -58.494859000242627, -34.629529000163188 ], [ -58.494430000244279, -34.62924999988752 ], [ -58.494321999760416, -34.629164000418257 ], [ -58.493678999785971, -34.628735000419908 ], [ -58.493055999834496, -34.628305000375406 ], [ -58.491898000392382, -34.627532999848029 ], [ -58.491124999818851, -34.626997000311292 ], [ -58.489752000354486, -34.626481999944303 ], [ -58.489130000449109, -34.626266999922052 ], [ -58.488486000428509, -34.626030999830732 ], [ -58.487863999623869, -34.625815999808481 ], [ -58.487283999856686, -34.625622999901509 ], [ -58.486597999697892, -34.625365999741064 ], [ -58.485953999677292, -34.625150999718812 ], [ -58.484752000004733, -34.624679000435492 ], [ -58.483421999825396, -34.624120999884212 ], [ -58.482649000151184, -34.623498999978835 ], [ -58.481876999623807, -34.62292000025775 ], [ -58.480846999789151, -34.622083000330178 ], [ -58.479452000209619, -34.620666999782145 ], [ -58.479172999933951, -34.620345000221562 ], [ -58.479002000142145, -34.620173000383602 ], [ -58.478336000006379, -34.619829999854574 ], [ -58.477070000080403, -34.619163999718751 ], [ -58.476899000288597, -34.619013999996071 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.475182000249049, -34.617039999796134 ], [ -58.474710000066409, -34.616438999959826 ], [ -58.474066000045809, -34.616075000260992 ], [ -58.473723000416101, -34.615903000423089 ], [ -58.473079000395501, -34.615087999711363 ], [ -58.472327999937193, -34.613736000316123 ], [ -58.471211999733953, -34.613070000180301 ], [ -58.470075000360964, -34.612470000390147 ], [ -58.469559999993976, -34.612191000114535 ], [ -58.469002000342016, -34.611889999723644 ], [ -58.468443999790736, -34.611590000278227 ], [ -58.467844000000582, -34.611311000002615 ], [ -58.466555999959382, -34.610602999728599 ], [ -58.465934000054006, -34.610281000167959 ], [ -58.465354000286823, -34.609637000147416 ], [ -58.464838999919891, -34.60905800042633 ], [ -58.464646000012863, -34.608843000404079 ], [ -58.464409999921543, -34.608607000312759 ], [ -58.463959999854069, -34.60817800031441 ], [ -58.462714999997218, -34.607341000386839 ], [ -58.462157000345258, -34.606976999788685 ], [ -58.461598999793978, -34.606589999928531 ], [ -58.46052599977503, -34.605860999585445 ], [ -58.459624999594041, -34.605216999564846 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.45743700031727, -34.60375799973184 ], [ -58.455998999654071, -34.602792000150657 ], [ -58.455055000188054, -34.602127000060989 ], [ -58.454088999707551, -34.601439999856041 ], [ -58.453102000057243, -34.600796999881595 ], [ -58.452694000127963, -34.600538999675052 ], [ -58.452115000406877, -34.600109999676704 ], [ -58.451985999853946, -34.600003000138315 ], [ -58.451214000225889, -34.599530999955618 ], [ -58.450891999765929, -34.599315999933424 ], [ -58.449840999862204, -34.598607999659407 ], [ -58.448767999843255, -34.597857000100419 ], [ -58.447672999709141, -34.597084999573042 ], [ -58.446578999621067, -34.596334000014053 ], [ -58.445505999602176, -34.595582000408967 ], [ -58.444303999929616, -34.594745999628117 ], [ -58.443532000301559, -34.594209000045282 ], [ -58.442695000373931, -34.593672999609225 ], [ -58.441729999939525, -34.59300800041882 ], [ -58.440677999989646, -34.592278000029637 ], [ -58.44018499973788, -34.592813999566374 ], [ -58.439458000386367, -34.592349999752628 ], [ -58.439111999718989, -34.5921280003069 ], [ -58.438937999788834, -34.592014999592493 ], [ -58.438317999975652, -34.591612999939969 ], [ -58.438038999700041, -34.59142000003294 ], [ -58.437502000117149, -34.591076000357077 ], [ -58.437266000025829, -34.590925999735077 ], [ -58.436965999681092, -34.590732999828049 ], [ -58.436215000122104, -34.590260999645352 ], [ -58.435270999756767, -34.589553000270712 ], [ -58.433982999715624, -34.588716000343084 ], [ -58.433124999718927, -34.588136999722735 ], [ -58.432695999720579, -34.587858000346387 ], [ -58.432094999884271, -34.587450000417164 ], [ -58.431407999679379, -34.586999000303592 ], [ -58.431065000049671, -34.586763000212272 ], [ -58.430078000399362, -34.586098000122547 ], [ -58.428854999758414, -34.585304000379267 ], [ -58.427845999992883, -34.584639000289599 ], [ -58.427330999625894, -34.584037999553971 ], [ -58.426387000159878, -34.583007999719371 ], [ -58.425442999794541, -34.581934999700422 ], [ -58.424520000397649, -34.580926999981045 ], [ -58.423619000216661, -34.579897000146389 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423426000309632, -34.578223000291189 ], [ -58.422589000382004, -34.577343000179269 ], [ -58.421237000087444, -34.575884000346321 ], [ -58.420594000112999, -34.574962000096207 ], [ -58.420035999561662, -34.57416800035287 ], [ -58.419177999564965, -34.573008999965339 ], [ -58.419993000276691, -34.572601000036059 ], [ -58.420507999744359, -34.572387000059962 ], [ -58.421751999555113, -34.57178600022371 ], [ -58.421580999763307, -34.571270999856722 ], [ -58.42143100004057, -34.570991999581054 ], [ -58.421322999556764, -34.570798999674025 ], [ -58.421259000202667, -34.570713000204762 ], [ -58.421066000295639, -34.570541000366802 ], [ -58.420851000273387, -34.570284000206414 ], [ -58.420615000182067, -34.570069000184162 ], [ -58.420335999906456, -34.569940999677328 ], [ -58.420979999926999, -34.569060999565409 ], [ -58.421837999923696, -34.568610000351214 ], [ -58.420811000227445, -34.566801999712482 ], [ -58.420679999582262, -34.56657199989786 ], [ -58.420314999837331, -34.565906999808135 ], [ -58.420078999746011, -34.565433999579398 ], [ -58.419906999908051, -34.565047999765341 ], [ -58.419906999908051, -34.564962000296021 ], [ -58.418491000259394, -34.563890000323227 ], [ -58.417847000238851, -34.563396000025364 ], [ -58.41779000030823, -34.563351999794918 ], [ -58.416902999873514, -34.562665999636124 ], [ -58.416923999942583, -34.562451999660027 ], [ -58.417117999895765, -34.562258999752999 ], [ -58.417353999987085, -34.561937000192358 ], [ -58.418856000004382, -34.56054199971345 ], [ -58.419649999747662, -34.559897999692907 ], [ -58.420550999928651, -34.559232999603182 ], [ -58.423940999777301, -34.556936999842605 ], [ -58.426381999929333, -34.555294999664454 ], [ -58.427352999741117, -34.554641000082029 ], [ -58.429739000054781, -34.553303000433061 ], [ -58.431601999632562, -34.552258999952869 ], [ -58.432287999791299, -34.551979999677201 ], [ -58.432567000066967, -34.552001999792424 ], [ -58.432803000158287, -34.552088000161007 ], [ -58.434261999991293, -34.55301000041112 ], [ -58.434648999851447, -34.553225000433372 ], [ -58.434669999920516, -34.553439999556304 ], [ -58.434713000104807, -34.553524999878789 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 289.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.382742000143139, -34.629034999865326 ], [ -58.382807000442654, -34.627833000192766 ], [ -58.382827999612459, -34.627468999594612 ], [ -58.382827999612459, -34.62725399957236 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.382870999796751, -34.625966999577315 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.382957000165391, -34.623906999908058 ], [ -58.382957000165391, -34.622210999937636 ], [ -58.382957000165391, -34.620988000196007 ], [ -58.382978000234459, -34.619744000385253 ], [ -58.382957000165391, -34.618563999928597 ], [ -58.383021000418807, -34.617683999816677 ], [ -58.384308999560631, -34.617748000070094 ], [ -58.385874999831344, -34.617813000369608 ], [ -58.387463000217224, -34.617876999723705 ], [ -58.388965000234521, -34.617963000092345 ], [ -58.390337999698886, -34.618027000345762 ], [ -58.391689999993446, -34.618112999815025 ], [ -58.393192000010743, -34.618199000183665 ], [ -58.394501000121011, -34.618242000367957 ], [ -58.395982000069182, -34.618348999906402 ], [ -58.397505000155604, -34.618413000159762 ], [ -58.398963999988553, -34.618520999744305 ], [ -58.400037000007501, -34.618584999997722 ], [ -58.400981000372838, -34.618649000251139 ], [ -58.402247000298757, -34.618734999720402 ], [ -58.403535000339957, -34.618843000204265 ], [ -58.405037000357254, -34.619142999649682 ], [ -58.406388999752494, -34.619421999925294 ], [ -58.407784000231402, -34.619701000200962 ], [ -58.409264000133476, -34.620022999761602 ], [ -58.410078999945824, -34.620173000383602 ], [ -58.410809000335064, -34.620323000106339 ], [ -58.412568999659584, -34.620623999597854 ], [ -58.413834999585504, -34.620731000035562 ], [ -58.415079000295577, -34.620859999689173 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.418083000330171, -34.621073999665327 ], [ -58.419413999656342, -34.621181000103036 ], [ -58.420507999744359, -34.621266999572356 ], [ -58.420979999926999, -34.621288999687522 ], [ -58.421452000109696, -34.62133199987187 ], [ -58.42222499978385, -34.621375000056162 ], [ -58.423726999801147, -34.62148199959455 ], [ -58.424048000215009, -34.621524999778899 ], [ -58.425185999634152, -34.621675000400899 ], [ -58.426623000251197, -34.62189000042315 ], [ -58.427803999854689, -34.622061000214956 ], [ -58.429198000287442, -34.622297000306276 ], [ -58.430764999704934, -34.622533000397596 ], [ -58.432159000137688, -34.622768999589596 ], [ -58.43282500027351, -34.622833999889167 ], [ -58.433425000063664, -34.62292000025775 ], [ -58.434648999851447, -34.623026999796139 ], [ -58.436279000375521, -34.623219999703167 ], [ -58.436923000396121, -34.623219999703167 ], [ -58.437738000208526, -34.623198999634099 ], [ -58.437932000161652, -34.622575999682624 ], [ -58.438274999791361, -34.62156799996319 ], [ -58.438724999858835, -34.620173000383602 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.498013, -34.637210000041421 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.529565999970885, -34.63934400042524 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.530241999668533, -34.639378000194483 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.532216999914567, -34.639571000101512 ], [ -58.533311000002584, -34.639635000354929 ], [ -58.535092000295549, -34.639741999893317 ], [ -58.535842999854538, -34.639828000261957 ], [ -58.537280999618417, -34.639913999731277 ], [ -58.538610999797754, -34.640021000168986 ], [ -58.539984000161439, -34.640128999753472 ], [ -58.541399999810096, -34.64017199993782 ], [ -58.542880999758268, -34.640149999822597 ], [ -58.543502999663644, -34.640128999753472 ], [ -58.544083000330147, -34.640106999638306 ], [ -58.544726000304649, -34.640106999638306 ], [ -58.545134000233872, -34.640106999638306 ], [ -58.546228000321889, -34.64008599956918 ], [ -58.548954000126969, -34.640043000284209 ], [ -58.549489999663706, -34.640021000168986 ], [ -58.551099000118711, -34.64000000009986 ], [ -58.552644000320299, -34.639956999915569 ], [ -58.553224000087482, -34.639956999915569 ], [ -58.554253999922139, -34.639934999800346 ], [ -58.556035000215047, -34.639913999731277 ], [ -58.557065000049647, -34.639913999731277 ], [ -58.557235999841453, -34.639913999731277 ], [ -58.558202000322012, -34.639892999662152 ], [ -58.558673999605332, -34.639913999731277 ], [ -58.560133000337657, -34.640043000284209 ], [ -58.560970000265286, -34.640128999753472 ], [ -58.561592000170606, -34.640214000076014 ], [ -58.562665000189554, -34.640364999844849 ], [ -58.563266000025862, -34.640450000167334 ], [ -58.563502000117182, -34.64055799975182 ], [ -58.564339000044754, -34.640687000304752 ], [ -58.565518999602091, -34.64088000021178 ], [ -58.565712000408439, -34.640964999635003 ], [ -58.565797999877759, -34.6411160003031 ], [ -58.565561999786439, -34.641866999862089 ], [ -58.565389999948479, -34.642724999858785 ], [ -58.565197000041451, -34.643604999970705 ], [ -58.565004000134479, -34.644485000082625 ], [ -58.564768000043102, -34.645364000148447 ], [ -58.564575000136131, -34.646244000260367 ], [ -58.564382000229102, -34.647124000372287 ], [ -58.564210000391142, -34.648045999723081 ], [ -58.564016999584794, -34.648969000019292 ], [ -58.563974000299822, -34.649140999857195 ], [ -58.563781000392794, -34.650170999691852 ], [ -58.563716000093279, -34.650577999574978 ], [ -58.563587999586446, -34.65115800024148 ], [ -58.563566000370599, -34.65130799996416 ], [ -58.563436999817668, -34.652080999638372 ], [ -58.563415999748543, -34.652294999614469 ], [ -58.563330000279223, -34.652703000443069 ], [ -58.563200999726291, -34.653282000164154 ], [ -58.563158999588097, -34.653711000162502 ], [ -58.562986999750194, -34.654697999812811 ], [ -58.562793999843166, -34.655706999578342 ], [ -58.562600999936137, -34.656909000150165 ], [ -58.562406999983011, -34.658066999592336 ], [ -58.562214000075983, -34.659203999864644 ], [ -58.561977999984663, -34.660578000274427 ], [ -58.561828000261983, -34.661564999924735 ], [ -58.561571000101537, -34.663153000310672 ], [ -58.561527999917246, -34.66325999984906 ], [ -58.561291999825869, -34.664655000327969 ], [ -58.561119999987966, -34.665555999609637 ], [ -58.560948000150063, -34.666478999905905 ], [ -58.560819999643229, -34.667616000178214 ], [ -58.560647999805326, -34.668453000105842 ], [ -58.560604999620978, -34.668710000266231 ], [ -58.560626999736201, -34.668859999988968 ], [ -58.561227000425674, -34.669417999640928 ], [ -58.561399000263634, -34.669653999732247 ], [ -58.561828000261983, -34.670040999592402 ], [ -58.562557999751846, -34.67070599968207 ], [ -58.563352000394445, -34.671413999956087 ], [ -58.562236000191206, -34.672271999952784 ], [ -58.561163000172257, -34.673108999880412 ], [ -58.559982999715601, -34.673988999992332 ], [ -58.558887999581486, -34.674803999804681 ], [ -58.558352000044749, -34.675211999733961 ], [ -58.557794000392789, -34.675640999732309 ], [ -58.558567000066944, -34.676349000006326 ], [ -58.559296000410029, -34.677014000095994 ], [ -58.560025999899949, -34.67768000023176 ], [ -58.558930999765778, -34.678516000113291 ], [ -58.557836999677761, -34.679353000040862 ], [ -58.556721000373841, -34.680212000083714 ], [ -58.555584000101476, -34.681047999965188 ], [ -58.554490000013459, -34.681884999892759 ], [ -58.554082000084179, -34.682164000168427 ], [ -58.554896999896584, -34.682786000073804 ], [ -58.555777000008504, -34.683386999910056 ], [ -58.556570999751784, -34.683966999677239 ], [ -58.557365000394384, -34.684503000113295 ], [ -58.557471999932829, -34.684546000297644 ], [ -58.557923000046401, -34.684867999858284 ], [ -58.558373000113818, -34.685081999834381 ], [ -58.558567000066944, -34.685168000203021 ], [ -58.559060000318709, -34.685275999787507 ], [ -58.559338999695058, -34.685296999856632 ], [ -58.560261999991269, -34.685232999603215 ], [ -58.560777000358257, -34.685190000318244 ], [ -58.560927000080937, -34.685211000387312 ], [ -58.561055999734549, -34.685275999787507 ], [ -58.561141000057091, -34.685361000110049 ], [ -58.561227000425674, -34.685640000385661 ], [ -58.561269999710703, -34.685855000407912 ], [ -58.561592000170606, -34.686090999599912 ], [ -58.562600999936137, -34.686541999713484 ], [ -58.563502000117182, -34.687099000218666 ], [ -58.564466999652268, -34.687613999686278 ], [ -58.565261000294868, -34.68810799998414 ], [ -58.566247999945176, -34.688665999636157 ], [ -58.567171000241444, -34.689202000072214 ], [ -58.568350999798781, -34.689910000346174 ], [ -58.569531000255438, -34.690618999766968 ], [ -58.570711999858872, -34.691304999925762 ], [ -58.571354999833318, -34.691777000108402 ], [ -58.571955999669626, -34.692291999576071 ], [ -58.572557000405197, -34.692850000127351 ], [ -58.573136000126283, -34.693364999595019 ], [ -58.573736999962534, -34.693923000146299 ], [ -58.574788999912357, -34.69508199963451 ], [ -58.575754000346819, -34.696239999976001 ], [ -58.576247999745362, -34.696776999558836 ], [ -58.576740999997128, -34.697356000179241 ], [ -58.577749999762659, -34.698514999667452 ], [ -58.578758000381356, -34.69967400005504 ], [ -58.579960000053916, -34.701067999588474 ], [ -58.580174000030013, -34.701282999610726 ], [ -58.581010999957641, -34.702140999607423 ], [ -58.581139999611253, -34.702270000160354 ], [ -58.581847999885269, -34.702978000434314 ], [ -58.582641999628549, -34.703794000292817 ], [ -58.583436000271149, -34.704630000174348 ], [ -58.584101000360818, -34.705338000448307 ], [ -58.584895000104154, -34.706175000375936 ], [ -58.585389000402017, -34.706689999843547 ], [ -58.585667999778309, -34.706991000234439 ], [ -58.585989000192171, -34.707333999864147 ], [ -58.586440000305743, -34.70782800016201 ], [ -58.586933999704286, -34.708300000344707 ], [ -58.587212999979897, -34.708599999790124 ], [ -58.587576999678731, -34.708922000250084 ], [ -58.588779000250611, -34.710101999807421 ], [ -58.589659000362531, -34.710959999804118 ], [ -58.590559999644199, -34.711839999916037 ], [ -58.591460999825244, -34.712763000212249 ], [ -58.591933000007884, -34.713255999564694 ], [ -58.592212000283553, -34.713578000024654 ], [ -58.592683999566873, -34.714437000067448 ], [ -58.593092000395472, -34.715295000064145 ], [ -58.593285000302501, -34.715574000339814 ], [ -58.594337000252324, -34.716625000243539 ], [ -58.594829999604769, -34.717182999895499 ], [ -58.595087999811312, -34.717526000424527 ], [ -58.595537999878729, -34.718212999730099 ], [ -58.595881000407815, -34.718728000097087 ], [ -58.596482000244066, -34.719671999563104 ], [ -58.596760999620415, -34.720230000114384 ], [ -58.597341000286917, -34.721518000155527 ], [ -58.598477999659906, -34.723963999638841 ], [ -58.598778000004643, -34.7246719999128 ], [ -58.59925000018734, -34.725658999563109 ], [ -58.599764999654951, -34.726689000297085 ], [ -58.600731000135511, -34.728556000059314 ], [ -58.601320000317742, -34.729759999824068 ], [ -58.602125999715099, -34.73141000037117 ], [ -58.602641000082031, -34.732418000090604 ], [ -58.602726000404573, -34.732610999997632 ], [ -58.602920000357699, -34.733147999580467 ], [ -58.603284000056533, -34.734328000037124 ], [ -58.603691999985756, -34.735743999685781 ], [ -58.603950000192299, -34.736408999775449 ], [ -58.604851000373344, -34.738469000344026 ], [ -58.60525800025647, -34.739306000271654 ], [ -58.606267000022001, -34.740850999573922 ], [ -58.606802999558738, -34.741708999570619 ], [ -58.607532999947921, -34.742781999589567 ], [ -58.608991999780926, -34.744948999696533 ], [ -58.611202000072183, -34.748339999591281 ], [ -58.611717000439171, -34.749068999934366 ], [ -58.612118000045598, -34.749696000070287 ], [ -58.613090999949634, -34.751214999972206 ], [ -58.613712999855011, -34.752159000337542 ], [ -58.613970000015456, -34.752695999920434 ], [ -58.614464000313319, -34.754477000213342 ], [ -58.614785999873959, -34.75569999995497 ], [ -58.615149999572793, -34.757030000134364 ], [ -58.615385999664113, -34.757565999671101 ], [ -58.615600999686365, -34.757888000131061 ], [ -58.615727000100946, -34.758013999646323 ], [ -58.616737999958673, -34.758382000428924 ], [ -58.617017000234341, -34.758575000335952 ], [ -58.617360999910204, -34.758983000265232 ], [ -58.617574999886301, -34.759626000239678 ], [ -58.617640000185816, -34.759733999824164 ], [ -58.617897000346261, -34.759990999984609 ], [ -58.618112000368455, -34.760098000422317 ], [ -58.618326000344609, -34.760162999822512 ], [ -58.620021000268935, -34.760485000282472 ], [ -58.620750999758798, -34.760612999889986 ], [ -58.623067999588443, -34.76099999975014 ], [ -58.624463000067351, -34.761213999726237 ], [ -58.625815000361911, -34.761406999633266 ], [ -58.627059000172665, -34.761579000370546 ], [ -58.628282999960447, -34.761772000277574 ], [ -58.630042000138133, -34.762072999769089 ], [ -58.631372000317526, -34.762329999929534 ], [ -58.632509999736669, -34.762522999836506 ], [ -58.633839999916006, -34.762758999927883 ], [ -58.635213000279691, -34.762995000019203 ], [ -58.635857000300291, -34.763123999672814 ], [ -58.636822999881474, -34.763402999948426 ], [ -58.637509000040268, -34.763660000108871 ], [ -58.638324999898771, -34.764024999853802 ], [ -58.639097000426204, -34.764432999783082 ], [ -58.639870000100359, -34.764969000219139 ], [ -58.640513000074861, -34.765483999686808 ], [ -58.641200000279753, -34.766042000238087 ], [ -58.641372000117656, -34.766191999960768 ], [ -58.641736999862587, -34.766556999705756 ], [ -58.642445000136604, -34.767137000372202 ], [ -58.643367000386718, -34.767909000000316 ], [ -58.643645999763066, -34.768145000091636 ], [ -58.644226000429512, -34.768617000274276 ], [ -58.645383999871683, -34.767672999908996 ], [ -58.646286000098769, -34.766943000419076 ], [ -58.647187000279814, -34.767693999978064 ], [ -58.648067000391734, -34.768445000436373 ], [ -58.64894599955818, -34.769174999926236 ], [ -58.648024000207386, -34.769926000384544 ], [ -58.647078999795951, -34.770720000127881 ], [ -58.648024000207386, -34.771385000217549 ], [ -58.649031999926819, -34.772114999707412 ], [ -58.649868999854391, -34.771428000401841 ], [ -58.650770000035436, -34.770720000127881 ], [ -58.651606999963064, -34.769926000384544 ], [ -58.652358000421316, -34.769239000179653 ], [ -58.65321600041807, -34.768509999836567 ], [ -58.653902999723641, -34.76788799993119 ], [ -58.654589999928533, -34.767264999979716 ], [ -58.655426999856104, -34.765871000446282 ], [ -58.656069999830606, -34.764733000127819 ], [ -58.656156000199189, -34.764540000220791 ], [ -58.656156000199189, -34.764475999967374 ], [ -58.656542000013246, -34.763788999762482 ], [ -58.657186000033846, -34.762715999743534 ], [ -58.657401000056041, -34.762416000298117 ], [ -58.657807999939223, -34.762008000368894 ], [ -58.658259000052794, -34.761621999655517 ], [ -58.658731000235434, -34.761300000094877 ], [ -58.658924000142463, -34.761171000441266 ], [ -58.659288999887394, -34.76099999975014 ], [ -58.659738999954868, -34.760848999981306 ], [ -58.660532999698148, -34.7606780001895 ], [ -58.661026999996011, -34.760635000005209 ], [ -58.662056999830611, -34.760656000074277 ], [ -58.662313999991056, -34.760699000258626 ], [ -58.662442999644668, -34.760699000258626 ], [ -58.662914999827365, -34.760699000258626 ], [ -58.663773999870159, -34.760721000373849 ], [ -58.664460000028953, -34.760742000442917 ], [ -58.664803999704759, -34.760742000442917 ], [ -58.665812000323513, -34.760742000442917 ], [ -58.666391000044598, -34.760742000442917 ], [ -58.667141999603587, -34.760742000442917 ], [ -58.668151000268381, -34.760784999727889 ], [ -58.668773000173758, -34.76076399965882 ], [ -58.669181000103038, -34.76076399965882 ], [ -58.670275000191054, -34.760635000005209 ], [ -58.670962000395946, -34.760506000351597 ], [ -58.671949000046254, -34.759690999639872 ], [ -58.672549999882563, -34.759219000356552 ], [ -58.673065000249494, -34.758790000358204 ], [ -58.673150999718814, -34.758747000173855 ], [ -58.673751000408288, -34.758252999875992 ], [ -58.674331000175471, -34.757780999693352 ], [ -58.674909999896556, -34.757351999695004 ], [ -58.675124999918751, -34.757179999857044 ], [ -58.675510999732808, -34.756880000411627 ], [ -58.675876000377059, -34.756601000136016 ], [ -58.676670000120396, -34.756000000299707 ], [ -58.67726999991055, -34.755484999932776 ], [ -58.678493999698276, -34.754498000282467 ], [ -58.679717000339281, -34.753531999801908 ], [ -58.680424999713921, -34.752975000196045 ], [ -58.681089999803589, -34.752437999713891 ], [ -58.681798000077606, -34.751858999992805 ], [ -58.682527999567469, -34.751279000225622 ], [ -58.683213999726263, -34.750720999674343 ], [ -58.683944000115446, -34.75016400006848 ], [ -58.684609000205171, -34.749648999701549 ], [ -58.685316999579811, -34.749091000049589 ], [ -58.686024999853828, -34.748533000397629 ], [ -58.686798000427359, -34.747910999592932 ], [ -58.690294999814341, -34.745100000364687 ], [ -58.690982000019233, -34.744541999813407 ], [ -58.691669000224124, -34.744005000230516 ], [ -58.692291000129501, -34.743489999863584 ], [ -58.692376999598821, -34.743425999610167 ], [ -58.693019999573266, -34.742911000142499 ], [ -58.693578000124546, -34.742460000028927 ], [ -58.693771000031575, -34.742289000237122 ], [ -58.693986000053826, -34.74248200014415 ], [ -58.694479000305591, -34.742932000211624 ], [ -58.695187999726386, -34.743533000047876 ], [ -58.695852999816054, -34.744111999768904 ], [ -58.696561000090014, -34.744692000435407 ], [ -58.697269000364031, -34.745314000340784 ], [ -58.697504999556031, -34.745507000247812 ], [ -58.697719999578283, -34.745700000154841 ], [ -58.697913000384631, -34.746064999899772 ], [ -58.698019999923019, -34.746366000290664 ], [ -58.698212999830048, -34.746602000381984 ], [ -58.699070999826745, -34.747287999641401 ], [ -58.699886999685248, -34.747974999846349 ], [ -58.700638000143556, -34.748639999936017 ], [ -58.701452999955961, -34.749305000025686 ], [ -58.702246999699241, -34.749992000230577 ], [ -58.703062999557744, -34.750657000320246 ], [ -58.703963999738733, -34.751301000340845 ], [ -58.704006999923081, -34.751429999994457 ], [ -58.704715000197041, -34.752051999899834 ], [ -58.705872999639155, -34.753039000449462 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 287.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.338061, -34.801861 ], [ -58.337163, -34.802051 ], [ -58.336592, -34.802169 ], [ -58.33613, -34.802584 ], [ -58.335324, -34.803277 ], [ -58.336433, -34.803885 ], [ -58.337391, -34.804409 ], [ -58.338769, -34.805124 ], [ -58.338146, -34.805889 ], [ -58.338443, -34.806055 ], [ -58.338583, -34.806132 ], [ -58.33704, -34.808042 ], [ -58.33495, -34.810606 ], [ -58.334731, -34.810879 ], [ -58.334766, -34.810994 ], [ -58.334964, -34.811744 ], [ -58.335228, -34.812586 ], [ -58.336019, -34.815182 ], [ -58.336238, -34.81593 ], [ -58.342242, -34.818954 ], [ -58.342402, -34.819035 ], [ -58.342765, -34.818964 ], [ -58.343438, -34.818811 ], [ -58.344208, -34.818686 ], [ -58.345013, -34.818518 ], [ -58.345733, -34.81837 ], [ -58.346454, -34.818232 ], [ -58.34721, -34.818084 ], [ -58.347969, -34.817916 ], [ -58.348675, -34.817759 ], [ -58.348941, -34.818619 ], [ -58.349362, -34.819981 ], [ -58.349747, -34.821364 ], [ -58.349026, -34.821508 ], [ -58.348218, -34.821669 ], [ -58.34753, -34.821808 ], [ -58.346788, -34.821955 ], [ -58.346052, -34.822106 ], [ -58.345282, -34.822263 ], [ -58.344517, -34.822424 ], [ -58.344045, -34.822519 ], [ -58.344771, -34.82288 ], [ -58.345472, -34.823248 ], [ -58.346201, -34.823619 ], [ -58.34655, -34.823784 ], [ -58.346941, -34.823981 ], [ -58.347486, -34.824252 ], [ -58.347661, -34.824343 ], [ -58.348396, -34.824726 ], [ -58.349115, -34.825061 ], [ -58.349311, -34.825174 ], [ -58.349826, -34.825448 ], [ -58.350659, -34.824344 ], [ -58.35096, -34.823954 ], [ -58.351152, -34.823683 ], [ -58.351683, -34.822983 ], [ -58.352092, -34.822442 ], [ -58.352189, -34.822314 ], [ -58.352757, -34.821575 ], [ -58.352822, -34.821484 ], [ -58.353311, -34.820796 ], [ -58.353361, -34.820731 ], [ -58.35388, -34.820066 ], [ -58.353993, -34.819921 ], [ -58.355337, -34.818143 ], [ -58.355457, -34.818069 ], [ -58.354392, -34.817474 ], [ -58.354905, -34.816816 ], [ -58.355444, -34.816198 ], [ -58.355943, -34.815545 ], [ -58.357062, -34.816175 ], [ -58.357901, -34.816637 ], [ -58.358718, -34.817088 ], [ -58.359177, -34.817359 ], [ -58.359522, -34.817554 ], [ -58.359579, -34.817587 ], [ -58.360347, -34.818001 ], [ -58.360445, -34.818061 ], [ -58.361237, -34.81854 ], [ -58.361493, -34.818681 ], [ -58.361985, -34.818995 ], [ -58.362681, -34.81938 ], [ -58.363444, -34.819806 ], [ -58.36422, -34.820235 ], [ -58.364871, -34.820601 ], [ -58.364999, -34.820672 ], [ -58.365229, -34.820801 ], [ -58.365458, -34.820938 ], [ -58.367153, -34.821852 ], [ -58.367797, -34.822191 ], [ -58.368652, -34.822651 ], [ -58.36998, -34.82336 ], [ -58.371416, -34.824114 ], [ -58.372823, -34.824881 ], [ -58.374299, -34.825681 ], [ -58.375998, -34.826603 ], [ -58.377377, -34.82734 ], [ -58.378505, -34.827942 ], [ -58.379518, -34.828474 ], [ -58.380221, -34.828867 ], [ -58.380542, -34.829041 ], [ -58.381614, -34.829635 ], [ -58.381936, -34.829794 ], [ -58.382439, -34.830029 ], [ -58.383267, -34.830495 ], [ -58.38441, -34.831144 ], [ -58.385468, -34.831737 ], [ -58.386056, -34.832032 ], [ -58.386455, -34.831328 ], [ -58.386929, -34.830402 ], [ -58.387414, -34.82948 ], [ -58.387568, -34.829504 ], [ -58.388879, -34.829579 ], [ -58.389953, -34.829642 ], [ -58.389982, -34.829579 ], [ -58.390107, -34.828134 ], [ -58.391329, -34.828212 ], [ -58.391502, -34.828129 ], [ -58.391613, -34.827187 ], [ -58.391736, -34.826165 ], [ -58.391855, -34.825107 ], [ -58.393151, -34.82518 ], [ -58.394398, -34.825269 ], [ -58.395649, -34.82537 ], [ -58.39553, -34.826427 ], [ -58.395437999999899, -34.827439 ], [ -58.395356, -34.828373 ], [ -58.39535, -34.828474 ], [ -58.395336, -34.828575 ], [ -58.395169, -34.830042 ], [ -58.395031, -34.831084 ], [ -58.394938, -34.83213 ], [ -58.394839, -34.833125 ], [ -58.394741, -34.834166 ], [ -58.394532, -34.835798 ], [ -58.395699, -34.835877 ], [ -58.395826, -34.835888 ], [ -58.396315999999899, -34.835884 ], [ -58.39681, -34.835839 ], [ -58.398064, -34.835666 ], [ -58.399003, -34.835534 ], [ -58.399877, -34.835389 ], [ -58.400303, -34.835319 ], [ -58.4005, -34.835261 ], [ -58.400556, -34.835227 ], [ -58.400618, -34.835184 ], [ -58.400668, -34.83516 ], [ -58.400694, -34.835097 ], [ -58.400773, -34.835023 ], [ -58.400827, -34.834991 ], [ -58.400912, -34.834955 ], [ -58.401046, -34.834936 ], [ -58.401202, -34.834958 ], [ -58.401287, -34.834994 ], [ -58.401337, -34.835025 ], [ -58.401419, -34.835061 ], [ -58.401539, -34.835078 ], [ -58.40163, -34.835093 ], [ -58.401717, -34.835099 ], [ -58.40198, -34.83509 ], [ -58.404015999999899, -34.834796 ], [ -58.406288, -34.834447 ], [ -58.408592, -34.834101 ], [ -58.408808, -34.834071 ], [ -58.40973, -34.833926 ], [ -58.409908, -34.833864 ], [ -58.410372, -34.833726 ], [ -58.410592, -34.833634 ], [ -58.411102, -34.833415 ], [ -58.411389, -34.833242 ], [ -58.411876, -34.832938 ], [ -58.412279, -34.832627 ], [ -58.413942, -34.83128 ], [ -58.415036, -34.830405 ], [ -58.415761, -34.829817 ], [ -58.416411, -34.82929 ], [ -58.416569, -34.829174 ], [ -58.416936, -34.828873 ], [ -58.417195, -34.828634 ], [ -58.417671, -34.828277 ], [ -58.417928, -34.828052 ], [ -58.41852, -34.827587 ], [ -58.418595, -34.827519 ], [ -58.418703, -34.827439 ], [ -58.419853, -34.826499 ], [ -58.420145, -34.826239 ], [ -58.42096, -34.825629 ], [ -58.421929, -34.824835 ], [ -58.422618, -34.824278 ], [ -58.423201, -34.823814 ], [ -58.423881, -34.82327 ], [ -58.424489, -34.822765 ], [ -58.425584999999899, -34.821878 ], [ -58.425376, -34.821781 ], [ -58.424741, -34.821469 ], [ -58.42398, -34.821098 ], [ -58.424597, -34.820194 ], [ -58.424672, -34.820087 ], [ -58.42488, -34.819673 ], [ -58.424961, -34.819572 ], [ -58.425054, -34.81924 ], [ -58.425245, -34.818883 ], [ -58.425695, -34.818262 ], [ -58.426143, -34.81766 ], [ -58.426632, -34.817025 ], [ -58.427067, -34.816428 ], [ -58.42756, -34.815803 ], [ -58.428198, -34.814912 ], [ -58.428826, -34.814054 ], [ -58.429459, -34.813216 ], [ -58.42997, -34.812538 ], [ -58.430432, -34.811918 ], [ -58.431280999999899, -34.812327 ], [ -58.43207, -34.812718 ], [ -58.432525, -34.812105 ], [ -58.432963, -34.811509 ], [ -58.434053, -34.810034 ], [ -58.434783, -34.809085 ], [ -58.433991, -34.808692 ], [ -58.433186, -34.808276 ], [ -58.431734, -34.807505 ], [ -58.430285, -34.806799 ], [ -58.429002, -34.806118 ], [ -58.427725, -34.805427 ], [ -58.428193, -34.804824 ], [ -58.428759, -34.804097 ], [ -58.429532, -34.803087 ], [ -58.43029, -34.802089 ], [ -58.431072, -34.801076 ], [ -58.427819, -34.799444 ], [ -58.427009, -34.799022 ], [ -58.425816, -34.798396 ], [ -58.424535, -34.797744 ], [ -58.423194, -34.797069 ], [ -58.422625, -34.796785 ], [ -58.421553, -34.796231 ], [ -58.421136, -34.796015 ], [ -58.420598, -34.795734 ], [ -58.419404, -34.795126 ], [ -58.418684, -34.794757 ], [ -58.417954, -34.794398 ], [ -58.417661, -34.794253 ], [ -58.417141999999899, -34.79399 ], [ -58.415935, -34.793392 ], [ -58.414673, -34.792764 ], [ -58.413665, -34.792201 ], [ -58.412835, -34.791763 ], [ -58.411973, -34.791302 ], [ -58.411107999999899, -34.790823 ], [ -58.410263, -34.790368 ], [ -58.40966, -34.790041 ], [ -58.408402, -34.78934 ], [ -58.408285, -34.789355 ], [ -58.408114, -34.788573 ], [ -58.407935, -34.787722 ], [ -58.407634, -34.786367 ], [ -58.407559, -34.786036 ], [ -58.407509, -34.785824 ], [ -58.407237, -34.78465 ], [ -58.406618, -34.784354 ], [ -58.406012, -34.784011 ], [ -58.405416, -34.783714 ], [ -58.404367, -34.783147 ], [ -58.40322, -34.782518 ], [ -58.402077, -34.781889 ], [ -58.40095, -34.781209 ], [ -58.401438, -34.780543 ], [ -58.401633, -34.780319 ], [ -58.402006, -34.779878 ], [ -58.402406, -34.779382 ], [ -58.402545, -34.779214 ], [ -58.401176, -34.778447 ], [ -58.399944, -34.777776 ], [ -58.398746, -34.777105 ], [ -58.398069, -34.776764 ], [ -58.397929, -34.77669 ], [ -58.397306, -34.776321 ], [ -58.397447, -34.775347 ], [ -58.397507, -34.774835 ], [ -58.397759, -34.772602 ], [ -58.397909, -34.771194 ], [ -58.398015, -34.769977 ], [ -58.398138, -34.768787 ], [ -58.398297, -34.767595 ], [ -58.398339, -34.766626 ], [ -58.39835, -34.766454 ], [ -58.398462, -34.765574 ], [ -58.398577, -34.764583 ], [ -58.398662, -34.763667 ], [ -58.398643, -34.763406 ], [ -58.398419, -34.762181 ], [ -58.398193, -34.760951 ], [ -58.39802, -34.759798 ], [ -58.399377999999899, -34.759614 ], [ -58.400789, -34.759405 ], [ -58.402232, -34.759218 ], [ -58.401959, -34.75798 ], [ -58.401716, -34.756847 ], [ -58.401436, -34.755684 ], [ -58.401202, -34.754491 ], [ -58.400941, -34.753303 ], [ -58.400697, -34.75214 ], [ -58.400481, -34.750992 ], [ -58.400193, -34.749755 ], [ -58.399968, -34.748558 ], [ -58.399748, -34.747419 ], [ -58.399536, -34.746238 ], [ -58.399273, -34.744886 ], [ -58.399031, -34.743665 ], [ -58.39882, -34.742539 ], [ -58.398584, -34.741345 ], [ -58.398342, -34.740056 ], [ -58.398087, -34.738905 ], [ -58.397846, -34.737716 ], [ -58.397597, -34.736477 ], [ -58.397361, -34.735273 ], [ -58.397107, -34.734115 ], [ -58.397246, -34.734094 ], [ -58.398377, -34.733923 ], [ -58.399911, -34.733639 ], [ -58.401352, -34.733379 ], [ -58.40282, -34.733136 ], [ -58.403057, -34.734314 ], [ -58.404533999999899, -34.734095 ], [ -58.40592, -34.733886 ], [ -58.407286, -34.733666 ], [ -58.408892, -34.733384 ], [ -58.40982, -34.733278 ], [ -58.410315, -34.733218 ], [ -58.411602, -34.733027 ], [ -58.411765, -34.733003 ], [ -58.413058, -34.732815 ], [ -58.413279, -34.732781 ], [ -58.413312, -34.732739 ], [ -58.413452, -34.732549 ], [ -58.414246, -34.731475 ], [ -58.414998, -34.730475 ], [ -58.41558, -34.729694 ], [ -58.416036, -34.72906 ], [ -58.416342, -34.728643 ], [ -58.416593, -34.728319 ], [ -58.416833, -34.728 ], [ -58.417103, -34.727639 ], [ -58.4177, -34.726872 ], [ -58.41883, -34.727453 ], [ -58.41928, -34.727683 ], [ -58.419958, -34.728044 ], [ -58.42046, -34.728312 ], [ -58.420816, -34.728497 ], [ -58.421025, -34.72861 ], [ -58.421443, -34.728838 ], [ -58.421863, -34.729062 ], [ -58.42245, -34.729406 ], [ -58.423417, -34.729917 ], [ -58.423921, -34.730204 ], [ -58.42434, -34.730423 ], [ -58.424712, -34.730622 ], [ -58.425287, -34.730909 ], [ -58.426191, -34.73138 ], [ -58.426735, -34.731677 ], [ -58.427277, -34.73195 ], [ -58.427778, -34.732186 ], [ -58.428476, -34.732564 ], [ -58.429379, -34.733043 ], [ -58.429817, -34.733253 ], [ -58.430564, -34.733663 ], [ -58.431038, -34.733924 ], [ -58.431645, -34.734255 ], [ -58.432077, -34.734486 ], [ -58.432721, -34.734839 ], [ -58.433215, -34.735083 ], [ -58.433824999999899, -34.735407 ], [ -58.4343, -34.735682 ], [ -58.434702, -34.735917 ], [ -58.434753, -34.735836 ], [ -58.434984, -34.735481 ], [ -58.435413, -34.734886 ], [ -58.435439, -34.734849 ], [ -58.435493, -34.734778 ], [ -58.43575, -34.734441 ], [ -58.436198, -34.733835 ], [ -58.436241, -34.733777 ], [ -58.436301, -34.733695 ], [ -58.437015, -34.732744 ], [ -58.437086, -34.732654 ], [ -58.437141, -34.73258 ], [ -58.437352, -34.73231 ], [ -58.437796, -34.731726 ], [ -58.437923, -34.731561 ], [ -58.437989, -34.731471 ], [ -58.438227, -34.731174 ], [ -58.438697, -34.730544 ], [ -58.438781, -34.730449 ], [ -58.438822, -34.730396 ], [ -58.439068, -34.730071 ], [ -58.439588, -34.729424 ], [ -58.439631, -34.729361 ], [ -58.439676, -34.729308 ], [ -58.439903999999899, -34.729014 ], [ -58.440403, -34.728371 ], [ -58.440466999999899, -34.728279 ], [ -58.440519, -34.728215 ], [ -58.440966, -34.727664 ], [ -58.441019, -34.727595 ], [ -58.441087, -34.727502 ], [ -58.441569999999899, -34.726877 ], [ -58.441638, -34.726808 ], [ -58.441898, -34.726476 ], [ -58.442304, -34.72595 ], [ -58.442356, -34.725892 ], [ -58.442733, -34.725391 ], [ -58.44281, -34.72528 ], [ -58.442856, -34.725238 ], [ -58.443188, -34.724816 ], [ -58.443349, -34.724623 ], [ -58.443391, -34.724571 ], [ -58.443685, -34.724196 ], [ -58.443801, -34.724056 ], [ -58.443837, -34.724012 ], [ -58.444079, -34.723699 ], [ -58.44416, -34.723591 ], [ -58.444275, -34.723442 ], [ -58.444341, -34.723367 ], [ -58.444387, -34.723307 ], [ -58.444612, -34.723009 ], [ -58.444895, -34.722652 ], [ -58.444934, -34.722598 ], [ -58.44498, -34.722537 ], [ -58.445696, -34.721616 ], [ -58.445778, -34.72151 ], [ -58.447583, -34.719211 ], [ -58.448252, -34.718405 ], [ -58.448327, -34.718315 ], [ -58.449252, -34.717135 ], [ -58.449307, -34.717066 ], [ -58.449605, -34.716618 ], [ -58.449759, -34.716334 ], [ -58.449892, -34.716114 ], [ -58.450263, -34.715621 ], [ -58.45052, -34.715302 ], [ -58.450748, -34.714995 ], [ -58.451123, -34.714638 ], [ -58.451603, -34.7143 ], [ -58.452218, -34.713514 ], [ -58.452252, -34.713467 ], [ -58.452291, -34.713424 ], [ -58.452749, -34.712883 ], [ -58.453133, -34.712405 ], [ -58.45428, -34.710983 ], [ -58.45468, -34.710451 ], [ -58.455708, -34.709174 ], [ -58.456169, -34.708729 ], [ -58.456513, -34.708458 ], [ -58.456051, -34.708451 ], [ -58.456215, -34.708234 ], [ -58.457613, -34.707095 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 285.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.564139086999944, -34.641356411999936 ], [ -58.564079284999934, -34.641635894999922 ], [ -58.563484191999919, -34.642181395999955 ], [ -58.562416076999909, -34.643154143999936 ], [ -58.562022082999931, -34.643016627999941 ], [ -58.561038970999903, -34.642673491999915 ], [ -58.560405730999946, -34.643241881999927 ], [ -58.560127748999946, -34.643486998999947 ], [ -58.559631347999925, -34.643924712999933 ], [ -58.558799743999941, -34.644683837999935 ], [ -58.5579681399999, -34.645420073999958 ], [ -58.557941436999954, -34.645442962999937 ], [ -58.557018279999909, -34.646274566999921 ], [ -58.556076049999945, -34.647121428999924 ], [ -58.555091857999912, -34.647998809999933 ], [ -58.554592132999915, -34.648445128999924 ], [ -58.554103850999923, -34.648891448999905 ], [ -58.553604125999925, -34.649333953999928 ], [ -58.553108210999937, -34.64978018599993 ], [ -58.552120208999952, -34.650676726999905 ], [ -58.551393276999931, -34.651341187999947 ], [ -58.5511436459999, -34.651569365999933 ], [ -58.551502227999947, -34.651824950999924 ], [ -58.551369119999947, -34.651940167999953 ], [ -58.550792693999938, -34.652439116999915 ], [ -58.551513671999942, -34.653022765999935 ], [ -58.55125165499993, -34.65325753299993 ], [ -58.551036834999934, -34.653450011999951 ], [ -58.550392150999926, -34.654037475999928 ], [ -58.549484252999946, -34.654846190999933 ], [ -58.548542022999925, -34.655693053999926 ], [ -58.548461913999915, -34.655712127999948 ], [ -58.547920226999906, -34.656253814999957 ], [ -58.547302245999902, -34.656814574999942 ], [ -58.546546935999913, -34.657497405999948 ], [ -58.545738219999919, -34.658226012999933 ], [ -58.544853209999928, -34.659011840999938 ], [ -58.543590545999905, -34.660167693999938 ], [ -58.543033599999944, -34.660648345999903 ], [ -58.542591094999921, -34.661048888999915 ], [ -58.542137145999902, -34.661457061999954 ], [ -58.541683196999941, -34.661865233999947 ], [ -58.541549682999914, -34.661998748999906 ], [ -58.540885924999941, -34.662593841999922 ], [ -58.540199279999911, -34.663208007999913 ], [ -58.539478301999907, -34.663856505999945 ], [ -58.538833617999899, -34.664455413999917 ], [ -58.538391112999932, -34.664817809999931 ], [ -58.537525176999907, -34.665599822999923 ], [ -58.536617278999927, -34.666408538999917 ], [ -58.535697936999952, -34.667228698999907 ], [ -58.534755706999931, -34.668056487999934 ], [ -58.53447237499995, -34.668320635999919 ], [ -58.534023284999932, -34.66873931899994 ], [ -58.534927851999953, -34.669309891999944 ], [ -58.535015105999946, -34.669364928999926 ], [ -58.53586959799992, -34.669914245999905 ], [ -58.536670684999933, -34.670448302999944 ], [ -58.536731719999921, -34.670486449999942 ], [ -58.537593841999922, -34.671047210999916 ], [ -58.538448333999952, -34.671604155999944 ], [ -58.539310454999907, -34.672176360999913 ], [ -58.540172576999908, -34.67273330699993 ], [ -58.541034697999919, -34.673294066999915 ], [ -58.541831969999919, -34.673820495999905 ], [ -58.542522429999906, -34.674259185999915 ], [ -58.543212890999939, -34.674716948999958 ], [ -58.543899535999913, -34.675159453999925 ], [ -58.544517516999917, -34.675571441999921 ], [ -58.544811248999906, -34.67575454699994 ], [ -58.545188903999929, -34.676002501999903 ], [ -58.545890807999911, -34.676464080999949 ], [ -58.546764373999906, -34.677032470999904 ], [ -58.547637938999912, -34.677608489999955 ], [ -58.548347472999922, -34.678070067999954 ], [ -58.548535393999941, -34.678260199999954 ], [ -58.548595604999946, -34.678321119999907 ], [ -58.548671721999938, -34.678398131999927 ], [ -58.548789977999945, -34.678352355999948 ], [ -58.549781798999902, -34.679061889999957 ], [ -58.550613402999943, -34.679649352999945 ], [ -58.551320650999912, -34.680153228999927 ], [ -58.551502227999947, -34.680282592999902 ], [ -58.552169799999945, -34.679782866999915 ], [ -58.553264617999901, -34.67897415199991 ], [ -58.554401397999925, -34.678115844999923 ], [ -58.555541991999917, -34.677261352999949 ], [ -58.556249406999939, -34.676733872999932 ], [ -58.556636809999929, -34.676445006999927 ], [ -58.555862426999909, -34.675735473999907 ], [ -58.555352548999906, -34.675267431999941 ], [ -58.555118560999915, -34.675052642999958 ], [ -58.555503844999919, -34.674793242999954 ], [ -58.555675506999933, -34.674667357999908 ], [ -58.555923461999953, -34.674465178999924 ], [ -58.556228637999936, -34.674232482999912 ], [ -58.556467587999919, -34.67445076599995 ], [ -58.556968603999906, -34.67490844799994 ], [ -58.557006735999948, -34.674942912999938 ], [ -58.557750318999922, -34.675624481999932 ], [ -58.558536137999909, -34.676330280999935 ], [ -58.558249130999911, -34.67654321099991 ], [ -58.557430266999916, -34.677150725999923 ], [ -58.556335448999903, -34.677967071999944 ], [ -58.555187224999941, -34.678825377999942 ], [ -58.554050445999906, -34.679679870999905 ], [ -58.552955626999903, -34.680503844999919 ], [ -58.553108595999902, -34.680643409999902 ], [ -58.553695678999929, -34.681179046999944 ], [ -58.554186803999926, -34.681613691999928 ], [ -58.554458617999899, -34.681854247999922 ], [ -58.554088592999904, -34.682125091999922 ], [ -58.553981780999948, -34.682205199999942 ], [ -58.552822112999934, -34.683090209999932 ], [ -58.55147170999993, -34.684127807999914 ], [ -58.550744049999935, -34.684694879999938 ], [ -58.550365447999923, -34.684989928999926 ], [ -58.551151275999928, -34.685672759999932 ], [ -58.551849364999953, -34.68629455599995 ], [ -58.552577971999938, -34.687007903999927 ], [ -58.553524016999916, -34.687839507999911 ], [ -58.553676604999907, -34.687969207999913 ], [ -58.554124503999901, -34.688364010999919 ], [ -58.554695483999922, -34.688892933999909 ], [ -58.55512488699992, -34.68929070899992 ], [ -58.555215585999917, -34.689357179999945 ], [ -58.555427234999911, -34.689508514999943 ], [ -58.555059827999912, -34.689827088999948 ], [ -58.554435904999934, -34.690368082999953 ], [ -58.553286376999949, -34.691202824999948 ], [ -58.552257537999935, -34.692050933999951 ], [ -58.55039596599994, -34.693588256999931 ], [ -58.548824811999907, -34.694776599999955 ], [ -58.547932172999936, -34.695459430999904 ], [ -58.547905469999932, -34.695478504999926 ], [ -58.547009015999947, -34.69614226199991 ], [ -58.546280408999905, -34.696699207999927 ], [ -58.542572019999909, -34.699464145999912 ], [ -58.542416850999928, -34.699634831999902 ], [ -58.542171477999943, -34.699970244999918 ], [ -58.542009567999912, -34.700166106999916 ], [ -58.541776814999935, -34.700340671999925 ], [ -58.541691438999919, -34.700400769999931 ], [ -58.541581927999914, -34.700452034999955 ], [ -58.54140306599993, -34.70056268299993 ], [ -58.541282212999931, -34.700643250999917 ], [ -58.541240677999951, -34.700658921999946 ], [ -58.541084289999901, -34.700717925999925 ], [ -58.540752698999938, -34.700829453999916 ], [ -58.540290832999915, -34.701114654999913 ], [ -58.53983306899994, -34.701396941999917 ], [ -58.539104461999955, -34.701881408999952 ], [ -58.538371175999941, -34.702371906999929 ], [ -58.537399291999918, -34.703022002999944 ], [ -58.535743712999931, -34.704288482999914 ], [ -58.534200620999911, -34.705542058999924 ], [ -58.533771514999955, -34.705890655999951 ], [ -58.532386779999911, -34.707031249999943 ], [ -58.531475066999917, -34.707679748999908 ], [ -58.530990600999928, -34.708015441999919 ], [ -58.530300193999949, -34.70851106899994 ], [ -58.529624938999916, -34.708995818999938 ], [ -58.528823402999933, -34.709634155999936 ], [ -58.528145588999905, -34.710173960999953 ], [ -58.52814483599991, -34.710174560999917 ], [ -58.528068125999937, -34.710236422999913 ], [ -58.527908324999942, -34.710365294999917 ], [ -58.527225493999936, -34.710922240999935 ], [ -58.526863097999922, -34.711219787999937 ], [ -58.526279448999901, -34.711669921999942 ], [ -58.525535582999908, -34.712249755999949 ], [ -58.525497743999949, -34.71228218899995 ], [ -58.525375365999935, -34.712387084999932 ], [ -58.525180816999921, -34.712554931999932 ], [ -58.525123595999901, -34.71261596699992 ], [ -58.524864196999943, -34.712886809999929 ], [ -58.52349090599995, -34.713855742999954 ], [ -58.522987365999938, -34.71421050999993 ], [ -58.522914214999901, -34.714292803999911 ], [ -58.522895812999934, -34.714313506999929 ], [ -58.522338866999917, -34.714740752999944 ], [ -58.522331237999936, -34.714748382999915 ], [ -58.521667479999905, -34.715270995999902 ], [ -58.520252227999947, -34.71644210799991 ], [ -58.520167428999912, -34.716507107999917 ], [ -58.520063672999925, -34.716447592999941 ], [ -58.519944509999902, -34.716379238999934 ], [ -58.519922057999906, -34.716366355999924 ], [ -58.521717071999944, -34.714820861999954 ], [ -58.522159385999942, -34.71450266599993 ], [ -58.522464751999905, -34.714282989999901 ], [ -58.523174285999914, -34.713726043999941 ], [ -58.523181914999952, -34.713722228999927 ], [ -58.524654387999931, -34.712692260999916 ], [ -58.52475738499993, -34.71261596699992 ], [ -58.524920382999937, -34.71261596699992 ], [ -58.52493071899994, -34.71261596699992 ], [ -58.525123595999901, -34.71261596699992 ], [ -58.524864196999943, -34.712886809999929 ], [ -58.523528682999938, -34.713829088999944 ], [ -58.52349090599995, -34.713855742999954 ], [ -58.522987365999938, -34.71421050999993 ], [ -58.522914214999901, -34.714292803999911 ], [ -58.522895812999934, -34.714313506999929 ], [ -58.522338866999917, -34.714740752999944 ], [ -58.522331237999936, -34.714748382999915 ], [ -58.521667479999905, -34.715270995999902 ], [ -58.520252227999947, -34.71644210799991 ], [ -58.520167428999912, -34.716507107999917 ], [ -58.519743987999902, -34.716831833999947 ], [ -58.51949486399991, -34.717022865999922 ], [ -58.519401549999941, -34.717094420999956 ], [ -58.51925659199992, -34.717262267999956 ], [ -58.519209710999917, -34.71732183499995 ], [ -58.518372535999902, -34.71838553799995 ], [ -58.518283843999939, -34.718498229999909 ], [ -58.517494201999909, -34.719528197999921 ], [ -58.517219542999953, -34.719867705999945 ], [ -58.516639708999946, -34.720436095999958 ], [ -58.516429900999924, -34.720668792999902 ], [ -58.51639556899994, -34.720703124999943 ], [ -58.515464191999911, -34.721785178999937 ], [ -58.515258877999941, -34.721967047999954 ], [ -58.514567786999919, -34.722609009999928 ], [ -58.514259672999913, -34.722914291999928 ], [ -58.514028110999902, -34.723118403999933 ], [ -58.513885140999946, -34.723244424999905 ], [ -58.513671383999906, -34.723432842999955 ], [ -58.512652121999906, -34.724135461999936 ], [ -58.511750238999923, -34.72475716699995 ], [ -58.511285063999935, -34.725006885999903 ], [ -58.510075015999917, -34.725612605999913 ], [ -58.509078437999904, -34.725971413999957 ], [ -58.508223595999937, -34.726294252999935 ], [ -58.506908647999921, -34.727006249999931 ], [ -58.506886574999953, -34.727018201999954 ], [ -58.50665207499992, -34.727216515999942 ], [ -58.505688353999915, -34.728031522999913 ], [ -58.505011181999919, -34.728747447999922 ], [ -58.504486753999913, -34.729441410999925 ], [ -58.503851245999954, -34.730288129999906 ], [ -58.502545119999922, -34.732074031999957 ], [ -58.50231307599995, -34.732383462999906 ], [ -58.501628292999953, -34.733289748999937 ], [ -58.501100641999926, -34.73396260599992 ], [ -58.500561871999935, -34.734736765999912 ], [ -58.500314553999942, -34.735076301999925 ], [ -58.500006415999906, -34.735486439999931 ], [ -58.4999237319999, -34.735600331999933 ], [ -58.499401760999945, -34.736189903999957 ], [ -58.499086581999904, -34.736669013999915 ], [ -58.498852771999907, -34.737024432999931 ], [ -58.49799143599995, -34.738170645999958 ], [ -58.497267535999924, -34.739038851999908 ], [ -58.496461229999909, -34.740128355999957 ], [ -58.494895719999931, -34.742164487999958 ], [ -58.49467119499991, -34.742450533999943 ], [ -58.493883969999899, -34.743506268999909 ], [ -58.493417206999936, -34.744098656999938 ], [ -58.493279884999936, -34.744281000999933 ], [ -58.492927564999945, -34.744784718999938 ], [ -58.491883719999919, -34.746124542999951 ], [ -58.490915431999952, -34.747372786999904 ], [ -58.490418289999923, -34.74809816599992 ], [ -58.489888805999954, -34.748808610999902 ], [ -58.489406623999912, -34.749475618999952 ], [ -58.488956914999903, -34.750145943999939 ], [ -58.487220986999944, -34.752450823999936 ], [ -58.487021107999908, -34.752694444999918 ], [ -58.486517652999908, -34.75335119999994 ], [ -58.486018054999931, -34.754013162999911 ], [ -58.485594698999932, -34.754605493999918 ], [ -58.485119877999921, -34.755252901999938 ], [ -58.484481883999933, -34.756089263999911 ], [ -58.483800512999949, -34.75694785099995 ], [ -58.483138265999912, -34.757798363999939 ], [ -58.482682681999904, -34.758495412999935 ], [ -58.482200534999947, -34.759105236999915 ], [ -58.48186996499993, -34.759533521999913 ], [ -58.481216638999911, -34.760336606999942 ], [ -58.480592011999931, -34.761141318999933 ], [ -58.479880752999918, -34.762096778999933 ], [ -58.479595509999911, -34.762449425999932 ], [ -58.478984561999937, -34.763367799999912 ], [ -58.478498242999933, -34.764046413999949 ], [ -58.477083787999902, -34.765928968999958 ], [ -58.476616518999947, -34.766600915999902 ], [ -58.476179625999919, -34.767233794999925 ], [ -58.475478491999922, -34.768192771999907 ], [ -58.475351344999922, -34.76835243499994 ], [ -58.473907550999911, -34.770227725999916 ], [ -58.473331224999924, -34.771053453999912 ], [ -58.47247909999993, -34.771931973999926 ], [ -58.472174823999922, -34.772242410999922 ], [ -58.471867949999933, -34.772483028999943 ], [ -58.471430163999912, -34.772724364999931 ], [ -58.470801903999927, -34.772949480999955 ], [ -58.470002179999938, -34.773139459999925 ], [ -58.469379558999947, -34.773248451999905 ], [ -58.467536472999939, -34.773432641999932 ], [ -58.466291729999909, -34.774028761999944 ], [ -58.463838580999948, -34.77520360099993 ], [ -58.46131293399992, -34.776334171999906 ], [ -58.46130977599995, -34.776335585999902 ], [ -58.46104478299992, -34.776668042999916 ], [ -58.461044755999922, -34.776668075999908 ], [ -58.459854684999925, -34.778161120999926 ], [ -58.45978273399993, -34.77826429299995 ], [ -58.459108468999943, -34.779231129999914 ], [ -58.457740300999944, -34.780978722999919 ], [ -58.457193614999937, -34.781678555999918 ], [ -58.456161104999921, -34.78300030999992 ], [ -58.455641360999948, -34.783619095999939 ], [ -58.45555248699992, -34.783724905999918 ], [ -58.455498173999899, -34.783789568999907 ], [ -58.455148089999909, -34.784238511999945 ], [ -58.454486254999949, -34.785087239999939 ], [ -58.453795996999929, -34.786037900999929 ], [ -58.453271973999904, -34.786759615999927 ], [ -58.45167078399993, -34.788956587999905 ], [ -58.451552093999908, -34.789120683999954 ], [ -58.451188478999939, -34.789623401999904 ], [ -58.451046559999952, -34.789819613999953 ], [ -58.450355501999923, -34.790773078999905 ], [ -58.449676453999928, -34.791663261999929 ], [ -58.449654396999904, -34.791692176999902 ], [ -58.448209481999925, -34.793576034999944 ], [ -58.447776133999923, -34.794103365999945 ], [ -58.447418844999902, -34.794608815999936 ], [ -58.447149841999931, -34.794996406999928 ], [ -58.447043541999903, -34.795149569999921 ], [ -58.446648923999931, -34.795690701999945 ], [ -58.446261755999899, -34.796193799999912 ], [ -58.445863061999944, -34.796704299999931 ], [ -58.4456482679999, -34.796977307999953 ], [ -58.445464411999922, -34.797210992999908 ], [ -58.445046389999902, -34.797743981999929 ], [ -58.444623882999906, -34.798280273999922 ], [ -58.44408907299993, -34.798959113999956 ], [ -58.443920290999927, -34.79918067299991 ], [ -58.443682656999954, -34.799492611999938 ], [ -58.442953630999909, -34.800463312999909 ], [ -58.442885076999914, -34.800554592999902 ], [ -58.442661156999918, -34.800856350999936 ], [ -58.442460647999951, -34.801126558999954 ], [ -58.442048667999927, -34.80169055999994 ], [ -58.441968078999935, -34.80180088599991 ], [ -58.44143377599994, -34.802524396999956 ], [ -58.441301275999933, -34.802704303999917 ], [ -58.44092601299991, -34.803213829999947 ], [ -58.440433389999953, -34.803880517999914 ], [ -58.439879935999954, -34.80459998799995 ], [ -58.439773860999935, -34.804747755999927 ], [ -58.439841435999938, -34.805115253999929 ], [ -58.439773640999931, -34.805267278999906 ], [ -58.439732375999938, -34.805299361999914 ], [ -58.439667115999953, -34.805350100999931 ], [ -58.439572066999915, -34.805433052999945 ], [ -58.439472581999951, -34.805458603999909 ], [ -58.439315180999927, -34.805487177999908 ], [ -58.439165974999923, -34.805525245999945 ], [ -58.439149759999907, -34.805529382999907 ], [ -58.439115544999936, -34.805538112999955 ], [ -58.439004204999947, -34.805605389999926 ], [ -58.439003871999944, -34.80560586799993 ], [ -58.438493513999902, -34.806338953999955 ], [ -58.43773325199993, -34.807336403999955 ], [ -58.437157295999953, -34.808088233999911 ], [ -58.436976829999935, -34.80832627399991 ], [ -58.436604375999934, -34.808821278999915 ], [ -58.436327917999904, -34.809176361999903 ], [ -58.436228673999949, -34.809303511999929 ], [ -58.436162811999907, -34.809387894999929 ], [ -58.436015512999916, -34.809582745999933 ], [ -58.4359285889999, -34.809697731999904 ], [ -58.435314234999908, -34.810506294999925 ], [ -58.4351875239999, -34.810672536999903 ], [ -58.434521399999937, -34.811546422999925 ], [ -58.434090298999934, -34.812117215999933 ], [ -58.4336438119999, -34.81269547799991 ], [ -58.433212864999916, -34.81327372699991 ], [ -58.432717181999919, -34.813915411999915 ], [ -58.432221731999903, -34.814568280999936 ], [ -58.431707394999933, -34.815247263999936 ], [ -58.431593772999918, -34.815389035999942 ], [ -58.431225959999949, -34.815878228999907 ], [ -58.430954172999918, -34.816246618999912 ], [ -58.430755138999928, -34.816518049999956 ], [ -58.430334005999953, -34.817075514999942 ], [ -58.430318576999923, -34.817095938999955 ], [ -58.430289183999946, -34.817140519999953 ], [ -58.430279640999913, -34.817154994999953 ], [ -58.429902157999948, -34.817727531999935 ], [ -58.4294437289999, -34.818391294999913 ], [ -58.428963954999915, -34.819042581999952 ], [ -58.428751917999932, -34.819328225999925 ], [ -58.42861365999994, -34.819484271999954 ], [ -58.428433235999933, -34.819636291999927 ], [ -58.427782944999933, -34.820183564999923 ], [ -58.427147633999937, -34.820715621999909 ], [ -58.426598548999948, -34.821164003999911 ], [ -58.425649073999921, -34.821943105999935 ], [ -58.424534402999939, -34.822830439999905 ], [ -58.423906215999921, -34.823314254999957 ], [ -58.423374371999955, -34.823725360999902 ], [ -58.423243133999904, -34.823821918999954 ], [ -58.423228232999918, -34.82383288199992 ], [ -58.423216383999943, -34.823841599999923 ], [ -58.423120984999912, -34.823913356999924 ], [ -58.422595191999903, -34.824335145999953 ], [ -58.421902622999937, -34.824882576999926 ], [ -58.420173595999927, -34.826264109999954 ], [ -58.418711901999927, -34.827432036999937 ], [ -58.418633992999901, -34.827509514999917 ], [ -58.418552173999899, -34.827587017999917 ], [ -58.417827208999938, -34.828195938999954 ], [ -58.417265979999911, -34.828676798999936 ], [ -58.416985322999949, -34.828905680999924 ], [ -58.416624395999918, -34.829215382999905 ], [ -58.416516098999921, -34.829309946999956 ], [ -58.415881574999901, -34.829835533999926 ], [ -58.415142561999915, -34.830444281999917 ], [ -58.413791305999951, -34.83149910599991 ], [ -58.412681208999913, -34.832364382999913 ], [ -58.412028451999902, -34.832867507999936 ], [ -58.411352549999947, -34.83324405299993 ], [ -58.411270503999901, -34.833289693999916 ], [ -58.410778318999917, -34.833521382999947 ], [ -58.410264339999912, -34.833709283999951 ], [ -58.409611511999913, -34.833920544999955 ], [ -58.408931322999933, -34.83408180899994 ], [ -58.408744209999952, -34.834114558999943 ], [ -58.408422313999949, -34.834167948999948 ], [ -58.406513213999915, -34.834476470999903 ], [ -58.404121398999905, -34.834831237999936 ], [ -58.402605688999927, -34.835059284999943 ], [ -58.401611327999944, -34.835208892999958 ], [ -58.401557921999938, -34.835437774999946 ], [ -58.401473998999904, -34.835590362999937 ], [ -58.401317595999899, -34.835693358999947 ], [ -58.401214599999946, -34.835754394999924 ], [ -58.401092528999925, -34.835746764999953 ], [ -58.400939940999933, -34.835735320999902 ], [ -58.400791167999955, -34.835693358999947 ], [ -58.40064239499992, -34.835613250999927 ], [ -58.400577544999919, -34.835536956999931 ], [ -58.400558992999947, -34.835503562999918 ], [ -58.400539397999921, -34.835468291999916 ], [ -58.400508880999951, -34.835399627999948 ], [ -58.400501250999923, -34.835285186999954 ], [ -58.400512694999918, -34.835147857999914 ], [ -58.400577544999919, -34.835037230999944 ], [ -58.400714873999902, -34.83492279099994 ], [ -58.40090179099991, -34.83486556899993 ], [ -58.400584480999953, -34.833814334999943 ], [ -58.400360820999936, -34.833076558999949 ], [ -58.400290169999948, -34.832621738999933 ], [ -58.400289546999943, -34.832594988999915 ], [ -58.399992747999931, -34.831941196999935 ], [ -58.399828365999952, -34.831565893999937 ], [ -58.39964778399991, -34.831153602999905 ], [ -58.39928315599991, -34.830327771999919 ], [ -58.398985115999949, -34.830266285999926 ], [ -58.398484358999951, -34.830233441999951 ], [ -58.397680295999919, -34.830180704999918 ], [ -58.397597745999917, -34.831258482999942 ], [ -58.397512590999952, -34.832195962999947 ], [ -58.397494447999918, -34.832280148999928 ], [ -58.396632095999905, -34.83222113599993 ], [ -58.396270526999899, -34.832196392999947 ], [ -58.395019893999915, -34.832108820999906 ], [ -58.393768759999944, -34.832024921999903 ], [ -58.393807385999935, -34.831605255999932 ], [ -58.393853978999914, -34.83109903299993 ], [ -58.39396125199994, -34.829936520999922 ], [ -58.394084026999906, -34.828495851999946 ], [ -58.39409416299992, -34.828392935999943 ], [ -58.393301730999951, -34.828343710999945 ], [ -58.392853364999951, -34.828315858999929 ], [ -58.39137143399995, -34.828204924999909 ], [ -58.391540854999903, -34.828124946999935 ], [ -58.391606169999932, -34.827507271999934 ], [ -58.391639608999924, -34.82719103799991 ], [ -58.391756997999948, -34.826162140999941 ], [ -58.391868208999938, -34.825088123999933 ], [ -58.391994502999921, -34.824025534999919 ], [ -58.392113202999951, -34.822989604999918 ], [ -58.392231637999942, -34.821962457999916 ], [ -58.392239233999931, -34.821939734999944 ], [ -58.392288498999903, -34.821905789999903 ], [ -58.392989490999923, -34.820956854999906 ], [ -58.393686903999935, -34.820011464999936 ], [ -58.394506274999912, -34.81891795599995 ], [ -58.394506262999926, -34.818876305999936 ], [ -58.39508552399991, -34.818048730999919 ], [ -58.395607619999907, -34.817300880999937 ], [ -58.395622844999934, -34.817217523999943 ], [ -58.395638075999955, -34.817149311999913 ], [ -58.396007735999945, -34.816621635999923 ], [ -58.396592766999902, -34.815796659999933 ], [ -58.397214258999952, -34.814915101999929 ], [ -58.397706495999955, -34.81420505199992 ], [ -58.397717608999926, -34.814189739999904 ], [ -58.398255338999945, -34.813496610999948 ], [ -58.398666644999935, -34.812968078999916 ], [ -58.399341507999907, -34.812138901999901 ], [ -58.399477592999915, -34.811971699999958 ], [ -58.399941928999908, -34.811398626999903 ], [ -58.400599890999899, -34.810586585999943 ], [ -58.400413189999938, -34.810661203999928 ], [ -58.40034051899994, -34.810690247999958 ], [ -58.400259490999929, -34.810722631999909 ], [ -58.399084986999924, -34.810042650999947 ], [ -58.398424011999907, -34.809671311999921 ], [ -58.398163517999933, -34.809644073999948 ], [ -58.397763770999916, -34.809406769999953 ], [ -58.396622213999933, -34.808733118999953 ], [ -58.396041701999934, -34.808367727999951 ], [ -58.39559483599993, -34.808086456999945 ], [ -58.396407932999921, -34.807073512999921 ], [ -58.39723327899992, -34.806062176999944 ], [ -58.397710929999903, -34.805477376999931 ], [ -58.398062435999918, -34.805047018999915 ], [ -58.397986105999905, -34.804994603999944 ], [ -58.396775164999951, -34.804284682999935 ], [ -58.39627738899992, -34.803983859999903 ], [ -58.395804068999951, -34.803697815999953 ], [ -58.396402237999951, -34.802972653999916 ], [ -58.39690651199993, -34.802341132999913 ], [ -58.397184704999916, -34.80202545599991 ], [ -58.397903894999899, -34.801166197999919 ], [ -58.397822041999916, -34.801000636999902 ], [ -58.397377526999946, -34.800730297999905 ], [ -58.396312447999946, -34.800082551999935 ], [ -58.395377283999949, -34.799500360999957 ], [ -58.394514277999917, -34.798972130999914 ], [ -58.394307806999905, -34.798834905999911 ], [ -58.394293861999927, -34.798825637999926 ], [ -58.394258401999934, -34.798805339999944 ], [ -58.394139994999932, -34.79873755999995 ], [ -58.393699474999949, -34.798485391999918 ], [ -58.393350736999935, -34.79828576299991 ], [ -58.392957537999905, -34.798762390999912 ], [ -58.392429227999912, -34.799427390999938 ], [ -58.391210319999914, -34.800915648999933 ], [ -58.390803864999953, -34.801401631999909 ], [ -58.390676800999927, -34.80155355799991 ], [ -58.390761867999913, -34.801703068999927 ], [ -58.389968451999948, -34.801234932999932 ], [ -58.389203662999932, -34.800795810999944 ], [ -58.388884756999914, -34.800612703999946 ], [ -58.388628838999921, -34.800767643999905 ], [ -58.388274635999949, -34.800607570999944 ], [ -58.388282682999943, -34.800484385999937 ], [ -58.388297198999908, -34.80026218699993 ], [ -58.388630522999904, -34.800136361999932 ], [ -58.388651654999933, -34.799416941999937 ], [ -58.388692369999944, -34.798034546999929 ], [ -58.388704234999921, -34.797631714999909 ], [ -58.388516227999901, -34.797630200999947 ], [ -58.388429711999947, -34.797631254999942 ], [ -58.388343267999915, -34.797628502999942 ], [ -58.388268179999955, -34.797621808999907 ], [ -58.388193452999928, -34.797596083999906 ], [ -58.388175076999914, -34.797573476999958 ], [ -58.387666416999934, -34.798178156999938 ], [ -58.386693897999919, -34.79933425999991 ], [ -58.385320631999946, -34.801017066999918 ], [ -58.3853763219999, -34.801407136999956 ], [ -58.385167948999936, -34.801542010999924 ], [ -58.385164592999899, -34.801540921999901 ], [ -58.384907304999899, -34.801457418999917 ], [ -58.384834624999939, -34.801085788999956 ], [ -58.383978637999917, -34.800610605999907 ], [ -58.383186017999947, -34.800160654999956 ], [ -58.382795188999921, -34.799938790999931 ], [ -58.38382994199992, -34.798701357999903 ], [ -58.383989956999926, -34.798510000999954 ], [ -58.383765663999952, -34.798369661999914 ], [ -58.383672623999928, -34.797860227999934 ], [ -58.383706316999906, -34.797800759999916 ], [ -58.383790488999921, -34.797652196999934 ], [ -58.383980816999951, -34.797484512999915 ], [ -58.384512614999949, -34.797415459999911 ], [ -58.384774928999946, -34.797546192999903 ], [ -58.385004345999903, -34.797284990999913 ], [ -58.3860647919999, -34.796077622999917 ], [ -58.384159198999953, -34.795073889999912 ], [ -58.383827362999909, -34.794899101999931 ], [ -58.383673822999924, -34.794974509999918 ], [ -58.383560803999899, -34.79496993999993 ], [ -58.383458553999901, -34.794923677999918 ], [ -58.383385949999933, -34.794839646999947 ], [ -58.383381219999933, -34.794820744999925 ], [ -58.383362155999919, -34.794744559999913 ], [ -58.383375971999953, -34.794645931999924 ], [ -58.383439604999921, -34.794581818999916 ], [ -58.383552402999953, -34.794537025999944 ], [ -58.383202471999937, -34.792931211999928 ], [ -58.383135720999917, -34.792624892999925 ], [ -58.382857438999906, -34.792468798999948 ], [ -58.382812910999917, -34.792443822999928 ], [ -58.38197755199991, -34.791975252999919 ], [ -58.38112850899995, -34.792158890999929 ], [ -58.379767354999899, -34.792453292999937 ], [ -58.379718535999928, -34.792555473999926 ], [ -58.379404112999907, -34.792337483999916 ], [ -58.37925946699994, -34.792237200999921 ], [ -58.377886147999902, -34.791457064999918 ], [ -58.376621950999947, -34.790753609999911 ], [ -58.375346388999901, -34.79005333899994 ], [ -58.374040678999904, -34.789337843999931 ], [ -58.372757544999899, -34.788633709999942 ], [ -58.371436775999939, -34.787903091999908 ], [ -58.37010300399993, -34.787175253999919 ], [ -58.368757767999909, -34.786428281999918 ], [ -58.367446858999926, -34.785712004999937 ], [ -58.366132124999922, -34.784988078999902 ], [ -58.364794527999948, -34.784252590999927 ], [ -58.363952339999912, -34.783790494999948 ], [ -58.362469920999899, -34.782970338999917 ], [ -58.361513284999944, -34.782393206999927 ], [ -58.36047278399991, -34.781758421999939 ], [ -58.359554269999933, -34.781208189999916 ], [ -58.358639542999924, -34.780650346999948 ], [ -58.357701955999914, -34.780080942999916 ], [ -58.35679104399992, -34.779526934999922 ], [ -58.355861085999948, -34.778965199999902 ], [ -58.354938168999922, -34.778408011999943 ], [ -58.35401386399991, -34.777865482999914 ], [ -58.353178156999945, -34.77737951499995 ], [ -58.353106386999912, -34.777332672999933 ], [ -58.353085700999941, -34.77731917199992 ], [ -58.353078016999916, -34.777314156999921 ], [ -58.35300480099994, -34.777266370999939 ], [ -58.352149836999899, -34.776769100999957 ], [ -58.351221720999945, -34.776234210999917 ], [ -58.350678261999917, -34.775921376999918 ], [ -58.350416843999938, -34.775770895999926 ], [ -58.350301305999949, -34.775703078999925 ], [ -58.351230535999946, -34.774661830999946 ], [ -58.3521291429999, -34.773647419999918 ], [ -58.352805991999901, -34.772889448999933 ], [ -58.353318406999904, -34.772315230999936 ], [ -58.353329821999921, -34.772288510999942 ], [ -58.353341235999949, -34.772261790999949 ], [ -58.354040436999924, -34.771336171999906 ], [ -58.354674676999934, -34.770494706999955 ], [ -58.355335651999951, -34.769615007999903 ], [ -58.355881975999921, -34.768880682999907 ], [ -58.356512469999927, -34.76806208499994 ], [ -58.357146320999902, -34.767236390999926 ], [ -58.357621829999914, -34.766610871999944 ], [ -58.357776130999923, -34.76640789299995 ], [ -58.357658012999934, -34.766350065999916 ], [ -58.356799303999935, -34.765905508999936 ], [ -58.355806053999913, -34.765412897999909 ], [ -58.354846312999939, -34.764928408999936 ], [ -58.353645380999922, -34.76432455999992 ], [ -58.352502638999908, -34.763745293999932 ], [ -58.351448287999915, -34.763206174999937 ], [ -58.350584248999951, -34.762760371999946 ], [ -58.349989915999913, -34.762467818999937 ], [ -58.348527746999935, -34.761718671999915 ], [ -58.347447957999918, -34.761156111999924 ], [ -58.347213008999915, -34.761033705999921 ], [ -58.34755386799992, -34.760562490999916 ], [ -58.347783115999903, -34.760245570999928 ], [ -58.347282277999909, -34.759987087999946 ], [ -58.346882013999902, -34.759780510999917 ], [ -58.346431258999928, -34.759547874999953 ], [ -58.346426074999954, -34.759554389999948 ], [ -58.345956408999939, -34.760144708999917 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 284.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.373157445807678, -34.589451525467808 ], [ -58.373600883797543, -34.589228628126406 ], [ -58.378070117317733, -34.58696152704988 ], [ -58.379019281562329, -34.58641001266566 ], [ -58.384106634764649, -34.583721979065217 ], [ -58.38572587239657, -34.582877687004739 ], [ -58.386235725102971, -34.582628703843497 ], [ -58.386930860793491, -34.582162355708228 ], [ -58.387649602498307, -34.581766463178958 ], [ -58.388888556387073, -34.581151615954241 ], [ -58.391339264612412, -34.579997585607167 ], [ -58.393878575599963, -34.578665755393793 ], [ -58.395015117505856, -34.578086813555608 ], [ -58.395926408414532, -34.577691864324521 ], [ -58.396481723499242, -34.577481679196531 ], [ -58.397237132885657, -34.577250719047022 ], [ -58.398073937576868, -34.577017842166093 ], [ -58.399069306543332, -34.576674934853422 ], [ -58.399916067780389, -34.57629126013417 ], [ -58.400708650891893, -34.575795550158283 ], [ -58.401516646202943, -34.575144408705022 ], [ -58.402649035173923, -34.573950649128911 ], [ -58.404007583231099, -34.572280141876682 ], [ -58.404909175166843, -34.57133654402525 ], [ -58.406150030299017, -34.570258951186027 ], [ -58.407003988597047, -34.569711377103332 ], [ -58.408334006802022, -34.569037929627619 ], [ -58.409286462807302, -34.568674173174969 ], [ -58.410666498543421, -34.568294288483848 ], [ -58.412458263136671, -34.568004458688172 ], [ -58.414022683022111, -34.567944328921733 ], [ -58.41507638041616, -34.568033235772887 ], [ -58.416598118114727, -34.568199631839803 ], [ -58.41773060069719, -34.568487968303032 ], [ -58.419528016066991, -34.569184928409243 ], [ -58.420702237070223, -34.569748698948793 ], [ -58.420717289804443, -34.569762408119203 ], [ -58.421593457032593, -34.570457805909101 ], [ -58.422206105776503, -34.571156700324337 ], [ -58.422892208483617, -34.572248581901469 ], [ -58.425300947820901, -34.576840359970603 ], [ -58.42555567987862, -34.577356298208471 ], [ -58.426028624212407, -34.578062774226368 ], [ -58.426689422683467, -34.579048303646189 ], [ -58.427608793688727, -34.580194383710428 ], [ -58.428074482687542, -34.580695830848612 ], [ -58.430723725114511, -34.583070325426029 ], [ -58.432697695799639, -34.584773613863611 ], [ -58.433312081230071, -34.585263595172542 ], [ -58.434360689970312, -34.586154054476573 ], [ -58.435199464155119, -34.586851503242578 ], [ -58.436376000846089, -34.587666078832513 ], [ -58.448644213266753, -34.593561856869492 ], [ -58.449883802734462, -34.594119128279281 ], [ -58.451026574733703, -34.594508623320039 ], [ -58.456240052691093, -34.595988567795182 ], [ -58.457233391494441, -34.596250594579161 ], [ -58.458142515967417, -34.596391861179313 ], [ -58.458834266675737, -34.596447817518147 ], [ -58.459310173577997, -34.59644084647941 ], [ -58.461856636112351, -34.596321130416477 ], [ -58.463142418374801, -34.59621955892888 ], [ -58.463812772829527, -34.596208155335212 ], [ -58.464513657226867, -34.596266994810307 ], [ -58.465094223682598, -34.596373797399004 ], [ -58.465850282595113, -34.596600652155097 ], [ -58.472979766585667, -34.599154456401223 ], [ -58.474414779674113, -34.599656805409928 ], [ -58.475466127357898, -34.599958336446129 ], [ -58.476504425367068, -34.600152891629037 ], [ -58.479255497425008, -34.600395514332007 ], [ -58.499410927282383, -34.601689280281221 ], [ -58.504939308762793, -34.602067459372847 ], [ -58.509825368866572, -34.60245022200553 ], [ -58.511427566824509, -34.602508175123042 ], [ -58.514302836028712, -34.602615995108152 ], [ -58.518295525843818, -34.602682090577908 ], [ -58.525011894077579, -34.602995061326247 ], [ -58.538012237044128, -34.603588035444361 ], [ -58.54544410083053, -34.603812398972472 ], [ -58.550529611214742, -34.604019402445637 ], [ -58.562776492084062, -34.604478230894642 ], [ -58.575838497576719, -34.604966871928923 ], [ -58.578031903554532, -34.605077565216831 ], [ -58.589661362230579, -34.604956894962413 ], [ -58.594540499025541, -34.604933083559253 ], [ -58.59934921668949, -34.604905069799003 ], [ -58.603455658721963, -34.604845773775843 ], [ -58.604368844158408, -34.604771201264612 ], [ -58.604879115236557, -34.604693190016583 ], [ -58.605485369150152, -34.604572575056103 ], [ -58.605919464241772, -34.604458618129698 ], [ -58.606748464166706, -34.60424082007907 ], [ -58.607471014715053, -34.603977970490483 ], [ -58.608383689911832, -34.603577532815962 ], [ -58.615452245744741, -34.599873033791702 ], [ -58.619324609341007, -34.59770489952313 ], [ -58.621565583332597, -34.596599976510028 ], [ -58.627144832384069, -34.593712175856503 ], [ -58.633580402888022, -34.590441917445148 ], [ -58.638627374245949, -34.58790138588305 ], [ -58.642252407011483, -34.586015644660172 ], [ -58.649424864396032, -34.582265298104183 ], [ -58.653457563421171, -34.580178855237598 ], [ -58.664448733329813, -34.574390890335053 ], [ -58.675721189794643, -34.568568445335309 ], [ -58.68999587821834, -34.561105396560343 ], [ -58.693053897157967, -34.559471246681717 ], [ -58.693954140015983, -34.558962846969003 ], [ -58.695339475179942, -34.558122597822887 ], [ -58.696804043284409, -34.55709849693892 ], [ -58.698566833620809, -34.555822413519763 ], [ -58.699578072682577, -34.555049407991298 ], [ -58.700512754923523, -34.554127529786989 ], [ -58.703024529514522, -34.55173287252444 ], [ -58.705004871379863, -34.549935057994567 ], [ -58.706874035959252, -34.548339570770743 ], [ -58.708234369808793, -34.547343159114241 ], [ -58.710253667347047, -34.545966342555431 ], [ -58.711491660332939, -34.545270990516308 ], [ -58.713961739097513, -34.543833419492678 ], [ -58.717938966417051, -34.541585677410183 ], [ -58.722275855287897, -34.53863295014397 ], [ -58.732117549617342, -34.531327981981008 ], [ -58.741218849748158, -34.524697471941657 ], [ -58.744129160055749, -34.522558616310597 ], [ -58.74699300183778, -34.520565809715137 ], [ -58.748260682586732, -34.519871213892053 ], [ -58.749423412616913, -34.519390849940663 ], [ -58.75122530023436, -34.518803653591704 ], [ -58.772654248631028, -34.511965224035279 ], [ -58.830993009585583, -34.493370341161437 ], [ -58.858986386615619, -34.484385879122257 ], [ -58.877619253319089, -34.478460677623282 ], [ -58.905405550409832, -34.469581939140816 ], [ -58.910087572904587, -34.468080233810419 ], [ -58.915743818651002, -34.466266057480219 ], [ -58.918186895728688, -34.465463586474819 ], [ -58.919655391931812, -34.46508449884562 ], [ -58.921712391121169, -34.464674577580283 ], [ -58.96049835822943, -34.457509370917407 ], [ -58.964431333552092, -34.456848977210818 ], [ -58.967619599181013, -34.456247053375549 ], [ -58.968507096880558, -34.456075202785563 ], [ -58.969662778267931, -34.455815429850553 ], [ -58.971980467941719, -34.455194140070198 ], [ -58.973804201994113, -34.454650818765352 ], [ -58.980147900408461, -34.452708650848457 ], [ -58.98261437974427, -34.452153773312503 ], [ -58.990371985683488, -34.450489474029837 ], [ -58.99316586064554, -34.449891802880913 ], [ -58.994431716331484, -34.449676181825943 ], [ -58.996055753829388, -34.449549325738587 ], [ -58.996912026032163, -34.449536742100037 ], [ -58.998114130384621, -34.449544652236114 ], [ -58.999368024987909, -34.449703883328773 ], [ -59.000597566702503, -34.449889030389663 ], [ -59.001505047688688, -34.450083827670397 ], [ -59.002569214498799, -34.45036605331147 ], [ -59.003628627535903, -34.450737801962099 ], [ -59.004930906477519, -34.45128994602959 ], [ -59.010489174767592, -34.454162091869499 ], [ -59.041878541783902, -34.470387063269499 ], [ -59.075833937189749, -34.487814933252629 ], [ -59.109806523292271, -34.505545252553937 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 280.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.263137000072447, -34.938476000267144 ], [ -58.263673999655339, -34.936287000044956 ], [ -58.26403900029959, -34.934720999774299 ], [ -58.26418900002227, -34.934142000053214 ], [ -58.264767999743356, -34.931351999994774 ], [ -58.265432999833024, -34.928670000420141 ], [ -58.265755000292984, -34.927038999849913 ], [ -58.265861999831372, -34.926545999598147 ], [ -58.266076999853624, -34.925965999830964 ], [ -58.265991000384304, -34.925708999670576 ], [ -58.266076999853624, -34.92480800038885 ], [ -58.266226999576304, -34.924164000368251 ], [ -58.266356000129235, -34.923412999909999 ], [ -58.266677999689875, -34.922404000144468 ], [ -58.267296000310125, -34.919449999717642 ], [ -58.267858000146532, -34.916760999820269 ], [ -58.267943999615852, -34.916352999890989 ], [ -58.268587999636452, -34.914250000037441 ], [ -58.269230999610897, -34.912126000114768 ], [ -58.269659999609246, -34.910709999566791 ], [ -58.269938999884914, -34.909915999823511 ], [ -58.270197000091457, -34.909014999642466 ], [ -58.270454000251846, -34.908092000245574 ], [ -58.270539999721166, -34.907812999969906 ], [ -58.270582999905457, -34.907663000247226 ], [ -58.271077000203377, -34.905989000392026 ], [ -58.271151000018619, -34.905748000070105 ], [ -58.271247999995182, -34.905430999840746 ], [ -58.271591999670989, -34.904230000214284 ], [ -58.271742000293045, -34.903650000447101 ], [ -58.272407000382714, -34.901504999556039 ], [ -58.272685999759062, -34.900560000043924 ], [ -58.273008000219022, -34.899530000209324 ], [ -58.273522999686634, -34.897748999916359 ], [ -58.273950999638885, -34.89632199976046 ], [ -58.274682000074222, -34.893886999885069 ], [ -58.275368000232959, -34.891526999871076 ], [ -58.276269000414004, -34.888415000251996 ], [ -58.277427999902216, -34.884616999574803 ], [ -58.276755000342973, -34.882009999861566 ], [ -58.276248000344879, -34.880047000168872 ], [ -58.276118999791947, -34.879253000425592 ], [ -58.275969000069267, -34.876934999650473 ], [ -58.275797000231307, -34.874553999567411 ], [ -58.27576999988554, -34.87444499993677 ], [ -58.275517999955696, -34.873438000263434 ], [ -58.275368000232959, -34.872879999712154 ], [ -58.275238999680028, -34.872408000428834 ], [ -58.27502499970393, -34.871550000432137 ], [ -58.274982000418959, -34.871314000340817 ], [ -58.274961000349833, -34.870670000320217 ], [ -58.275088999957347, -34.869962000046201 ], [ -58.275197000441153, -34.869467999748338 ], [ -58.275238999680028, -34.869253999772241 ], [ -58.275390000348182, -34.868481000098029 ], [ -58.27549699988657, -34.868031000030555 ], [ -58.275540000070919, -34.867751999754944 ], [ -58.27566899972453, -34.867150999918692 ], [ -58.275861999631559, -34.866164000268327 ], [ -58.276441000251907, -34.863331000025596 ], [ -58.27669899955913, -34.861957999661911 ], [ -58.276977999834799, -34.860670999666866 ], [ -58.277171999787925, -34.859613000339664 ], [ -58.277406999833147, -34.858331999721941 ], [ -58.277450000017438, -34.857966999977009 ], [ -58.277663999993592, -34.856829999704701 ], [ -58.277750000362175, -34.856399999660198 ], [ -58.277965000384427, -34.855199000033792 ], [ -58.278200999576427, -34.854039999646204 ], [ -58.278457999736872, -34.852710000366187 ], [ -58.278459999829067, -34.85261200034347 ], [ -58.278479999852095, -34.851401000255919 ], [ -58.278479999852095, -34.850842999704639 ], [ -58.278479999852095, -34.850156000399068 ], [ -58.278457999736872, -34.849491000309399 ], [ -58.278457999736872, -34.848354000037034 ], [ -58.278457999736872, -34.847473999925114 ], [ -58.278521999990289, -34.846550999628903 ], [ -58.278565000174581, -34.84599400002304 ], [ -58.278587000289804, -34.845629000278109 ], [ -58.278629999574775, -34.845221000348829 ], [ -58.278629999574775, -34.844813000419606 ], [ -58.278672999759067, -34.844233999799201 ], [ -58.278693999828192, -34.843997999707881 ], [ -58.278737000012484, -34.843160999780252 ], [ -58.278759000127707, -34.842796000035321 ], [ -58.278780000196832, -34.842345999967904 ], [ -58.278801000265901, -34.842044999577013 ], [ -58.278715999943415, -34.841166000410567 ], [ -58.278565000174581, -34.839748999816436 ], [ -58.278479999852095, -34.839255999564671 ], [ -58.278436999667747, -34.838591000374322 ], [ -58.278414999552524, -34.838418999637099 ], [ -58.278351000198484, -34.837904000169431 ], [ -58.278329000083261, -34.837603999824694 ], [ -58.278308000014135, -34.837239000079762 ], [ -58.278221999645552, -34.836573999990037 ], [ -58.278158000291455, -34.835951000038563 ], [ -58.278071999922815, -34.835221999695477 ], [ -58.278007999669398, -34.834535000389906 ], [ -58.277943000269204, -34.833848000185014 ], [ -58.277922000200135, -34.833612000093694 ], [ -58.277879000015787, -34.833205000210569 ], [ -58.277856999900564, -34.832903999819678 ], [ -58.277771000431301, -34.832238999730009 ], [ -58.277750000362175, -34.831830999800729 ], [ -58.277729000293107, -34.831637999893758 ], [ -58.277663999993592, -34.831165999711061 ], [ -58.277642999924467, -34.830758999827935 ], [ -58.277514000270855, -34.829149000226153 ], [ -58.277471000086564, -34.828527000320776 ], [ -58.277535000339981, -34.828334000413747 ], [ -58.277450000017438, -34.826810000281228 ], [ -58.277321000363827, -34.823913999831177 ], [ -58.277234999995187, -34.821938999585143 ], [ -58.277213999926119, -34.821253000325669 ], [ -58.277158000041652, -34.820334000213904 ], [ -58.277063000157284, -34.818784999827812 ], [ -58.277042000088215, -34.818699000358549 ], [ -58.277042000088215, -34.818591999920841 ], [ -58.277180000156818, -34.817503000063368 ], [ -58.277278000179535, -34.816725000158613 ], [ -58.277363999648799, -34.815952999631179 ], [ -58.27749300020173, -34.815030000234287 ], [ -58.277620999809244, -34.814000000399631 ], [ -58.277750000362175, -34.812906000311614 ], [ -58.277879000015787, -34.812089999553791 ], [ -58.277908999600584, -34.811823999877674 ], [ -58.277965000384427, -34.811338999994803 ], [ -58.277985999554176, -34.811211000387289 ], [ -58.278115000107107, -34.810696000020357 ], [ -58.278200999576427, -34.810138000368397 ], [ -58.278351000198484, -34.809386999910089 ], [ -58.278372000267552, -34.809086000418517 ], [ -58.278049999807592, -34.809065000349449 ], [ -58.276184000091519, -34.80895799991174 ], [ -58.27614099990717, -34.810008999815466 ], [ -58.276097999722879, -34.810781000342843 ], [ -58.274659999958999, -34.810739000204649 ], [ -58.274445999982845, -34.810739000204649 ], [ -58.273136999872634, -34.810673999905134 ], [ -58.272986000103799, -34.810652999836009 ], [ -58.272706999828131, -34.810652999836009 ], [ -58.272750000012422, -34.809836999977506 ], [ -58.272815000311994, -34.808763999958614 ], [ -58.272857999596965, -34.807691999985764 ], [ -58.274573999590359, -34.807819999593278 ], [ -58.276248000344879, -34.807905999961861 ], [ -58.278049999807592, -34.808013000399626 ], [ -58.278351000198484, -34.808034999615472 ], [ -58.278329000083261, -34.806982999665649 ], [ -58.278372000267552, -34.805953999877147 ], [ -58.278436999667747, -34.804815999558684 ], [ -58.278479999852095, -34.803785999724084 ], [ -58.278565000174581, -34.802734999820359 ], [ -58.278629999574775, -34.801661999801411 ], [ -58.278715999943415, -34.800588999782462 ], [ -58.278780000196832, -34.799409000225126 ], [ -58.278823000381124, -34.798485999928914 ], [ -58.278908999850444, -34.797456000094257 ], [ -58.278995000219027, -34.796019000376532 ], [ -58.279037000357221, -34.795245999803001 ], [ -58.279101999757415, -34.794044000130441 ], [ -58.279122999826541, -34.792993000226716 ], [ -58.279079999642249, -34.79194200032299 ], [ -58.278995000219027, -34.791190999864682 ], [ -58.278908999850444, -34.790482999590722 ], [ -58.278801000265901, -34.789774000169928 ], [ -58.278780000196832, -34.789538000078608 ], [ -58.278780000196832, -34.789174000379774 ], [ -58.278759000127707, -34.789001999642551 ], [ -58.278693999828192, -34.788938000288454 ], [ -58.278587000289804, -34.788895000104105 ], [ -58.278308000014135, -34.788916000173231 ], [ -58.278221999645552, -34.789001999642551 ], [ -58.277856999900564, -34.789044999826842 ], [ -58.277514000270855, -34.788872999988939 ], [ -58.276677000343227, -34.788422999921465 ], [ -58.27614099990717, -34.788143999645797 ], [ -58.27511100007257, -34.787607000062962 ], [ -58.274081000237913, -34.787070999626906 ], [ -58.273823000031371, -34.786920999904169 ], [ -58.272772000127645, -34.786363000252209 ], [ -58.271848999831434, -34.78584799988522 ], [ -58.270346999814137, -34.785032000026717 ], [ -58.270004000184429, -34.784861000234912 ], [ -58.269188000325926, -34.784410000121341 ], [ -58.268393999683326, -34.783959000007826 ], [ -58.268073000168783, -34.78378800021602 ], [ -58.267728999593601, -34.783595000308992 ], [ -58.267000000149835, -34.783208000448838 ], [ -58.266076999853624, -34.782672000012724 ], [ -58.265905000015721, -34.782607999759364 ], [ -58.265111000272384, -34.782177999714861 ], [ -58.264081000437784, -34.781642000178124 ], [ -58.263287999841282, -34.781191000064553 ], [ -58.262643999820682, -34.780805000250496 ], [ -58.261893000261693, -34.780461999721467 ], [ -58.26260099963639, -34.779645999862964 ], [ -58.263416000348116, -34.778744999681919 ], [ -58.264081000437784, -34.777994000122987 ], [ -58.264767999743356, -34.777157000195359 ], [ -58.264918000365356, -34.776921000104039 ], [ -58.265175999672579, -34.776577999574954 ], [ -58.265819999693178, -34.775719999578257 ], [ -58.266592000220612, -34.774625000343462 ], [ -58.266785000127641, -34.774389000252143 ], [ -58.267364999894767, -34.773637999793834 ], [ -58.267837000077463, -34.773059000072749 ], [ -58.26828700014488, -34.772458000236497 ], [ -58.268738000258452, -34.771899999685218 ], [ -58.269295999910412, -34.771255999664618 ], [ -58.269702999793537, -34.770805999597144 ], [ -58.270303999629846, -34.770204999760892 ], [ -58.270818999996834, -34.769647000108932 ], [ -58.271355999579669, -34.769088999557653 ], [ -58.271634999855337, -34.768874999581499 ], [ -58.271914000130948, -34.768530999905693 ], [ -58.272364000198422, -34.767952000184607 ], [ -58.272793000196771, -34.76741599974855 ], [ -58.273244000310342, -34.766835999981367 ], [ -58.273845000146594, -34.76606400035331 ], [ -58.274682000074222, -34.764969000219139 ], [ -58.275517999955696, -34.763918000315414 ], [ -58.276033000322684, -34.763231000110522 ], [ -58.276161999976296, -34.763081000387842 ], [ -58.276526999721227, -34.762609000205146 ], [ -58.276998999903867, -34.762008000368894 ], [ -58.277556999555827, -34.761279000025809 ], [ -58.277771000431301, -34.761020999819266 ], [ -58.278465000059668, -34.760113000214744 ], [ -58.279573999940112, -34.758660999805272 ], [ -58.280025000053683, -34.758124000222381 ], [ -58.2804750001211, -34.757565999671101 ], [ -58.281398000417369, -34.756365000044696 ], [ -58.28159100032434, -34.756085999769027 ], [ -58.2821489999763, -34.755378000394387 ], [ -58.282577999974706, -34.75481999984305 ], [ -58.282621000158997, -34.754776999658759 ], [ -58.283050000157345, -34.754219000006799 ], [ -58.283522000339985, -34.753597000101422 ], [ -58.283607999809306, -34.753488999617616 ], [ -58.283972999554237, -34.753017000334239 ], [ -58.284079999991945, -34.752888999827462 ], [ -58.284487999921225, -34.752331000175502 ], [ -58.284937999988642, -34.751751000408319 ], [ -58.285474999571534, -34.751150999718845 ], [ -58.285946999754174, -34.750506999698246 ], [ -58.286160999730328, -34.749734000024034 ], [ -58.286375999752522, -34.749112000118657 ], [ -58.28641899993687, -34.748982999565726 ], [ -58.28665500002819, -34.74825400012196 ], [ -58.28689100011951, -34.747481000447749 ], [ -58.286912000188636, -34.747396000125264 ], [ -58.287170000395179, -34.746686999805149 ], [ -58.287578000324402, -34.745785999624161 ], [ -58.28824300041407, -34.744927999627464 ], [ -58.28888700043467, -34.744111999768904 ], [ -58.289466000155755, -34.743340000140847 ], [ -58.290110000176298, -34.74248200014415 ], [ -58.291327999687383, -34.740720999874213 ], [ -58.292470000190292, -34.739070000180334 ], [ -58.293130000049416, -34.738139000414492 ], [ -58.293671999862852, -34.737375000256009 ], [ -58.2937150000472, -34.737332000071717 ], [ -58.294314999837354, -34.736451999959797 ], [ -58.294873000388634, -34.735658000216517 ], [ -58.295537999578983, -34.734734999920249 ], [ -58.296096000130262, -34.733899000038775 ], [ -58.296696999966514, -34.733083000180272 ], [ -58.297318999871891, -34.732225000183576 ], [ -58.297898999639074, -34.731388000255947 ], [ -58.298478000259479, -34.730573000443599 ], [ -58.299056999980507, -34.729735999616651 ], [ -58.299679999932039, -34.728877999619954 ], [ -58.300258999653067, -34.727998000407354 ], [ -58.300838000273473, -34.727203999764754 ], [ -58.300880999558444, -34.727139000364559 ], [ -58.301418000040655, -34.726345999768057 ], [ -58.301482000294016, -34.726260000298737 ], [ -58.302062000061198, -34.725423000371109 ], [ -58.302512000128672, -34.723984999707909 ], [ -58.302897999942729, -34.722697999712864 ], [ -58.302941000127021, -34.722569000059252 ], [ -58.303284999802884, -34.721452999856012 ], [ -58.303670999616884, -34.720143999745744 ], [ -58.304057000330261, -34.71889999993499 ], [ -58.304443000144317, -34.717677000193362 ], [ -58.304830000004472, -34.716368000083094 ], [ -58.30573100018546, -34.715509000040299 ], [ -58.306632000366506, -34.714629999974477 ], [ -58.307490000363202, -34.713793000046849 ], [ -58.308327000290774, -34.712934000004054 ], [ -58.309227999572499, -34.71201199975394 ], [ -58.309313999941082, -34.71192600028462 ], [ -58.310129999799585, -34.71121800001066 ], [ -58.310579999867059, -34.710766999897089 ], [ -58.311095000234047, -34.710273999645324 ], [ -58.311954000276842, -34.709373000363655 ], [ -58.312790000158316, -34.708621999905347 ], [ -58.313477000363207, -34.707892000415427 ], [ -58.314035000015224, -34.707354999933273 ], [ -58.314765000404407, -34.706668999774479 ], [ -58.315493999848172, -34.705961000399782 ], [ -58.316115999753549, -34.705380999733279 ], [ -58.316738999705024, -34.704780999943125 ], [ -58.317490000163332, -34.704136999922582 ], [ -58.3187990002736, -34.703128000157051 ], [ -58.319956999715714, -34.702249000091228 ], [ -58.320793999643342, -34.701561999886337 ], [ -58.321866999662291, -34.70070399988964 ], [ -58.32289700039621, -34.699888000031137 ], [ -58.32392700023081, -34.699094000287857 ], [ -58.324764000158439, -34.698451000313355 ], [ -58.325514999717427, -34.697849999577784 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.326888000081112, -34.696797999627961 ], [ -58.327532000101655, -34.696283000160292 ], [ -58.328518999752021, -34.695510999632859 ], [ -58.329398999863884, -34.69493199991183 ], [ -58.329914000230872, -34.694545000051676 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.362271999553116, -34.666114000160917 ], [ -58.363259000102744, -34.666779000250642 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370423000421113, -34.657205000310455 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.371680999978139, -34.654238000183511 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.375318000425352, -34.647230999910676 ], [ -58.375832999892964, -34.645235999641613 ], [ -58.376004999730924, -34.644549000336042 ], [ -58.376218999707021, -34.643691000339345 ], [ -58.376497999982689, -34.642660999605425 ], [ -58.376841999658495, -34.641330000279254 ], [ -58.377034999565524, -34.640279000375529 ], [ -58.377678000439346, -34.638154999553535 ], [ -58.378128999653597, -34.636673999605364 ], [ -58.378708000273946, -34.634828999958359 ], [ -58.379309000110254, -34.63287599982749 ], [ -58.379545000201574, -34.632125000268502 ], [ -58.379179999557266, -34.631416999994485 ], [ -58.379051999949809, -34.631224000087514 ], [ -58.378687000204877, -34.630493999698274 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.380747999920231, -34.624949000296056 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 279.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.615800999916189, -34.75996200044591 ], [ -58.615171999688016, -34.759798000077581 ], [ -58.614485000382444, -34.759518999801969 ], [ -58.613605000270525, -34.758917999965661 ], [ -58.612919000111731, -34.758596000405078 ], [ -58.61199599981552, -34.758532000151661 ], [ -58.610300999891194, -34.758511000082535 ], [ -58.609592999617178, -34.758402999598729 ], [ -58.608069000384035, -34.757973999600381 ], [ -58.606223999837709, -34.757438000063587 ], [ -58.604957999911733, -34.757094000387781 ], [ -58.603670999916687, -34.756729999789627 ], [ -58.602532999598225, -34.756408000228987 ], [ -58.601632000316499, -34.756150000022444 ], [ -58.601095999880442, -34.756000000299707 ], [ -58.600752000204579, -34.755892999861999 ], [ -58.599701000300911, -34.755571000301359 ], [ -58.598541999913323, -34.755269999910524 ], [ -58.597362000355986, -34.754927000280816 ], [ -58.596482000244066, -34.75467000012037 ], [ -58.595581000063078, -34.754411999913827 ], [ -58.593842999954461, -34.753939999731188 ], [ -58.592898999589124, -34.753661000354839 ], [ -58.592125999914913, -34.753447000378742 ], [ -58.591010999757771, -34.753145999987851 ], [ -58.589830000154336, -34.752824000427211 ], [ -58.589293999718279, -34.752652999736085 ], [ -58.588758000181542, -34.752480999898182 ], [ -58.5878559999544, -34.752201999622514 ], [ -58.587663000047371, -34.752116000153251 ], [ -58.586612000143646, -34.751622999901485 ], [ -58.585603000378114, -34.751108000433817 ], [ -58.584851999919806, -34.750699999605274 ], [ -58.584637999943709, -34.750570999951663 ], [ -58.584445000036681, -34.750484999583023 ], [ -58.583585999993886, -34.750035000414869 ], [ -58.582599000343578, -34.749520000047937 ], [ -58.581590999724824, -34.74904799986524 ], [ -58.58120399986467, -34.748832999843046 ], [ -58.581054000141933, -34.748747000373726 ], [ -58.580345999867973, -34.748339999591281 ], [ -58.579574000239859, -34.747931999662001 ], [ -58.578800999666385, -34.747523999732778 ], [ -58.578050000107396, -34.747137999918721 ], [ -58.576999000203671, -34.746580000266761 ], [ -58.575603999724763, -34.745850999923675 ], [ -58.574252000329523, -34.745121000433755 ], [ -58.572856999850615, -34.744391000044573 ], [ -58.571505999602152, -34.743661999701487 ], [ -58.570432999583204, -34.743104000049527 ], [ -58.569939000184661, -34.742824999773859 ], [ -58.569166999657284, -34.742416999844636 ], [ -58.568586999890101, -34.742031000030579 ], [ -58.567900999731307, -34.741602000032231 ], [ -58.567407000332764, -34.741301999687494 ], [ -58.567035000265037, -34.741064000403242 ], [ -58.565754999693468, -34.740249999737671 ], [ -58.565680999878225, -34.740210999737826 ], [ -58.564403000298171, -34.739542000362974 ], [ -58.564292999722113, -34.739483000340158 ], [ -58.562998000257437, -34.738794000043015 ], [ -58.561682999870527, -34.738094000137949 ], [ -58.560454999898298, -34.737438999610106 ], [ -58.560224000037522, -34.73732000041764 ], [ -58.559210000041446, -34.736794999589506 ], [ -58.558714999697429, -34.736533000097836 ], [ -58.55709799977285, -34.735677000193334 ], [ -58.555568000262952, -34.734865999666113 ], [ -58.554875999827516, -34.734498999828929 ], [ -58.554354000037051, -34.734220999599415 ], [ -58.553267000271831, -34.733640999832232 ], [ -58.550820999889197, -34.732346000367556 ], [ -58.547224000387246, -34.730441999798416 ], [ -58.544207999799312, -34.728845999942905 ], [ -58.543417000194381, -34.728427000405702 ], [ -58.542731000035587, -34.727955000223062 ], [ -58.542123999922637, -34.727408000179025 ], [ -58.540348999906371, -34.725809000185166 ], [ -58.539169000349034, -34.724929000073246 ], [ -58.538324000052512, -34.724359999914043 ], [ -58.537129999849583, -34.723555999709561 ], [ -58.536364999645002, -34.72297800003463 ], [ -58.536143000199274, -34.722655000427892 ], [ -58.536122000130149, -34.722525999874961 ], [ -58.535992999577218, -34.722354000037001 ], [ -58.535799999670189, -34.722246999599292 ], [ -58.535649999947509, -34.722226000429544 ], [ -58.535478000109549, -34.722246999599292 ], [ -58.535328000386869, -34.722310999852709 ], [ -58.535198999833938, -34.722590000128378 ], [ -58.534641000181978, -34.723383999871658 ], [ -58.532795999635653, -34.724736000166217 ], [ -58.532623999797693, -34.72484399975076 ], [ -58.531852000169636, -34.725465999656137 ], [ -58.531293999618356, -34.725894999654486 ], [ -58.530456999690728, -34.726496000390057 ], [ -58.529899000038768, -34.726925000388405 ], [ -58.529341000386808, -34.727354000386754 ], [ -58.529084000226362, -34.727547000293782 ], [ -58.528483000390111, -34.727976000292131 ], [ -58.528096999676734, -34.728276999783645 ], [ -58.527881999654539, -34.728447999575451 ], [ -58.527259999749162, -34.728898999689022 ], [ -58.526573000443591, -34.729392999986942 ], [ -58.525135999826489, -34.727697000016519 ], [ -58.524578000174529, -34.727031999926794 ], [ -58.523890999969638, -34.726260000298737 ], [ -58.523076000157232, -34.726710000366154 ], [ -58.522152999861021, -34.727075000111142 ], [ -58.521015999588656, -34.727311000202462 ], [ -58.520457999936696, -34.727333000317685 ], [ -58.520401000006132, -34.727330000179336 ], [ -58.518461999621536, -34.727246999949045 ], [ -58.518096999876605, -34.727181999649531 ], [ -58.517195999695616, -34.727160999580406 ], [ -58.517132000341519, -34.727139000364559 ], [ -58.517089000157171, -34.727031999926794 ], [ -58.516981999719462, -34.726925000388405 ], [ -58.516716000043346, -34.726626000089766 ], [ -58.515630000324222, -34.725401000255886 ], [ -58.51528599974904, -34.724951000188469 ], [ -58.515114999957234, -34.724649999797634 ], [ -58.514939999980982, -34.724223999937578 ], [ -58.514922000050205, -34.724177999614938 ], [ -58.514557000305274, -34.723555999709561 ], [ -58.514599999590246, -34.723213000079852 ], [ -58.514856999750691, -34.722761999966281 ], [ -58.515415000301971, -34.722183000245195 ], [ -58.515886999585348, -34.721624999693915 ], [ -58.515914999977213, -34.721598000247468 ], [ -58.516252000229599, -34.721282000064207 ], [ -58.516358999767988, -34.721131000295372 ], [ -58.516488000320919, -34.720938000388344 ], [ -58.516638000043599, -34.720659000112732 ], [ -58.516724000412239, -34.720530999605899 ], [ -58.516766999697211, -34.720315999583647 ], [ -58.516853000065851, -34.720186999930036 ], [ -58.517089000157171, -34.720037000207356 ], [ -58.51749700008645, -34.719565000024716 ], [ -58.517561000339867, -34.719478999656076 ], [ -58.518032999623188, -34.719049999657727 ], [ -58.518375000106118, -34.718594000212875 ], [ -58.518483999736759, -34.718448999821419 ], [ -58.518547999990176, -34.71834200028303 ], [ -58.518547999990176, -34.718149000376002 ], [ -58.518483999736759, -34.718040999892196 ], [ -58.51829099982973, -34.717913000284682 ], [ -58.518011999554119, -34.717826999916042 ], [ -58.517817999600936, -34.717891000169459 ], [ -58.517110000226296, -34.718384999568059 ], [ -58.51619700039123, -34.719075999957397 ], [ -58.514642999774594, -34.720252000229607 ], [ -58.51401999982312, -34.720509000389995 ], [ -58.513699000308577, -34.720530999605899 ], [ -58.513376999848617, -34.720488000320927 ], [ -58.513118999642074, -34.720401999952287 ], [ -58.512840000265783, -34.720252000229607 ], [ -58.512604000174406, -34.720037000207356 ], [ -58.511702999993418, -34.718599000443476 ], [ -58.511358000271457, -34.718097999822817 ], [ -58.510565999721052, -34.716946999804179 ], [ -58.509150000072395, -34.715015999788534 ], [ -58.509063999703756, -34.714887000134922 ], [ -58.508080000191796, -34.713602000232072 ], [ -58.507174999826361, -34.71241999968322 ], [ -58.506466999552345, -34.711089000357049 ], [ -58.506382000129179, -34.710981999919341 ], [ -58.506188000176053, -34.710745999827964 ], [ -58.505523000086328, -34.710123999922587 ], [ -58.504986999650271, -34.709629999624724 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.503441000301905, -34.707845000046689 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.499814000315837, -34.703538000178526 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.498806999743181, -34.702205999906937 ], [ -58.498013, -34.700917999865737 ], [ -58.497905999562192, -34.700510999982612 ], [ -58.497670000370192, -34.698257000360229 ], [ -58.497494000347785, -34.697997000061434 ], [ -58.497005000280524, -34.697699999855047 ], [ -58.495739000354547, -34.697528000017144 ], [ -58.495481000148004, -34.697441999648504 ], [ -58.494236000291153, -34.696411999813904 ], [ -58.493699999855096, -34.695982999815556 ], [ -58.493100000064885, -34.69536300000243 ], [ -58.492369999675702, -34.69461000035119 ], [ -58.492241000022091, -34.694458999683036 ], [ -58.491383000025394, -34.693344000425213 ], [ -58.490459999729183, -34.692077999599974 ], [ -58.489407999779303, -34.690467999998134 ], [ -58.489057999826798, -34.689889000277105 ], [ -58.488915000426914, -34.689653000185785 ], [ -58.488528999713537, -34.689373999910117 ], [ -58.48805700043016, -34.689158999887866 ], [ -58.487240999672338, -34.688795000189089 ], [ -58.486705000135601, -34.688387000259809 ], [ -58.486533000297698, -34.68819400035278 ], [ -58.486369999975466, -34.688013000099829 ], [ -58.485717999585972, -34.687293000171792 ], [ -58.48526999961075, -34.686760999920182 ], [ -58.484344000075509, -34.685661999601564 ], [ -58.484151000168481, -34.685383000225215 ], [ -58.484065999845996, -34.685253999672284 ], [ -58.483465000009687, -34.684588999582616 ], [ -58.483057000080464, -34.684095000184072 ], [ -58.482892999712135, -34.683938000138539 ], [ -58.481984000061516, -34.683065000349416 ], [ -58.481555000063167, -34.682528999913359 ], [ -58.48140799957946, -34.68232100021396 ], [ -58.481039999696179, -34.681799000423496 ], [ -58.480320999814239, -34.680177000268316 ], [ -58.480117000299288, -34.679717999785794 ], [ -58.479673999655347, -34.678562999582709 ], [ -58.479624000047522, -34.678430999790749 ], [ -58.479409000025271, -34.677658000116594 ], [ -58.479409000025271, -34.677465000209565 ], [ -58.479452000209619, -34.677400999956149 ], [ -58.479558999748008, -34.6773579997718 ], [ -58.479924000392259, -34.676993000026869 ], [ -58.478980000026922, -34.676135000030172 ], [ -58.478830000304242, -34.675876999823629 ], [ -58.478551000028574, -34.675425999710058 ], [ -58.478443999590866, -34.675148000379863 ], [ -58.478379000190671, -34.674954000426737 ], [ -58.478367999683371, -34.674920999804272 ], [ -58.478056999730711, -34.673966999877109 ], [ -58.477993000376614, -34.673581000063052 ], [ -58.477929000123197, -34.673258999603092 ], [ -58.477863999823683, -34.673173000133829 ], [ -58.477564000378266, -34.673087999811287 ], [ -58.477499000078751, -34.672980000226801 ], [ -58.477521000193974, -34.672829999604744 ], [ -58.477564000378266, -34.672636999697716 ], [ -58.477521000193974, -34.672508000044104 ], [ -58.477328000286946, -34.672315000137075 ], [ -58.477156000449042, -34.672185999584144 ], [ -58.477113000264694, -34.672057999976687 ], [ -58.476747999620443, -34.671006000026864 ], [ -58.476706000381569, -34.670919999658224 ], [ -58.476361999806386, -34.670254999568556 ], [ -58.476255000267997, -34.669976000192207 ], [ -58.476147999830289, -34.669696999916596 ], [ -58.475975999992386, -34.668967999573454 ], [ -58.475654000431746, -34.668194999899299 ], [ -58.47563300036262, -34.667915999623631 ], [ -58.475590000178329, -34.667722999716602 ], [ -58.475481999694466, -34.667551999924797 ], [ -58.47516100017998, -34.667336999902602 ], [ -58.474473999975089, -34.666092000045694 ], [ -58.474265000229536, -34.665541999863365 ], [ -58.473765999701072, -34.66422600032962 ], [ -58.473058000326432, -34.662681000128032 ], [ -58.472928999773501, -34.662358999668072 ], [ -58.472865000419404, -34.662230000014461 ], [ -58.472456999590804, -34.661306999718192 ], [ -58.472327999937193, -34.660985000157609 ], [ -58.471706000031816, -34.659483000140312 ], [ -58.471405999687079, -34.658753999797227 ], [ -58.471169000448981, -34.65828199961453 ], [ -58.471040999942147, -34.658003000238239 ], [ -58.470676000197216, -34.657294999964222 ], [ -58.470353999737256, -34.656564999575039 ], [ -58.470075000360964, -34.655963999738731 ], [ -58.469902999623685, -34.655513999671314 ], [ -58.46921700036421, -34.653969000369045 ], [ -58.468359000367514, -34.652530999705846 ], [ -58.467506999748196, -34.651341999733461 ], [ -58.467397000071458, -34.651167999803306 ], [ -58.467244000210428, -34.65098899964255 ], [ -58.467208000348876, -34.650713000404608 ], [ -58.467353999887166, -34.650442999644667 ], [ -58.46741900018668, -34.650161000130026 ], [ -58.467272999749071, -34.649962999992397 ], [ -58.466836000281148, -34.649813000269717 ], [ -58.466276999683771, -34.649762999762572 ], [ -58.465977000238354, -34.649741999693504 ], [ -58.464796999781697, -34.649870000200281 ], [ -58.464538999575154, -34.649934999600532 ], [ -58.464088000360903, -34.649998999853892 ], [ -58.462006999723201, -34.650128000406824 ], [ -58.459474999871304, -34.650363999598881 ], [ -58.457372000017756, -34.65051400022088 ], [ -58.454626000189705, -34.650835999781521 ], [ -58.453360000263785, -34.65092200015016 ], [ -58.452801999712449, -34.650986000403577 ], [ -58.452308000313906, -34.651050999803772 ], [ -58.450870999696861, -34.651136000126257 ], [ -58.448682000373992, -34.651179000310549 ], [ -58.447479999802113, -34.65107199987284 ], [ -58.445548999786467, -34.650943000219229 ], [ -58.445355999879439, -34.650943000219229 ], [ -58.44460500032045, -34.650856999850646 ], [ -58.443424999863794, -34.650620999759269 ], [ -58.443124000372279, -34.650620999759269 ], [ -58.441386000263662, -34.6507500003122 ], [ -58.440721000173994, -34.650663999943617 ], [ -58.438896999696738, -34.650599999690201 ], [ -58.433039000249607, -34.650406999783172 ], [ -58.431494000048019, -34.650321000313852 ], [ -58.431323000256214, -34.650300000244783 ], [ -58.430957999611962, -34.650300000244783 ], [ -58.430785999774002, -34.65027800012956 ], [ -58.429821000238917, -34.650213999876144 ], [ -58.428533000197774, -34.650213999876144 ], [ -58.426580000066906, -34.650106000291657 ], [ -58.425272000002735, -34.650064000153463 ], [ -58.424671000166484, -34.650064000153463 ], [ -58.424070000330232, -34.650020999969115 ], [ -58.422481999944296, -34.649998999853892 ], [ -58.421044000180416, -34.649913000384629 ], [ -58.419929000023274, -34.649849000131212 ], [ -58.419392000440439, -34.649827000015989 ], [ -58.418427000005977, -34.649784999877795 ], [ -58.417675000400891, -34.649741999693504 ], [ -58.416237999783846, -34.649677000293309 ], [ -58.414692999582201, -34.649677000293309 ], [ -58.414756999835618, -34.649354999833349 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 278.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.661410566999905, -34.474478679999947 ], [ -58.662421147999908, -34.473287641999946 ], [ -58.66294458099992, -34.472601263999934 ], [ -58.664486850999936, -34.470548556999915 ], [ -58.665181720999954, -34.469554463999941 ], [ -58.665416449999952, -34.469218655999953 ], [ -58.665420259999905, -34.469214818999944 ], [ -58.665069129999949, -34.469029333999913 ], [ -58.664573988999905, -34.468767773999957 ], [ -58.665185099999917, -34.46794461199994 ], [ -58.665507420999916, -34.467510447999928 ], [ -58.665690401999939, -34.467620425999939 ], [ -58.665570747999936, -34.467071386999919 ], [ -58.665365990999931, -34.466131848999908 ], [ -58.665182799999911, -34.465315062999935 ], [ -58.665022495999949, -34.464555482999913 ], [ -58.664956744999927, -34.464279302999955 ], [ -58.664831687999936, -34.463754012999914 ], [ -58.664606824999908, -34.463793224999904 ], [ -58.664260158999923, -34.463423448999947 ], [ -58.664018570999929, -34.46316575499992 ], [ -58.663139024999907, -34.462697307999917 ], [ -58.662285899999915, -34.462230361999957 ], [ -58.661425205999933, -34.46175577799994 ], [ -58.660577290999925, -34.461301109999908 ], [ -58.660259733999908, -34.461127484999906 ], [ -58.659921052999948, -34.46094230999995 ], [ -58.659891604999927, -34.460877492999941 ], [ -58.659589730999926, -34.461259035999944 ], [ -58.659523419999914, -34.461342846999912 ], [ -58.658884623999938, -34.461343463999924 ], [ -58.65844827199993, -34.461337401999913 ], [ -58.658065706999935, -34.461332086999903 ], [ -58.657129786999917, -34.461320196999907 ], [ -58.657125716999928, -34.461648546999925 ], [ -58.65711902299995, -34.462188652999941 ], [ -58.656464066999945, -34.462176728999907 ], [ -58.656251414999929, -34.462172856999928 ], [ -58.655378307999911, -34.462167861999944 ], [ -58.654489257999899, -34.462169087999939 ], [ -58.653603808999947, -34.462154581999926 ], [ -58.652729699999952, -34.462136360999921 ], [ -58.651841573999945, -34.462127584999905 ], [ -58.650964544999908, -34.46212278899992 ], [ -58.6497299319999, -34.462127408999947 ], [ -58.649199240999906, -34.462132520999944 ], [ -58.648828751999929, -34.462136088999955 ], [ -58.648581377999903, -34.462002733999952 ], [ -58.648251262999906, -34.462165505999906 ], [ -58.64704073799993, -34.462762389999909 ], [ -58.645720266999945, -34.463404087999947 ], [ -58.644863278999935, -34.463747418999958 ], [ -58.644100042999924, -34.464053190999948 ], [ -58.644633065999926, -34.46433490499993 ], [ -58.644795884999951, -34.464421302999938 ], [ -58.645501142999933, -34.464795539999955 ], [ -58.646373059999917, -34.465263783999944 ], [ -58.646783444999926, -34.465478993999909 ], [ -58.647229681999931, -34.46571300599993 ], [ -58.646939403999909, -34.46608571999991 ], [ -58.646391329999915, -34.466789441999936 ], [ -58.646004924999943, -34.466577976999929 ], [ -58.645540915999902, -34.466324042999929 ], [ -58.644699450999951, -34.465871028999914 ], [ -58.643778033999922, -34.465376136999907 ], [ -58.642864361999955, -34.46487858699993 ], [ -58.64250138299991, -34.464677957999925 ], [ -58.642110546999902, -34.464436517999957 ], [ -58.642062490999933, -34.464406830999906 ], [ -58.641587712999922, -34.464113535999957 ], [ -58.64038476099995, -34.463473929999907 ], [ -58.639315956999951, -34.462915184999929 ], [ -58.638281504999952, -34.462375191999911 ], [ -58.637216537999905, -34.461812679999923 ], [ -58.636213342999952, -34.461266526999907 ], [ -58.635181313999908, -34.460744898999906 ], [ -58.634853631999931, -34.460588353999924 ], [ -58.634594879999952, -34.460405913999921 ], [ -58.634373861999904, -34.46028300699993 ], [ -58.633234627999911, -34.459704569999928 ], [ -58.631918621999944, -34.458996446999947 ], [ -58.631228179999937, -34.458691682999927 ], [ -58.630562354999938, -34.458315738999943 ], [ -58.630208155999924, -34.45813026299993 ], [ -58.629258713999945, -34.457605174999912 ], [ -58.628528303999929, -34.457213921999937 ], [ -58.627915927999936, -34.456889433999947 ], [ -58.627509944999929, -34.456664253999918 ], [ -58.626753759999929, -34.45621647999991 ], [ -58.625357171999951, -34.455448188999924 ], [ -58.624391278999951, -34.454909671999928 ], [ -58.622590975999913, -34.454574844999911 ], [ -58.622229477999952, -34.454498364999949 ], [ -58.622174494999911, -34.454486732999953 ], [ -58.62088087099994, -34.454213047999929 ], [ -58.620405154999901, -34.454112403999943 ], [ -58.618898047999949, -34.453780302999917 ], [ -58.617755330999955, -34.453540960999931 ], [ -58.617416689999914, -34.453466510999931 ], [ -58.616261395999913, -34.452933235999922 ], [ -58.615446207999923, -34.452562195999917 ], [ -58.614955245999909, -34.45233223799994 ], [ -58.614588333999905, -34.452160381999931 ], [ -58.613850536999905, -34.451831765999941 ], [ -58.613023400999907, -34.451433942999927 ], [ -58.612992470999927, -34.451418499999932 ], [ -58.612234530999899, -34.451082289999931 ], [ -58.61143751599991, -34.450726848999921 ], [ -58.610641623999925, -34.450375424999947 ], [ -58.609624176999944, -34.449925569999948 ], [ -58.608836253999925, -34.449571910999907 ], [ -58.608017721999943, -34.449206690999915 ], [ -58.607214485999918, -34.448849146999919 ], [ -58.606403601999943, -34.448487764999925 ], [ -58.605581253999901, -34.44811872799994 ], [ -58.604736327999944, -34.447742461999951 ], [ -58.603904723999904, -34.447372436999956 ], [ -58.60307311999992, -34.447006225999928 ], [ -58.602233886999954, -34.44663238499993 ], [ -58.601402282999913, -34.446262359999935 ], [ -58.600559234999935, -34.44589233399995 ], [ -58.599727630999951, -34.445522307999909 ], [ -58.598899840999934, -34.445152282999913 ], [ -58.59818195999992, -34.444835123999951 ], [ -58.597457885999916, -34.444515227999943 ], [ -58.597370404999936, -34.444886315999952 ], [ -58.597221374999947, -34.445518493999941 ], [ -58.597087859999931, -34.446079253999926 ], [ -58.596851348999905, -34.447090148999905 ], [ -58.596625232999941, -34.448083414999928 ], [ -58.596497086999932, -34.448646326999949 ], [ -58.595539447999954, -34.448426507999955 ], [ -58.591678618999936, -34.44754028299991 ], [ -58.590912877999926, -34.44736538099994 ], [ -58.590105280999921, -34.447182508999902 ], [ -58.589351006999948, -34.44700753099994 ], [ -58.588137772999914, -34.44673335899995 ], [ -58.588059615999953, -34.446715696999945 ], [ -58.586989163999931, -34.446470641999952 ], [ -58.585831087999907, -34.446202332999917 ], [ -58.584737789999906, -34.44595714299993 ], [ -58.583883881999952, -34.445762314999911 ], [ -58.582739815999901, -34.445491202999904 ], [ -58.581676933999915, -34.445262849999949 ], [ -58.581484210999918, -34.445207484999912 ], [ -58.580281820999915, -34.444878617999905 ], [ -58.579928956999936, -34.444670965999933 ], [ -58.579747912999949, -34.444564425999943 ], [ -58.579590568999947, -34.444452277999915 ], [ -58.579503975999955, -34.444390557999952 ], [ -58.578988434999928, -34.444023103999939 ], [ -58.578893395999955, -34.443948406999937 ], [ -58.57854629499991, -34.443675597999913 ], [ -58.577707078999936, -34.443073462999905 ], [ -58.57763564499993, -34.443022208999935 ], [ -58.577549384999941, -34.442957158999945 ], [ -58.577492199999938, -34.442914034999944 ], [ -58.577410388999908, -34.442854644999954 ], [ -58.576837237999939, -34.442438573999937 ], [ -58.576360546999922, -34.442090724999957 ], [ -58.576028598999926, -34.441851340999904 ], [ -58.57540634399993, -34.441413437999927 ], [ -58.574938221999901, -34.441044157999954 ], [ -58.574270049999939, -34.440519863999953 ], [ -58.573505343999955, -34.439931613999931 ], [ -58.57332974499991, -34.439791750999916 ], [ -58.572645666999904, -34.439246888999946 ], [ -58.572571466999932, -34.439217226999915 ], [ -58.5720779319999, -34.439019930999905 ], [ -58.57206689599991, -34.439015518999952 ], [ -58.571630777999928, -34.438841175999926 ], [ -58.571146658999908, -34.438488613999937 ], [ -58.570918663999919, -34.438322574999916 ], [ -58.570289314999911, -34.437866648999943 ], [ -58.5700090979999, -34.437666521999915 ], [ -58.569231235999951, -34.437125007999953 ], [ -58.568485758999941, -34.436599067999907 ], [ -58.568441432999919, -34.436567794999917 ], [ -58.567650343999901, -34.43600988399993 ], [ -58.566784033999909, -34.435401897999952 ], [ -58.566282867999917, -34.435044315999903 ], [ -58.56602543799994, -34.43485361799992 ], [ -58.56549753999991, -34.434473044999947 ], [ -58.565207650999923, -34.43426405699995 ], [ -58.565453421999905, -34.434094499999958 ], [ -58.565468507999924, -34.434084091999921 ], [ -58.565546684999902, -34.434030156999938 ], [ -58.565595450999922, -34.433996512999954 ], [ -58.565821160999917, -34.433840794999924 ], [ -58.566164144999902, -34.434094718999916 ], [ -58.566683345999934, -34.434479102999944 ], [ -58.567460480999955, -34.43376178199992 ], [ -58.567820296999912, -34.433470576999923 ], [ -58.568212784999901, -34.433152929999949 ], [ -58.568925298999943, -34.432477355999936 ], [ -58.569813107999948, -34.431632888999957 ], [ -58.570460814999933, -34.431022566999957 ], [ -58.571188382999935, -34.430354658999931 ], [ -58.571984698999927, -34.429602312999918 ], [ -58.573438759999931, -34.428393099999937 ], [ -58.574698621999914, -34.427352791999908 ], [ -58.57632900099992, -34.426052267999921 ], [ -58.577408077999905, -34.425149866999902 ], [ -58.578532799999948, -34.424235808999924 ], [ -58.57863565699995, -34.424152726999921 ], [ -58.579432492999899, -34.423633598999913 ], [ -58.579746253999929, -34.423426233999919 ], [ -58.580297911999935, -34.423061642999926 ], [ -58.580263178999928, -34.423003597999923 ], [ -58.58024380899991, -34.422957272999952 ], [ -58.580228224999928, -34.422903320999922 ], [ -58.580227884999942, -34.422838055999932 ], [ -58.580239081999935, -34.422784460999935 ], [ -58.580252733999941, -34.422754158999908 ], [ -58.580257991999929, -34.422742486999937 ], [ -58.58028455199991, -34.42270061399995 ], [ -58.580318763999912, -34.422658842999908 ], [ -58.580364473999907, -34.422621063999941 ], [ -58.58041787499991, -34.422591066999928 ], [ -58.580463685999916, -34.422572482999954 ], [ -58.580509514999903, -34.422557738999956 ], [ -58.580563036999934, -34.422550775999923 ], [ -58.580631880999931, -34.422547855999937 ], [ -58.580689288999906, -34.422552460999952 ], [ -58.580739084999948, -34.422564641999941 ], [ -58.580788900999949, -34.422580662999906 ], [ -58.580834929999924, -34.42260430999994 ], [ -58.58088098099995, -34.422631795999905 ], [ -58.580915572999913, -34.42266296899993 ], [ -58.580955675999917, -34.422638004999953 ], [ -58.581132924999906, -34.422527670999955 ], [ -58.581633158999921, -34.42217710299991 ], [ -58.581971482999904, -34.421940001999928 ], [ -58.582032215999902, -34.421848679999925 ], [ -58.583683252999947, -34.42080735299993 ], [ -58.584312431999933, -34.420416508999949 ], [ -58.584646846999931, -34.420213577999903 ], [ -58.58516665399992, -34.419898147999902 ], [ -58.585910226999943, -34.419435892999957 ], [ -58.585518781999951, -34.418860391999942 ], [ -58.58490072099994, -34.417951722999931 ], [ -58.584340222999913, -34.417132416999948 ], [ -58.584900930999936, -34.416781258999947 ], [ -58.585345352999923, -34.416502927999943 ], [ -58.585583888999906, -34.415313110999932 ], [ -58.585680331999924, -34.414999861999945 ], [ -58.585842313999933, -34.414473739999949 ], [ -58.588280210999926, -34.41488475999995 ], [ -58.588935606999939, -34.41499525699993 ], [ -58.59056279899994, -34.415339805999906 ], [ -58.590295325999932, -34.41595241899995 ], [ -58.589949683999919, -34.416744064999932 ], [ -58.589633629999923, -34.417478780999943 ], [ -58.589591705999908, -34.417559043999916 ], [ -58.589106405999928, -34.417701563999913 ], [ -58.588650873999939, -34.417835341999933 ], [ -58.588093341999922, -34.418393727999955 ], [ -58.587805253999932, -34.418965970999921 ], [ -58.58777951199994, -34.419898467999928 ], [ -58.587935018999929, -34.420781258999909 ], [ -58.587970800999926, -34.420984388999955 ], [ -58.588058041999943, -34.421277088999943 ], [ -58.588122954999903, -34.421391625999945 ], [ -58.58836733499993, -34.421823046999918 ], [ -58.588721986999929, -34.422601071999907 ], [ -58.588927825999917, -34.423081490999948 ], [ -58.58919289499994, -34.423555875999909 ], [ -58.58938218499992, -34.423894640999947 ], [ -58.589439489999904, -34.423986320999916 ], [ -58.590131618999919, -34.423617170999933 ], [ -58.590173939999943, -34.423594598999955 ], [ -58.590221766999946, -34.423552483999913 ], [ -58.59084373099995, -34.423004802999912 ], [ -58.591444225999908, -34.42247889999993 ], [ -58.59247199899994, -34.421577336999917 ], [ -58.593017577999944, -34.421081542999957 ], [ -58.593524932999912, -34.420623778999925 ], [ -58.594043731999932, -34.420146941999917 ], [ -58.594581603999927, -34.419662475999928 ], [ -58.595630645999904, -34.418708800999923 ], [ -58.596323968999911, -34.418076510999924 ], [ -58.596714019999922, -34.417720794999923 ], [ -58.596725463999917, -34.417713164999952 ], [ -58.597282409999934, -34.417388915999936 ], [ -58.597934722999923, -34.41714477499994 ], [ -58.599205016999917, -34.416622161999953 ], [ -58.600967406999928, -34.415977477999945 ], [ -58.602203368999938, -34.415325164999956 ], [ -58.603187560999913, -34.414798736999956 ], [ -58.604073913999912, -34.414335761999951 ], [ -58.604297637999935, -34.414218902999949 ], [ -58.60483550999993, -34.413959502999944 ], [ -58.60626983599991, -34.413303374999941 ], [ -58.607246398999905, -34.412876128999926 ], [ -58.609806060999915, -34.411693572999923 ], [ -58.611019712999905, -34.41113032699991 ], [ -58.612333230999923, -34.410553399999912 ], [ -58.613242052999908, -34.410173656999916 ], [ -58.622938088999945, -34.405669954999951 ], [ -58.623257652999939, -34.405540424999913 ], [ -58.623996876999911, -34.405240792999905 ], [ -58.626813025999923, -34.404420178999942 ], [ -58.628112212999952, -34.404036728999927 ], [ -58.630164165999929, -34.403430875999902 ], [ -58.631516857999941, -34.403028260999918 ], [ -58.632628813999929, -34.402698496999903 ], [ -58.633897435999927, -34.402322717999937 ], [ -58.634959714999923, -34.402008290999902 ], [ -58.636377355999912, -34.401590327999941 ], [ -58.642727475999948, -34.399769214999935 ], [ -58.643319037999902, -34.399570592999908 ], [ -58.644529098999953, -34.399230359999933 ], [ -58.645762032999926, -34.398874880999927 ], [ -58.648325728999907, -34.39813524099992 ], [ -58.648491282999942, -34.398087477999923 ], [ -58.649048610999955, -34.397934544999941 ], [ -58.651067993999902, -34.39738776899992 ], [ -58.652208604999942, -34.397987023999917 ], [ -58.653272685999923, -34.39855216199993 ], [ -58.654852383999923, -34.399365064999927 ], [ -58.655653345999951, -34.39977723599992 ], [ -58.655667615999903, -34.399784578999913 ], [ -58.65568094899993, -34.399767030999953 ], [ -58.656304429999921, -34.398946458999944 ], [ -58.65924190599992, -34.395080403999941 ], [ -58.660349611999948, -34.39361770499994 ], [ -58.661129719999906, -34.392592544999957 ], [ -58.661613388999911, -34.391956942999911 ], [ -58.661495343999945, -34.391781274999914 ], [ -58.660726579999903, -34.391377549999902 ], [ -58.659221774999935, -34.390587284999924 ], [ -58.658004618999939, -34.389950108999926 ], [ -58.655673164999939, -34.388584329999958 ], [ -58.654208497999946, -34.387057563999917 ], [ -58.654082871999947, -34.386751704999938 ], [ -58.653911875999938, -34.386335386999917 ], [ -58.653949841999918, -34.386263071999906 ], [ -58.654728660999922, -34.385748548999914 ], [ -58.656546076999916, -34.384547881999936 ], [ -58.662081781999916, -34.380926846999955 ], [ -58.662306638999951, -34.380845783999916 ], [ -58.662318193999909, -34.38084161799992 ], [ -58.662600785999928, -34.380739740999957 ], [ -58.662623672999928, -34.380728297999951 ], [ -58.666616191999935, -34.378104267999902 ], [ -58.667141400999924, -34.377759080999908 ], [ -58.667397672999925, -34.377895820999925 ], [ -58.668037073999926, -34.378236987999912 ], [ -58.668482171999926, -34.377658259999919 ], [ -58.669383701999948, -34.376462753999931 ], [ -58.671742230999939, -34.37336354699994 ], [ -58.675419251999926, -34.368603219999954 ], [ -58.675590514999953, -34.368381499999941 ], [ -58.675758361999954, -34.368064879999906 ], [ -58.676597336999919, -34.368483687999912 ], [ -58.679240464999907, -34.369803111999943 ], [ -58.679679932999932, -34.37002248999994 ], [ -58.680024523999919, -34.369590186999915 ], [ -58.680429851999918, -34.369081686999948 ], [ -58.681175961999941, -34.368140876999917 ], [ -58.681925880999927, -34.367192443999954 ], [ -58.682812838999951, -34.366068796999912 ], [ -58.683433532999913, -34.36528778099995 ], [ -58.684944152999947, -34.363380431999929 ], [ -58.685185286999911, -34.36307456399993 ], [ -58.685512542999902, -34.362659453999925 ], [ -58.686492919999921, -34.36317443799993 ], [ -58.687461852999945, -34.36370086699992 ], [ -58.687881144999949, -34.363927284999932 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 277.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.391082701109482, -34.823832828363656 ], [ -58.391065733353251, -34.824545474125216 ], [ -58.390437926372833, -34.824511538612761 ], [ -58.390353087591691, -34.826445862822709 ], [ -58.388673279725161, -34.825682313792463 ], [ -58.388435731137974, -34.827633605758642 ], [ -58.386145084047243, -34.831977351352911 ], [ -58.362797451478045, -34.819539986038073 ], [ -58.357011446604425, -34.816248241329909 ], [ -58.349766214695229, -34.825444765205276 ], [ -58.343759628990654, -34.822390569084305 ], [ -58.342741563616997, -34.818912179057641 ], [ -58.353057959403394, -34.816876048310327 ], [ -58.354262670095551, -34.817520823046976 ], [ -58.355976413474544, -34.815586498837028 ], [ -58.334495234090369, -34.80392965030866 ], [ -58.336548332593921, -34.802148035904764 ], [ -58.334172846722055, -34.802572229810451 ], [ -58.333918330378637, -34.801435390143205 ], [ -58.338635366609914, -34.800468228038227 ], [ -58.343013047716632, -34.793901706378144 ], [ -58.338991689490683, -34.791848607874599 ], [ -58.341452014143691, -34.787895120673568 ], [ -58.346474469987065, -34.78584202217003 ], [ -58.344506210264662, -34.784773053527687 ], [ -58.347950664778864, -34.78071775978929 ], [ -58.346542341011975, -34.779920275246589 ], [ -58.358436738127544, -34.765735231040296 ], [ -58.359454803501201, -34.766006715139937 ], [ -58.362508999622172, -34.761730840570578 ], [ -58.368821004938845, -34.752296768108017 ], [ -58.370178425437054, -34.752975478357122 ], [ -58.371467974910352, -34.744898826392777 ], [ -58.373436234632756, -34.743677147944389 ], [ -58.374454300006413, -34.743948632044031 ], [ -58.379883981999257, -34.738858305175739 ], [ -58.390064635735826, -34.736482819303873 ], [ -58.389996764710915, -34.725555584293289 ], [ -58.392100766483139, -34.722569259197229 ], [ -58.394611994404826, -34.722229904072677 ], [ -58.391422056234049, -34.707366149617272 ], [ -58.392168637508064, -34.697660593055076 ], [ -58.389521667536556, -34.692230911062239 ], [ -58.400584644596961, -34.684018517048074 ], [ -58.404453293016857, -34.679199674279431 ], [ -58.41219058985665, -34.672073216663826 ], [ -58.410901040383351, -34.669833472841781 ], [ -58.417620271849486, -34.664878888023317 ], [ -58.416466464426009, -34.651779780215591 ], [ -58.414294591628874, -34.651779780215591 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 276.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.40857751826487, -35.041582695245673 ], [ -58.423169788620676, -35.024920358630091 ], [ -58.428192244464071, -35.027703070651427 ], [ -58.428938825738086, -35.026990424889867 ], [ -58.403622933446371, -35.012330283509151 ], [ -58.397073379542491, -34.998722143014547 ], [ -58.390150535001595, -34.99651633470495 ], [ -58.375999426307708, -34.984469227783293 ], [ -58.377119298218737, -34.98273851664807 ], [ -58.373997231072842, -34.981177483075122 ], [ -58.374268715172484, -34.979209223352711 ], [ -58.379630526140431, -34.979684320527092 ], [ -58.381564850350401, -34.977003415043121 ], [ -58.381293366250759, -34.969673344352763 ], [ -58.376949620656468, -34.952026877875973 ], [ -58.380343171902005, -34.922706595114533 ], [ -58.391609762037191, -34.90845367988328 ], [ -58.390320212563886, -34.89358992542784 ], [ -58.385976466969595, -34.89128231058087 ], [ -58.390116599489154, -34.888635340609355 ], [ -58.389302147190222, -34.862708609093445 ], [ -58.386315822094147, -34.86226744743152 ], [ -58.387944726692005, -34.852629761894207 ], [ -58.376406652457177, -34.846928595801707 ], [ -58.38862343694111, -34.8279247088267 ], [ -58.389709373339684, -34.821409090435267 ], [ -58.388759178990931, -34.808377853652409 ], [ -58.38903066309058, -34.792496033823298 ], [ -58.389573631289863, -34.781908153937223 ], [ -58.393917376884147, -34.773492146848291 ], [ -58.396089249681289, -34.770098595602754 ], [ -58.39663221788058, -34.760732394165075 ], [ -58.391881246136826, -34.736706051346673 ], [ -58.390116599489147, -34.736570309296852 ], [ -58.389980857439326, -34.725507332236404 ], [ -58.392152730236468, -34.722690684702606 ], [ -58.394596087133259, -34.722419200602964 ], [ -58.391575826524729, -34.707250026535405 ], [ -58.391915181649289, -34.697883825097726 ], [ -58.385467434282766, -34.681798392193883 ], [ -58.394494280595886, -34.674196837403883 ], [ -58.39367982829696, -34.67324664305513 ], [ -58.394290667521155, -34.672296448706383 ], [ -58.392661762923296, -34.670667544108525 ], [ -58.390218406026513, -34.670463931033794 ], [ -58.387707178104812, -34.667952703112093 ], [ -58.38974330885214, -34.666595282613876 ], [ -58.388046533229371, -34.662047923944861 ], [ -58.389471824752505, -34.646776943339951 ], [ -58.381327301763214, -34.645351651816831 ], [ -58.38071646253902, -34.641211519297272 ], [ -58.381870269962505, -34.636121192428966 ], [ -58.383567045585274, -34.632999125283078 ], [ -58.381395172788125, -34.630691510436108 ], [ -58.381530914837946, -34.627840927389862 ], [ -58.382073883037236, -34.627569443290213 ], [ -58.382481109186699, -34.626076280742183 ], [ -58.385195950183132, -34.626008409717272 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 275.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.61594500026149, -34.760000000399657 ], [ -58.616006000376558, -34.760226000029832 ], [ -58.616567000166867, -34.762329999929534 ], [ -58.617102999703604, -34.763939000384539 ], [ -58.617510999632884, -34.765399000263585 ], [ -58.617636000001369, -34.765774999616497 ], [ -58.617939999631233, -34.766385999913894 ], [ -58.61823999997597, -34.766985999704104 ], [ -58.61846100027492, -34.767461000025094 ], [ -58.618819999743152, -34.768230999560956 ], [ -58.619420999579404, -34.769517999556001 ], [ -58.6196749996015, -34.770111999968776 ], [ -58.620299999645226, -34.771428000401841 ], [ -58.620454999598508, -34.771738000308403 ], [ -58.620622000105186, -34.77207200042244 ], [ -58.620815000012215, -34.772501000420789 ], [ -58.621330000379146, -34.773659999909 ], [ -58.62145799998666, -34.773924000392242 ], [ -58.621953000330677, -34.774946999904103 ], [ -58.622209999591746, -34.775698000362411 ], [ -58.622273999845163, -34.775870000200314 ], [ -58.622566999867104, -34.776702999943438 ], [ -58.622681999774443, -34.777028999688525 ], [ -58.623197000141431, -34.778551999774947 ], [ -58.62353999977114, -34.779561000439799 ], [ -58.624120000437642, -34.781169999995484 ], [ -58.624398999813934, -34.781621000108998 ], [ -58.624848999881408, -34.782329000383015 ], [ -58.625192999557271, -34.782628999828432 ], [ -58.625449999717659, -34.782972000357461 ], [ -58.626479999552316, -34.784625000143592 ], [ -58.626878999965811, -34.785231000210445 ], [ -58.627059000172665, -34.785504000209414 ], [ -58.627467000101944, -34.786040999792249 ], [ -58.627510000286236, -34.786127000160889 ], [ -58.627595999755556, -34.786341000136986 ], [ -58.628991000234407, -34.788487000174882 ], [ -58.629849000231161, -34.789732000031734 ], [ -58.630814999812344, -34.791190999864682 ], [ -58.630686000158732, -34.79123400004903 ], [ -58.630536000436052, -34.791298000302447 ], [ -58.630300000344675, -34.791404999840836 ], [ -58.629140999957144, -34.789688999847442 ], [ -58.628625999590156, -34.788829999804591 ], [ -58.628089000007321, -34.788014999992185 ], [ -58.628003999684779, -34.787865000269505 ], [ -58.627510000286236, -34.787178000064614 ], [ -58.626930999665888, -34.786320000067917 ], [ -58.61594500026149, -34.760000000399657 ], [ -58.615821999985258, -34.759966999777191 ], [ -58.615355000033162, -34.759845999593153 ], [ -58.615171999688016, -34.759798000077581 ], [ -58.614485000382444, -34.759518999801969 ], [ -58.613605000270525, -34.758917999965661 ], [ -58.612919000111731, -34.758596000405078 ], [ -58.61199599981552, -34.758532000151661 ], [ -58.611235999841483, -34.758521999690515 ], [ -58.610337999798787, -34.758511000082535 ], [ -58.610300999891194, -34.758511000082535 ], [ -58.609592999617178, -34.758402999598729 ], [ -58.608069000384035, -34.757973999600381 ], [ -58.60765600022421, -34.75785400036176 ], [ -58.606223999837709, -34.757438000063587 ], [ -58.605328999933363, -34.757194999649471 ], [ -58.604957999911733, -34.757094000387781 ], [ -58.603670999916687, -34.756729999789627 ], [ -58.60277900015069, -34.756476999813628 ], [ -58.602532999598225, -34.756408000228987 ], [ -58.601632000316499, -34.756150000022444 ], [ -58.601095999880442, -34.756000000299707 ], [ -58.600752000204579, -34.755892999861999 ], [ -58.599701000300911, -34.755571000301359 ], [ -58.599431999587068, -34.7555009997713 ], [ -58.598541999913323, -34.755269999910524 ], [ -58.597362000355986, -34.754927000280816 ], [ -58.596482000244066, -34.75467000012037 ], [ -58.595951000038554, -34.754518000305438 ], [ -58.595581000063078, -34.754411999913827 ], [ -58.593842999954461, -34.753939999731188 ], [ -58.592898999589124, -34.753661000354839 ], [ -58.592125999914913, -34.753447000378742 ], [ -58.591010999757771, -34.753145999987851 ], [ -58.589830000154336, -34.752824000427211 ], [ -58.589293999718279, -34.752652999736085 ], [ -58.588758000181542, -34.752480999898182 ], [ -58.5878559999544, -34.752201999622514 ], [ -58.587809999631759, -34.752180999553445 ], [ -58.587663000047371, -34.752116000153251 ], [ -58.586612000143646, -34.751622999901485 ], [ -58.585603000378114, -34.751108000433817 ], [ -58.585200999826213, -34.750889000227119 ], [ -58.584851999919806, -34.750699999605274 ], [ -58.584656999920583, -34.750582999605683 ], [ -58.584445000036681, -34.750484999583023 ], [ -58.584340999737321, -34.750430999790751 ], [ -58.584082000383944, -34.750294999814344 ], [ -58.583585999993886, -34.750035000414869 ], [ -58.582599000343578, -34.749520000047937 ], [ -58.582133999584357, -34.749301999887336 ], [ -58.581590999724824, -34.74904799986524 ], [ -58.58120399986467, -34.748832999843046 ], [ -58.581054000141933, -34.748747000373726 ], [ -58.580345999867973, -34.748339999591281 ], [ -58.579574000239859, -34.747931999662001 ], [ -58.578800999666385, -34.747523999732778 ], [ -58.578050000107396, -34.747137999918721 ], [ -58.577573999740252, -34.746884999942722 ], [ -58.576999000203671, -34.746580000266761 ], [ -58.575603999724763, -34.745850999923675 ], [ -58.574252000329523, -34.745121000433755 ], [ -58.573707000377738, -34.744835999881445 ], [ -58.572856999850615, -34.744391000044573 ], [ -58.571505999602152, -34.743661999701487 ], [ -58.570432999583204, -34.743104000049527 ], [ -58.569939000184661, -34.742824999773859 ], [ -58.569166999657284, -34.742416999844636 ], [ -58.568586999890101, -34.742031000030579 ], [ -58.567900999731307, -34.741602000032231 ], [ -58.567407000332764, -34.741301999687494 ], [ -58.565754999693468, -34.740249999737671 ], [ -58.564403000298171, -34.739542000362974 ], [ -58.562049999707654, -34.738288000091075 ], [ -58.560454999898298, -34.737438999610106 ], [ -58.559210000041446, -34.736794999589506 ], [ -58.55765600032413, -34.735972000307527 ], [ -58.554875999827516, -34.734498999828929 ], [ -58.553267000271831, -34.733640999832232 ], [ -58.550320000167858, -34.732080999838217 ], [ -58.545293000371657, -34.729420000332709 ], [ -58.543417000194381, -34.728427000405702 ], [ -58.542848000035121, -34.728035000314947 ], [ -58.542731000035587, -34.727955000223062 ], [ -58.540348999906371, -34.725809000185166 ], [ -58.539169000349034, -34.724929000073246 ], [ -58.537567000216825, -34.723849999777599 ], [ -58.537129999849583, -34.723555999709561 ], [ -58.536379000290594, -34.722998000057601 ], [ -58.536143000199274, -34.722655000427892 ], [ -58.536122000130149, -34.722525999874961 ], [ -58.535992999577218, -34.722354000037001 ], [ -58.535799999670189, -34.722246999599292 ], [ -58.535649999947509, -34.722226000429544 ], [ -58.535478000109549, -34.722246999599292 ], [ -58.535328000386869, -34.722310999852709 ], [ -58.535198999833938, -34.722590000128378 ], [ -58.534641000181978, -34.723383999871658 ], [ -58.532795999635653, -34.724736000166217 ], [ -58.53285999988907, -34.725036999657789 ], [ -58.533332000071709, -34.725981000023069 ], [ -58.533482999840544, -34.726323999652834 ], [ -58.533889999723669, -34.727181999649531 ], [ -58.534019000276601, -34.727483000040365 ], [ -58.534427000205881, -34.728384000221411 ], [ -58.534705999582172, -34.728985000057662 ], [ -58.534834000089006, -34.729585999893914 ], [ -58.534705999582172, -34.730250999983639 ], [ -58.534448000274949, -34.730573000443599 ], [ -58.533203999564876, -34.731666999632296 ], [ -58.532409999821596, -34.732353999837187 ], [ -58.531873000238704, -34.732826000019827 ], [ -58.531572999893967, -34.733083000180272 ], [ -58.531314999687424, -34.733319000271592 ], [ -58.530757000035464, -34.733812999670135 ], [ -58.530200000429659, -34.734305999921901 ], [ -58.529791999601059, -34.734670999666832 ], [ -58.529470000040419, -34.733619999763107 ], [ -58.529255000018168, -34.732975999742564 ], [ -58.528139999861082, -34.733512000178621 ], [ -58.527110000026425, -34.734069999830581 ], [ -58.526895000004231, -34.733790999554969 ], [ -58.525778999800934, -34.734199000383512 ], [ -58.525306999618294, -34.734371000221415 ], [ -58.524814000265849, -34.733748000269941 ], [ -58.524363000152277, -34.733190999764759 ], [ -58.523955000223054, -34.732676000297147 ], [ -58.523569000408997, -34.732181999999284 ], [ -58.523548000339929, -34.731924999838839 ], [ -58.523548000339929, -34.731860000438644 ], [ -58.523784000431249, -34.731516999909559 ], [ -58.524578000174529, -34.730916000073307 ], [ -58.525532000101691, -34.730200000329717 ], [ -58.526552000374465, -34.729435000125136 ], [ -58.52535399998709, -34.727964999784888 ], [ -58.525135999826489, -34.727697000016519 ], [ -58.524578000174529, -34.727031999926794 ], [ -58.5244479995755, -34.726886000388561 ], [ -58.523890999969638, -34.726260000298737 ], [ -58.523374999556552, -34.726544999951727 ], [ -58.523076000157232, -34.726710000366154 ], [ -58.522319000321545, -34.727008999765474 ], [ -58.522152999861021, -34.727075000111142 ], [ -58.521015999588656, -34.727311000202462 ], [ -58.520864999819821, -34.727316999579841 ], [ -58.520457999936696, -34.727333000317685 ], [ -58.519994000122949, -34.727313000294657 ], [ -58.51890100008103, -34.727265999925919 ], [ -58.518461999621536, -34.727246999949045 ], [ -58.518096999876605, -34.727181999649531 ], [ -58.51803199957709, -34.727180999603434 ], [ -58.517195999695616, -34.727160999580406 ], [ -58.517132000341519, -34.727139000364559 ], [ -58.517106000041849, -34.72707600015724 ], [ -58.517089000157171, -34.727031999926794 ], [ -58.516981999719462, -34.726925000388405 ], [ -58.516705000435365, -34.726613000389591 ], [ -58.51630099979127, -34.726158000091573 ], [ -58.515687000254843, -34.725465999656137 ], [ -58.515630000324222, -34.725401000255886 ], [ -58.51528599974904, -34.724951000188469 ], [ -58.515114999957234, -34.724649999797634 ], [ -58.514962000096205, -34.724276999683752 ], [ -58.514922000050205, -34.724177999614938 ], [ -58.514557000305274, -34.723555999709561 ], [ -58.514596000305119, -34.723241999618551 ], [ -58.514599999590246, -34.723213000079852 ], [ -58.514856999750691, -34.722761999966281 ], [ -58.515318000325408, -34.722284000406262 ], [ -58.515415000301971, -34.722183000245195 ], [ -58.515886999585348, -34.721624999693915 ], [ -58.515999000253601, -34.721520000247779 ], [ -58.516252000229599, -34.721282000064207 ], [ -58.516358999767988, -34.721131000295372 ], [ -58.516488000320919, -34.720938000388344 ], [ -58.516607000412705, -34.720718000135548 ], [ -58.516638000043599, -34.720659000112732 ], [ -58.516724000412239, -34.720530999605899 ], [ -58.516766999697211, -34.720315999583647 ], [ -58.516853000065851, -34.720186999930036 ], [ -58.517089000157171, -34.720037000207356 ], [ -58.51749700008645, -34.719565000024716 ], [ -58.517561000339867, -34.719478999656076 ], [ -58.518032999623188, -34.719049999657727 ], [ -58.518304999576003, -34.718687000004991 ], [ -58.518483999736759, -34.718448999821419 ], [ -58.518547999990176, -34.71834200028303 ], [ -58.518547999990176, -34.718149000376002 ], [ -58.518483999736759, -34.718040999892196 ], [ -58.51829099982973, -34.717913000284682 ], [ -58.518011999554119, -34.717826999916042 ], [ -58.517817999600936, -34.717891000169459 ], [ -58.517110000226296, -34.718384999568059 ], [ -58.515950999838708, -34.719262000440949 ], [ -58.514642999774594, -34.720252000229607 ], [ -58.51401999982312, -34.720509000389995 ], [ -58.513834000238887, -34.720521000044073 ], [ -58.513699000308577, -34.720530999605899 ], [ -58.513376999848617, -34.720488000320927 ], [ -58.513118999642074, -34.720401999952287 ], [ -58.512840000265783, -34.720252000229607 ], [ -58.512604000174406, -34.720037000207356 ], [ -58.511702999993418, -34.718599000443476 ], [ -58.511597999647904, -34.718446999729224 ], [ -58.510565999721052, -34.716946999804179 ], [ -58.510160999930179, -34.716395000428861 ], [ -58.509150000072395, -34.715015999788534 ], [ -58.509063999703756, -34.714887000134922 ], [ -58.508321999660495, -34.713918000415333 ], [ -58.507325000448361, -34.712615999728541 ], [ -58.507174999826361, -34.71241999968322 ], [ -58.506466999552345, -34.711089000357049 ], [ -58.506382000129179, -34.710981999919341 ], [ -58.506188000176053, -34.710745999827964 ], [ -58.505523000086328, -34.710123999922587 ], [ -58.504986999650271, -34.709629999624724 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.502545000351461, -34.706752000004769 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.500082000084205, -34.703849000131186 ], [ -58.499545999648149, -34.703228000271963 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.498684000366268, -34.703522000340001 ], [ -58.498507000297764, -34.703642999624662 ], [ -58.498213000229725, -34.703828000062117 ], [ -58.497926999631261, -34.704008000268971 ], [ -58.497776999908581, -34.704071999623068 ], [ -58.497572000347475, -34.704107000337729 ], [ -58.497391000094524, -34.704136999922582 ], [ -58.497176000072329, -34.704157999991651 ], [ -58.496700999751283, -34.70418700042967 ], [ -58.496125000168604, -34.704223000291165 ], [ -58.495975000445867, -34.704180000106874 ], [ -58.495953000330644, -34.704114999807359 ], [ -58.495978999730994, -34.704064000153437 ], [ -58.495995999615673, -34.704030000384193 ], [ -58.496189000421964, -34.703965000084622 ], [ -58.496983000165301, -34.703707999924234 ], [ -58.497068999634564, -34.703515000017205 ], [ -58.496937999888758, -34.703141999903323 ], [ -58.496790000258272, -34.702721000273925 ], [ -58.496605999866972, -34.702506000251674 ], [ -58.496251999729964, -34.70209300009185 ], [ -58.496146000237673, -34.701969999815617 ], [ -58.4959369995928, -34.701807000392705 ], [ -58.495534999940276, -34.701495000393891 ], [ -58.495095000333947, -34.701153999957114 ], [ -58.495061999711481, -34.701136000026338 ], [ -58.494560999990142, -34.700863000027368 ], [ -58.49415099996861, -34.700638999590126 ], [ -58.494172000037736, -34.70061800042032 ], [ -58.49415099996861, -34.700510999982612 ], [ -58.494107999784319, -34.700488999867389 ], [ -58.49391499987729, -34.700510999982612 ], [ -58.493405999787001, -34.700102000007234 ], [ -58.493034999765371, -34.699801999662498 ], [ -58.49254000032073, -34.69929499966446 ], [ -58.492197999837799, -34.698943999665801 ], [ -58.492127000160906, -34.698817000104441 ], [ -58.491753000000926, -34.698147999830269 ], [ -58.491406000186714, -34.697528000017144 ], [ -58.491137000372248, -34.697046000272678 ], [ -58.490922000349997, -34.696660999605399 ], [ -58.49067399970528, -34.696218999906876 ], [ -58.490599999890037, -34.696083999976565 ], [ -58.490517999705901, -34.696033000322643 ], [ -58.49043799961396, -34.695982999815556 ], [ -58.490331000075571, -34.695960999700333 ], [ -58.490652999636211, -34.695704000439207 ], [ -58.491200999726289, -34.695266000025811 ], [ -58.491404000094462, -34.695102999703636 ], [ -58.492241000022091, -34.694458999683036 ], [ -58.491383000025394, -34.693344000425213 ], [ -58.491298999749006, -34.693227999572457 ], [ -58.490459999729183, -34.692077999599974 ], [ -58.490282999660678, -34.691806999693256 ], [ -58.489407999779303, -34.690467999998134 ], [ -58.488915000426914, -34.689653000185785 ], [ -58.488271000406314, -34.688601000235906 ], [ -58.488163999968606, -34.6884300004441 ], [ -58.487863999623869, -34.687807999639404 ], [ -58.487756000039326, -34.687442999894472 ], [ -58.487712999855034, -34.686670000220317 ], [ -58.488120999784257, -34.685704999785855 ], [ -58.488250000337189, -34.685511999878827 ], [ -58.488400000059926, -34.685317999925701 ], [ -58.48861500008212, -34.685103999949604 ], [ -58.488700000404663, -34.684997000411215 ], [ -58.488915000426914, -34.684824999673936 ], [ -58.490094999984194, -34.683944999562016 ], [ -58.490480999798251, -34.683666000185724 ], [ -58.490695999820502, -34.683473000278696 ], [ -58.491039000349531, -34.683343999725764 ], [ -58.491833000092868, -34.682721999820387 ], [ -58.492218999906868, -34.682443000444096 ], [ -58.492670000020439, -34.68209999991501 ], [ -58.493614000385776, -34.68139199964105 ], [ -58.49391499987729, -34.681176999618799 ], [ -58.494601000036084, -34.680662000151131 ], [ -58.494880000311753, -34.680382999875519 ], [ -58.495351999595073, -34.680083000430102 ], [ -58.495739000354547, -34.679804000154434 ], [ -58.496189000421964, -34.679460999625405 ], [ -58.497111999818912, -34.678731000135485 ], [ -58.497412000163649, -34.678495000044165 ], [ -58.498184999837804, -34.677957999562011 ], [ -58.498849999927529, -34.677422000025217 ], [ -58.499129000203141, -34.677229000118245 ], [ -58.500180000106866, -34.676371000121492 ], [ -58.501017000034494, -34.67577000028524 ], [ -58.501853999962066, -34.675105000195572 ], [ -58.501897000146414, -34.675069000334076 ], [ -58.502239999776123, -34.674782999735612 ], [ -58.502647999705403, -34.674482000244097 ], [ -58.503034000418722, -34.674181999899361 ], [ -58.503484999632974, -34.673839000269595 ], [ -58.504213999976059, -34.673323999902607 ], [ -58.505007999719396, -34.672723000066355 ], [ -58.505566000270676, -34.672294000068007 ], [ -58.506210000291219, -34.671821999885367 ], [ -58.506618000220499, -34.671500000324727 ], [ -58.507025000103624, -34.671198999933836 ], [ -58.507840999962127, -34.670490999659876 ], [ -58.508291000029601, -34.670169000099236 ], [ -58.508785000327464, -34.66976200021611 ], [ -58.509171000141521, -34.66952600012479 ], [ -58.509665000439384, -34.669182000448927 ], [ -58.509921999700509, -34.669010999757802 ], [ -58.510501000320858, -34.668580999713299 ], [ -58.511338000248486, -34.667915999623631 ], [ -58.512175000176057, -34.667272999649185 ], [ -58.513118999642074, -34.666543000159265 ], [ -58.513935000399897, -34.665921000253888 ], [ -58.514856999750691, -34.665190999864706 ], [ -58.515328999933388, -34.664848000234997 ], [ -58.515801000116028, -34.664482999590689 ], [ -58.516703000343171, -34.66381800040034 ], [ -58.517174999626491, -34.66343199968702 ], [ -58.517624999693965, -34.66311000012638 ], [ -58.517797000431187, -34.662980999573449 ], [ -58.518355000083147, -34.662530000359197 ], [ -58.518437000267284, -34.662475999667606 ], [ -58.518483999736759, -34.662445000036655 ], [ -58.519042000288039, -34.661950999738792 ], [ -58.519770999731804, -34.661436000271124 ], [ -58.520607999659433, -34.660792000250581 ], [ -58.521616000278129, -34.660019999723147 ], [ -58.522646000112786, -34.659225999979867 ], [ -58.523654999878318, -34.658453000305656 ], [ -58.524684999712917, -34.657701999847347 ], [ -58.525177999964683, -34.657316000033347 ], [ -58.525800999916157, -34.656865999965873 ], [ -58.526379999637243, -34.656435999921428 ], [ -58.526615999728563, -34.656286000198691 ], [ -58.527195000348968, -34.655857000200342 ], [ -58.528310999652888, -34.655062999557742 ], [ -58.528655000228014, -34.654806000296617 ], [ -58.528755000342926, -34.654668000227957 ], [ -58.528826000019819, -34.654570000205297 ], [ -58.528954999673431, -34.654268999814462 ], [ -58.529211999833876, -34.653667999978154 ], [ -58.529233999949099, -34.653195999795514 ], [ -58.529298000202516, -34.652380999983109 ], [ -58.529320000317739, -34.651544000055537 ], [ -58.529362999602711, -34.650792999597229 ], [ -58.529383999671779, -34.650321000313852 ], [ -58.529383999671779, -34.650148999576629 ], [ -58.529405999787002, -34.649741999693504 ], [ -58.529416000248148, -34.64967100001661 ], [ -58.529448999971351, -34.649441000201932 ], [ -58.529491000109545, -34.648411000367332 ], [ -58.529513000224767, -34.647918000115567 ], [ -58.529534000293836, -34.64753200030151 ], [ -58.529598999694031, -34.646909000350036 ], [ -58.529619999763156, -34.646350999798756 ], [ -58.52968500006267, -34.64570799982431 ], [ -58.529706000131739, -34.645171000241419 ], [ -58.529749000316087, -34.644120000337693 ], [ -58.529791999601059, -34.643626000039831 ], [ -58.529834999785351, -34.643025000203579 ], [ -58.529877999969699, -34.641781000392825 ], [ -58.529896999946573, -34.641429000348069 ], [ -58.529942000223116, -34.640600999936169 ], [ -58.529955999969388, -34.640318000375373 ], [ -58.529963000292184, -34.64017199993782 ], [ -58.530005999577156, -34.63961400028586 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.529579999717157, -34.63934400042524 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.498013, -34.637210000041421 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.491021000418812, -34.636020000022938 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.48880199971245, -34.635470999886707 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.487519999948006, -34.635165000164591 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.478796999681776, -34.633104999596014 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.474558000251477, -34.63204800031491 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.470036000361063, -34.630796000135263 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.437760000323692, -34.618864000273334 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.435291999825893, -34.617770000185317 ], [ -58.434713000104807, -34.617511999978774 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.429080000241754, -34.615024000357266 ], [ -58.428512000128649, -34.614766000150723 ], [ -58.427632000016729, -34.6143580002215 ], [ -58.426151000068558, -34.613714000200901 ], [ -58.424928000326929, -34.613198999833912 ], [ -58.423598000147535, -34.612597999997661 ], [ -58.422417999690879, -34.612061999561604 ], [ -58.421044000180416, -34.611482999840518 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.417288999687571, -34.610925000188558 ], [ -58.415765999601149, -34.610859999889044 ], [ -58.4144570003902, -34.610753000350655 ], [ -58.413105000095641, -34.610645999912947 ], [ -58.411731999731956, -34.610560000443627 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.404586000243683, -34.610066000145764 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.401818000300409, -34.609895000353958 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.399114999757387, -34.609722999616679 ], [ -58.397569999555799, -34.60961600007829 ], [ -58.396282000413919, -34.609508999640582 ], [ -58.394865999865942, -34.609401000056039 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.388256999960561, -34.609100999711302 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.386260999645401, -34.60937999998697 ], [ -58.384844999996687, -34.609272000402427 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.381969999615762, -34.609078999596136 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.380681999574563, -34.608994000172913 ], [ -58.379179999557266, -34.608885999689107 ], [ -58.377786000023832, -34.60882200033501 ], [ -58.376391000444301, -34.60873599996637 ], [ -58.374928999573626, -34.608628000381884 ], [ -58.373579000270581, -34.608511000382293 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373450999763804, -34.608869999850583 ], [ -58.373450999763804, -34.60897200005769 ], [ -58.373580000316736, -34.609100999711302 ], [ -58.374653000335684, -34.610131000445278 ], [ -58.374674000404752, -34.610281000167959 ], [ -58.374825000173587, -34.610453000005919 ], [ -58.375039000149684, -34.610474000074987 ], [ -58.376218999707021, -34.611568000163061 ], [ -58.377571000001581, -34.612834000088981 ], [ -58.376155000352924, -34.612748999766495 ], [ -58.374738999804947, -34.612597999997661 ], [ -58.374631000220461, -34.613842999854512 ], [ -58.374523999782696, -34.614959000057752 ], [ -58.374523999782696, -34.616117000399186 ], [ -58.374438000313432, -34.617232999703106 ], [ -58.373086000018873, -34.6170619999113 ], [ -58.371670000370159, -34.617105000095648 ], [ -58.369868000008125, -34.6170619999113 ], [ -58.369439000009777, -34.617039999796134 ], [ -58.369267000171874, -34.617018999727009 ], [ -58.368966999827137, -34.616996999611786 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.367421999625549, -34.61682599981998 ], [ -58.367292999971937, -34.618199000183665 ], [ -58.368602000082205, -34.618284999652985 ], [ -58.368494999644497, -34.619400999856225 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368443999990575, -34.620620000312726 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368219000406498, -34.622562999982392 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.367382999625704, -34.622729000442973 ], [ -58.366777999604949, -34.62268400016643 ], [ -58.366754000296851, -34.622898000142527 ], [ -58.366627999882269, -34.624035000414892 ], [ -58.366477000113434, -34.625172999834035 ], [ -58.366348999606601, -34.626652999736109 ], [ -58.366176999768697, -34.626975000196069 ], [ -58.365662000301029, -34.627317999825777 ], [ -58.365448000324932, -34.627468999594612 ], [ -58.364674999751401, -34.627961999846377 ], [ -58.363903000123344, -34.628477000213365 ], [ -58.363323000356161, -34.628863000027366 ], [ -58.363172999734104, -34.628949000396005 ], [ -58.362443000244241, -34.629442999794549 ], [ -58.361455999694613, -34.630107999884217 ], [ -58.360040000045899, -34.631031000180485 ], [ -58.35946100032487, -34.631460000178834 ], [ -58.358967000027008, -34.632274999991239 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.361885999739059, -34.633476999663742 ], [ -58.363302000287035, -34.634056000284147 ], [ -58.362786999920047, -34.634871000096553 ], [ -58.362271999553116, -34.635664999839832 ], [ -58.361778000154516, -34.636480999698335 ], [ -58.361284999902807, -34.637296000410061 ], [ -58.362700999551464, -34.637876000177243 ], [ -58.363752000354509, -34.638305000175592 ], [ -58.364117000099441, -34.638454999898272 ], [ -58.364631999567109, -34.638541000266912 ], [ -58.365619000116737, -34.638668999874426 ], [ -58.366369999675726, -34.638777000358232 ], [ -58.366499000228657, -34.637918000315437 ], [ -58.366627999882269, -34.636996000065324 ], [ -58.36663700029726, -34.636942000273052 ], [ -58.366777999604949, -34.636115999953404 ], [ -58.366928000227006, -34.635192999657193 ], [ -58.367796999831626, -34.635300000094901 ], [ -58.368322999806537, -34.635365000394415 ], [ -58.368194000152926, -34.636265999676084 ], [ -58.368044000430245, -34.637166999857129 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 274.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.417826000169725, -34.657508999940376 ], [ -58.416774000219903, -34.658411000167462 ], [ -58.416796000335125, -34.658560999890199 ], [ -58.416817000404194, -34.659054000141964 ], [ -58.416388000405846, -34.658946999704256 ], [ -58.416302000037206, -34.658861000234936 ], [ -58.416302000037206, -34.658475000420879 ], [ -58.416280999968137, -34.657767000146919 ], [ -58.416302000037206, -34.65716600031061 ], [ -58.416001999692469, -34.656779999597234 ], [ -58.415550999578954, -34.656607999759331 ], [ -58.41486500031948, -34.656221999945274 ], [ -58.414006000276629, -34.655727999647411 ], [ -58.414178000114589, -34.655428000201994 ], [ -58.414435000274977, -34.654977000088422 ], [ -58.414800000019966, -34.654311999998754 ], [ -58.415508000293926, -34.654483999836657 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.418255000168074, -34.655192000110674 ], [ -58.419005999727062, -34.654654999628463 ], [ -58.419714000001079, -34.654140000160851 ], [ -58.420615000182067, -34.653497000186348 ], [ -58.421408999925347, -34.652896000350097 ], [ -58.422202999668684, -34.65227400044472 ], [ -58.423039999596256, -34.651693999778217 ], [ -58.423468999594604, -34.651351000148509 ], [ -58.423726999801147, -34.65115800024148 ], [ -58.423897999592953, -34.651050999803772 ], [ -58.424928000326929, -34.65027800012956 ], [ -58.425272000002735, -34.650064000153463 ], [ -58.426043999630849, -34.649548999786475 ], [ -58.427074000364769, -34.648819000296555 ], [ -58.428297000106454, -34.647918000115567 ], [ -58.428403999644843, -34.647809999631761 ], [ -58.429799000123694, -34.646822999981396 ], [ -58.431108000233962, -34.645900999731282 ], [ -58.432094999884271, -34.645171000241419 ], [ -58.432181000252911, -34.644183999691791 ], [ -58.432224000437202, -34.643582999855539 ], [ -58.432266999722231, -34.642982000019231 ], [ -58.432309999906522, -34.642273999745271 ], [ -58.432353000090814, -34.641738000208477 ], [ -58.433124999718927, -34.641887999931214 ], [ -58.434669999920516, -34.642210000391174 ], [ -58.436258000306452, -34.642509999836591 ], [ -58.437781000392818, -34.642811000227425 ], [ -58.438660999605418, -34.642982000019231 ], [ -58.439240000225766, -34.643089999603774 ], [ -58.439863000177297, -34.643240000225774 ], [ -58.440506000151743, -34.643368999879385 ], [ -58.441493999848149, -34.643582999855539 ], [ -58.442416000098262, -34.642681999674494 ], [ -58.443081000187988, -34.641759000277602 ], [ -58.443768000392879, -34.640750999658849 ], [ -58.444475999767519, -34.639785000077666 ], [ -58.444711999858839, -34.639399000263609 ], [ -58.444970000065382, -34.63856200033598 ], [ -58.445270000410176, -34.637317999625964 ], [ -58.445828000062136, -34.636652000389461 ], [ -58.446857999896736, -34.635537000232318 ], [ -58.447072999918987, -34.635322000210124 ], [ -58.447265999826016, -34.63478599977401 ], [ -58.447672999709141, -34.633969999915507 ], [ -58.448123999822712, -34.632983000265199 ], [ -58.448596000005352, -34.631974999646445 ], [ -58.449047000118924, -34.630987999996137 ], [ -58.449367999633409, -34.630300999791245 ], [ -58.449926000184746, -34.629121000233908 ], [ -58.450377000298261, -34.62813399968428 ], [ -58.450978000134569, -34.62693200001172 ], [ -58.451471000386334, -34.62590200017712 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.453531000055591, -34.624056999630795 ], [ -58.454604000074482, -34.624485999629144 ], [ -58.455055000188054, -34.623434999725418 ], [ -58.455548000439819, -34.622319000421498 ], [ -58.456085000022711, -34.621181000103036 ], [ -58.456620999559448, -34.620000999646379 ], [ -58.457222000295019, -34.618671000366305 ], [ -58.457285999649116, -34.618520999744305 ], [ -58.457779999946979, -34.617490999909649 ], [ -58.458187999876259, -34.616547000443688 ], [ -58.458488000220996, -34.615881000307866 ], [ -58.459045999872956, -34.614722999966432 ], [ -58.459474999871304, -34.613886000038804 ], [ -58.460033000422584, -34.612748999766495 ], [ -58.460591000074544, -34.611718999931838 ], [ -58.461106000441532, -34.610666999982016 ], [ -58.461707000277784, -34.60952999970965 ], [ -58.462242999814521, -34.608393000336662 ], [ -58.462714999997218, -34.607341000386839 ], [ -58.463057999626926, -34.606655000228045 ], [ -58.463616000178206, -34.605539000024805 ], [ -58.464152999761097, -34.604422999821566 ], [ -58.464774999666474, -34.603264000333297 ], [ -58.464947000403697, -34.602835000334949 ], [ -58.465505000055657, -34.601698000062584 ], [ -58.465439999756143, -34.601418999786972 ], [ -58.465053999942086, -34.600173999930121 ], [ -58.464732000381446, -34.599144000095464 ], [ -58.464409999921543, -34.598114000260864 ], [ -58.464088000360903, -34.597084999573042 ], [ -58.463894999554554, -34.596419000336539 ], [ -58.464409999921543, -34.596440999552442 ], [ -58.465268999964337, -34.596612000243567 ], [ -58.465418999687017, -34.59663400035879 ], [ -58.465590000378199, -34.59654799999015 ], [ -58.465611999594046, -34.596504999805859 ], [ -58.465548000240005, -34.59639800026747 ], [ -58.465482999940434, -34.59616200017615 ], [ -58.465203999664823, -34.59528200006423 ], [ -58.465032999873017, -34.594788999812465 ], [ -58.464817999850766, -34.594016000138254 ], [ -58.464475000221057, -34.592750000212277 ], [ -58.464409999921543, -34.592493000051888 ], [ -58.465032999873017, -34.59189200021558 ], [ -58.466040999592394, -34.591076000357077 ], [ -58.466170000145326, -34.590968999919369 ], [ -58.466384000121479, -34.59077600001234 ], [ -58.466469999590743, -34.590647000358729 ], [ -58.466234000398742, -34.590239999576283 ], [ -58.463465999556206, -34.587643000324135 ], [ -58.462907999904246, -34.587084999772856 ], [ -58.462157000345258, -34.58644199979841 ], [ -58.461964000438229, -34.586291000029576 ], [ -58.461514000370755, -34.58603399986913 ], [ -58.461106000441532, -34.585840999962159 ], [ -58.460398000167515, -34.585669000124199 ], [ -58.460096999776681, -34.585625999939907 ], [ -58.459882999800584, -34.585625999939907 ], [ -58.459689999893556, -34.585669000124199 ], [ -58.457328999833408, -34.586549000236118 ], [ -58.456535000090128, -34.587106999888078 ], [ -58.455462000071179, -34.587450000417164 ], [ -58.455033000072831, -34.587470999586913 ], [ -58.454110999822717, -34.587771999977747 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.451214000225889, -34.582901000180982 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.449990999584941, -34.580862999727628 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.452115000406877, -34.58011200016864 ], [ -58.453037999803826, -34.579832999892972 ], [ -58.453531000055591, -34.579661000055069 ], [ -58.454862000281025, -34.579209999941497 ], [ -58.455977000438168, -34.578888000380857 ], [ -58.457222000295019, -34.57858800003612 ], [ -58.45735099994863, -34.578544999851829 ], [ -58.458016000038356, -34.578395000129092 ], [ -58.458509000290064, -34.5783519999448 ], [ -58.459689999893556, -34.578308999760509 ], [ -58.460226000329612, -34.578287999691383 ], [ -58.459903999869653, -34.576849999927504 ], [ -58.459860999685361, -34.575605000070652 ], [ -58.459839999616236, -34.574983000165275 ], [ -58.459839999616236, -34.574703999889664 ], [ -58.459839999616236, -34.574231999706967 ], [ -58.459518000055596, -34.57322399998759 ], [ -58.459153000310664, -34.57257999996699 ], [ -58.458809999781636, -34.572001000245905 ], [ -58.458230000014453, -34.570862999927442 ], [ -58.457929999669716, -34.570197999837774 ], [ -58.457866000315619, -34.570048000115094 ], [ -58.457736999762687, -34.569768999839425 ], [ -58.45743700031727, -34.569103999749757 ], [ -58.456578000274476, -34.568567000166865 ], [ -58.455677000093431, -34.568030999730809 ], [ -58.454775999912442, -34.56751600026314 ], [ -58.455441000002111, -34.566764999804832 ], [ -58.456128000207002, -34.565948999946329 ], [ -58.455225999979859, -34.565433999579398 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.453230999710854, -34.564254000022061 ], [ -58.452330000429129, -34.563717999585947 ], [ -58.451428000201986, -34.563181000003112 ], [ -58.450527000020998, -34.562644999567055 ], [ -58.449625999839952, -34.562109000030262 ], [ -58.448724999658964, -34.56159399966333 ], [ -58.447802000262072, -34.561057000080439 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.449153999657312, -34.55895400022689 ], [ -58.450334000113969, -34.558245999952874 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 273.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.464646000012863, -34.720423000021412 ], [ -58.463359000017817, -34.719671999563104 ], [ -58.462350000252286, -34.720959999604247 ], [ -58.461235000095144, -34.720336999652773 ], [ -58.460139999960973, -34.719714999747396 ], [ -58.459089000057247, -34.71913600002631 ], [ -58.458037000107424, -34.718535000190059 ], [ -58.456943000019407, -34.717913000284682 ], [ -58.455848999931334, -34.71731200044843 ], [ -58.454775999912442, -34.716710999712802 ], [ -58.453680999778271, -34.716131999991774 ], [ -58.452608999805477, -34.715487999971174 ], [ -58.451450000317209, -34.714909000250145 ], [ -58.451836000131266, -34.714222000045197 ], [ -58.452350999598934, -34.713556999955529 ], [ -58.452845999942895, -34.712944999611977 ], [ -58.453444999686951, -34.712204999660969 ], [ -58.453855999754524, -34.711689000147203 ], [ -58.454365999890967, -34.711079999942001 ], [ -58.455125999864947, -34.710427999552508 ], [ -58.45554500030147, -34.70991800031544 ], [ -58.456265000229564, -34.709058000226491 ], [ -58.458060000268745, -34.707693000231757 ], [ -58.458116000153268, -34.707372999863992 ], [ -58.45846700015187, -34.707205000210536 ], [ -58.458715999943422, -34.707147000233817 ], [ -58.459344000125441, -34.706841999658536 ], [ -58.459474999871304, -34.706625999590187 ], [ -58.459754000146972, -34.706368000282964 ], [ -58.460591000074544, -34.705896000100267 ], [ -58.461020000072892, -34.705616999824656 ], [ -58.461697999862736, -34.705186999780153 ], [ -58.462372000367509, -34.704758999827959 ], [ -58.462758000181509, -34.704586999989999 ], [ -58.463402000202109, -34.704136999922582 ], [ -58.463852000269583, -34.703794000292817 ], [ -58.464046000222709, -34.703557000155399 ], [ -58.464282000314029, -34.703256999810662 ], [ -58.464432000036709, -34.703150000272274 ], [ -58.464989999688669, -34.702784999627966 ], [ -58.466040999592394, -34.701947999700394 ], [ -58.466126999961034, -34.701884000346297 ], [ -58.466534999890314, -34.701582999955463 ], [ -58.469259999649239, -34.699545000401429 ], [ -58.470483000290187, -34.698601000036092 ], [ -58.470697000266284, -34.698429000198132 ], [ -58.470011000107547, -34.697892999762075 ], [ -58.469259999649239, -34.697205999557184 ], [ -58.468509000090251, -34.696541000366835 ], [ -58.467800999816234, -34.695897000346235 ], [ -58.466984999957731, -34.695145999887927 ], [ -58.466234000398742, -34.694458999683036 ], [ -58.465526000124783, -34.69381599970859 ], [ -58.464689000197154, -34.693065000149602 ], [ -58.463980999923194, -34.692400000059934 ], [ -58.463315999833469, -34.691777000108402 ], [ -58.461749999562812, -34.690275000091162 ], [ -58.461834999885298, -34.690104000299357 ], [ -58.461106000441532, -34.688365000144586 ], [ -58.463633000062885, -34.685838999670068 ], [ -58.464732000381446, -34.684739000204672 ], [ -58.464774999666474, -34.684674999951255 ], [ -58.464646000012863, -34.684267000021975 ], [ -58.46571399980121, -34.683149999772638 ], [ -58.466469999590743, -34.682357000075456 ], [ -58.466705999682119, -34.682120999984136 ], [ -58.466835000235051, -34.682056999730719 ], [ -58.467392999887011, -34.681993000376622 ], [ -58.467542999609691, -34.682034999615496 ], [ -58.467821999885359, -34.682249999637747 ], [ -58.467892999562252, -34.682318000075611 ], [ -58.469646000362559, -34.683987999746364 ], [ -58.470054000291839, -34.683666000185724 ], [ -58.470353999737256, -34.683430000094404 ], [ -58.471855999754553, -34.684739000204672 ], [ -58.472006000376552, -34.684739000204672 ], [ -58.472221000398804, -34.684845999743061 ], [ -58.473058000326432, -34.685489999763661 ], [ -58.474215999768546, -34.684609999651741 ], [ -58.473444000140432, -34.683944999562016 ], [ -58.473272000302529, -34.684074000114947 ], [ -58.472756999935541, -34.683645000116599 ], [ -58.472178000214512, -34.683129999749667 ], [ -58.473529999609752, -34.682077999799787 ], [ -58.474451999859866, -34.681370000425147 ], [ -58.475590000178329, -34.680490000313227 ], [ -58.476726999551374, -34.679611000247405 ], [ -58.477391999641043, -34.679095999880474 ], [ -58.476747999620443, -34.678538000228457 ], [ -58.476083000430094, -34.677957999562011 ], [ -58.475288999787495, -34.677250000187314 ], [ -58.475760999970134, -34.67688599958916 ], [ -58.476470000290249, -34.6763279999372 ], [ -58.477649999847586, -34.675425999710058 ], [ -58.477820999639391, -34.675404999640989 ], [ -58.478250999683837, -34.67512600026464 ], [ -58.478379000190671, -34.674954000426737 ], [ -58.479495000393911, -34.67409600043004 ], [ -58.480525000228511, -34.673367000086955 ], [ -58.481103999949596, -34.672915999973384 ], [ -58.481576000132236, -34.672530000159327 ], [ -58.480568000412859, -34.671693000231755 ], [ -58.479431000140494, -34.670769999935487 ], [ -58.478915999773506, -34.67031999986807 ], [ -58.478722999866534, -34.67014800003011 ], [ -58.478228999568614, -34.669740000100887 ], [ -58.478743999935602, -34.669311000102539 ], [ -58.479259000302591, -34.668903000173259 ], [ -58.480289000137191, -34.668130999645882 ], [ -58.480783000435054, -34.667722999716602 ], [ -58.481275999787499, -34.667357999971671 ], [ -58.482864000173436, -34.666114000160917 ], [ -58.483293000171784, -34.665791999700957 ], [ -58.483614999732424, -34.665534000393734 ], [ -58.484065999845996, -34.665190999864706 ], [ -58.485309999656693, -34.66422600032962 ], [ -58.486575999582669, -34.66325999984906 ], [ -58.48711300006488, -34.662787999666421 ], [ -58.487305999971852, -34.662637999943684 ], [ -58.488549999782606, -34.661672000362501 ], [ -58.489815999708583, -34.660706999928038 ], [ -58.491060999565434, -34.659719000231632 ], [ -58.492197999837799, -34.65884000016581 ], [ -58.493378000294456, -34.657916999869599 ], [ -58.493463999763719, -34.657852999616182 ], [ -58.494579999966959, -34.656973000403582 ], [ -58.494666000335599, -34.656909000150165 ], [ -58.495545000401421, -34.656221999945274 ], [ -58.496532000051729, -34.655449000271119 ], [ -58.497241000371844, -34.656029000038302 ], [ -58.498141999653512, -34.655169999995451 ], [ -58.499021999765432, -34.654290999929685 ], [ -58.500136999922574, -34.653195999795514 ], [ -58.501275000241037, -34.652144999891789 ], [ -58.502196999591831, -34.65130799996416 ], [ -58.502196999591831, -34.65130799996416 ], [ -58.503377000048488, -34.650363999598881 ], [ -58.503934999700448, -34.649913000384629 ], [ -58.504472000182602, -34.649484000386281 ], [ -58.504965000434368, -34.649075999557681 ], [ -58.505458999832911, -34.648689999743624 ], [ -58.506531999851859, -34.647809999631761 ], [ -58.507068000287916, -34.647359999564287 ], [ -58.507604999870807, -34.646909000350036 ], [ -58.508763000212241, -34.646008000169047 ], [ -58.509942999769578, -34.645084999872779 ], [ -58.511124000272332, -34.644183999691791 ], [ -58.512024999554058, -34.644999999550294 ], [ -58.513205000010714, -34.644098000222471 ], [ -58.514364000398245, -34.643197000041482 ], [ -58.515479999702166, -34.642230999560923 ], [ -58.516445000136628, -34.643068000387871 ], [ -58.516830999950628, -34.643389999948511 ], [ -58.517067000042005, -34.643604999970705 ], [ -58.517839999716159, -34.64427000006043 ], [ -58.517947000153868, -34.644356000429013 ], [ -58.519063000357164, -34.644398999714042 ], [ -58.520544000305335, -34.644462999967459 ], [ -58.520973000303684, -34.644485000082625 ], [ -58.521144000095489, -34.64450600015175 ], [ -58.521402000302032, -34.64450600015175 ], [ -58.521767000046964, -34.644527000220819 ], [ -58.522130999745798, -34.644549000336042 ], [ -58.522432000136632, -34.644570000405167 ], [ -58.522731999582049, -34.644570000405167 ], [ -58.523097000226358, -34.64459199962107 ], [ -58.523439999856066, -34.644612999690139 ], [ -58.523741000246901, -34.644612999690139 ], [ -58.523869999900512, -34.644634999805362 ], [ -58.524040999692318, -34.644634999805362 ], [ -58.524213000429597, -34.644655999874431 ], [ -58.524342000083209, -34.644655999874431 ], [ -58.524599000243597, -34.644655999874431 ], [ -58.524705999782043, -34.643669000224122 ], [ -58.524771000081557, -34.642789000112202 ], [ -58.524792000150626, -34.642509999836591 ], [ -58.524814000265849, -34.642252999676145 ], [ -58.524835000334974, -34.642016999584825 ], [ -58.524856999550821, -34.641759000277602 ], [ -58.524877999619946, -34.641545000301505 ], [ -58.524898999689071, -34.641266000025837 ], [ -58.524920999804237, -34.641029999934517 ], [ -58.524941999873363, -34.640771999727974 ], [ -58.524963999988586, -34.640514999567529 ], [ -58.525007000172877, -34.640128999753472 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529105000295488, -34.63952799991722 ], [ -58.529062000111196, -34.640021000168986 ], [ -58.529169999695682, -34.64017199993782 ], [ -58.529211999833876, -34.640257000260306 ], [ -58.529362999602711, -34.640300000444597 ], [ -58.529598999694031, -34.640300000444597 ], [ -58.529727000200864, -34.640257000260306 ], [ -58.529855999854476, -34.640128999753472 ], [ -58.529877999969699, -34.640043000284209 ], [ -58.529877999969699, -34.639785000077666 ], [ -58.529791999601059, -34.639248999641552 ], [ -58.529791999601059, -34.63888399989662 ], [ -58.529985000407407, -34.637381999879324 ], [ -58.529985000407407, -34.637102999603712 ], [ -58.530091999945796, -34.636051999699987 ], [ -58.530070999876727, -34.634292000375467 ], [ -58.530096000130243, -34.633728000446808 ], [ -58.530191000014611, -34.631571999947823 ], [ -58.530284999852825, -34.629420999679326 ], [ -58.530371000221464, -34.627682999570709 ], [ -58.53039300033663, -34.626631999666984 ], [ -58.530456999690728, -34.625709000270092 ], [ -58.530477999759853, -34.625365999741064 ], [ -58.530499999875076, -34.625000999996132 ], [ -58.530586000243659, -34.623370000325224 ], [ -58.530649999597756, -34.622768999589596 ], [ -58.53071499989727, -34.62148199959455 ], [ -58.530807999689387, -34.619869999900516 ], [ -58.530986999850143, -34.616786999820135 ], [ -58.531015000242007, -34.616311000352368 ], [ -58.53095099998859, -34.615516999709712 ], [ -58.530843000404104, -34.615108999780489 ], [ -58.530263999783699, -34.613863999923637 ], [ -58.530084999623, -34.613487999671406 ], [ -58.528989000342051, -34.61118899977248 ], [ -58.528525999675082, -34.610216999914599 ], [ -58.527796000185219, -34.608607000312759 ], [ -58.527645000416385, -34.608284999852799 ], [ -58.526670999566932, -34.606199999930027 ], [ -58.525778999800934, -34.604294000167954 ], [ -58.525497000286293, -34.6036940003778 ], [ -58.524483000290218, -34.601534999740409 ], [ -58.524105999991889, -34.600731999582081 ], [ -58.523396999671775, -34.599617000324258 ], [ -58.523242999764591, -34.599345000371443 ], [ -58.523032999972941, -34.598973000303658 ], [ -58.522453000205758, -34.5976260002397 ], [ -58.522302999583701, -34.59727800037939 ], [ -58.521937999838769, -34.596183000245219 ], [ -58.521709000070246, -34.595666999832133 ], [ -58.520851000073549, -34.593735999816488 ], [ -58.520392999637181, -34.592707000027985 ], [ -58.519900000284736, -34.59165600012426 ], [ -58.518999000103747, -34.589831999647004 ], [ -58.518775999712602, -34.58936699978716 ], [ -58.518763000012427, -34.589338000248461 ], [ -58.517872000292527, -34.587399999910019 ], [ -58.517431999786936, -34.58644199979841 ], [ -58.517003999834685, -34.585537000332238 ], [ -58.516226999976027, -34.583892000015737 ], [ -58.515758999977834, -34.582901000180982 ], [ -58.515367999933233, -34.582076999953529 ], [ -58.514700999751312, -34.580666999682251 ], [ -58.514620999659371, -34.580497999982697 ], [ -58.514470999936634, -34.57994000033068 ], [ -58.51425599991444, -34.5793819997794 ], [ -58.514248000444809, -34.579346999964059 ], [ -58.514128000306926, -34.578846000242663 ], [ -58.51401999982312, -34.578159000037772 ], [ -58.513370000425141, -34.576665000389426 ], [ -58.512797000081434, -34.575347999910207 ], [ -58.512213000129805, -34.574097999822811 ], [ -58.511724000062486, -34.57305200014963 ], [ -58.511273999995069, -34.572128999853419 ], [ -58.511037999903749, -34.571656999670779 ], [ -58.51093100036536, -34.571400000409653 ], [ -58.510881999904313, -34.571199000133731 ], [ -58.510779999697206, -34.570776999558859 ], [ -58.510350999698858, -34.570133999584357 ], [ -58.509964999884801, -34.569317999725854 ], [ -58.509985999953869, -34.569168000003174 ], [ -58.509771999977772, -34.569146999934048 ], [ -58.509685999609133, -34.569103999749757 ], [ -58.509342999979424, -34.568546000097797 ], [ -58.509214000325812, -34.568353000190768 ], [ -58.508702000097173, -34.567882000054226 ], [ -58.508676999843601, -34.567858999892906 ], [ -58.508204999660961, -34.567214999872306 ], [ -58.507926000284669, -34.566592999966929 ], [ -58.507358000171507, -34.565129999949477 ], [ -58.507068000287916, -34.564382999675672 ], [ -58.506259999899044, -34.562594999959231 ], [ -58.506059999669219, -34.562151000168456 ], [ -58.504710000366174, -34.559349999602773 ], [ -58.503784999977711, -34.557431000140525 ], [ -58.502948000050139, -34.555542000263074 ], [ -58.502841999658528, -34.555319999918026 ], [ -58.502101999707463, -34.553773999670284 ], [ -58.501982999615677, -34.553524999878789 ], [ -58.500867000311757, -34.551229000118212 ], [ -58.500846000242689, -34.551198999634096 ], [ -58.500501999667506, -34.550692999682155 ], [ -58.500030000384186, -34.550135000030195 ], [ -58.499107000087918, -34.549383999571887 ], [ -58.498512999675143, -34.549048000264975 ], [ -58.498120000437609, -34.548825999919927 ], [ -58.496896999796661, -34.54829000038319 ], [ -58.495674000055033, -34.54779600008527 ], [ -58.495157999641947, -34.547571999648028 ], [ -58.493699999855096, -34.546938000088574 ], [ -58.492583999651799, -34.546427999952186 ], [ -58.491211000187491, -34.545800999816265 ], [ -58.491005999727065, -34.545706999977995 ], [ -58.488250000337189, -34.544449000420968 ], [ -58.48711300006488, -34.543911999938814 ], [ -58.486125000368418, -34.543182999595729 ], [ -58.485524999678944, -34.54290400021938 ], [ -58.484387000259801, -34.542453000105809 ], [ -58.483592999617201, -34.542173999830197 ], [ -58.483026000449513, -34.541935999646626 ], [ -58.480224999883774, -34.54075800018154 ], [ -58.480099000368511, -34.540697000066473 ], [ -58.479259000302591, -34.540285999998844 ], [ -58.478379000190671, -34.539620999909175 ], [ -58.477863999823683, -34.539256000164244 ], [ -58.477456999940557, -34.539020000072924 ], [ -58.476286999945046, -34.538526999821158 ], [ -58.476083000430094, -34.538441000351838 ], [ -58.47563300036262, -34.53824800044481 ], [ -58.475225000433397, -34.53801200035349 ], [ -58.474710000066409, -34.53777600026217 ], [ -58.473808999885421, -34.537539000124696 ], [ -58.472861000234957, -34.537409999571764 ], [ -58.472414000305832, -34.537281999964307 ], [ -58.471127000310787, -34.536746000427513 ], [ -58.47015999978413, -34.536300999691321 ], [ -58.468649000251105, -34.535607000062953 ], [ -58.468441999698484, -34.535563999878661 ], [ -58.467821999885359, -34.535071999672994 ], [ -58.467436000071302, -34.534899999835091 ], [ -58.467071000326371, -34.534856999650742 ], [ -58.466814000165925, -34.534899999835091 ], [ -58.466705999682119, -34.53498600020373 ], [ -58.466620000212799, -34.535114999857342 ], [ -58.466770999981634, -34.535587000039982 ], [ -58.466792000050702, -34.53569399957837 ], [ -58.466792000050702, -34.53577999994701 ], [ -58.466663000397091, -34.53610200040697 ], [ -58.466298999798937, -34.536681000127999 ], [ -58.465805000400394, -34.537474999871279 ], [ -58.465312000148629, -34.538290999729838 ], [ -58.464861000035057, -34.53904200018809 ], [ -58.465847999685423, -34.539556999655758 ], [ -58.466406000236702, -34.538827000165895 ], [ -58.466963999888662, -34.538053999592364 ], [ -58.467522000439942, -34.537281999964307 ], [ -58.467908000253942, -34.536401999852387 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 272.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.385124000272356, -34.834256000114294 ], [ -58.385296000110259, -34.834235000045169 ], [ -58.385445999832996, -34.834126999561363 ], [ -58.385510000086413, -34.834020000022917 ], [ -58.385467999948219, -34.833827000115946 ], [ -58.38542499976387, -34.833740999747306 ], [ -58.38542499976387, -34.8335699999555 ], [ -58.385445999832996, -34.833376000002374 ], [ -58.385466999902064, -34.833328999633579 ], [ -58.385638999740024, -34.832947000004026 ], [ -58.385853999762219, -34.832518000005678 ], [ -58.386154000106956, -34.831960000353718 ], [ -58.386369000129207, -34.831510000286244 ], [ -58.386518999851944, -34.831252000079701 ], [ -58.386883999596876, -34.830500999621393 ], [ -58.386947999850292, -34.830371999967781 ], [ -58.387420000032932, -34.829449999717667 ], [ -58.388213999776212, -34.82794799970037 ], [ -58.388385999614172, -34.827604000024564 ], [ -58.388515000167104, -34.826938999934839 ], [ -58.388642999774561, -34.826102000007268 ], [ -58.388708000074075, -34.825695000124085 ], [ -58.388772000327492, -34.825287000194862 ], [ -58.388944000165452, -34.824471000336359 ], [ -58.389093999888132, -34.823677999739857 ], [ -58.389223000441064, -34.822840999812229 ], [ -58.389307999864286, -34.822497000136423 ], [ -58.389307999864286, -34.821403000048349 ], [ -58.389329999979452, -34.820479999752138 ], [ -58.389201000325841, -34.819107000287772 ], [ -58.389114999957258, -34.817562000086184 ], [ -58.389071999772909, -34.816747000273779 ], [ -58.389050999703841, -34.816424999813819 ], [ -58.38896800037287, -34.815166000210695 ], [ -58.388965000234521, -34.815115999703607 ], [ -58.388944000165452, -34.814707999774328 ], [ -58.388900999981104, -34.813764000308311 ], [ -58.388835999681589, -34.812948999596586 ], [ -58.388835999681589, -34.812713000404585 ], [ -58.388814999612521, -34.812477000313265 ], [ -58.388772000327492, -34.811425000363442 ], [ -58.388708000074075, -34.810373999560397 ], [ -58.388621999705492, -34.809301000440769 ], [ -58.388642999774561, -34.809258000256477 ], [ -58.388664999889784, -34.809215000072129 ], [ -58.388664999889784, -34.808185000237529 ], [ -58.388664999889784, -34.807949000146209 ], [ -58.388685999958909, -34.807197999687901 ], [ -58.388685999958909, -34.806618999966815 ], [ -58.388708000074075, -34.805374000109964 ], [ -58.388729000143201, -34.80380799983925 ], [ -58.388729000143201, -34.803271000256416 ], [ -58.388729000143201, -34.803035000165096 ], [ -58.388729000143201, -34.802948999796456 ], [ -58.388751000258424, -34.800739000404519 ], [ -58.388965000234521, -34.800610999897685 ], [ -58.388987000349744, -34.800352999691142 ], [ -58.388729000143201, -34.800224000037531 ], [ -58.388729000143201, -34.799409000225126 ], [ -58.388751000258424, -34.797605999816994 ], [ -58.388772000327492, -34.797220000002937 ], [ -58.388772000327492, -34.795717999985641 ], [ -58.388814999612521, -34.794302000336984 ], [ -58.388857999796812, -34.792906999858133 ], [ -58.388857999796812, -34.792220999699339 ], [ -58.388878999865938, -34.791105000395419 ], [ -58.388900999981104, -34.790397000121402 ], [ -58.388922000050229, -34.790053000445596 ], [ -58.388944000165452, -34.789732000031734 ], [ -58.389050999703841, -34.788400999806242 ], [ -58.389114999957258, -34.787327999787294 ], [ -58.389180000256772, -34.786662999697626 ], [ -58.389243999610869, -34.785589999678677 ], [ -58.389265999726092, -34.785418999886872 ], [ -58.389351000048578, -34.784431000190466 ], [ -58.389394000232869, -34.784066999592312 ], [ -58.389416000348092, -34.783701999847381 ], [ -58.389458999633064, -34.783079999942004 ], [ -58.389501999817412, -34.782758000381364 ], [ -58.389566000070829, -34.782500000174821 ], [ -58.38960900025512, -34.782349999552821 ], [ -58.389758999977801, -34.781770999831735 ], [ -58.389823000231218, -34.781598999993832 ], [ -58.39008100043776, -34.780868999604593 ], [ -58.390210000091372, -34.780569000159176 ], [ -58.390552999721137, -34.779667999978187 ], [ -58.39063900008972, -34.779452999955936 ], [ -58.390831999996749, -34.778980999773296 ], [ -58.391089000157194, -34.778315999683571 ], [ -58.391603999624863, -34.777200000379651 ], [ -58.391839999716183, -34.776792999597205 ], [ -58.392097999922726, -34.776427999852274 ], [ -58.392613000289714, -34.775611999993771 ], [ -58.393493000401634, -34.774389000252143 ], [ -58.394243999960565, -34.773316000233194 ], [ -58.394480000051942, -34.772972999704109 ], [ -58.394844999796874, -34.772458000236497 ], [ -58.394909000050291, -34.772371999867858 ], [ -58.395659999609279, -34.771234999595492 ], [ -58.395767000046988, -34.771062999757589 ], [ -58.39634699981417, -34.770247999945184 ], [ -58.39641100006753, -34.768466999652276 ], [ -58.396432000136656, -34.768080999838219 ], [ -58.396517999605976, -34.766643000074339 ], [ -58.396560999790267, -34.765955999869448 ], [ -58.396560999790267, -34.765871000446282 ], [ -58.396626000089782, -34.764818999597082 ], [ -58.396626000089782, -34.764260999945122 ], [ -58.39658299990549, -34.763574999786385 ], [ -58.396454000251879, -34.762437000367242 ], [ -58.396324999698948, -34.76123599984146 ], [ -58.396174999976211, -34.760013000099832 ], [ -58.396003000138307, -34.758831999597078 ], [ -58.395767000046988, -34.757652000039741 ], [ -58.395596000255182, -34.756493999698307 ], [ -58.395424000417222, -34.755571000301359 ], [ -58.395402000302056, -34.755335000210039 ], [ -58.395338000048639, -34.75499199968101 ], [ -58.395188000325902, -34.754132999638159 ], [ -58.395058999772971, -34.753574999986199 ], [ -58.394952000234582, -34.752953000080822 ], [ -58.394737000212331, -34.751793999693291 ], [ -58.394544000305302, -34.750549999882537 ], [ -58.394351000398331, -34.7493700003252 ], [ -58.394115000306954, -34.748188999822446 ], [ -58.393900000284759, -34.747052000449401 ], [ -58.393621000009091, -34.745592999717132 ], [ -58.393407000032994, -34.744434000228864 ], [ -58.393192000010743, -34.74327599988743 ], [ -58.392978000034645, -34.742095000283996 ], [ -58.392763000012394, -34.740936999942562 ], [ -58.392549000036297, -34.739757000385225 ], [ -58.392334000014046, -34.738619000066763 ], [ -58.391991000384337, -34.737438999610106 ], [ -58.391689999993446, -34.736280000121837 ], [ -58.390187999976149, -34.736486999775195 ], [ -58.390123999722789, -34.735292999572209 ], [ -58.390101999607566, -34.734091999945804 ], [ -58.390101999607566, -34.732890000273244 ], [ -58.390101999607566, -34.732289000436992 ], [ -58.39008100043776, -34.731730999885713 ], [ -58.390101999607566, -34.730508000144027 ], [ -58.39008100043776, -34.73005800007661 ], [ -58.390066999792168, -34.728456999990499 ], [ -58.389543999955606, -34.727955000223062 ], [ -58.388708000074075, -34.727160999580406 ], [ -58.387871000146504, -34.726366999837126 ], [ -58.387055000288001, -34.725573000093846 ], [ -58.386219000406527, -34.724779000350566 ], [ -58.385381999579579, -34.723963999638841 ], [ -58.384565999721076, -34.723169999895561 ], [ -58.38366500043935, -34.722310999852709 ], [ -58.382849999727682, -34.721518000155527 ], [ -58.382033999869179, -34.720808999835413 ], [ -58.381196999941551, -34.719994000023064 ], [ -58.380295999760563, -34.71913600002631 ], [ -58.379480999948157, -34.71834200028303 ], [ -58.378665000089654, -34.717568999709499 ], [ -58.37782900020818, -34.716774999966219 ], [ -58.377013000349621, -34.715981000222939 ], [ -58.376197999637952, -34.715208999695562 ], [ -58.375381999779449, -34.714393999883157 ], [ -58.374094999784347, -34.713192000210597 ], [ -58.37323699978765, -34.712377000398192 ], [ -58.372377999744856, -34.711582999755592 ], [ -58.371541999863382, -34.710766999897089 ], [ -58.370682999820531, -34.709973000153809 ], [ -58.369845999892959, -34.709179000410472 ], [ -58.368966999827137, -34.708342999629679 ], [ -58.367914999877314, -34.707354999933273 ], [ -58.367077999949686, -34.70656200023609 ], [ -58.365983999861669, -34.705510000286267 ], [ -58.366108000183999, -34.705416999594831 ], [ -58.366327000390697, -34.705253000125822 ], [ -58.36690700015788, -34.704866000265667 ], [ -58.367442999694617, -34.704479999552291 ], [ -58.367808000338925, -34.704201000175999 ], [ -58.367100000064909, -34.703536000086274 ], [ -58.368279999622246, -34.702569999605771 ], [ -58.369546000447542, -34.70149799963292 ], [ -58.370210999637891, -34.700961000050086 ], [ -58.371177000118394, -34.70014600023768 ], [ -58.37220699995305, -34.699287000194886 ], [ -58.371434000278839, -34.698665000289509 ], [ -58.370941000027074, -34.698278999576132 ], [ -58.370017999730862, -34.697549000086269 ], [ -58.369137999618943, -34.696712000158641 ], [ -58.368794999989234, -34.696411999813904 ], [ -58.368107999784343, -34.695746999724236 ], [ -58.366928000227006, -34.694588000235967 ], [ -58.366004999930738, -34.693793999593368 ], [ -58.365169000049264, -34.693065000149602 ], [ -58.364096000030315, -34.692141999853391 ], [ -58.364589000282081, -34.691756000039334 ], [ -58.365125999864972, -34.691327000040985 ], [ -58.366004999930738, -34.690618999766968 ], [ -58.366648999951337, -34.690082000184134 ], [ -58.367529000063257, -34.689352999841049 ], [ -58.368387000059954, -34.688665999636157 ], [ -58.369202999918457, -34.687979000330586 ], [ -58.370060999915154, -34.687249999987444 ], [ -58.370425999660142, -34.686948999596609 ], [ -58.370875999727559, -34.686605999966901 ], [ -58.371519999748159, -34.686090999599912 ], [ -58.37164900030109, -34.685961999946301 ], [ -58.372657000020467, -34.685168000203021 ], [ -58.373450999763804, -34.684503000113295 ], [ -58.372690999789768, -34.683866999562326 ], [ -58.372271000206467, -34.683515999563667 ], [ -58.371262999587714, -34.682700999751319 ], [ -58.370361000259891, -34.681971000261399 ], [ -58.370446999729211, -34.681907000007982 ], [ -58.371304999725908, -34.681198999734022 ], [ -58.370274999891308, -34.680339999691171 ], [ -58.369267000171874, -34.679524999878822 ], [ -58.368194000152926, -34.678666999882068 ], [ -58.367743000039354, -34.678236999837623 ], [ -58.367249999787646, -34.677764999654983 ], [ -58.366648999951337, -34.677250000187314 ], [ -58.366520000297726, -34.677142999749606 ], [ -58.36579099995464, -34.676477999659937 ], [ -58.364846999589304, -34.675640999732309 ], [ -58.364396000375052, -34.675254999918252 ], [ -58.363623999847675, -34.674546999644292 ], [ -58.363193999803229, -34.674159999784138 ], [ -58.362099999715156, -34.673195000248995 ], [ -58.361585000247544, -34.672744000135481 ], [ -58.361305999971876, -34.672508000044104 ], [ -58.361177000318264, -34.672294000068007 ], [ -58.361177000318264, -34.672294000068007 ], [ -58.362679000335561, -34.670019000376499 ], [ -58.363151999665035, -34.669333000217762 ], [ -58.363859999938995, -34.668238000083591 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370229999614764, -34.659369000279071 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370298000052628, -34.658567000166897 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370342000283074, -34.657525999824998 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370506999798181, -34.657046000172727 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371249999887539, -34.655741000246906 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371574999586528, -34.654621999905316 ], [ -58.371678999885887, -34.65424399956089 ], [ -58.371833999839168, -34.653789000162192 ], [ -58.372295000413885, -34.652431999637031 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373082999880523, -34.650920000057909 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.373836999577804, -34.648347000113915 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.371606000116799, -34.647939000184692 ], [ -58.370512000028725, -34.647746000277664 ], [ -58.369503000263194, -34.647553000370635 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.369246000102805, -34.640106999638306 ], [ -58.369395999825485, -34.639163000172289 ], [ -58.369546000447542, -34.638239999876077 ], [ -58.369566999617291, -34.638003999784701 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.369439000009777, -34.628305000375406 ], [ -58.368473000428594, -34.627468999594612 ], [ -58.368150999968634, -34.627147000033972 ], [ -58.368001000245897, -34.62686799975836 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368602000082205, -34.620173000383602 ], [ -58.369008999965331, -34.619206999903099 ], [ -58.369310000356165, -34.618392000090694 ], [ -58.369493999848146, -34.617946000207724 ], [ -58.369566999617291, -34.617770000185317 ], [ -58.369416999894611, -34.617447999725357 ], [ -58.369439000009777, -34.617039999796134 ], [ -58.369439000009777, -34.616675000051146 ], [ -58.369439000009777, -34.616547000443688 ], [ -58.369439000009777, -34.615817000054449 ], [ -58.369460000078902, -34.614787000219849 ], [ -58.369503000263194, -34.613606999763192 ], [ -58.369566999617291, -34.612297999652924 ], [ -58.369566999617291, -34.611139000164655 ], [ -58.369609999801582, -34.60993799963893 ], [ -58.369609999801582, -34.609418999986815 ], [ -58.369609999801582, -34.60937999998697 ], [ -58.369416999894611, -34.609251000333359 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368005000430401, -34.608769999735671 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367980000176829, -34.607749000316062 ], [ -58.368129999899509, -34.607556000409033 ], [ -58.368387000059954, -34.607405999787034 ], [ -58.368623000151274, -34.607320000317713 ], [ -58.369267000171874, -34.607190999764782 ], [ -58.369760999570417, -34.606997999857754 ], [ -58.369889000077251, -34.606891000319365 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370247000398706, -34.605701000300883 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370038999799988, -34.605302999933429 ], [ -58.369845999892959, -34.605302999933429 ], [ -58.368944999711914, -34.605216999564846 ], [ -58.368816000058303, -34.605216999564846 ], [ -58.367914999877314, -34.605153000210748 ], [ -58.368044000430245, -34.604037000007509 ], [ -58.368173000083857, -34.60281400026588 ], [ -58.368279999622246, -34.601784000431223 ], [ -58.368409000175177, -34.600989999788624 ], [ -58.368645000266497, -34.600453000205732 ], [ -58.369095000333971, -34.599315999933424 ], [ -58.369137999618943, -34.599209000395035 ], [ -58.369566999617291, -34.598199999730184 ], [ -58.369180999803234, -34.598286000098767 ], [ -58.3690639998037, -34.598293000421563 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 271.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.459175000425887, -34.779325000348422 ], [ -58.459089000057247, -34.77919599979549 ], [ -58.459089000057247, -34.779088000211004 ], [ -58.459667999778333, -34.778294999614502 ], [ -58.459882999800584, -34.778059000422502 ], [ -58.460354999983224, -34.777393000286679 ], [ -58.460354999983224, -34.777114000011068 ], [ -58.460118999891904, -34.776900000034914 ], [ -58.459775000216041, -34.776813999666331 ], [ -58.459539000124721, -34.776943000219262 ], [ -58.459089000057247, -34.777457999686874 ], [ -58.458637999943676, -34.778122999776599 ], [ -58.458358999668064, -34.778423000121336 ], [ -58.458102000406939, -34.77848800042085 ], [ -58.457929999669716, -34.77848800042085 ], [ -58.457779999946979, -34.778423000121336 ], [ -58.456106000091779, -34.777544000055514 ], [ -58.453917999915745, -34.776427999852274 ], [ -58.452954999573535, -34.775925000038683 ], [ -58.451492999602237, -34.775161999926297 ], [ -58.450633999559386, -34.774710999812726 ], [ -58.448188000076129, -34.773488000071097 ], [ -58.447313000194754, -34.773032999773079 ], [ -58.447115000057181, -34.772930000419137 ], [ -58.444390000298256, -34.771491999755938 ], [ -58.444003999584879, -34.771277999779841 ], [ -58.443282999610688, -34.770917000219356 ], [ -58.441686999755177, -34.770119000291572 ], [ -58.442115999753526, -34.769560999740293 ], [ -58.442973999750222, -34.768424000367304 ], [ -58.443810999677851, -34.76733000027923 ], [ -58.444690999789771, -34.766257000260282 ], [ -58.445505999602176, -34.765184000241391 ], [ -58.446363999598873, -34.764068000038151 ], [ -58.447180000356695, -34.762951999834854 ], [ -58.447995000169101, -34.761857999746837 ], [ -58.448832000096672, -34.76076399965882 ], [ -58.447715999893433, -34.760140999707346 ], [ -58.446599999690193, -34.759561999986261 ], [ -58.445442000248079, -34.759004000334301 ], [ -58.444390000298256, -34.758467999898244 ], [ -58.442952999681154, -34.757717000339255 ], [ -58.443788999562628, -34.756601000136016 ], [ -58.444647999605479, -34.755484999932776 ], [ -58.445420000132856, -34.754347999660411 ], [ -58.44627900017565, -34.753253000425559 ], [ -58.445569999855593, -34.752888999827462 ], [ -58.445399000063787, -34.752803000358142 ], [ -58.444904999765868, -34.752545000151599 ], [ -58.444518999951867, -34.752159000337542 ], [ -58.443617999770822, -34.751214999972206 ], [ -58.442845000096611, -34.750400000159857 ], [ -58.442801999912319, -34.750378000044634 ], [ -58.441987000099914, -34.749884999792869 ], [ -58.441214999572537, -34.749433999679297 ], [ -58.440441999898326, -34.749004999680949 ], [ -58.4393909999946, -34.748424999913766 ], [ -58.439969999715686, -34.747653000285709 ], [ -58.440677999989646, -34.746837999573984 ], [ -58.441386000263662, -34.745893000061869 ], [ -58.442223000191291, -34.744821000089019 ], [ -58.443060000118862, -34.743704999885779 ], [ -58.443940000230782, -34.74263199986683 ], [ -58.444690999789771, -34.741558999847939 ], [ -58.443445999932919, -34.740850999573922 ], [ -58.442245000306457, -34.740186000383574 ], [ -58.441042999734634, -34.739499000178682 ], [ -58.439841000062074, -34.738811999973791 ], [ -58.438618000320446, -34.738146999884066 ], [ -58.438339000044778, -34.737997000161386 ], [ -58.437416999794664, -34.737460999725329 ], [ -58.436171999937812, -34.736794999589506 ], [ -58.434949000196184, -34.736130000399157 ], [ -58.434756000289156, -34.736000999846226 ], [ -58.434498000082613, -34.735894000307837 ], [ -58.433789999808596, -34.735507999594461 ], [ -58.432716999789648, -34.734906999758209 ], [ -58.431643999770756, -34.734349000106249 ], [ -58.430486000328585, -34.733706000131747 ], [ -58.429799000123694, -34.733319000271592 ], [ -58.429370000125346, -34.733062000111147 ], [ -58.428490000013426, -34.732610999997632 ], [ -58.427267000271797, -34.731989000092256 ], [ -58.427137999718866, -34.731902999723616 ], [ -58.426194000252849, -34.731431000440296 ], [ -58.426043999630849, -34.731345000071656 ], [ -58.425249999887569, -34.730916000073307 ], [ -58.424735000419901, -34.73061599972857 ], [ -58.424348999706524, -34.730400999706319 ], [ -58.423983999961592, -34.730207999799291 ], [ -58.423824999823864, -34.730124999569057 ], [ -58.423448000424855, -34.729929000422999 ], [ -58.423233000402604, -34.729799999870067 ], [ -58.422503000013421, -34.729414000056011 ], [ -58.42143100004057, -34.728835000334982 ], [ -58.420830000204319, -34.728533999944091 ], [ -58.419993000276691, -34.728061999761451 ], [ -58.418877000073451, -34.727460999925142 ], [ -58.417760999870211, -34.726882000204114 ], [ -58.417996999961531, -34.726581999859377 ], [ -58.418448000075102, -34.725981000023069 ], [ -58.419183999841664, -34.725011000257439 ], [ -58.419392000440439, -34.724736000166217 ], [ -58.420121999930302, -34.723748999616589 ], [ -58.420743999835679, -34.722933999804184 ], [ -58.421066000295639, -34.722537000382204 ], [ -58.421387999856279, -34.722140000060904 ], [ -58.422009999761656, -34.721346000317624 ], [ -58.422503000013421, -34.720702000297024 ], [ -58.422589000382004, -34.720594999859316 ], [ -58.422696999966547, -34.720445000136579 ], [ -58.422954000126936, -34.720100999561453 ], [ -58.422954000126936, -34.720100999561453 ], [ -58.423405000240507, -34.719521999840367 ], [ -58.423468999594604, -34.719415000301979 ], [ -58.424541999613552, -34.718019999823071 ], [ -58.425143000349124, -34.717226000079791 ], [ -58.425786000323626, -34.716389000152219 ], [ -58.426258999653044, -34.715767000246842 ], [ -58.426494999744421, -34.715465999855951 ], [ -58.427246000202729, -34.714479000205642 ], [ -58.427996999761717, -34.713491999656014 ], [ -58.426816000158226, -34.712826999566346 ], [ -58.425614999632501, -34.712204999660969 ], [ -58.424588999982348, -34.711674000354776 ], [ -58.424412999959941, -34.711582999755592 ], [ -58.423212000333535, -34.710959999804118 ], [ -58.421987999646433, -34.710337999898741 ], [ -58.420866000065814, -34.709737000062432 ], [ -58.42078700001997, -34.709693999878141 ], [ -58.419564000278342, -34.709094000087987 ], [ -58.418983999611839, -34.708406999883096 ], [ -58.418383999821685, -34.707677000393232 ], [ -58.418105000445394, -34.707312999795079 ], [ -58.417847000238851, -34.707012000303507 ], [ -58.417225000333474, -34.70623999977613 ], [ -58.416517000059457, -34.705380999733279 ], [ -58.416324000152429, -34.705166999757182 ], [ -58.415615999878469, -34.704416000198194 ], [ -58.415550999578954, -34.704350999898679 ], [ -58.414822000135132, -34.703557000155399 ], [ -58.414586000043812, -34.703278999925885 ], [ -58.413662999747601, -34.702249000091228 ], [ -58.412653999982069, -34.701110999772766 ], [ -58.411731999731956, -34.700103000053389 ], [ -58.411624000147469, -34.699953000330652 ], [ -58.410830000404133, -34.699073000218732 ], [ -58.410766000150772, -34.699007999919218 ], [ -58.410734999620502, -34.698974000149917 ], [ -58.410057999876756, -34.698215000222035 ], [ -58.409842999854504, -34.697978000084618 ], [ -58.409307000317767, -34.697378000294407 ], [ -58.40900699997303, -34.697033999719281 ], [ -58.408126999861111, -34.696047000068972 ], [ -58.407333000117831, -34.695189000072276 ], [ -58.406475000121134, -34.694308999960356 ], [ -58.405808999985311, -34.693600999686339 ], [ -58.405659000262631, -34.693450999963659 ], [ -58.405143999895643, -34.692914000380767 ], [ -58.404822000335002, -34.692549999782614 ], [ -58.404457999736849, -34.692185000037682 ], [ -58.403985999554209, -34.691690999739819 ], [ -58.403791999601083, -34.691476999763665 ], [ -58.40314899962658, -34.690789999558774 ], [ -58.403106000341609, -34.690726000204677 ], [ -58.40267700034326, -34.690254000022037 ], [ -58.402139999861049, -34.689759999724174 ], [ -58.401110000026449, -34.688922999796546 ], [ -58.401066999842101, -34.688879999612254 ], [ -58.400102000307015, -34.688086999915072 ], [ -58.399993999823209, -34.688021999615557 ], [ -58.399286000448512, -34.687442999894472 ], [ -58.398534999990204, -34.68684200005822 ], [ -58.397698000062633, -34.686154999853329 ], [ -58.398321000014107, -34.685725999854981 ], [ -58.398856999550844, -34.685340000040924 ], [ -58.399243000264221, -34.685081999834381 ], [ -58.399458000286415, -34.684888999927352 ], [ -58.400015999938432, -34.684395999675587 ], [ -58.400745000281518, -34.683623000001433 ], [ -58.401452999656158, -34.682851000373319 ], [ -58.402161999976272, -34.68209999991501 ], [ -58.402870000250289, -34.681284000056507 ], [ -58.403513000224734, -34.680554999713422 ], [ -58.404263999783723, -34.679696999716725 ], [ -58.404372000267585, -34.679589000132182 ], [ -58.404200000429626, -34.679460999625405 ], [ -58.402761999766426, -34.678472999928942 ], [ -58.401925999884952, -34.677894000207914 ], [ -58.401023999657809, -34.677293000371606 ], [ -58.400165999661112, -34.676691999636034 ], [ -58.399286000448512, -34.67609199984588 ], [ -58.398706999828164, -34.675704999985726 ], [ -58.398128000107079, -34.6752980001026 ], [ -58.397763000362147, -34.675039999896057 ], [ -58.397182999695644, -34.674525000428389 ], [ -58.397130999995625, -34.674479000105748 ], [ -58.39641100006753, -34.673839000269595 ], [ -58.395702999793571, -34.673216000318121 ], [ -58.395617000324251, -34.673130999995635 ], [ -58.394801999612525, -34.672400999606396 ], [ -58.394636000051321, -34.672264999629988 ], [ -58.394566000420525, -34.672207999699367 ], [ -58.393664000193439, -34.671435000025213 ], [ -58.392676999643754, -34.67055599995939 ], [ -58.391476000017349, -34.670577000028459 ], [ -58.390682000274069, -34.670577000028459 ], [ -58.390573999790206, -34.67046999959075 ], [ -58.389672999609218, -34.669696999916596 ], [ -58.389223000441064, -34.669267999918191 ], [ -58.388857999796812, -34.668925000288482 ], [ -58.387827999962212, -34.668045000176562 ], [ -58.388729000143201, -34.667336999902602 ], [ -58.389781000093024, -34.666522000090197 ], [ -58.388729000143201, -34.663947000053952 ], [ -58.388385999614172, -34.663238999779992 ], [ -58.388087000214853, -34.66238299987549 ], [ -58.388170999591921, -34.661372000017764 ], [ -58.388213999776212, -34.660276999883592 ], [ -58.388278000029629, -34.659997999607924 ], [ -58.388449999867532, -34.658175000076142 ], [ -58.388557000305298, -34.656887000034999 ], [ -58.388599999590269, -34.656178999760982 ], [ -58.388664999889784, -34.655600000039954 ], [ -58.387055000288001, -34.655213000179799 ], [ -58.385467999948219, -34.654827000365742 ], [ -58.38415899983795, -34.654483999836657 ], [ -58.383342999979448, -34.654290999929685 ], [ -58.382269999960499, -34.654011999654017 ], [ -58.381154999803357, -34.653733000277725 ], [ -58.37965299978606, -34.653346999564349 ], [ -58.378815999858489, -34.653132000441417 ], [ -58.378279000275597, -34.653002999888486 ], [ -58.376883999796689, -34.652638000143554 ], [ -58.377077999749872, -34.652165999960914 ], [ -58.377334999910261, -34.651457999686897 ], [ -58.377742999839541, -34.650342000382977 ], [ -58.378192999906958, -34.649118999742029 ], [ -58.378258000206529, -34.648969000019292 ], [ -58.37718500018758, -34.648798000227487 ], [ -58.377119999888066, -34.648947999950167 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.373836999577804, -34.648347000113915 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.371606000116799, -34.647939000184692 ], [ -58.370512000028725, -34.647746000277664 ], [ -58.369503000263194, -34.647553000370635 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.367077999949686, -34.643669000224122 ], [ -58.365598000047612, -34.643539999671191 ], [ -58.364674999751401, -34.643433000132802 ], [ -58.363259000102744, -34.642917999765814 ], [ -58.362401000106047, -34.642425000413368 ], [ -58.361971000061544, -34.642189000322048 ], [ -58.361026999696264, -34.641673999955117 ], [ -58.360232999952927, -34.641200999726323 ], [ -58.361069999880556, -34.64088000021178 ], [ -58.361477999809779, -34.64055799975182 ], [ -58.361649999647739, -34.640193000006889 ], [ -58.36160700036271, -34.639741999893317 ], [ -58.361564000178419, -34.639484999732929 ], [ -58.361413000409584, -34.639248999641552 ], [ -58.36034100043679, -34.63897000026526 ], [ -58.358473999775242, -34.63897000026526 ], [ -58.358044999776894, -34.638819999643204 ], [ -58.357143000449071, -34.638411999713981 ], [ -58.357036000011362, -34.638196999691729 ], [ -58.357228999918391, -34.637960999600409 ], [ -58.357100000264779, -34.637876000177243 ], [ -58.356799999920042, -34.637704000339284 ], [ -58.356178000014665, -34.637253000225712 ], [ -58.355533999994066, -34.637060000318741 ], [ -58.35471900018166, -34.636610000251267 ], [ -58.354160999630381, -34.636223000391112 ], [ -58.353860000138866, -34.635773000323638 ], [ -58.353816999954518, -34.635580000416667 ], [ -58.353816999954518, -34.635518000255445 ], [ -58.353795999885449, -34.634271000306398 ], [ -58.353731999632032, -34.633240999572422 ], [ -58.353795999885449, -34.632210999737822 ], [ -58.354139000414477, -34.631351999694971 ], [ -58.354653999882146, -34.630515999813497 ], [ -58.355341000087037, -34.629722000070217 ], [ -58.356221000198957, -34.628885000142589 ], [ -58.357294000217905, -34.628176999868629 ], [ -58.358687999751339, -34.62725399957236 ], [ -58.358516999959534, -34.626888999827429 ], [ -58.358563000282174, -34.626858000196535 ], [ -58.359374999956231, -34.6263100001064 ], [ -58.360168999699511, -34.625815999808481 ], [ -58.360876999973527, -34.625322999556715 ], [ -58.361477999809779, -34.624957999811784 ], [ -58.362292999622184, -34.624936999742715 ], [ -58.363044000080492, -34.625087000364715 ], [ -58.363077999849793, -34.625072999719123 ], [ -58.363794999639481, -34.624785999973881 ], [ -58.364631999567109, -34.624335999906407 ], [ -58.365018000280429, -34.624099999815087 ], [ -58.365239999726157, -34.623970000115378 ], [ -58.365448000324932, -34.623927999977184 ], [ -58.365704999586001, -34.623735000070155 ], [ -58.365812000023766, -34.623606000416544 ], [ -58.365898000392349, -34.623349000256098 ], [ -58.366004999930738, -34.622618999866916 ], [ -58.366004999930738, -34.622512000328527 ], [ -58.366004999930738, -34.622189999868567 ], [ -58.36602700004596, -34.621974999846316 ], [ -58.366048000115086, -34.621439000309579 ], [ -58.366176999768697, -34.620408999575602 ], [ -58.366327000390697, -34.619229000018265 ], [ -58.366456000044309, -34.618069999630734 ], [ -58.365919999608252, -34.618027000345762 ], [ -58.365812000023766, -34.617876999723705 ], [ -58.365725999655126, -34.617855999654637 ], [ -58.36587700032328, -34.616697000166369 ], [ -58.365983999861669, -34.615580999963129 ], [ -58.36602700004596, -34.615280999618392 ], [ -58.366324000252348, -34.612585000297486 ], [ -58.366327000390697, -34.612555999859467 ], [ -58.366306000321629, -34.612212000183604 ], [ -58.36626300013728, -34.611976000092284 ], [ -58.366241000022114, -34.611675999747547 ], [ -58.366348999606601, -34.610753000350655 ], [ -58.366385000367416, -34.610426999706249 ], [ -58.366648999951337, -34.608027999692411 ], [ -58.366950000342229, -34.605302999933429 ], [ -58.366971000411297, -34.605023999657817 ], [ -58.367249999787646, -34.602771000081532 ], [ -58.368173000083857, -34.60281400026588 ], [ -58.368258000406342, -34.60281400026588 ], [ -58.369008999965331, -34.602877999619921 ], [ -58.369137999618943, -34.601847999785321 ], [ -58.368279999622246, -34.601784000431223 ], [ -58.368409000175177, -34.600989999788624 ], [ -58.368645000266497, -34.600453000205732 ], [ -58.369095000333971, -34.599315999933424 ], [ -58.369137999618943, -34.599209000395035 ], [ -58.369566999617291, -34.598199999730184 ], [ -58.370017999730862, -34.597126999711236 ], [ -58.370468999844434, -34.595882999900482 ], [ -58.370482000443928, -34.595851000223433 ], [ -58.371606000116799, -34.593158000141557 ], [ -58.372184999837827, -34.591805999846997 ], [ -58.372334999560564, -34.59156999975562 ], [ -58.372334999560564, -34.591526999571329 ], [ -58.37229300032169, -34.591441000102009 ], [ -58.371842000208119, -34.590904999665952 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.373322000110193, -34.586935000050175 ], [ -58.374750000312247, -34.586113999961071 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 270.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.754520000097898, -35.058644000220397 ], [ -58.754882999750578, -35.058960999550436 ], [ -58.755634000208886, -35.058338999645059 ], [ -58.756384999767874, -35.057758999877876 ], [ -58.757070999926668, -35.057201000225916 ], [ -58.758166000060839, -35.056322000160151 ], [ -58.758937999688897, -35.056987000249819 ], [ -58.759689000147205, -35.057631000270419 ], [ -58.760418999637068, -35.058253000175796 ], [ -58.761255999564696, -35.058960999550436 ], [ -58.762050000207296, -35.059647999755327 ], [ -58.762843999950576, -35.060333999914121 ], [ -58.763637999693913, -35.059689999893521 ], [ -58.76449599969061, -35.059046999919076 ], [ -58.765290000333209, -35.058402999898476 ], [ -58.766061999961266, -35.057802000062225 ], [ -58.765268000217986, -35.057093999788208 ], [ -58.76449599969061, -35.056428999698539 ], [ -58.763637999693913, -35.055699000208676 ], [ -58.762843999950576, -35.055056000234174 ], [ -58.762113999561393, -35.054412000213574 ], [ -58.761319999818113, -35.053768000193031 ], [ -58.760548000189999, -35.053082000034237 ], [ -58.759796999731691, -35.052438000013638 ], [ -58.759046000172702, -35.051772999923969 ], [ -58.758252000429422, -35.051106999788146 ], [ -58.756664000043543, -35.04977699960881 ], [ -58.755354999933274, -35.048640000235764 ], [ -58.753917000169395, -35.047437999663885 ], [ -58.752586999990001, -35.046279000175673 ], [ -58.751771000131498, -35.045850000177325 ], [ -58.751128000157053, -35.045527999717365 ], [ -58.750998999604121, -35.045443000294199 ], [ -58.750161999676493, -35.044948999996336 ], [ -58.749775999862436, -35.044691999835891 ], [ -58.749454000301853, -35.044497999882765 ], [ -58.748659999659196, -35.043962000345971 ], [ -58.747523000286208, -35.043167999703371 ], [ -58.747072000172636, -35.042781999889314 ], [ -58.746879000265608, -35.042588999982343 ], [ -58.746214000175939, -35.041923999892617 ], [ -58.745785000177591, -35.041493999848171 ], [ -58.74533400006402, -35.041086999965046 ], [ -58.744562000435906, -35.040529000313086 ], [ -58.744326000344586, -35.040356999575806 ], [ -58.743295999610666, -35.039628000132041 ], [ -58.742243999660843, -35.038918999811926 ], [ -58.741406999733215, -35.038340000090898 ], [ -58.741235999941409, -35.038211000437286 ], [ -58.740206000106753, -35.037482000094201 ], [ -58.739089999903513, -35.036730999635893 ], [ -58.738467999998136, -35.036280000421641 ], [ -58.737867000161884, -35.035851000423293 ], [ -58.737737999608953, -35.035743999985584 ], [ -58.737266000325633, -35.035379000240653 ], [ -58.736686999705228, -35.034863999873664 ], [ -58.736579000120742, -35.034778000404344 ], [ -58.735979000330587, -35.034241999968287 ], [ -58.735292000125639, -35.033597999947688 ], [ -58.735056000034319, -35.033361999856368 ], [ -58.734304999576011, -35.032739999950991 ], [ -58.733983000015371, -35.032653999582351 ], [ -58.733554000017023, -35.032224999584002 ], [ -58.733274999741411, -35.031495000094139 ], [ -58.73273800015852, -35.030229000168163 ], [ -58.732459999929006, -35.029800000169814 ], [ -58.732288000091103, -35.02958500014762 ], [ -58.731923000346171, -35.02926299968766 ], [ -58.731666000185726, -35.029026999596283 ], [ -58.731321999610543, -35.028727000150866 ], [ -58.730682999820544, -35.028166000360557 ], [ -58.729563000332178, -35.027181999949278 ], [ -58.729240999872218, -35.026924999788889 ], [ -58.729069000034258, -35.026796000135278 ], [ -58.727626000039834, -35.025557999701903 ], [ -58.727330999925641, -35.025315000187049 ], [ -58.726429999744653, -35.024629000028312 ], [ -58.725679000185664, -35.02396299989249 ], [ -58.724370000075396, -35.022804999551056 ], [ -58.721952000084684, -35.020695000273975 ], [ -58.718146999984015, -35.017376000102274 ], [ -58.716087000314758, -35.015466000155755 ], [ -58.715221999995265, -35.014694999674475 ], [ -58.710824999574015, -35.010773999620369 ], [ -58.710744000335296, -35.010702999943476 ], [ -58.708469999790623, -35.008621000158996 ], [ -58.706487000074958, -35.006872000442399 ], [ -58.704649999897526, -35.005252000379471 ], [ -58.702637999743843, -35.003296000110254 ], [ -58.70156000039367, -35.002248000344878 ], [ -58.700852000119653, -35.001583000255209 ], [ -58.700379999937013, -35.001154000256861 ], [ -58.700215999568684, -35.001000000349677 ], [ -58.699049999757619, -34.99990900040001 ], [ -58.697634000108962, -34.998664999689936 ], [ -58.69759400006302, -34.998628999828441 ], [ -58.695896000000346, -34.997120000387667 ], [ -58.695423999817706, -34.996691000389319 ], [ -58.694201000076077, -34.995575000186079 ], [ -58.692999000403518, -34.994502000167131 ], [ -58.691989999738666, -34.993600999986143 ], [ -58.690381000182981, -34.992098999968846 ], [ -58.688943000419101, -34.990833000042869 ], [ -58.687570000055416, -34.989523999932601 ], [ -58.687290999779748, -34.989051999749961 ], [ -58.687265000379398, -34.988989999588739 ], [ -58.685660000108896, -34.985253999972088 ], [ -58.68535999976416, -34.984910000296225 ], [ -58.680360000313726, -34.982163999568854 ], [ -58.677421999725482, -34.980570999851693 ], [ -58.674222999691665, -34.978837999973678 ], [ -58.674051999899859, -34.978731000435289 ], [ -58.670275000191054, -34.976691999935781 ], [ -58.669031000380301, -34.976026999846113 ], [ -58.667828999808478, -34.975361999756444 ], [ -58.666712999605181, -34.974760999920193 ], [ -58.666606000066793, -34.974717999735844 ], [ -58.66540400039429, -34.974052999646176 ], [ -58.664246000052799, -34.973430999740799 ], [ -58.662143000199251, -34.972272000252588 ], [ -58.66185000017731, -34.972081000437754 ], [ -58.661648999901388, -34.971949999792628 ], [ -58.660342999929469, -34.970693000281699 ], [ -58.658774000419726, -34.969181999849354 ], [ -58.658302000237086, -34.968817000104423 ], [ -58.656134000084023, -34.967440999602388 ], [ -58.654718000435309, -34.966542999559749 ], [ -58.654053000345641, -34.966134999630469 ], [ -58.652937000142401, -34.965470000440121 ], [ -58.651843000054384, -34.964826000419521 ], [ -58.651349999802619, -34.964526000074784 ], [ -58.649439999856043, -34.963474000124961 ], [ -58.648602999928471, -34.963001999942321 ], [ -58.646885999888923, -34.961994000222887 ], [ -58.646290000283273, -34.961658000016655 ], [ -58.644386999760172, -34.960586000043804 ], [ -58.642277999629925, -34.959398000117574 ], [ -58.641629000278101, -34.959033000372642 ], [ -58.640243000214241, -34.958134000283849 ], [ -58.639741000446747, -34.95780899968554 ], [ -58.638652999736109, -34.957003000288182 ], [ -58.637552000224616, -34.956092999692146 ], [ -58.637337000202365, -34.955880999808244 ], [ -58.63627499979134, -34.954836000181217 ], [ -58.635326000094778, -34.953805000300463 ], [ -58.635041999588566, -34.953496000439998 ], [ -58.634396000375091, -34.95275300035064 ], [ -58.633043000034377, -34.951195000448877 ], [ -58.632135000429912, -34.950150999968628 ], [ -58.630926999581334, -34.948759999674223 ], [ -58.629498000232502, -34.947115000256986 ], [ -58.6280609996154, -34.945461000424814 ], [ -58.626802000012276, -34.944012000153634 ], [ -58.626329999829579, -34.943453999602355 ], [ -58.625772000177619, -34.942831999696978 ], [ -58.625277999879756, -34.942209999791601 ], [ -58.623691000439294, -34.940407000282789 ], [ -58.622445999683123, -34.938947999550521 ], [ -58.621413999756271, -34.937763999808681 ], [ -58.620408000129089, -34.936608999605596 ], [ -58.620106999738198, -34.936566000320624 ], [ -58.616374000259839, -34.941114999657486 ], [ -58.617295999610633, -34.939935000100149 ], [ -58.618175999722553, -34.938733999574367 ], [ -58.619099000018821, -34.937575000086156 ], [ -58.619614000385752, -34.936844999696916 ], [ -58.619849999577752, -34.936673999905111 ], [ -58.620106999738198, -34.936566000320624 ], [ -58.620106999738198, -34.936566000320624 ], [ -58.620172000037712, -34.936480999998082 ], [ -58.620172000037712, -34.936330000229304 ], [ -58.61847600006729, -34.934378000144534 ], [ -58.617597000001524, -34.933369000379003 ], [ -58.617060000418633, -34.932746999574306 ], [ -58.616416000398033, -34.931996000015317 ], [ -58.615730000239296, -34.931223000341163 ], [ -58.614999999850056, -34.930386999560312 ], [ -58.612446999929091, -34.92742499966397 ], [ -58.611889000277074, -34.926824999873816 ], [ -58.609121000333857, -34.923626999886096 ], [ -58.607725999854949, -34.922040000445634 ], [ -58.607060999765281, -34.921287999941228 ], [ -58.606416999744681, -34.92053700038224 ], [ -58.60557999981711, -34.919549999832554 ], [ -58.604034999615521, -34.917963000392092 ], [ -58.602877000173351, -34.916996999911589 ], [ -58.601611000247431, -34.915988000146058 ], [ -58.601116999949568, -34.915602000332001 ], [ -58.599743999585883, -34.914529000313053 ], [ -58.59925000018734, -34.914164999714899 ], [ -58.598027000445654, -34.913177000018493 ], [ -58.596954000426763, -34.912341000137019 ], [ -58.595860000338689, -34.911461000025099 ], [ -58.594723000066381, -34.910603000028402 ], [ -58.594551000228421, -34.910474000374791 ], [ -58.593606999863084, -34.909743999985551 ], [ -58.592919999658193, -34.909208000448814 ], [ -58.592448000374873, -34.908842999804563 ], [ -58.591311000102507, -34.907920000407671 ], [ -58.590151999714976, -34.907062000410974 ], [ -58.589529999809599, -34.906569000159209 ], [ -58.588907999904222, -34.906095999930415 ], [ -58.588714999997194, -34.905925000138609 ], [ -58.588070999976651, -34.905387999656398 ], [ -58.587362999702634, -34.904873000188786 ], [ -58.58673999975116, -34.904357999821798 ], [ -58.586139999961006, -34.903885999639101 ], [ -58.585495999940406, -34.903393000286712 ], [ -58.584874000035029, -34.902942000173141 ], [ -58.584273000198777, -34.902426999806153 ], [ -58.583757999831789, -34.902040999992096 ], [ -58.583221000248898, -34.901655000178096 ], [ -58.581913000184784, -34.900582000159147 ], [ -58.581312000348476, -34.900259999699188 ], [ -58.580710999612904, -34.899788000415867 ], [ -58.580131999891819, -34.899337000302296 ], [ -58.579058999872927, -34.898479000305599 ], [ -58.578435999921396, -34.897963999938611 ], [ -58.577836000131242, -34.897491999755914 ], [ -58.577213000179768, -34.896998000357371 ], [ -58.576570000205322, -34.896461999921314 ], [ -58.575990000438139, -34.895989999738674 ], [ -58.573565000124631, -34.894101999907321 ], [ -58.572449999967489, -34.893286000048818 ], [ -58.571656000224209, -34.892900000234761 ], [ -58.570925999834969, -34.892405999936898 ], [ -58.570217999561009, -34.891849000331035 ], [ -58.569531000255438, -34.891290999779756 ], [ -58.568822999981421, -34.890733000127796 ], [ -58.567664999639987, -34.889809999831584 ], [ -58.567256999710708, -34.889510000386167 ], [ -58.566441999898359, -34.888887000434693 ], [ -58.565283000410091, -34.887922000000231 ], [ -58.564789000112228, -34.887277999979688 ], [ -58.564230999560948, -34.886805999796991 ], [ -58.563158999588097, -34.885968999869419 ], [ -58.562085999569206, -34.885131999941791 ], [ -58.561141000057091, -34.884423999667831 ], [ -58.560069000084241, -34.883586999740203 ], [ -58.558159000137721, -34.882084999722906 ], [ -58.557751000208441, -34.881763000162266 ], [ -58.556785999774036, -34.880990999634889 ], [ -58.556377999844756, -34.880691000189472 ], [ -58.555884000446213, -34.880283000260192 ], [ -58.555325999894933, -34.879854000261844 ], [ -58.554403999644819, -34.879145999987884 ], [ -58.553802999808568, -34.878673999805187 ], [ -58.553201999972259, -34.87820099957645 ], [ -58.552557999951716, -34.877708000224004 ], [ -58.551958000161562, -34.877236000041307 ], [ -58.550670000120363, -34.876227000275776 ], [ -58.545712999954958, -34.872322000060194 ], [ -58.543246000402576, -34.870412000113674 ], [ -58.540649000251108, -34.868394999729389 ], [ -58.539854999608508, -34.867729999639721 ], [ -58.539169000349034, -34.867215000172052 ], [ -58.538482000144143, -34.866656999620773 ], [ -58.537773999870183, -34.866142000153161 ], [ -58.537086999665235, -34.865605999717047 ], [ -58.536401000405817, -34.865048000065087 ], [ -58.534984999857841, -34.863931999861848 ], [ -58.534297999652949, -34.863438999610082 ], [ -58.533482999840544, -34.862794999589539 ], [ -58.531786999870121, -34.861465000309465 ], [ -58.531293999618356, -34.861099999665214 ], [ -58.530649999597756, -34.860563000082323 ], [ -58.529963000292184, -34.860047999715391 ], [ -58.529277000133391, -34.859468999994306 ], [ -58.528612000043722, -34.858953999627317 ], [ -58.527924999838831, -34.85841800009058 ], [ -58.527625000393414, -34.858159999884037 ], [ -58.526702000097202, -34.857451999610078 ], [ -58.525778999800934, -34.856722000120158 ], [ -58.524835000334974, -34.856035999961364 ], [ -58.523847999785346, -34.855327999687404 ], [ -58.522731999582049, -34.854490999759776 ], [ -58.521852000369506, -34.853783000385135 ], [ -58.521251999679976, -34.853311000202439 ], [ -58.520930000119392, -34.853075000111119 ], [ -58.520715000097141, -34.852860000088867 ], [ -58.520221999845376, -34.852387999906227 ], [ -58.518740999897204, -34.85120800034889 ], [ -58.517689999993479, -34.850391999591068 ], [ -58.517410999717811, -34.850220999799262 ], [ -58.516488000320919, -34.849748999616622 ], [ -58.515222000394942, -34.849125999665091 ], [ -58.514620999659371, -34.848826000219674 ], [ -58.514149000376051, -34.848590000128354 ], [ -58.513376999848617, -34.848225000383422 ], [ -58.513118999642074, -34.848117999945714 ], [ -58.512361999806387, -34.84772799994721 ], [ -58.511510000086389, -34.847302000087211 ], [ -58.511208999695555, -34.847044999926766 ], [ -58.510758999628081, -34.846529999559777 ], [ -58.510094000437732, -34.845735999816497 ], [ -58.508377000398184, -34.843782999685629 ], [ -58.507775999662613, -34.843097000426212 ], [ -58.507132999688167, -34.842302999783556 ], [ -58.507004000034556, -34.842174000129944 ], [ -58.506724999758887, -34.841830999600916 ], [ -58.505866999762191, -34.841186999580316 ], [ -58.505265999925939, -34.840715000296996 ], [ -58.503606999863109, -34.83939399963333 ], [ -58.503055999634626, -34.838955000073156 ], [ -58.502345000121636, -34.838398999614071 ], [ -58.50002300006139, -34.83658399955192 ], [ -58.498721000273918, -34.835565000224562 ], [ -58.497361999656505, -34.834497000436158 ], [ -58.495717000239324, -34.833205000210569 ], [ -58.493012999650148, -34.831059000172672 ], [ -58.491075000211026, -34.829540000270754 ], [ -58.488356999875577, -34.827411000117536 ], [ -58.486040000045932, -34.825608999755502 ], [ -58.484923999842692, -34.824749999712651 ], [ -58.483684000216385, -34.823874999831332 ], [ -58.482949999642756, -34.823356000179217 ], [ -58.482820999989144, -34.823269999810577 ], [ -58.482671000266407, -34.823226999626286 ], [ -58.482584999897767, -34.823247999695411 ], [ -58.482478000359379, -34.823290999879703 ], [ -58.482369999875573, -34.823420000432634 ], [ -58.481984000061516, -34.823955999969371 ], [ -58.481468999694528, -34.824665000289485 ], [ -58.480718000135539, -34.825716000193211 ], [ -58.479966999677231, -34.826767000096936 ], [ -58.478422000374962, -34.825974000399754 ], [ -58.477177999664889, -34.825330000379154 ], [ -58.476576999828637, -34.825007999919194 ], [ -58.47595499992326, -34.824686000358611 ], [ -58.474710000066409, -34.824021000268885 ], [ -58.473487000324781, -34.823334000063994 ], [ -58.47224199956861, -34.822690000043451 ], [ -58.470975999642633, -34.822024999953726 ], [ -58.469709999716656, -34.821359999864057 ], [ -58.468422999721611, -34.820672999659166 ], [ -58.467221000049051, -34.820050999753789 ], [ -58.466770999981634, -34.819836999777692 ], [ -58.466512999775091, -34.818656000174201 ], [ -58.465053999942086, -34.818914000380744 ], [ -58.464668000128086, -34.818699000358549 ], [ -58.463423000271177, -34.818056000384047 ], [ -58.462221999745452, -34.817390000248281 ], [ -58.460891000419281, -34.816704000089487 ], [ -58.459667999778333, -34.816038999999819 ], [ -58.458401999852356, -34.815351999794927 ], [ -58.45720100022595, -34.814729999889551 ], [ -58.455913000184751, -34.814064999799882 ], [ -58.455098000372402, -34.813634999755379 ], [ -58.454732999728094, -34.813420999779282 ], [ -58.454175000076134, -34.813142000402934 ], [ -58.453423999617826, -34.812733999574391 ], [ -58.452200999876197, -34.812089999553791 ], [ -58.450956000019346, -34.811404000294317 ], [ -58.449669000024301, -34.810739000204649 ], [ -58.448467000351741, -34.810095000184049 ], [ -58.447201000425764, -34.80943000009438 ], [ -58.445977999784816, -34.808786000073781 ], [ -58.444733999974062, -34.808120999984112 ], [ -58.443468000048142, -34.807455999894444 ], [ -58.442223000191291, -34.806811999873844 ], [ -58.441000000449606, -34.806167999853244 ], [ -58.440528000266966, -34.805910999692856 ], [ -58.440205999807006, -34.805610000201284 ], [ -58.439969999715686, -34.805009000365033 ], [ -58.439906000361589, -34.804795000388935 ], [ -58.439691000339337, -34.804644999766879 ], [ -58.439498000432309, -34.804601999582587 ], [ -58.439262000340989, -34.804622999651656 ], [ -58.439111999718989, -34.804709000020296 ], [ -58.43883300034264, -34.804730000089364 ], [ -58.438467999698389, -34.804665999836004 ], [ -58.437416999794664, -34.804257999906724 ], [ -58.435786000123755, -34.803464000163444 ], [ -58.434261999991293, -34.802755999889428 ], [ -58.433360999810247, -34.802305999822011 ], [ -58.432159000137688, -34.801682999870479 ], [ -58.431021999865379, -34.801083000080325 ], [ -58.427803999854689, -34.799430000294251 ], [ -58.427010000111352, -34.799023000411069 ], [ -58.425850999723821, -34.798399999560274 ], [ -58.424520000397649, -34.797735000369926 ], [ -58.423190000218312, -34.797049000211132 ], [ -58.422674999851324, -34.796791000004589 ], [ -58.421580999763307, -34.796233000352629 ], [ -58.421129999649736, -34.796019000376532 ], [ -58.420615000182067, -34.795761000169989 ], [ -58.419477999909702, -34.795182000448904 ], [ -58.418684000166422, -34.794773999620361 ], [ -58.417953999777239, -34.794408999875373 ], [ -58.417654000331822, -34.794259000152692 ], [ -58.417138999964834, -34.794001999992247 ], [ -58.415937000292274, -34.793401000155995 ], [ -58.414713999651326, -34.792757000135396 ], [ -58.413705999931892, -34.792220999699339 ], [ -58.412825999819972, -34.791727000300796 ], [ -58.411967999823275, -34.791255000118099 ], [ -58.411130999895704, -34.790782999935459 ], [ -58.410229999714659, -34.790310999752819 ], [ -58.409649999947476, -34.790010000261248 ], [ -58.408384000021556, -34.789280999918162 ], [ -58.408191000114527, -34.788530000359174 ], [ -58.407998000207499, -34.787672000362477 ], [ -58.407697999862762, -34.786363000252209 ], [ -58.407632999563248, -34.785997999607957 ], [ -58.407590000278276, -34.78584799988522 ], [ -58.407333000117831, -34.784625000143592 ], [ -58.407118000095579, -34.783530000009478 ], [ -58.406689000097231, -34.781770999831735 ], [ -58.406645999912939, -34.781621000108998 ], [ -58.406431999936785, -34.780548000090107 ], [ -58.406324000352299, -34.780053999792187 ], [ -58.406110000376202, -34.778959999704171 ], [ -58.405980999823271, -34.778358999867919 ], [ -58.405852000169659, -34.777822000285028 ], [ -58.405638000193505, -34.776792999597205 ], [ -58.405402000102185, -34.775677000293285 ], [ -58.405336999802671, -34.775248000294937 ], [ -58.405336999802671, -34.775118999742006 ], [ -58.405166000010865, -34.773852999816029 ], [ -58.405122999826517, -34.773488000071097 ], [ -58.404994000172906, -34.772501000420789 ], [ -58.404822000335002, -34.771084999872812 ], [ -58.404586000243683, -34.769968999669572 ], [ -58.404329000083237, -34.768745999927887 ], [ -58.404070999876694, -34.767480000001967 ], [ -58.403834999785374, -34.766320999614379 ], [ -58.403535000339957, -34.764926000034848 ], [ -58.403492000155666, -34.764646999759179 ], [ -58.403320000317706, -34.763939000384539 ], [ -58.403084000226386, -34.762781000043049 ], [ -58.40282700006594, -34.761621999655517 ], [ -58.402568999859398, -34.760419999982958 ], [ -58.402311999699009, -34.759197000241329 ], [ -58.40203300032266, -34.757995999715547 ], [ -58.40179700023134, -34.756858000296461 ], [ -58.401539000024798, -34.75569999995497 ], [ -58.401259999749129, -34.754455000098119 ], [ -58.401023999657809, -34.753317999825811 ], [ -58.400767000396684, -34.752116000153251 ], [ -58.400552000374489, -34.750978999880886 ], [ -58.400316000283169, -34.749734000024034 ], [ -58.400080000191792, -34.748553999567378 ], [ -58.399866000215695, -34.747396000125264 ], [ -58.399608000009152, -34.746193999553384 ], [ -58.399350999848707, -34.744864000273367 ], [ -58.399114999757387, -34.743682999770556 ], [ -58.398878999666067, -34.742503000213219 ], [ -58.398663999643816, -34.741409000125202 ], [ -58.398385000267524, -34.740077999899711 ], [ -58.398149000176204, -34.738855000158082 ], [ -58.397913000084827, -34.737653999632357 ], [ -58.397654999878284, -34.736451999959797 ], [ -58.397397999717896, -34.73527200040246 ], [ -58.397182999695644, -34.734156000199221 ], [ -58.396946999604324, -34.733018999926855 ], [ -58.396690000343199, -34.731774000070004 ], [ -58.396475000320947, -34.73085199981989 ], [ -58.396432000136656, -34.730487000074959 ], [ -58.396303999629822, -34.729865000169582 ], [ -58.396152999860988, -34.729155999849468 ], [ -58.396003000138307, -34.728384000221411 ], [ -58.395745999977862, -34.727224999833822 ], [ -58.395680999678348, -34.726903000273182 ], [ -58.395487999771319, -34.726024000207417 ], [ -58.395230999610931, -34.724779000350566 ], [ -58.395209000395027, -34.724628999728509 ], [ -58.394973000303708, -34.723534999640492 ], [ -58.394716000143262, -34.722268999714515 ], [ -58.394607999659399, -34.721754000246847 ], [ -58.394586999590331, -34.721645999763041 ], [ -58.394457999936719, -34.720980999673372 ], [ -58.394414999752371, -34.720852000019761 ], [ -58.394157999591982, -34.719651000393299 ], [ -58.393879000215634, -34.718405999637127 ], [ -58.393621000009091, -34.717118999642082 ], [ -58.393407000032994, -34.716131999991774 ], [ -58.393341999733479, -34.715852999716105 ], [ -58.393064000403228, -34.714564999674963 ], [ -58.392912999735131, -34.713836000231197 ], [ -58.392698999758977, -34.712912999934929 ], [ -58.392676999643754, -34.71280600039654 ], [ -58.392591000174491, -34.712377000398192 ], [ -58.392440999552434, -34.711647000009009 ], [ -58.392184000291365, -34.710509999736644 ], [ -58.391991000384337, -34.709587000339752 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.39175500029296, -34.706776000212187 ], [ -58.39175500029296, -34.706668999774479 ], [ -58.391818999647057, -34.705638999939879 ], [ -58.391818999647057, -34.705423999917627 ], [ -58.391839999716183, -34.704673000358639 ], [ -58.391861999831406, -34.703965000084622 ], [ -58.391882999900474, -34.703449999717691 ], [ -58.391905000015697, -34.702485000182548 ], [ -58.391926000084823, -34.702376999698743 ], [ -58.391969000269114, -34.701325999795017 ], [ -58.392011999554086, -34.700252999776069 ], [ -58.392011999554086, -34.699866999962012 ], [ -58.392054999738434, -34.698299999645201 ], [ -58.391733000177794, -34.697505999901921 ], [ -58.391368000432806, -34.696647999905224 ], [ -58.391024999903777, -34.695789999908527 ], [ -58.390660000158846, -34.694909999796607 ], [ -58.390316999629761, -34.69405199979991 ], [ -58.390295999560692, -34.694008999615619 ], [ -58.389995000069177, -34.693279000125699 ], [ -58.389930999815761, -34.693150999618922 ], [ -58.389566000070829, -34.692228000221974 ], [ -58.389458999633064, -34.692013000199779 ], [ -58.389441999748442, -34.691975000246032 ], [ -58.389008000418869, -34.690983000365122 ], [ -58.388621999705492, -34.690061000115008 ], [ -58.388213999776212, -34.689094999634506 ], [ -58.388041999938309, -34.688644000420254 ], [ -58.387892000215572, -34.6882799998221 ], [ -58.387849000031281, -34.68819400035278 ], [ -58.387442000148155, -34.687206999803152 ], [ -58.387183999941612, -34.686649000151192 ], [ -58.387055000288001, -34.686305999622164 ], [ -58.386733999874139, -34.685555000063175 ], [ -58.386690999689847, -34.685426000409564 ], [ -58.386668999574624, -34.685361000110049 ], [ -58.386303999829693, -34.684482000044227 ], [ -58.385896999946567, -34.683558999748016 ], [ -58.385768000292956, -34.68321600011825 ], [ -58.385617999670899, -34.682872000442444 ], [ -58.385252999925967, -34.682056999730719 ], [ -58.38518899967255, -34.68186399982369 ], [ -58.384587999836299, -34.680490000313227 ], [ -58.384329999629756, -34.679932999808045 ], [ -58.384051000253407, -34.679266999672279 ], [ -58.383815000162087, -34.678752000204611 ], [ -58.383558000001642, -34.678194999699429 ], [ -58.383492999702128, -34.678043999930594 ], [ -58.383299999795099, -34.677637000047469 ], [ -58.382936000096265, -34.676843000304189 ], [ -58.382506000051819, -34.675727000100949 ], [ -58.382142000352985, -34.674546999644292 ], [ -58.381797999777802, -34.673409000225149 ], [ -58.381670000170345, -34.672980000226801 ], [ -58.381390999894677, -34.672101000160978 ], [ -58.381196999941551, -34.671435000025213 ], [ -58.381132999688134, -34.671134999680476 ], [ -58.380921999850386, -34.670514999867294 ], [ -58.380790000058425, -34.670125999914944 ], [ -58.380661000404814, -34.669783000285179 ], [ -58.380252999576214, -34.668838999919842 ], [ -58.379866999762214, -34.668238000083591 ], [ -58.379437999763866, -34.667551999924797 ], [ -58.3790950001341, -34.667057999626934 ], [ -58.37877299967414, -34.666522000090197 ], [ -58.378730000389169, -34.666456999790682 ], [ -58.378192999906958, -34.665663000047346 ], [ -58.377913999631346, -34.665298000302414 ], [ -58.377635000254998, -34.664891000419289 ], [ -58.377163000072358, -34.664204000214397 ], [ -58.376563000282204, -34.663280999918186 ], [ -58.376391000444301, -34.663023999757741 ], [ -58.376197999637952, -34.662765999551198 ], [ -58.375962000445895, -34.662422999921489 ], [ -58.375704000239352, -34.662058000176501 ], [ -58.375039000149684, -34.661070999626872 ], [ -58.374846000242655, -34.660814000365804 ], [ -58.374480999598404, -34.660342000183107 ], [ -58.373816000408056, -34.659611999793924 ], [ -58.373686999855124, -34.659505000255535 ], [ -58.373429999694679, -34.65939799981777 ], [ -58.372828999858427, -34.659269000164159 ], [ -58.37229300032169, -34.659097000326256 ], [ -58.371398999564121, -34.658643000074335 ], [ -58.371027000395713, -34.658453000305656 ], [ -58.370639999636239, -34.658175000076142 ], [ -58.370468999844434, -34.65796000005389 ], [ -58.370446999729211, -34.657637999593987 ], [ -58.370489999913502, -34.657294999964222 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371247999795287, -34.655749999762634 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.372613999836176, -34.651544000055537 ], [ -58.372684000366291, -34.651410000171325 ], [ -58.37323699978765, -34.650342000382977 ], [ -58.373966000130736, -34.649097999672904 ], [ -58.374297000106424, -34.648451000413274 ], [ -58.374480999598404, -34.648088999907372 ], [ -58.374825000173587, -34.647359999564287 ], [ -58.375232000056712, -34.646350999798756 ], [ -58.375468000148032, -34.645664999639962 ], [ -58.375612999640168, -34.645070000080409 ], [ -58.375832999892964, -34.644162999622665 ], [ -58.375940000330729, -34.643561999786414 ], [ -58.376476999913564, -34.642124000022534 ], [ -58.376580000166825, -34.641745999678108 ], [ -58.376841999658495, -34.640793999843197 ], [ -58.377034999565524, -34.640279000375529 ], [ -58.377678000439346, -34.638154999553535 ], [ -58.378128999653597, -34.636673999605364 ], [ -58.378708000273946, -34.634828999958359 ], [ -58.379309000110254, -34.63287599982749 ], [ -58.379545000201574, -34.632125000268502 ], [ -58.379179999557266, -34.631416999994485 ], [ -58.379051999949809, -34.631224000087514 ], [ -58.378687000204877, -34.630493999698274 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382807000442654, -34.627833000192766 ], [ -58.384329999629756, -34.628154999753406 ], [ -58.385704000039539, -34.628412999959949 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.385746000177733, -34.626095000084149 ], [ -58.385789000362024, -34.624742999789589 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 268.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.949249601369232, -34.955868275478025 ], [ -57.951911082253872, -34.953904579363055 ], [ -57.951986134860157, -34.953776819190658 ], [ -57.952130466795339, -34.953800478496859 ], [ -57.952372944446424, -34.953890383798182 ], [ -57.952661608316774, -34.953909311217465 ], [ -57.952898312690472, -34.953876188230844 ], [ -57.953088830844891, -34.953753159877607 ], [ -57.953169656728598, -34.953611203855985 ], [ -57.953059964457871, -34.953393537478632 ], [ -57.952788620419732, -34.953308363521458 ], [ -57.952523049659014, -34.953208993792906 ], [ -57.952609648820122, -34.951936104234406 ], [ -57.952644288484557, -34.951434514072311 ], [ -57.952713567813447, -34.950521233537202 ], [ -57.953100377399707, -34.944629619774105 ], [ -57.955502060801017, -34.942982731543914 ], [ -57.95353914648264, -34.941051854944632 ], [ -57.953400587824881, -34.941028191959219 ], [ -57.953256255889698, -34.940990331168337 ], [ -57.952113146963107, -34.941870590034924 ], [ -57.947506071592308, -34.937679810684536 ], [ -57.948025666558941, -34.937258591204404 ], [ -57.947174108141397, -34.936431527560629 ], [ -57.946530387710496, -34.936800690045864 ], [ -57.941822279985082, -34.93247712518324 ], [ -57.944143137502714, -34.930924656580657 ], [ -57.943057761350182, -34.92976975234378 ], [ -57.942035891249141, -34.928984029512684 ], [ -57.939865138944107, -34.930536534839447 ], [ -57.935107958360717, -34.926446945381642 ], [ -57.935725699043275, -34.925973600106396 ], [ -57.935206104076642, -34.925495518606645 ], [ -57.940850926061287, -34.921351239972267 ], [ -57.941197322705712, -34.92162579602973 ], [ -57.941716917672352, -34.92162579602973 ], [ -57.942063314316762, -34.921597393721548 ], [ -57.942432804070819, -34.921398577289082 ], [ -57.942582909283409, -34.921067215497949 ], [ -57.942386617851568, -34.920205668579484 ], [ -57.954498953851484, -34.911201488777188 ], [ -57.954706791838149, -34.911428735747236 ], [ -57.955699795552164, -34.911371924063694 ], [ -57.956346402621733, -34.910898491838651 ], [ -57.956184750854348, -34.91004630695366 ], [ -57.955607423113648, -34.91004630695366 ], [ -57.954522046961117, -34.909970556758019 ], [ -57.954337302084106, -34.910557618946122 ], [ -57.954429674522608, -34.911106802354027 ], [ -57.954470087464465, -34.911182551501298 ], [ -57.954077504600782, -34.91145714157426 ], [ -57.953638735517856, -34.911788542163357 ], [ -57.952738104242343, -34.912470276311403 ], [ -57.9496494008296, -34.914709543777846 ], [ -57.948650623838184, -34.913847930122159 ], [ -57.946133474888732, -34.915661095602644 ], [ -57.939448019651401, -34.920693248440934 ], [ -57.939580805031738, -34.919086117450469 ], [ -57.935504871182388, -34.915365216241788 ], [ -57.927641667354003, -34.908083880900399 ], [ -57.927480015586617, -34.90751573915022 ], [ -57.926787222297769, -34.907174852213117 ], [ -57.923646559388345, -34.903178794256604 ], [ -57.922260972810662, -34.900716671214973 ], [ -57.919928568738214, -34.899068901489343 ], [ -57.903486274683026, -34.884256429921855 ], [ -57.901335728848899, -34.884306156560164 ], [ -57.901006652036678, -34.884187759752805 ], [ -57.900677575224485, -34.884050419242577 ], [ -57.9004350975734, -34.884059891009272 ], [ -57.900360044967108, -34.884064626892204 ], [ -57.899522919743085, -34.883003782297649 ], [ -57.897952588288376, -34.881066758401509 ], [ -57.894000779903266, -34.87617900374314 ], [ -57.893077055518148, -34.875051747763258 ], [ -57.892141784578214, -34.873981313911294 ], [ -57.89150672406344, -34.874426540303766 ], [ -57.892303436345607, -34.875411713537581 ], [ -57.890271242698333, -34.876496337722315 ], [ -57.891665489192128, -34.87818244995993 ], [ -57.893645723342743, -34.877097848022593 ], [ -57.896890305245492, -34.881080966566927 ], [ -57.887283571640197, -34.886370969452329 ], [ -57.885892211785112, -34.884637666713282 ], [ -57.884558584704095, -34.882975366629111 ], [ -57.881767205077793, -34.879622248763198 ], [ -57.88108595834376, -34.878817101224982 ], [ -57.88038161850011, -34.877964583470494 ], [ -57.879729238153111, -34.877088375453553 ], [ -57.878346538214124, -34.875433027251091 ], [ -57.869435484536389, -34.880427388414496 ], [ -57.869747241516365, -34.88081574707369 ], [ -57.865324911022569, -34.883221635429898 ], [ -57.859724831937783, -34.876392138640341 ], [ -57.852704526610843, -34.877661463915864 ], [ -57.850949450279103, -34.878267701907298 ], [ -57.848801791083687, -34.878930769590852 ], [ -57.844737403789132, -34.881469322137889 ], [ -57.842982327457413, -34.88243546706039 ], [ -57.840465178507941, -34.88385624778472 ], [ -57.835846556582325, -34.886565134968336 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 267.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.512623, -34.474293 ], [ -58.514145, -34.475086 ], [ -58.515316, -34.475685 ], [ -58.515839, -34.475964 ], [ -58.517181, -34.476662 ], [ -58.518444, -34.477306 ], [ -58.519363, -34.477787 ], [ -58.520428, -34.478344 ], [ -58.521111, -34.478691 ], [ -58.52113, -34.478699 ], [ -58.522488, -34.479412 ], [ -58.523949, -34.480167 ], [ -58.524742, -34.480576 ], [ -58.527321, -34.481915 ], [ -58.527733, -34.482159 ], [ -58.528214, -34.482452 ], [ -58.528645, -34.482685 ], [ -58.529243, -34.482998 ], [ -58.530678, -34.483746 ], [ -58.532101, -34.484512 ], [ -58.533787, -34.485321 ], [ -58.535313, -34.486126 ], [ -58.536293, -34.486645 ], [ -58.537327, -34.487183 ], [ -58.538334, -34.487705 ], [ -58.540241, -34.488701 ], [ -58.542168, -34.489677 ], [ -58.544395, -34.49081 ], [ -58.545082, -34.491158 ], [ -58.545151, -34.491188 ], [ -58.545986, -34.491604 ], [ -58.547115, -34.492157 ], [ -58.547623, -34.492401 ], [ -58.548649, -34.492912 ], [ -58.549229, -34.49324 ], [ -58.549774, -34.493526 ], [ -58.551083, -34.494205 ], [ -58.55162, -34.494579 ], [ -58.55172, -34.494656 ], [ -58.552349, -34.495132 ], [ -58.552628, -34.495335 ], [ -58.553101, -34.495701 ], [ -58.553295, -34.495846 ], [ -58.55415, -34.496605 ], [ -58.554787, -34.497097 ], [ -58.555183, -34.497433 ], [ -58.555855, -34.498035 ], [ -58.556004, -34.498165 ], [ -58.556534, -34.49865 ], [ -58.557186, -34.499252 ], [ -58.557919, -34.499889 ], [ -58.558105, -34.500095 ], [ -58.55864, -34.500595 ], [ -58.55941, -34.501312 ], [ -58.560902, -34.5028 ], [ -58.561751999999899, -34.503822 ], [ -58.562447, -34.504669 ], [ -58.563236, -34.50552 ], [ -58.563969, -34.506363 ], [ -58.564606, -34.507004 ], [ -58.565582, -34.508133 ], [ -58.56583, -34.50861 ], [ -58.566029, -34.508999 ], [ -58.566067, -34.509071 ], [ -58.566391, -34.509876 ], [ -58.566765, -34.510849 ], [ -58.567039, -34.511475 ], [ -58.567177, -34.511791 ], [ -58.567554, -34.51281 ], [ -58.567795, -34.513718 ], [ -58.567963, -34.514671 ], [ -58.568123, -34.515633 ], [ -58.568378, -34.516483 ], [ -58.568577, -34.51741 ], [ -58.569092, -34.518574 ], [ -58.569538, -34.519604 ], [ -58.569656, -34.519855 ], [ -58.569984, -34.520699 ], [ -58.570239999999899, -34.521358 ], [ -58.570499, -34.52203 ], [ -58.570515, -34.522095 ], [ -58.57082, -34.522804 ], [ -58.570919, -34.522999 ], [ -58.571503, -34.524349 ], [ -58.571526, -34.52441 ], [ -58.572014, -34.525227 ], [ -58.572151, -34.525452 ], [ -58.572502, -34.526031 ], [ -58.572617, -34.526234 ], [ -58.573063, -34.526978 ], [ -58.573093, -34.527031 ], [ -58.573582, -34.528072 ], [ -58.573692, -34.528309 ], [ -58.5741, -34.529099 ], [ -58.574631, -34.53014 ], [ -58.574909, -34.530693 ], [ -58.57515, -34.531124 ], [ -58.575348, -34.531525 ], [ -58.575512, -34.531841 ], [ -58.575706, -34.532177 ], [ -58.575867, -34.53249 ], [ -58.576229, -34.533169 ], [ -58.576607, -34.533863 ], [ -58.576858999999899, -34.534332 ], [ -58.576889, -34.53442 ], [ -58.577328, -34.535778 ], [ -58.577538, -34.5364 ], [ -58.577686, -34.536854 ], [ -58.577824, -34.537117 ], [ -58.578224, -34.5382 ], [ -58.578606, -34.539074 ], [ -58.579006, -34.540024 ], [ -58.579372, -34.540905 ], [ -58.579506, -34.541237 ], [ -58.579735, -34.541733 ], [ -58.580112, -34.542572 ], [ -58.580498, -34.543442 ], [ -58.580894, -34.544312 ], [ -58.581192, -34.544975 ], [ -58.581333, -34.545288 ], [ -58.581501, -34.545708 ], [ -58.581924, -34.546734 ], [ -58.582401, -34.547916 ], [ -58.582867, -34.549065 ], [ -58.583117999999899, -34.549671 ], [ -58.583477, -34.550564 ], [ -58.583752, -34.551216 ], [ -58.584274, -34.552475 ], [ -58.58456, -34.553177 ], [ -58.584984, -34.554195 ], [ -58.585121, -34.554516 ], [ -58.5853, -34.554939 ], [ -58.585567, -34.555592 ], [ -58.585957, -34.556541 ], [ -58.586361, -34.557499 ], [ -58.586399, -34.557602 ], [ -58.58675, -34.558601 ], [ -58.58691, -34.559059 ], [ -58.587193, -34.559834 ], [ -58.587532, -34.560783 ], [ -58.587734, -34.561367 ], [ -58.588588999999899, -34.562138 ], [ -58.588631, -34.562248 ], [ -58.588676, -34.562366 ], [ -58.588711, -34.562492 ], [ -58.588722, -34.562611 ], [ -58.588707, -34.562748 ], [ -58.588692, -34.56282 ], [ -58.588669, -34.56287 ], [ -58.588772, -34.563892 ], [ -58.589115, -34.564796 ], [ -58.589481, -34.56575 ], [ -58.589825, -34.566704 ], [ -58.590351, -34.568253 ], [ -58.590546, -34.568836 ], [ -58.591183, -34.569832 ], [ -58.591858, -34.570389 ], [ -58.592064, -34.570538 ], [ -58.592926, -34.57135 ], [ -58.593822, -34.572063 ], [ -58.594521, -34.572754 ], [ -58.594788, -34.573017 ], [ -58.595406, -34.573563 ], [ -58.596165, -34.574223 ], [ -58.596947, -34.575207 ], [ -58.597797, -34.576233 ], [ -58.598278, -34.576832 ], [ -58.598576, -34.577187 ], [ -58.59935, -34.578114 ], [ -58.600552, -34.579617 ], [ -58.601151, -34.580357 ], [ -58.601795, -34.581127 ], [ -58.602432, -34.581902 ], [ -58.603104, -34.582706 ], [ -58.603718, -34.583454 ], [ -58.604393, -34.584274 ], [ -58.605179, -34.585209 ], [ -58.605652, -34.585781 ], [ -58.606041, -34.586254 ], [ -58.606174, -34.586472 ], [ -58.607647, -34.588005 ], [ -58.607681, -34.588047 ], [ -58.607994, -34.588436 ], [ -58.608051, -34.58852 ], [ -58.609531, -34.590446 ], [ -58.609547, -34.590466 ], [ -58.610134, -34.591099 ], [ -58.610817, -34.591751 ], [ -58.61137, -34.592247 ], [ -58.611725, -34.59256 ], [ -58.612591, -34.593227 ], [ -58.61335, -34.593704 ], [ -58.615318, -34.595772 ], [ -58.615601, -34.596153 ], [ -58.616947, -34.597584 ], [ -58.617199, -34.597885 ], [ -58.61726, -34.597954 ], [ -58.617928, -34.59864 ], [ -58.618362, -34.599113 ], [ -58.618717, -34.599693 ], [ -58.618960999999899, -34.600166 ], [ -58.61919, -34.600582 ], [ -58.619457, -34.60107 ], [ -58.619686, -34.60154 ], [ -58.619869, -34.60199 ], [ -58.620033, -34.602497 ], [ -58.620533, -34.604614 ], [ -58.620697, -34.604939 ], [ -58.620762, -34.605057 ], [ -58.621098, -34.6054 ], [ -58.621464, -34.605724 ], [ -58.622898, -34.607014 ], [ -58.622917, -34.607037 ], [ -58.623928, -34.60791 ], [ -58.624817, -34.608688 ], [ -58.625229, -34.608727 ], [ -58.625927, -34.609055 ], [ -58.6269, -34.609886 ], [ -58.627888, -34.610729 ], [ -58.627907, -34.610733 ], [ -58.628025, -34.610775 ], [ -58.628994, -34.61158 ], [ -58.629848, -34.612286 ], [ -58.630726, -34.613014 ], [ -58.631691, -34.613815 ], [ -58.632568, -34.614544 ], [ -58.63261, -34.614597 ], [ -58.633152, -34.615288 ], [ -58.633232, -34.615292 ], [ -58.634338, -34.615353 ], [ -58.6343, -34.615757 ], [ -58.634193, -34.616852 ], [ -58.634174, -34.617119 ], [ -58.634075, -34.618168 ], [ -58.634048, -34.618446 ], [ -58.633961, -34.618702 ], [ -58.633759, -34.620724 ], [ -58.63369, -34.620937 ], [ -58.633453, -34.621689 ], [ -58.633186, -34.622509 ], [ -58.632954, -34.623123 ], [ -58.632793, -34.62355 ], [ -58.632439, -34.624474 ], [ -58.632126, -34.625305 ], [ -58.631828, -34.626228 ], [ -58.631466, -34.62722 ], [ -58.631214, -34.627903 ], [ -58.631118999999899, -34.628178 ], [ -58.630821, -34.629013 ], [ -58.63076, -34.629169 ], [ -58.630428, -34.630028 ], [ -58.630047, -34.631023 ], [ -58.62978, -34.631702 ], [ -58.629574, -34.632229 ], [ -58.629505, -34.632416 ], [ -58.629425, -34.632626 ], [ -58.629185, -34.633301 ], [ -58.628844999999899, -34.634071 ], [ -58.628479, -34.634914 ], [ -58.628197, -34.635551 ], [ -58.627949, -34.635925 ], [ -58.627579, -34.636536 ], [ -58.62714, -34.63728 ], [ -58.626747, -34.637932 ], [ -58.626129, -34.638565 ], [ -58.625706, -34.639633 ], [ -58.624992, -34.640507 ], [ -58.624378, -34.640923 ], [ -58.624065, -34.641174 ], [ -58.622513, -34.642506 ], [ -58.622379, -34.642406 ], [ -58.621006, -34.643517 ], [ -58.62051, -34.643936 ], [ -58.619759, -34.644539 ], [ -58.619106, -34.645065 ], [ -58.618576, -34.645508 ], [ -58.618454, -34.645607 ], [ -58.618462, -34.646427 ], [ -58.618473, -34.647022 ], [ -58.618477, -34.647392 ], [ -58.618481, -34.647949 ], [ -58.618477, -34.64814 ], [ -58.618484, -34.648373 ], [ -58.618492, -34.648491 ], [ -58.6185, -34.648861 ], [ -58.618504, -34.649258 ], [ -58.618523, -34.650555 ], [ -58.61853, -34.651035 ], [ -58.618549, -34.651737 ], [ -58.618549, -34.652973 ], [ -58.618568, -34.653885 ], [ -58.618584, -34.6548 ], [ -58.61861, -34.65583 ], [ -58.618633, -34.657082 ], [ -58.618656, -34.658325 ], [ -58.618679, -34.659286 ], [ -58.61871, -34.660439 ], [ -58.617672, -34.660416 ], [ -58.616409, -34.660419 ], [ -58.615395, -34.660408 ], [ -58.615154, -34.660404 ], [ -58.614239, -34.660397 ], [ -58.612427, -34.660347 ], [ -58.612186, -34.660328 ], [ -58.609886, -34.660309 ], [ -58.60862, -34.660305 ], [ -58.607498, -34.660328 ], [ -58.606625, -34.661057 ], [ -58.606037, -34.661526 ], [ -58.60574, -34.661785 ], [ -58.604897, -34.662479 ], [ -58.604633, -34.662693 ], [ -58.60387, -34.663315 ], [ -58.603237, -34.66383 ], [ -58.602451, -34.664471 ], [ -58.601833, -34.664978 ], [ -58.601147, -34.665554 ], [ -58.600471, -34.666115 ], [ -58.600769, -34.666374 ], [ -58.599453, -34.667366 ], [ -58.598747, -34.667919 ], [ -58.598022, -34.668457 ], [ -58.597359, -34.668995 ], [ -58.596565, -34.669701 ], [ -58.595726, -34.670391 ], [ -58.594891, -34.671116 ], [ -58.593861, -34.671986 ], [ -58.592197, -34.67334 ], [ -58.59071, -34.674595 ], [ -58.589664, -34.675423 ], [ -58.588673, -34.676254 ], [ -58.587727, -34.67704 ], [ -58.586021, -34.678413 ], [ -58.584534, -34.679523 ], [ -58.584064, -34.67976 ], [ -58.583946, -34.679798 ], [ -58.583538, -34.67989 ], [ -58.583389, -34.679924 ], [ -58.581665, -34.680321 ], [ -58.580639, -34.680553 ], [ -58.579468, -34.680847 ], [ -58.577633, -34.681236 ], [ -58.576618, -34.68148 ], [ -58.575859, -34.681648 ], [ -58.57494, -34.681862 ], [ -58.573898, -34.682068 ], [ -58.572918, -34.682331 ], [ -58.57288, -34.682339 ], [ -58.571739, -34.682617 ], [ -58.571022, -34.682774 ], [ -58.570057, -34.682987 ], [ -58.568409, -34.683327 ], [ -58.566765, -34.68375 ], [ -58.565098, -34.684116 ], [ -58.563519, -34.68449 ], [ -58.562595, -34.68475 ], [ -58.561916, -34.685055 ], [ -58.560791, -34.685688 ], [ -58.560772, -34.685768 ], [ -58.560707, -34.685883 ], [ -58.560631, -34.685947 ], [ -58.56049, -34.685997 ], [ -58.559765, -34.686268 ], [ -58.558681, -34.687057 ], [ -58.557606, -34.68787 ], [ -58.556538, -34.688702 ], [ -58.555443, -34.689548 ], [ -58.554451, -34.690407 ], [ -58.553291, -34.691216 ], [ -58.552258, -34.692051 ], [ -58.550396, -34.693588 ], [ -58.549088, -34.69482 ], [ -58.54863, -34.695145 ], [ -58.547737, -34.695827 ], [ -58.54771, -34.695847 ], [ -58.546814, -34.69651 ], [ -58.546085, -34.697067 ], [ -58.542171, -34.69997 ], [ -58.542114, -34.70002 ], [ -58.541531, -34.70042 ], [ -58.541084, -34.700718 ], [ -58.540962, -34.700798 ], [ -58.540291, -34.701115 ], [ -58.539833, -34.701397 ], [ -58.539104, -34.701881 ], [ -58.537399, -34.703022 ], [ -58.535744, -34.704288 ], [ -58.533772, -34.705891 ], [ -58.532387, -34.707031 ], [ -58.53231, -34.707165 ], [ -58.532269, -34.707333 ], [ -58.532284, -34.707485 ], [ -58.532302999999899, -34.707596 ], [ -58.53231, -34.707737 ], [ -58.532104, -34.70763 ], [ -58.531773, -34.707668 ], [ -58.531475, -34.70768 ], [ -58.530991, -34.708015 ], [ -58.529625, -34.708996 ], [ -58.527908, -34.710365 ], [ -58.526863, -34.71122 ], [ -58.525536, -34.71225 ], [ -58.525181, -34.712555 ], [ -58.524864, -34.712887 ], [ -58.522987, -34.714211 ], [ -58.522896, -34.714314 ], [ -58.522331, -34.714748 ], [ -58.521667, -34.715271 ], [ -58.520252, -34.716442 ], [ -58.519402, -34.717094 ], [ -58.519257, -34.717262 ], [ -58.518284, -34.718498 ], [ -58.517494, -34.719528 ], [ -58.51722, -34.719868 ], [ -58.51664, -34.720436 ], [ -58.51643, -34.720669 ], [ -58.516396, -34.720703 ], [ -58.515491, -34.721775 ], [ -58.515293, -34.721954 ], [ -58.514626, -34.722588 ], [ -58.514328, -34.722889 ], [ -58.51376, -34.7234 ], [ -58.511902, -34.724701 ], [ -58.511452, -34.724945 ], [ -58.510281, -34.725536 ], [ -58.509315, -34.725883 ], [ -58.508488, -34.726196 ], [ -58.507179, -34.72691 ], [ -58.506008, -34.727913 ], [ -58.505348, -34.728622 ], [ -58.504833, -34.729313 ], [ -58.504208, -34.730156 ], [ -58.502907, -34.731945 ], [ -58.50267, -34.732258 ], [ -58.501972, -34.733147 ], [ -58.501434, -34.733807 ], [ -58.500885, -34.734566 ], [ -58.500633, -34.734901 ], [ -58.50032, -34.735313 ], [ -58.500237, -34.735428 ], [ -58.499706, -34.736019 ], [ -58.499149, -34.736858 ], [ -58.498272, -34.738041 ], [ -58.497536, -34.738934 ], [ -58.496723, -34.740017 ], [ -58.495136, -34.742054 ], [ -58.494904, -34.742336 ], [ -58.494087, -34.743378 ], [ -58.493595, -34.743973 ], [ -58.49345, -34.744156 ], [ -58.493107, -34.744659 ], [ -58.492107, -34.745998 ], [ -58.49118, -34.747246 ], [ -58.490662, -34.747952 ], [ -58.490108, -34.748642 ], [ -58.489605, -34.74929 ], [ -58.489136, -34.749943 ], [ -58.4874, -34.752201 ], [ -58.487202, -34.752441 ], [ -58.486702, -34.75309 ], [ -58.486198, -34.753757 ], [ -58.485771, -34.754353 ], [ -58.485291, -34.754993 ], [ -58.48465, -34.755814 ], [ -58.483967, -34.756653 ], [ -58.483303, -34.757484 ], [ -58.482857, -34.758175 ], [ -58.482384, -34.758778 ], [ -58.482059, -34.759201 ], [ -58.481373, -34.76004 ], [ -58.480713, -34.760883 ], [ -58.479961, -34.761883 ], [ -58.47966, -34.762253 ], [ -58.479038, -34.76318 ], [ -58.478584, -34.763813 ], [ -58.477257, -34.765572 ], [ -58.476788, -34.766228 ], [ -58.476349, -34.766846 ], [ -58.475628, -34.767803 ], [ -58.475498, -34.767963 ], [ -58.474018, -34.769905 ], [ -58.473412, -34.770737 ], [ -58.472557, -34.771622 ], [ -58.472252, -34.771935 ], [ -58.471943, -34.772179 ], [ -58.4715, -34.772427 ], [ -58.470863, -34.772663 ], [ -58.470051, -34.772869 ], [ -58.469418, -34.772991 ], [ -58.467541, -34.773216 ], [ -58.463799, -34.775047 ], [ -58.461292, -34.77618 ], [ -58.459862, -34.777996 ], [ -58.459118, -34.77906 ], [ -58.457756, -34.780792 ], [ -58.456184, -34.782795 ], [ -58.455524, -34.783577 ], [ -58.454517, -34.784863 ], [ -58.453308, -34.786522 ], [ -58.451675, -34.788689 ], [ -58.451038, -34.789539 ], [ -58.450333, -34.790482 ], [ -58.449619, -34.791424 ], [ -58.448158, -34.793365 ], [ -58.447716, -34.7939 ], [ -58.447342, -34.794392 ], [ -58.446949, -34.794918 ], [ -58.446552, -34.79546 ], [ -58.446171, -34.795971 ], [ -58.445778, -34.79649 ], [ -58.445385, -34.797005 ], [ -58.444973, -34.797546 ], [ -58.444031, -34.798779 ], [ -58.443634, -34.799313 ], [ -58.442837, -34.800381 ], [ -58.44241, -34.800957 ], [ -58.441914, -34.801636 ], [ -58.441376, -34.802364 ], [ -58.440865, -34.803059 ], [ -58.440369, -34.80373 ], [ -58.439812, -34.804455 ], [ -58.439705, -34.804604 ], [ -58.43977, -34.80497 ], [ -58.439701, -34.805122 ], [ -58.439594, -34.805206 ], [ -58.439499, -34.80529 ], [ -58.4394, -34.805317 ], [ -58.439243, -34.805347 ], [ -58.439045, -34.805401 ], [ -58.438934, -34.80547 ], [ -58.438427, -34.80621 ], [ -58.437672, -34.807217 ], [ -58.437099, -34.807976 ], [ -58.43692, -34.808216 ], [ -58.43655, -34.808716 ], [ -58.436275, -34.809074 ], [ -58.436111, -34.809288 ], [ -58.435879, -34.809601 ], [ -58.435268, -34.810417 ], [ -58.435143, -34.810585 ], [ -58.434475, -34.811474 ], [ -58.43404, -34.812057 ], [ -58.43359, -34.812649 ], [ -58.433155, -34.81324 ], [ -58.432655, -34.813896 ], [ -58.432156, -34.814564 ], [ -58.431637, -34.815258 ], [ -58.431522, -34.815403 ], [ -58.431152, -34.815899 ], [ -58.430882, -34.816261 ], [ -58.430683, -34.816528 ], [ -58.430248, -34.817097 ], [ -58.429832, -34.817719 ], [ -58.429367, -34.818378 ], [ -58.428875, -34.819031 ], [ -58.428658, -34.819317 ], [ -58.428516, -34.819473 ], [ -58.428333, -34.819626 ], [ -58.427673, -34.820175 ], [ -58.427029, -34.820709 ], [ -58.426472, -34.821159 ], [ -58.425526, -34.821941 ], [ -58.424419, -34.822853 ], [ -58.423798, -34.82336 ], [ -58.423271, -34.823792 ], [ -58.423115, -34.823914 ], [ -58.423019, -34.823986 ], [ -58.422493, -34.824409 ], [ -58.421799, -34.824959 ], [ -58.418636, -34.827484 ], [ -58.41856, -34.82756 ], [ -58.41848, -34.827637 ], [ -58.41777, -34.828236 ], [ -58.417221, -34.828709 ], [ -58.416946, -34.828934 ], [ -58.416592, -34.829243 ], [ -58.416485, -34.829338 ], [ -58.415859, -34.829868 ], [ -58.415131, -34.830482 ], [ -58.413799, -34.831547 ], [ -58.412716, -34.832413 ], [ -58.412079, -34.832916 ], [ -58.411419, -34.833294 ], [ -58.411339, -34.83334 ], [ -58.410858, -34.833572 ], [ -58.410339, -34.833755 ], [ -58.409672, -34.833958 ], [ -58.408978, -34.83411 ], [ -58.408787, -34.834141 ], [ -58.408459, -34.83419 ], [ -58.406513, -34.834476 ], [ -58.404121, -34.834831 ], [ -58.401611, -34.835209 ], [ -58.401558, -34.835438 ], [ -58.401474, -34.83559 ], [ -58.401318, -34.835693 ], [ -58.401215, -34.835754 ], [ -58.401093, -34.835747 ], [ -58.40094, -34.835735 ], [ -58.400791, -34.835693 ], [ -58.400642, -34.835613 ], [ -58.400578, -34.835537 ], [ -58.400539, -34.835468 ], [ -58.400509, -34.8354 ], [ -58.39994, -34.83548 ], [ -58.399807, -34.835499 ], [ -58.399696, -34.83551 ], [ -58.398956, -34.835621 ], [ -58.39806, -34.835747 ], [ -58.396816, -34.835926 ], [ -58.39603, -34.836044 ], [ -58.395512, -34.835976 ], [ -58.394592, -34.835846 ], [ -58.393353, -34.835697 ], [ -58.392105, -34.835537 ], [ -58.390385, -34.835316 ], [ -58.389915, -34.835258 ], [ -58.389374, -34.835186 ], [ -58.389297, -34.835167 ], [ -58.388199, -34.834896 ], [ -58.387508, -34.834721 ], [ -58.386852, -34.834549 ], [ -58.385475, -34.834206 ], [ -58.385368, -34.834282 ], [ -58.385254, -34.83432 ], [ -58.385139, -34.834335 ], [ -58.385029, -34.834328 ], [ -58.384914, -34.83432 ], [ -58.384846, -34.834297 ], [ -58.384731, -34.834179 ], [ -58.384686, -34.834064 ], [ -58.384682, -34.833923 ], [ -58.384697, -34.833813 ], [ -58.384735, -34.833755 ], [ -58.384151, -34.833447 ], [ -58.383148, -34.832928 ], [ -58.383106, -34.832851 ], [ -58.383049, -34.83279 ], [ -58.381989, -34.832241 ], [ -58.381145, -34.831795 ], [ -58.380363, -34.831394 ], [ -58.379578, -34.830978 ], [ -58.37891, -34.830631 ], [ -58.378162, -34.830238 ], [ -58.377125, -34.829693 ], [ -58.375988, -34.829102 ], [ -58.375271, -34.82872 ], [ -58.374611, -34.828381 ], [ -58.373592, -34.827847 ], [ -58.372944, -34.827503 ], [ -58.372845, -34.827457 ], [ -58.372742, -34.827408 ], [ -58.371803, -34.826916 ], [ -58.371216, -34.826611 ], [ -58.370131999999899, -34.826038 ], [ -58.368549, -34.825214 ], [ -58.367207, -34.824509 ], [ -58.366322, -34.824017 ], [ -58.364704, -34.82317 ], [ -58.364052, -34.822788 ], [ -58.363365, -34.822418 ], [ -58.362694, -34.82206 ], [ -58.361912, -34.821632 ], [ -58.361172, -34.821232 ], [ -58.360432, -34.820831 ], [ -58.359695, -34.820431 ], [ -58.358765, -34.819927 ], [ -58.357948, -34.819485 ], [ -58.35709, -34.819023 ], [ -58.356274, -34.818562 ], [ -58.355404, -34.818111 ], [ -58.354332, -34.817532 ], [ -58.353073, -34.816849 ], [ -58.352467, -34.816517 ], [ -58.351807, -34.816162 ], [ -58.34964, -34.814991 ], [ -58.348694, -34.81448 ], [ -58.348633, -34.814445 ], [ -58.34774, -34.813953 ], [ -58.347561, -34.813656 ], [ -58.347221, -34.813221 ], [ -58.347012, -34.812866 ], [ -58.34684, -34.812454 ], [ -58.346718, -34.811939 ], [ -58.346516, -34.811436 ], [ -58.346321, -34.811035 ], [ -58.346008, -34.810574 ], [ -58.34594, -34.810436 ], [ -58.345833, -34.810318 ], [ -58.344818, -34.80957 ], [ -58.344688, -34.809509 ], [ -58.344577999999899, -34.809448 ], [ -58.343296, -34.808758 ], [ -58.34211, -34.808113 ], [ -58.340744, -34.807381 ], [ -58.339409, -34.806656 ], [ -58.338467, -34.806156 ], [ -58.338062, -34.80592 ], [ -58.337715, -34.805744 ], [ -58.336819, -34.80526 ], [ -58.336159, -34.804905 ], [ -58.335777, -34.804691 ], [ -58.33514, -34.804363 ], [ -58.334499, -34.804016 ], [ -58.333969, -34.803741 ], [ -58.333824, -34.80368 ], [ -58.33345, -34.803478 ], [ -58.332733, -34.803082 ], [ -58.332268, -34.802818 ], [ -58.331051, -34.802223 ], [ -58.330688, -34.802021 ], [ -58.328671, -34.800888 ], [ -58.328094, -34.800571 ], [ -58.32703, -34.799976 ], [ -58.326771, -34.799858 ], [ -58.326378, -34.799683 ], [ -58.325748, -34.799339 ], [ -58.325211, -34.799038 ], [ -58.324436, -34.798618 ], [ -58.323399, -34.79805 ], [ -58.323368, -34.798031 ], [ -58.322281, -34.797436 ], [ -58.321171, -34.796829 ], [ -58.319992, -34.796181 ], [ -58.318863, -34.795567 ], [ -58.318783, -34.795494 ], [ -58.31863, -34.795361 ], [ -58.317383, -34.794674 ], [ -58.31588, -34.793842 ], [ -58.314384, -34.792999 ], [ -58.312889, -34.792164 ], [ -58.311371, -34.791332 ], [ -58.31028, -34.790657 ], [ -58.30983, -34.790382 ], [ -58.308826, -34.789757 ], [ -58.308598, -34.789612 ], [ -58.308464, -34.789474 ], [ -58.30698, -34.788635 ], [ -58.305428, -34.787663 ], [ -58.305012, -34.787376 ], [ -58.304371, -34.786938 ], [ -58.304226, -34.786839 ], [ -58.303097, -34.786152 ], [ -58.302334, -34.785686 ], [ -58.302055, -34.785515 ], [ -58.301624, -34.785255 ], [ -58.30117, -34.784981 ], [ -58.300877, -34.784794 ], [ -58.300102, -34.784328 ], [ -58.298889, -34.783588 ], [ -58.297874, -34.783142 ], [ -58.297649, -34.783043 ], [ -58.29694, -34.782734 ], [ -58.296143, -34.782276 ], [ -58.295391, -34.781853 ], [ -58.294624, -34.781414 ], [ -58.294102, -34.781116 ], [ -58.293911, -34.781017 ], [ -58.293198, -34.780632 ], [ -58.29245, -34.780224 ], [ -58.292294, -34.780144 ], [ -58.291389, -34.779652 ], [ -58.291245, -34.779572 ], [ -58.290627, -34.77924 ], [ -58.290184, -34.778999 ], [ -58.289825, -34.778805 ], [ -58.289322, -34.77853 ], [ -58.289093, -34.778412 ], [ -58.288425, -34.778049 ], [ -58.287495, -34.777546 ], [ -58.286461, -34.776985 ], [ -58.285519, -34.776482 ], [ -58.284481, -34.775928 ], [ -58.283794, -34.775562 ], [ -58.283398, -34.775345 ], [ -58.282257, -34.774734 ], [ -58.281521, -34.774338 ], [ -58.280594, -34.773838 ], [ -58.279766, -34.773396 ], [ -58.278572, -34.772755 ], [ -58.278091, -34.772823 ], [ -58.277088, -34.77298 ], [ -58.276878, -34.773087 ], [ -58.276024, -34.773556 ], [ -58.275288, -34.773952 ], [ -58.273842, -34.774727 ], [ -58.272823, -34.775249 ], [ -58.272193999999899, -34.775608 ], [ -58.271427, -34.776012 ], [ -58.270321, -34.776615 ], [ -58.26923, -34.777184 ], [ -58.26907, -34.777313 ], [ -58.268173, -34.777809 ], [ -58.267174, -34.778336 ], [ -58.266178, -34.778908 ], [ -58.264874, -34.779568 ], [ -58.263714, -34.780239 ], [ -58.262589, -34.780849 ], [ -58.26236, -34.781212 ], [ -58.26215, -34.781445 ], [ -58.26202, -34.781765 ], [ -58.26189, -34.782127 ], [ -58.261826, -34.782272 ], [ -58.26173, -34.782459 ], [ -58.261696, -34.78252 ], [ -58.261532, -34.782696 ], [ -58.26125, -34.782993 ], [ -58.261093, -34.783073 ], [ -58.260868, -34.78315 ], [ -58.260609, -34.783173 ], [ -58.260338, -34.783401 ], [ -58.259937, -34.783199 ], [ -58.259258, -34.783287 ], [ -58.258911, -34.783688 ], [ -58.258236, -34.784412 ], [ -58.257519, -34.785191 ], [ -58.256832, -34.785919 ], [ -58.256039, -34.786751 ], [ -58.255245, -34.787601 ], [ -58.2547, -34.788197 ], [ -58.254547, -34.788357 ], [ -58.254169, -34.788769 ], [ -58.253895, -34.78907 ], [ -58.253647, -34.789349 ], [ -58.253193, -34.789867 ], [ -58.252434, -34.790634 ], [ -58.251949, -34.791096 ], [ -58.251602, -34.791321 ], [ -58.250637, -34.791943 ], [ -58.249668, -34.792568 ], [ -58.248672, -34.79311 ], [ -58.247662, -34.793663 ], [ -58.246807, -34.794277 ], [ -58.245911, -34.794922 ], [ -58.243523, -34.796631 ], [ -58.242599, -34.797279 ], [ -58.241825, -34.797863 ], [ -58.241215, -34.798336 ], [ -58.240627, -34.798798 ], [ -58.239994, -34.799286 ], [ -58.239555, -34.799625 ], [ -58.239388, -34.799755 ], [ -58.238674, -34.800381 ], [ -58.238365, -34.801064 ], [ -58.237953, -34.80162 ], [ -58.237755, -34.801888 ], [ -58.237225, -34.80257 ], [ -58.23695, -34.802948 ], [ -58.236736, -34.803219 ], [ -58.236595, -34.803406 ], [ -58.236469, -34.803581 ], [ -58.236359, -34.803734 ], [ -58.23616, -34.803978 ], [ -58.235989, -34.804241 ], [ -58.234549999999899, -34.806122 ], [ -58.234272, -34.806496 ], [ -58.233788, -34.807137 ], [ -58.233437, -34.807602 ], [ -58.232895, -34.808304 ], [ -58.232445, -34.808887 ], [ -58.231968, -34.809513 ], [ -58.230824, -34.811005 ], [ -58.230591, -34.811291 ], [ -58.230457, -34.811459 ], [ -58.229729, -34.812405 ], [ -58.228985, -34.813351 ], [ -58.228001, -34.814625 ], [ -58.227501, -34.815266 ], [ -58.227013, -34.815979 ], [ -58.2267, -34.816494 ], [ -58.226494, -34.816883 ], [ -58.226337, -34.817238 ], [ -58.226238, -34.817585 ], [ -58.226177, -34.817902 ], [ -58.226143, -34.818226 ], [ -58.226128, -34.818501 ], [ -58.22612, -34.818779 ], [ -58.226162, -34.819096 ], [ -58.226208, -34.81979 ], [ -58.226414, -34.820969 ], [ -58.226444, -34.821281 ], [ -58.226494, -34.821789 ], [ -58.226494, -34.822262 ], [ -58.226479, -34.822636 ], [ -58.226452, -34.823009 ], [ -58.226353, -34.823463 ], [ -58.226192, -34.823925 ], [ -58.226051, -34.824223 ], [ -58.225887, -34.824509 ], [ -58.225685, -34.824802 ], [ -58.225468, -34.825054 ], [ -58.225182, -34.825367 ], [ -58.224953, -34.825539 ], [ -58.224205, -34.826118 ], [ -58.22401, -34.826214 ], [ -58.22303, -34.826618 ], [ -58.221718, -34.827183 ], [ -58.220699, -34.827614 ], [ -58.219791, -34.827999 ], [ -58.21904, -34.828323 ], [ -58.218456, -34.828575 ], [ -58.217365, -34.829041 ], [ -58.216431, -34.829445 ], [ -58.213203, -34.830826 ], [ -58.212902, -34.830936 ], [ -58.212566, -34.831062 ], [ -58.208523, -34.832787 ], [ -58.208218, -34.832924 ], [ -58.202648, -34.835312 ], [ -58.189663, -34.841084 ], [ -58.189682, -34.841183 ], [ -58.189686, -34.841305 ], [ -58.189671, -34.841385 ], [ -58.189648, -34.841473 ], [ -58.189594, -34.841557 ], [ -58.189552, -34.841625 ], [ -58.189487, -34.841694 ], [ -58.189419, -34.841759 ], [ -58.189327, -34.841816 ], [ -58.189209, -34.841866 ], [ -58.189098, -34.841904 ], [ -58.18898, -34.841923 ], [ -58.188862, -34.841934 ], [ -58.188709, -34.841915 ], [ -58.188583, -34.841885 ], [ -58.188457, -34.841839 ], [ -58.188339, -34.841778 ], [ -58.188147999999899, -34.844438 ], [ -58.188171, -34.841621 ], [ -58.188107, -34.841515 ], [ -58.187862, -34.844869 ], [ -58.186655, -34.847909 ], [ -58.185025, -34.852213 ], [ -58.182437677999928, -34.859188953999933 ], [ -58.179796, -34.865962 ], [ -58.17746769799993, -34.871669073999954 ], [ -58.175046, -34.877326 ], [ -58.17438, -34.87892 ], [ -58.173576, -34.883362 ], [ -58.173007, -34.88659 ], [ -58.172649, -34.889755 ], [ -58.172795715999939, -34.89269952199993 ], [ -58.172591931999932, -34.898201692999919 ], [ -58.1713692269999, -34.908798465999951 ], [ -58.170961658999943, -34.913485499999922 ], [ -58.170961658999943, -34.917764965999936 ], [ -58.17116544299995, -34.922248215999957 ], [ -58.170961658999943, -34.925712544999953 ], [ -58.170757874999936, -34.928361737999921 ], [ -58.170146522999914, -34.933863908999911 ], [ -58.169738953999911, -34.938958510999953 ], [ -58.168720033999932, -34.942015271999935 ], [ -58.167395436999925, -34.947288185999923 ], [ -58.164593405999938, -34.955949009999927 ], [ -58.163001342999905, -34.961521230999949 ], [ -58.162046104999945, -34.966615832999935 ], [ -58.16140927999993, -34.971073609999905 ], [ -58.154085788999907, -34.977760275999913 ], [ -58.150264836999952, -34.980307576999905 ], [ -58.120970873999909, -35.004188524999904 ], [ -58.097726750999925, -35.021382807999942 ], [ -58.086265598999944, -35.030113897999911 ], [ -58.080628389999902, -35.02480191199993 ], [ -58.072606206999922, -35.017430176999937 ], [ -58.057429105999915, -35.003337153999951 ], [ -58.047991944999922, -34.995316674999913 ], [ -58.041311522999933, -35.000311382999939 ], [ -58.03531787299994, -34.994754769999929 ], [ -58.042123162999928, -34.989697627999931 ], [ -58.027603389999911, -34.976510427999926 ], [ -58.010921845999917, -34.96148728299994 ], [ -57.998063593999916, -34.949739962999956 ], [ -57.980387789999952, -34.93368470799993 ], [ -57.976388121999946, -34.936611294999921 ], [ -57.973266428999921, -34.93885501099993 ], [ -57.971608029999913, -34.940025645999924 ], [ -57.968778995999912, -34.94187915099991 ], [ -57.967998572999932, -34.942659573999947 ], [ -57.966242620999935, -34.944317972999954 ], [ -57.958828600999936, -34.949683381999932 ], [ -57.957462859999907, -34.950756463999937 ], [ -57.954341167999928, -34.951049122999905 ], [ -57.951609686999916, -34.951049122999905 ], [ -57.949073311999939, -34.950463805999902 ], [ -57.947512464999932, -34.949780934999922 ], [ -57.937562069999899, -34.94100117499994 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 266.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.364525000028664, -34.744413000159796 ], [ -58.365532999748098, -34.744906000411561 ], [ -58.365768999839418, -34.745035000065172 ], [ -58.366735000319977, -34.745550000432104 ], [ -58.367121000134034, -34.745163999718784 ], [ -58.367506999948034, -34.744864000273367 ], [ -58.367936999992537, -34.744519999698184 ], [ -58.368365999990885, -34.744177000068476 ], [ -58.368772999874011, -34.74383400043871 ], [ -58.369202999918457, -34.743489999863584 ], [ -58.369588999732514, -34.743168000302944 ], [ -58.370017999730862, -34.742845999842984 ], [ -58.370446999729211, -34.742503000213219 ], [ -58.370812000373462, -34.742180999753316 ], [ -58.371262999587714, -34.741817000054482 ], [ -58.371262999587714, -34.741817000054482 ], [ -58.371927999677382, -34.741279999572271 ], [ -58.372120999584411, -34.741150999918659 ], [ -58.372958000411359, -34.740507999944214 ], [ -58.373945000061667, -34.739757000385225 ], [ -58.374867000311781, -34.739048000065111 ], [ -58.375789999708672, -34.738318999722026 ], [ -58.376669999820592, -34.737632000416454 ], [ -58.375876000077312, -34.73694600025766 ], [ -58.376820000442649, -34.736215999868477 ], [ -58.377786000023832, -34.735487000424712 ], [ -58.376970000165329, -34.734778000104598 ], [ -58.376197999637952, -34.734135000130095 ], [ -58.375381999779449, -34.733426999856135 ], [ -58.374460000428655, -34.734135000130095 ], [ -58.373516000063319, -34.734863999573861 ], [ -58.372613999836176, -34.735550999778752 ], [ -58.371712999655188, -34.736237999983643 ], [ -58.370941000027074, -34.735571999847878 ], [ -58.370038999799988, -34.734778000104598 ], [ -58.369095000333971, -34.733963000292192 ], [ -58.368173000083857, -34.733168999649592 ], [ -58.367249999787646, -34.732353999837187 ], [ -58.366605999767046, -34.731774000070004 ], [ -58.367506999948034, -34.73108799991121 ], [ -58.367765000154577, -34.730916000073307 ], [ -58.368623000151274, -34.73029400016793 ], [ -58.369482000194125, -34.729693000331679 ], [ -58.370361000259891, -34.729071000426302 ], [ -58.369460000078902, -34.728297999852771 ], [ -58.368602000082205, -34.727547000293782 ], [ -58.367721999970286, -34.726774999766405 ], [ -58.366863999973589, -34.726024000207417 ], [ -58.366004999930738, -34.725272999749109 ], [ -58.365146999934041, -34.724500000074897 ], [ -58.364288999937344, -34.723748999616589 ], [ -58.363259000102744, -34.722826000219698 ], [ -58.362594000013075, -34.722246999599292 ], [ -58.362099999715156, -34.721797000431195 ], [ -58.363559000447481, -34.720702000297024 ], [ -58.364717999935692, -34.719886999585299 ], [ -58.365855000208057, -34.719070999726796 ], [ -58.367034999765394, -34.718234999845322 ], [ -58.368150999968634, -34.717418999986819 ], [ -58.369310000356165, -34.716604000174414 ], [ -58.370468999844434, -34.715788000315911 ], [ -58.371627000185867, -34.714952000434437 ], [ -58.373108000134039, -34.713879000415488 ], [ -58.374094999784347, -34.713192000210597 ], [ -58.37323699978765, -34.712377000398192 ], [ -58.372377999744856, -34.711582999755592 ], [ -58.373344000225416, -34.710875000380895 ], [ -58.374287999691376, -34.710209000245129 ], [ -58.375103000403101, -34.709608999555655 ], [ -58.376091000099507, -34.708835999881444 ], [ -58.377119999888066, -34.707977999884747 ], [ -58.378086000368569, -34.707162000026244 ], [ -58.378986999650294, -34.706368000282964 ], [ -58.379823999577866, -34.705638999939879 ], [ -58.378923000296197, -34.704866000265667 ], [ -58.378022000115152, -34.704050999553942 ], [ -58.377163000072358, -34.703299999994954 ], [ -58.376541000166981, -34.702742000342994 ], [ -58.375468000148032, -34.701884000346297 ], [ -58.374438000313432, -34.701067999588474 ], [ -58.373708999970347, -34.700488999867389 ], [ -58.373365000294484, -34.700209999591777 ], [ -58.37276499960501, -34.6997380003084 ], [ -58.37220699995305, -34.699287000194886 ], [ -58.371434000278839, -34.698665000289509 ], [ -58.370941000027074, -34.698278999576132 ], [ -58.370017999730862, -34.697549000086269 ], [ -58.369137999618943, -34.696712000158641 ], [ -58.368794999989234, -34.696411999813904 ], [ -58.368107999784343, -34.695746999724236 ], [ -58.366928000227006, -34.694588000235967 ], [ -58.366004999930738, -34.693793999593368 ], [ -58.365169000049264, -34.693065000149602 ], [ -58.364096000030315, -34.692141999853391 ], [ -58.364589000282081, -34.691756000039334 ], [ -58.365125999864972, -34.691327000040985 ], [ -58.366004999930738, -34.690618999766968 ], [ -58.366648999951337, -34.690082000184134 ], [ -58.367529000063257, -34.689352999841049 ], [ -58.368387000059954, -34.688665999636157 ], [ -58.369202999918457, -34.687979000330586 ], [ -58.370060999915154, -34.687249999987444 ], [ -58.370425999660142, -34.686948999596609 ], [ -58.370875999727559, -34.686605999966901 ], [ -58.371519999748159, -34.686090999599912 ], [ -58.37164900030109, -34.685961999946301 ], [ -58.372657000020467, -34.685168000203021 ], [ -58.373450999763804, -34.684503000113295 ], [ -58.372271000206467, -34.683515999563667 ], [ -58.371262999587714, -34.682700999751319 ], [ -58.370361000259891, -34.681971000261399 ], [ -58.370446999729211, -34.681907000007982 ], [ -58.369395999825485, -34.68107000008041 ], [ -58.368387000059954, -34.680233000152782 ], [ -58.369267000171874, -34.679524999878822 ], [ -58.368194000152926, -34.678666999882068 ], [ -58.367836999877625, -34.678326000344612 ], [ -58.367743000039354, -34.678236999837623 ], [ -58.367249999787646, -34.677764999654983 ], [ -58.366648999951337, -34.677250000187314 ], [ -58.366520000297726, -34.677142999749606 ], [ -58.36579099995464, -34.676477999659937 ], [ -58.364846999589304, -34.675640999732309 ], [ -58.364396000375052, -34.675254999918252 ], [ -58.363623999847675, -34.674546999644292 ], [ -58.363193999803229, -34.674159999784138 ], [ -58.362099999715156, -34.673195000248995 ], [ -58.361585000247544, -34.672744000135481 ], [ -58.361305999971876, -34.672508000044104 ], [ -58.361177000318264, -34.672294000068007 ], [ -58.362679000335561, -34.670019000376499 ], [ -58.363151999665035, -34.669333000217762 ], [ -58.363859999938995, -34.668238000083591 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370333999914124, -34.658066999592336 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371166999657248, -34.655920999554439 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.371951999884857, -34.653440000255785 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.375318000425352, -34.647230999910676 ], [ -58.375839000169663, -34.645211000287418 ], [ -58.376004999730924, -34.644549000336042 ], [ -58.376218999707021, -34.643691000339345 ], [ -58.376497999982689, -34.642660999605425 ], [ -58.376841999658495, -34.641330000279254 ], [ -58.377034999565524, -34.640279000375529 ], [ -58.377678000439346, -34.638154999553535 ], [ -58.378128999653597, -34.636673999605364 ], [ -58.378170999791791, -34.636541999813403 ], [ -58.378708000273946, -34.634828999958359 ], [ -58.379309000110254, -34.63287599982749 ], [ -58.379545000201574, -34.632125000268502 ], [ -58.379179999557266, -34.631416999994485 ], [ -58.379051999949809, -34.631224000087514 ], [ -58.378687000204877, -34.630493999698274 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381401000355822, -34.623333999564409 ], [ -58.381380000286754, -34.622996000165244 ], [ -58.381416000148249, -34.622662000051207 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.381004000034523, -34.62212599961515 ], [ -58.380767999943203, -34.622104000399247 ], [ -58.38077700035825, -34.621820999939132 ], [ -58.380678000289436, -34.621279000125696 ], [ -58.380622999551747, -34.620573999990086 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.380640000335688, -34.618456000344111 ], [ -58.380681999574563, -34.617577000278288 ], [ -58.380746999874077, -34.616395999775534 ], [ -58.380790000058425, -34.61523800033342 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380918999712037, -34.613028000042107 ], [ -58.380960999850231, -34.611804000254381 ], [ -58.381047000218871, -34.610795999635627 ], [ -58.381090000403162, -34.60961600007829 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.381175999872482, -34.608371000221439 ], [ -58.381240000125842, -34.607255000018199 ], [ -58.381305000425414, -34.606074999561542 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.38135299994093, -34.604720000027953 ], [ -58.38133800014856, -34.604642000028207 ], [ -58.381144000195434, -34.604312000098673 ], [ -58.381110999572911, -34.604223999637838 ], [ -58.381088000310911, -34.603910000446092 ], [ -58.381069000334037, -34.603651000193452 ], [ -58.381154999803357, -34.603092999642172 ], [ -58.381250999733822, -34.602949000196134 ], [ -58.381282000264036, -34.602900999781298 ], [ -58.381370999871706, -34.602854000311822 ], [ -58.381448999871395, -34.602765999850988 ], [ -58.381536000286133, -34.602668999874425 ], [ -58.381561999686483, -34.60249199980592 ], [ -58.381590000078404, -34.601741000246932 ], [ -58.381598000447298, -34.601526000224681 ], [ -58.381604999870831, -34.601333000317652 ], [ -58.381637000447199, -34.600766000250644 ], [ -58.381670000170345, -34.600196000045344 ], [ -58.381656000424016, -34.600101000160976 ], [ -58.381626999985997, -34.599892999562258 ], [ -58.381637999593977, -34.599442000348006 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.381704999985743, -34.598401000006106 ], [ -58.381754999593511, -34.597857000100419 ], [ -58.381794999639453, -34.597429000148168 ], [ -58.381863000077374, -34.596697999712887 ], [ -58.381931999662015, -34.596087000314753 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382019000076752, -34.59496299974262 ], [ -58.382033999869179, -34.594209000045282 ], [ -58.382016999984501, -34.593647000208875 ], [ -58.381990999684831, -34.592793000396625 ], [ -58.381648000055122, -34.592793000396625 ], [ -58.380081999784409, -34.592878999865889 ], [ -58.378579999767112, -34.592899999935014 ], [ -58.377077999749872, -34.592878999865889 ], [ -58.375639999985992, -34.592943000119305 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.372194000252875, -34.588742999789588 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.372271000206467, -34.586419999683187 ], [ -58.372464000113496, -34.586419999683187 ], [ -58.372657000020467, -34.586334000213867 ], [ -58.373064999949747, -34.586334000213867 ], [ -58.375082000334032, -34.585153999757267 ], [ -58.375167999803296, -34.58509000040317 ], [ -58.375188999872421, -34.58500400003453 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.377270999656844, -34.583243999810691 ], [ -58.376541000166981, -34.582450000067411 ], [ -58.375811999823895, -34.581463000417102 ], [ -58.375039000149684, -34.580562000236057 ], [ -58.374309999806599, -34.581013000349628 ], [ -58.373922999946444, -34.581249000440948 ], [ -58.373429999694679, -34.581527999817297 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 263.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.211345029506951, -34.762566789607817 ], [ -58.212528551375399, -34.761990528427042 ], [ -58.21263391368808, -34.761932427796694 ], [ -58.213255984328697, -34.761049056033009 ], [ -58.208666228790094, -34.758677541463165 ], [ -58.205271541674705, -34.762969932898429 ], [ -58.206483929930201, -34.763581758366477 ], [ -58.207136310277207, -34.764544544300342 ], [ -58.20842375113898, -34.763956439941431 ], [ -58.208504577022673, -34.763837870006704 ], [ -58.209249329808188, -34.763491644822587 ], [ -58.211004406139942, -34.762761247205546 ], [ -58.230113954357307, -34.772753853930084 ], [ -58.217764913983586, -34.789919152429334 ], [ -58.214918688221921, -34.788430370220169 ], [ -58.214624251074149, -34.788392439112165 ], [ -58.214329813926398, -34.788363990769703 ], [ -58.2141797087138, -34.788316576843819 ], [ -58.213740939630874, -34.788093731026962 ], [ -58.214416413087498, -34.788615284121903 ], [ -58.204347817289573, -34.792458080469473 ], [ -58.201207154380121, -34.786725823831837 ], [ -58.202269437423013, -34.786391548433528 ], [ -58.202725526338178, -34.787041132008419 ], [ -58.20737878792827, -34.785291512026305 ], [ -58.210043155451615, -34.78185143281366 ], [ -58.207918589365832, -34.780777415913356 ], [ -58.205828662944469, -34.783480213217977 ], [ -58.195425217056908, -34.778069788072806 ], [ -58.186528596572629, -34.785808341303436 ], [ -58.185189196214168, -34.786955785553275 ], [ -58.171668180526822, -34.797794078714752 ], [ -58.180195311257073, -34.804862381584194 ], [ -58.178919416950116, -34.805957416536877 ], [ -58.180224177644092, -34.806744315787377 ], [ -58.181326873628855, -34.807189906007125 ], [ -58.181655950441041, -34.807232568774133 ], [ -58.18236029028472, -34.807294192731923 ], [ -58.182787512812851, -34.807332115144611 ], [ -58.183335974166518, -34.807284712126034 ], [ -58.18400567434572, -34.807275231519064 ], [ -58.184496402925333, -34.807275231519064 ], [ -58.184883212511615, -34.807332115144611 ], [ -58.185206516046399, -34.807436401689465 ], [ -58.185682811432443, -34.807806143830639 ], [ -58.185786730425775, -34.807777702186357 ], [ -58.185922402444845, -34.807787182735545 ], [ -58.185980135218919, -34.807900949240661 ], [ -58.18599456841244, -34.808028936371201 ], [ -58.185977248580208, -34.808107150630903 ], [ -58.186543029766113, -34.808510071398672 ], [ -58.18784779046009, -34.810372961809442 ], [ -58.195047067386717, -34.818670133882335 ], [ -58.188373158704131, -34.822769827616469 ], [ -58.187414794654551, -34.823471257662995 ], [ -58.18544033378133, -34.824637134929816 ], [ -58.156493120862308, -34.842568712250127 ], [ -58.156308375985269, -34.843369476472368 ], [ -58.155996619005265, -34.843990181840795 ], [ -58.155690635302705, -34.84434554540254 ], [ -58.15480732385943, -34.84456823911917 ], [ -58.153762360648741, -34.844781455942773 ], [ -58.153208126017667, -34.844075469235548 ], [ -58.148918580904208, -34.844554024644616 ], [ -58.146990306250267, -34.844544548326887 ], [ -58.145119764370371, -34.84434554540254 ], [ -58.142452510208308, -34.844212876518974 ], [ -58.140847539089144, -34.844383450758549 ], [ -58.10449898453421, -34.845700651036196 ], [ -58.101773997598102, -34.846534551105073 ], [ -58.098910452004183, -34.847520058474267 ], [ -58.095631230436972, -34.849415231781954 ], [ -58.079466053697189, -34.85328124998604 ], [ -58.068011871321566, -34.85919363234359 ], [ -58.067642381567524, -34.859724209981906 ], [ -58.066914948614226, -34.860264258706259 ], [ -58.065356163714313, -34.861107485588889 ], [ -58.064051403020322, -34.861543307330585 ], [ -58.0622385939145, -34.861704371302878 ], [ -58.060356505479803, -34.86181806332872 ], [ -58.05878617402508, -34.861855960635751 ], [ -58.056950271809619, -34.861903332244964 ], [ -58.049722128495986, -34.863542373120197 ], [ -58.047713027958316, -34.863665536721982 ], [ -58.009286093536872, -34.88092556462199 ], [ -58.008472061422495, -34.881276032588005 ], [ -58.002265788209897, -34.886068768854983 ], [ -58.00902052277614, -34.892154004503659 ], [ -57.992647508049693, -34.895885428024833 ], [ -57.988663946638809, -34.897201803491839 ], [ -57.987093615184094, -34.897448029654441 ], [ -57.985684935496778, -34.898395046477916 ], [ -57.984945955988678, -34.899020071600127 ], [ -57.961806660141157, -34.915988632809544 ], [ -57.960836749536774, -34.915837143314519 ], [ -57.960744377098266, -34.916632460044269 ], [ -57.955790905082992, -34.911358608817906 ], [ -57.955028832465281, -34.911519575178609 ], [ -57.954416865060139, -34.911311265710594 ], [ -57.954278306402351, -34.910837833135737 ], [ -57.954336039176432, -34.910534834855063 ], [ -57.954647796156408, -34.910099272867456 ], [ -57.954878727252691, -34.909985647621099 ], [ -57.955236670451932, -34.909890959795668 ], [ -57.955583067096327, -34.905393162300946 ], [ -57.954890273807493, -34.90476818567997 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 262.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.454614222364718, -34.707171020420652 ], [ -58.454003383140524, -34.707629149838802 ], [ -58.454139125190345, -34.707849730669757 ], [ -58.455649255494599, -34.707510375545205 ], [ -58.456277062475024, -34.708053343744488 ], [ -58.45274776917968, -34.712583734657265 ], [ -58.453205898597822, -34.712872186513131 ], [ -58.458109580147607, -34.707764891888623 ], [ -58.458296225466107, -34.707238891445563 ], [ -58.459059774496353, -34.707001342858376 ], [ -58.460043904357555, -34.706339600365503 ], [ -58.46377681072763, -34.703998050006092 ], [ -58.465897780256071, -34.702046758039913 ], [ -58.470801461805856, -34.69846656147589 ], [ -58.46168977671163, -34.690271135217948 ], [ -58.461842486517682, -34.690118425411896 ], [ -58.461146808512346, -34.688285907739314 ], [ -58.464777908345049, -34.684773582200201 ], [ -58.464659134051459, -34.684179710732231 ], [ -58.466644361530086, -34.682041773447551 ], [ -58.467458813829012, -34.681956934666417 ], [ -58.465897780256071, -34.680446804362155 ], [ -58.466338941917989, -34.680107449237603 ], [ -58.467170361973146, -34.680090481481379 ], [ -58.459891194551496, -34.673761508408482 ], [ -58.458567709565742, -34.673744540652251 ], [ -58.454173060702786, -34.669231117495706 ], [ -58.451950284636972, -34.667890664753727 ], [ -58.451118864581815, -34.666142985862287 ], [ -58.448437959097852, -34.664327435945928 ], [ -58.448980927297136, -34.663852338771555 ], [ -58.450728606188584, -34.665057049463719 ], [ -58.452001187905651, -34.665600017663003 ], [ -58.452561123861166, -34.667347696554444 ], [ -58.45407125416542, -34.668196084365825 ], [ -58.455072351782853, -34.669112343202116 ], [ -58.456718224136935, -34.670571570237691 ], [ -58.458550741809518, -34.672336216885363 ], [ -58.460264485188503, -34.672302281372907 ], [ -58.463233842528339, -34.670198279600683 ], [ -58.465032424688467, -34.670639441262601 ], [ -58.465880812499847, -34.671691442148713 ], [ -58.468392040421534, -34.672183507079318 ], [ -58.469410105795191, -34.671521764586437 ], [ -58.468510814715124, -34.670944860874698 ], [ -58.473176947677715, -34.667228922260854 ], [ -58.47017365482543, -34.664581952289346 ], [ -58.472990302359214, -34.662376143979756 ], [ -58.469596751113691, -34.654842460214695 ], [ -58.467255200754281, -34.651024715063478 ], [ -58.467407910560325, -34.649938778664911 ], [ -58.466135328843258, -34.649786068858866 ], [ -58.461978228567489, -34.650074520714732 ], [ -58.465923231890407, -34.646935485812627 ], [ -58.467085523192004, -34.647911131795716 ], [ -58.470691171390371, -34.645052064871358 ], [ -58.478301210058447, -34.639053963044894 ], [ -58.481126341470343, -34.640351996396305 ], [ -58.482907955874239, -34.63896912426376 ], [ -58.481745664572649, -34.638426156064476 ], [ -58.483272762633142, -34.634150281495117 ], [ -58.482967343021045, -34.634039991079639 ], [ -58.483289730389366, -34.633234022658826 ], [ -58.484333247397366, -34.632360183213102 ], [ -58.502238472156556, -34.618200590641145 ], [ -58.51286028755505, -34.606391032306725 ], [ -58.508414735423415, -34.603710126822762 ], [ -58.511604673594206, -34.60004509147759 ], [ -58.512520932430498, -34.600486253139508 ], [ -58.513742610878886, -34.599196703666209 ], [ -58.51207977076858, -34.598212573805007 ], [ -58.511401060519475, -34.594309989872656 ], [ -58.51364080434152, -34.591900568488334 ], [ -58.497453564900368, -34.581889592314035 ], [ -58.498200146174383, -34.581075140015109 ], [ -58.493143754818554, -34.57822455696887 ], [ -58.492363238032084, -34.578869331705519 ], [ -58.485474329003672, -34.575034618798078 ], [ -58.486322716815053, -34.574288037524063 ], [ -58.457172111616003, -34.556607635534874 ], [ -58.45377856037048, -34.560374477417405 ], [ -58.450215331562681, -34.55827047564518 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 261.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.61172, -34.646285 ], [ -58.612627, -34.645548 ], [ -58.613595, -34.646384 ], [ -58.614557, -34.647234 ], [ -58.615596, -34.646449 ], [ -58.616543, -34.647233 ], [ -58.616709, -34.647383 ], [ -58.617379, -34.647408 ], [ -58.61848, -34.647399 ], [ -58.61977, -34.647373 ], [ -58.621057, -34.647353 ], [ -58.621053, -34.646991 ], [ -58.621047, -34.646406 ], [ -58.62103, -34.645477 ], [ -58.621025, -34.644528 ], [ -58.620985, -34.643562 ], [ -58.622374, -34.642402 ], [ -58.622464, -34.642476 ], [ -58.624009, -34.641221 ], [ -58.624361, -34.64091 ], [ -58.624939, -34.640508 ], [ -58.625455, -34.639663 ], [ -58.625703, -34.63962 ], [ -58.625786, -34.639606 ], [ -58.626767, -34.63943 ], [ -58.627208, -34.639345 ], [ -58.62805, -34.639198 ], [ -58.628397, -34.639133 ], [ -58.629032, -34.639023 ], [ -58.629646, -34.638904 ], [ -58.629826, -34.638868 ], [ -58.630437, -34.63877 ], [ -58.631247, -34.638615 ], [ -58.631375, -34.63859 ], [ -58.630999, -34.637205 ], [ -58.631071, -34.63733 ], [ -58.632548, -34.637058 ], [ -58.632868, -34.636999 ], [ -58.633719, -34.636892 ], [ -58.635037, -34.637258 ], [ -58.636194, -34.637607 ], [ -58.635851, -34.63788 ], [ -58.635673, -34.638295 ], [ -58.635507, -34.638668 ], [ -58.635681, -34.639442 ], [ -58.635862, -34.640143 ], [ -58.63604, -34.64011 ], [ -58.636234, -34.641059 ], [ -58.63765, -34.640787 ], [ -58.638636, -34.640608 ], [ -58.639071, -34.640536 ], [ -58.639947, -34.640375 ], [ -58.640548, -34.640268 ], [ -58.641970999999899, -34.639997 ], [ -58.643025, -34.639797 ], [ -58.643025, -34.639809 ], [ -58.643595, -34.641009 ], [ -58.643606, -34.641028 ], [ -58.643926, -34.642223 ], [ -58.644946, -34.642035 ], [ -58.645937, -34.641854 ], [ -58.646959, -34.641668 ], [ -58.647971, -34.641482 ], [ -58.648854, -34.641345 ], [ -58.649742, -34.641181 ], [ -58.650623, -34.641014 ], [ -58.651694, -34.640833 ], [ -58.653139, -34.640568 ], [ -58.654065, -34.64041 ], [ -58.654983999999899, -34.640246 ], [ -58.655958, -34.64008 ], [ -58.657007, -34.639879 ], [ -58.656656, -34.638601 ], [ -58.656241, -34.637274 ], [ -58.65724, -34.637111 ], [ -58.658246, -34.636914 ], [ -58.658988, -34.63672 ], [ -58.659515, -34.637349 ], [ -58.660047, -34.637954 ], [ -58.66152, -34.637095 ], [ -58.662979, -34.636215 ], [ -58.662976, -34.636184 ], [ -58.662976, -34.636157 ], [ -58.662979, -34.636132 ], [ -58.662986, -34.63611 ], [ -58.662996, -34.636091 ], [ -58.663009, -34.636075 ], [ -58.663025, -34.636062 ], [ -58.663044, -34.636051 ], [ -58.663066999999899, -34.636044 ], [ -58.663093, -34.636039 ], [ -58.663122, -34.636037 ], [ -58.663154, -34.636038 ], [ -58.663189, -34.636042 ], [ -58.663228, -34.636048 ], [ -58.66327, -34.636058 ], [ -58.664447, -34.635346 ], [ -58.665546, -34.634689 ], [ -58.666092, -34.635317 ], [ -58.666641, -34.635923 ], [ -58.667465, -34.636399 ], [ -58.666809, -34.636813 ], [ -58.665703, -34.637461 ], [ -58.664982, -34.637899 ], [ -58.664485, -34.638203 ], [ -58.663698, -34.63866 ], [ -58.663501, -34.638775 ], [ -58.6623, -34.639495 ], [ -58.662447, -34.640034 ], [ -58.662668, -34.640949 ], [ -58.662688, -34.641028 ], [ -58.662903, -34.64186 ], [ -58.663149, -34.642797 ], [ -58.663381, -34.643711 ], [ -58.663618, -34.64462 ], [ -58.663867, -34.645535 ], [ -58.664092, -34.646459 ], [ -58.664274, -34.64734 ], [ -58.664429, -34.64805 ], [ -58.66449, -34.648202 ], [ -58.664394999999899, -34.648295 ], [ -58.664111, -34.64898 ], [ -58.663882, -34.649464 ], [ -58.66345, -34.650363 ], [ -58.663064, -34.651277 ], [ -58.662623, -34.652236 ], [ -58.662197, -34.65319 ], [ -58.663618, -34.65363 ], [ -58.665033, -34.654086 ], [ -58.66558, -34.654261 ], [ -58.66644, -34.654544 ], [ -58.666027, -34.655416 ], [ -58.665646, -34.656255 ], [ -58.66523, -34.65716 ], [ -58.666511, -34.657566 ], [ -58.666659, -34.657606 ], [ -58.668154, -34.658081 ], [ -58.669579, -34.658535 ], [ -58.670962, -34.658983 ], [ -58.672404, -34.659434 ], [ -58.672645, -34.659512 ], [ -58.672656, -34.659519 ], [ -58.673559, -34.660278 ], [ -58.674471, -34.661016 ], [ -58.675344, -34.660293 ], [ -58.676208, -34.659572 ], [ -58.677095, -34.658849 ], [ -58.677965, -34.658129 ], [ -58.678463, -34.6578 ], [ -58.678911, -34.657463 ], [ -58.679745, -34.656703 ], [ -58.680924, -34.655726 ], [ -58.681687, -34.655103 ], [ -58.682493, -34.654441 ], [ -58.68356, -34.65358 ], [ -58.684342, -34.652954 ], [ -58.684468, -34.652856 ], [ -58.685316, -34.652179 ], [ -58.686087, -34.651567 ], [ -58.686846, -34.650969 ], [ -58.687639, -34.650363 ], [ -58.688471, -34.649718 ], [ -58.688648, -34.649576 ], [ -58.689312, -34.649059 ], [ -58.689604, -34.648799 ], [ -58.690556, -34.648037 ], [ -58.691171, -34.647556 ], [ -58.692129, -34.646795 ], [ -58.693059, -34.646046 ], [ -58.694003, -34.645287 ], [ -58.694949, -34.644534 ], [ -58.694502, -34.644006 ], [ -58.695442, -34.643272 ], [ -58.696405, -34.642527 ], [ -58.697375, -34.641777 ], [ -58.698182, -34.641165 ], [ -58.699204, -34.642087 ], [ -58.700172, -34.64292 ], [ -58.700222, -34.64297 ], [ -58.701163, -34.643857 ], [ -58.702184, -34.644749 ], [ -58.703183, -34.645643 ], [ -58.703209999999899, -34.645663 ], [ -58.703861, -34.646197 ], [ -58.704505, -34.645653 ], [ -58.705169, -34.645109 ], [ -58.705832, -34.644564 ], [ -58.706399, -34.645063 ], [ -58.707151, -34.64574 ], [ -58.707241, -34.645763 ], [ -58.707371, -34.645801 ], [ -58.707566, -34.645872 ], [ -58.707696, -34.64596 ], [ -58.70816, -34.646356 ], [ -58.708971, -34.647029 ], [ -58.709777, -34.647696 ], [ -58.710655, -34.648426 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 260.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.475052, -34.537995 ], [ -58.47598, -34.538445 ], [ -58.476765, -34.538731 ], [ -58.477577, -34.539071 ], [ -58.477898, -34.539231 ], [ -58.478172, -34.539401 ], [ -58.478304, -34.539556 ], [ -58.478524, -34.539776 ], [ -58.478925, -34.540054 ], [ -58.479491, -34.540372 ], [ -58.480339999999899, -34.540786 ], [ -58.482117, -34.541566 ], [ -58.48286, -34.541841 ], [ -58.483694, -34.542188 ], [ -58.484579, -34.542553 ], [ -58.485838, -34.543052 ], [ -58.486496, -34.54332 ], [ -58.48691, -34.543462 ], [ -58.487401, -34.54365 ], [ -58.488621, -34.544092 ], [ -58.489289, -34.544338 ], [ -58.489831, -34.54455 ], [ -58.490332, -34.54478 ], [ -58.490693, -34.544964 ], [ -58.491154, -34.545188 ], [ -58.491523, -34.545372 ], [ -58.492451, -34.545854 ], [ -58.492749, -34.545893 ], [ -58.492965, -34.545921 ], [ -58.49325, -34.545908 ], [ -58.493492, -34.545849 ], [ -58.493728, -34.545732 ], [ -58.493902, -34.545625 ], [ -58.494038, -34.545523 ], [ -58.494144, -34.5454 ], [ -58.494361, -34.545124 ], [ -58.494971, -34.544467 ], [ -58.49504, -34.544394 ], [ -58.495387, -34.543869 ], [ -58.49563, -34.543522 ], [ -58.496164, -34.54285 ], [ -58.496445, -34.542449 ], [ -58.496806, -34.542111 ], [ -58.497462, -34.541428 ], [ -58.498103, -34.540727 ], [ -58.498744, -34.540202 ], [ -58.499142, -34.539749 ], [ -58.499813, -34.538925 ], [ -58.499978, -34.538703 ], [ -58.501068, -34.537189 ], [ -58.505205, -34.531173 ], [ -58.506005, -34.530052 ], [ -58.507587, -34.527867 ], [ -58.509084, -34.525796 ], [ -58.511727, -34.522188 ], [ -58.512616, -34.521177 ], [ -58.513656, -34.520108 ], [ -58.515387, -34.518451 ], [ -58.517249, -34.516601 ], [ -58.518127, -34.515741 ], [ -58.519103, -34.514952 ], [ -58.520353, -34.513966 ], [ -58.523216, -34.511803 ], [ -58.52393, -34.51133 ], [ -58.524988, -34.51071 ], [ -58.525804, -34.510238 ], [ -58.527117, -34.509597 ], [ -58.529429, -34.508463 ], [ -58.531569, -34.507389 ], [ -58.53566, -34.505403 ], [ -58.539576, -34.503508 ], [ -58.543704, -34.501524 ], [ -58.549883, -34.498713 ], [ -58.550704, -34.498332 ], [ -58.552543, -34.497241 ], [ -58.55404, -34.496182 ], [ -58.555479, -34.49525 ], [ -58.55614, -34.494869 ], [ -58.557348, -34.494271 ], [ -58.557977, -34.494049 ], [ -58.559116, -34.493598 ], [ -58.561097, -34.492852 ], [ -58.561898, -34.492565 ], [ -58.563737, -34.491882 ], [ -58.564766, -34.491488 ], [ -58.565715, -34.491133 ], [ -58.567549, -34.490456 ], [ -58.569216, -34.489924 ], [ -58.571458, -34.489387 ], [ -58.573888, -34.488928 ], [ -58.573952, -34.488919 ], [ -58.574207, -34.488882 ], [ -58.574294, -34.488869 ], [ -58.575802, -34.488678 ], [ -58.575875, -34.488671 ], [ -58.575951, -34.488662 ], [ -58.576144, -34.488637 ], [ -58.581205, -34.488279 ], [ -58.582054, -34.488228 ], [ -58.583922, -34.488105 ], [ -58.585351, -34.487991 ], [ -58.585763, -34.48797 ], [ -58.585882, -34.487945 ], [ -58.58637, -34.487927 ], [ -58.587507, -34.487843 ], [ -58.588346, -34.487775 ], [ -58.589188, -34.487704 ], [ -58.5899, -34.487613 ], [ -58.590665, -34.4875 ], [ -58.591323, -34.487413 ], [ -58.591931, -34.487334 ], [ -58.592501, -34.487279 ], [ -58.593521, -34.487191 ], [ -58.594229, -34.487136 ], [ -58.595101, -34.487068 ], [ -58.59586, -34.486988 ], [ -58.595888, -34.48698 ], [ -58.600746, -34.486637 ], [ -58.601924, -34.4866 ], [ -58.603445, -34.48657 ], [ -58.60388, -34.486553 ], [ -58.604626, -34.486523 ], [ -58.605265, -34.486397 ], [ -58.607767, -34.48609 ], [ -58.611029, -34.485645 ], [ -58.611568, -34.485561 ], [ -58.61195, -34.485486 ], [ -58.612112, -34.485441 ], [ -58.612769, -34.485329 ], [ -58.614114, -34.485109 ], [ -58.614406, -34.485258 ], [ -58.615238, -34.48571 ], [ -58.615457, -34.485728 ], [ -58.615822, -34.485926 ], [ -58.616065, -34.486062 ], [ -58.617095, -34.486575 ], [ -58.618279, -34.487104 ], [ -58.61936, -34.487633 ], [ -58.620608, -34.488294 ], [ -58.62141, -34.488757 ], [ -58.621929, -34.489012 ], [ -58.622114, -34.489128 ], [ -58.622916, -34.489548 ], [ -58.623881, -34.490061 ], [ -58.624857, -34.49059 ], [ -58.62561, -34.490985 ], [ -58.625896, -34.491147 ], [ -58.626837, -34.491646 ], [ -58.627867, -34.492198 ], [ -58.628081, -34.492321 ], [ -58.62882, -34.492722 ], [ -58.629817, -34.493269 ], [ -58.630516, -34.493643 ], [ -58.630786, -34.493805 ], [ -58.631756, -34.494291 ], [ -58.632739, -34.494843 ], [ -58.633744, -34.495392 ], [ -58.634822, -34.495983 ], [ -58.635868, -34.496527 ], [ -58.636909, -34.497111 ], [ -58.637942, -34.497668 ], [ -58.639025, -34.498228 ], [ -58.640109, -34.498809 ], [ -58.641158, -34.499361 ], [ -58.642214, -34.499927 ], [ -58.643247, -34.500506 ], [ -58.643754, -34.500763 ], [ -58.64596, -34.501924 ], [ -58.647755, -34.502288 ], [ -58.648424, -34.502825 ], [ -58.649332999999899, -34.50343 ], [ -58.649975, -34.503875 ], [ -58.650618, -34.50432 ], [ -58.651211, -34.504734 ], [ -58.651797, -34.505145 ], [ -58.652401, -34.505578 ], [ -58.652436, -34.505597 ], [ -58.65415, -34.506775 ], [ -58.65583, -34.507925 ], [ -58.657043, -34.508753 ], [ -58.657416, -34.508992 ], [ -58.658837, -34.509931 ], [ -58.660887, -34.511331 ], [ -58.660989, -34.5114 ], [ -58.66156, -34.511784 ], [ -58.662563, -34.512432 ], [ -58.66289, -34.512697 ], [ -58.663384, -34.513022 ], [ -58.664126, -34.513529 ], [ -58.664867, -34.514039 ], [ -58.665582, -34.51451 ], [ -58.666315, -34.514994 ], [ -58.667, -34.515435 ], [ -58.667038, -34.515458 ], [ -58.6679, -34.515934 ], [ -58.668717, -34.516517 ], [ -58.669591, -34.517077 ], [ -58.670371, -34.517633 ], [ -58.671246, -34.518197 ], [ -58.672172, -34.518841 ], [ -58.673173, -34.51949 ], [ -58.674241, -34.52018 ], [ -58.676826, -34.521826 ], [ -58.677995, -34.522671 ], [ -58.680055, -34.524078 ], [ -58.68088, -34.524667 ], [ -58.681823, -34.525329 ], [ -58.682865, -34.526063 ], [ -58.684069, -34.52692 ], [ -58.685215, -34.527708 ], [ -58.686961, -34.528989 ], [ -58.687683, -34.529498 ], [ -58.687957, -34.529701 ], [ -58.688171, -34.529712 ], [ -58.688458, -34.529724 ], [ -58.688794, -34.529709 ], [ -58.689255, -34.529606 ], [ -58.689339, -34.529533 ], [ -58.691493, -34.527627 ], [ -58.692729, -34.526554 ], [ -58.693199, -34.526133 ], [ -58.693397, -34.525946 ], [ -58.693771, -34.52559 ], [ -58.694175, -34.525965 ], [ -58.694554, -34.526447 ], [ -58.69672, -34.528478 ], [ -58.69677, -34.528524 ], [ -58.697565, -34.529285 ], [ -58.697736, -34.529446 ], [ -58.701336, -34.532784 ], [ -58.701511, -34.532673 ], [ -58.702202, -34.532972 ], [ -58.702451, -34.533209 ], [ -58.703356, -34.534062 ], [ -58.704327, -34.534987 ], [ -58.704830999999899, -34.535462 ], [ -58.705988, -34.536536 ], [ -58.707462, -34.535463 ], [ -58.708618, -34.536534 ], [ -58.709363, -34.537232 ], [ -58.710115, -34.537933 ], [ -58.710994, -34.53874 ], [ -58.71206, -34.539712 ], [ -58.712776, -34.540372 ], [ -58.713573, -34.5411 ], [ -58.714413, -34.541873 ], [ -58.715038, -34.542484 ], [ -58.713612, -34.543527 ], [ -58.714041, -34.54392 ], [ -58.714401, -34.544244 ], [ -58.71541, -34.545237 ], [ -58.71639, -34.546164 ], [ -58.717402, -34.54716 ], [ -58.718441, -34.548106 ], [ -58.71941, -34.548991 ], [ -58.720219, -34.549757 ], [ -58.721001, -34.550485 ], [ -58.721806, -34.551239 ], [ -58.723125, -34.55262 ], [ -58.724232, -34.553554 ], [ -58.72491, -34.554203 ], [ -58.725347, -34.55464 ], [ -58.725485, -34.554776 ], [ -58.725964, -34.555259 ], [ -58.726493, -34.555795 ], [ -58.727018, -34.556293 ], [ -58.727526, -34.556778 ], [ -58.727606, -34.556854 ], [ -58.728052, -34.557201 ], [ -58.72858, -34.55761 ], [ -58.73054, -34.559122 ], [ -58.731377, -34.559764 ], [ -58.731403, -34.559787 ], [ -58.732014, -34.560238 ], [ -58.732506, -34.560612 ], [ -58.732697, -34.560745 ], [ -58.733358, -34.561242 ], [ -58.734061, -34.561761 ], [ -58.734781, -34.5623 ], [ -58.735541, -34.562884 ], [ -58.736181, -34.563381 ], [ -58.736809, -34.563875 ], [ -58.737602, -34.564487 ], [ -58.738809, -34.565482 ], [ -58.7398, -34.566288 ], [ -58.740771, -34.567092 ], [ -58.740783, -34.567099 ], [ -58.741719, -34.56791 ], [ -58.742657, -34.568709 ], [ -58.74266, -34.568728 ], [ -58.742864, -34.569495 ], [ -58.74296, -34.569853 ], [ -58.743115, -34.570444 ], [ -58.743274, -34.571049 ], [ -58.743286, -34.571084 ], [ -58.743398, -34.57196 ], [ -58.743478, -34.572543 ], [ -58.743624, -34.573887 ], [ -58.743651, -34.573941 ], [ -58.74372, -34.574429 ], [ -58.743761, -34.574691 ], [ -58.743878, -34.575484 ], [ -58.743923, -34.575755 ], [ -58.743957, -34.576018 ], [ -58.744086, -34.576848 ], [ -58.744217, -34.577694 ], [ -58.744251, -34.577972 ], [ -58.744338, -34.578589 ], [ -58.744346, -34.578593 ], [ -58.744558, -34.579439 ], [ -58.744979, -34.580948 ], [ -58.745089, -34.581261 ], [ -58.745378, -34.581536 ], [ -58.745417, -34.581578 ], [ -58.746075, -34.582236 ], [ -58.746715, -34.582862 ], [ -58.747481, -34.583597 ], [ -58.747493, -34.583604 ], [ -58.748727, -34.584751 ], [ -58.748742, -34.584766 ], [ -58.749777, -34.585752 ], [ -58.749804, -34.585767 ], [ -58.750531, -34.586554 ], [ -58.75055, -34.586566 ], [ -58.750733, -34.586857 ], [ -58.751243, -34.587665 ], [ -58.751509, -34.588112 ], [ -58.751513, -34.588119 ], [ -58.751924, -34.588779 ], [ -58.751931, -34.588817 ], [ -58.752158, -34.589615 ], [ -58.75217, -34.589656 ], [ -58.752231, -34.589912 ], [ -58.752246, -34.589961 ], [ -58.752428, -34.590533 ], [ -58.752432, -34.590548 ], [ -58.752599, -34.591361 ], [ -58.752641, -34.591509 ], [ -58.752789, -34.592025 ], [ -58.752796, -34.592052 ], [ -58.752998, -34.592605 ], [ -58.753264, -34.593362 ], [ -58.753314, -34.593468 ], [ -58.753459, -34.593828 ], [ -58.753645, -34.594217 ], [ -58.753656, -34.594232 ], [ -58.754071, -34.595004 ], [ -58.75409, -34.595019 ], [ -58.754468, -34.595592 ], [ -58.754627, -34.595665 ], [ -58.755309, -34.596429 ], [ -58.755324, -34.596448 ], [ -58.756062, -34.597334 ], [ -58.756824, -34.598258 ], [ -58.757384, -34.598873 ], [ -58.757883, -34.599511 ], [ -58.757894, -34.599519 ], [ -58.75816, -34.599828 ], [ -58.758179, -34.599851 ], [ -58.758431, -34.600031 ], [ -58.758454, -34.600046 ], [ -58.759188, -34.600612 ], [ -58.759211, -34.600623 ], [ -58.760099, -34.601277 ], [ -58.76011, -34.601284 ], [ -58.760411, -34.601517 ], [ -58.760894, -34.601888 ], [ -58.761161, -34.602083 ], [ -58.762071, -34.602748 ], [ -58.762936, -34.603417 ], [ -58.762947, -34.603424 ], [ -58.763739, -34.604024 ], [ -58.763754, -34.60404 ], [ -58.764021, -34.604253 ], [ -58.764565, -34.604643 ], [ -58.764604, -34.60467 ], [ -58.765408, -34.605263 ], [ -58.765773, -34.605591 ], [ -58.765777, -34.605599 ], [ -58.765899, -34.605718 ], [ -58.766044, -34.605879 ], [ -58.766195, -34.60605 ], [ -58.766397, -34.606313 ], [ -58.766413, -34.606329 ], [ -58.766583, -34.606566 ], [ -58.766599, -34.606589 ], [ -58.767109, -34.607413 ], [ -58.767113, -34.607428 ], [ -58.767446, -34.608149 ], [ -58.768415, -34.610311 ], [ -58.769033, -34.61158 ], [ -58.769052, -34.611622 ], [ -58.770732, -34.615413 ], [ -58.770941, -34.615755 ], [ -58.770987, -34.615808 ], [ -58.771161, -34.616053 ], [ -58.771173, -34.616069 ], [ -58.771492, -34.616547 ], [ -58.772042, -34.617322 ], [ -58.77205, -34.617333 ], [ -58.772506, -34.618023 ], [ -58.772521, -34.618042 ], [ -58.772801, -34.618464 ], [ -58.772878, -34.618572 ], [ -58.772923, -34.618644 ], [ -58.773291, -34.619196 ], [ -58.773295, -34.619208 ], [ -58.773782, -34.619886 ], [ -58.773849, -34.619981 ], [ -58.773914, -34.620082 ], [ -58.774381, -34.620783 ], [ -58.774453, -34.620893 ], [ -58.77478, -34.621358 ], [ -58.774784, -34.621358 ], [ -58.774992, -34.621672 ], [ -58.775818999999899, -34.622975 ], [ -58.775846, -34.62302 ], [ -58.7764, -34.623987 ], [ -58.776988, -34.624999 ], [ -58.777015, -34.625041 ], [ -58.777617, -34.626091 ], [ -58.777887, -34.626482 ], [ -58.778247, -34.626953 ], [ -58.778913, -34.627766 ], [ -58.779631, -34.628627 ], [ -58.779896, -34.628984 ], [ -58.780242, -34.629421 ], [ -58.780265, -34.629536 ], [ -58.780857, -34.630299 ], [ -58.781389, -34.630946 ], [ -58.781609, -34.631207 ], [ -58.782088, -34.631843 ], [ -58.782563, -34.632437 ], [ -58.782567, -34.632437 ], [ -58.782996, -34.632981 ], [ -58.783057, -34.633057 ], [ -58.783677, -34.633667 ], [ -58.783889, -34.633858 ], [ -58.783905, -34.633874 ], [ -58.784261999999899, -34.634226 ], [ -58.784296, -34.634257 ], [ -58.784958, -34.63482 ], [ -58.785301, -34.635092 ], [ -58.785514, -34.635107 ], [ -58.78577, -34.635248 ], [ -58.785871, -34.635816 ], [ -58.785923, -34.636085 ], [ -58.786627, -34.637851 ], [ -58.786956, -34.638676 ], [ -58.787399, -34.639792 ], [ -58.787849, -34.640919 ], [ -58.788291, -34.64203 ], [ -58.788741, -34.64315 ], [ -58.789211, -34.644342 ], [ -58.789676, -34.645511 ], [ -58.79013, -34.646642 ], [ -58.790572, -34.647758 ], [ -58.791016, -34.648866 ], [ -58.792384, -34.648495 ], [ -58.793694, -34.648133 ], [ -58.795096, -34.647747 ], [ -58.796527, -34.64735 ], [ -58.796081999999899, -34.646238 ], [ -58.795633, -34.645122 ], [ -58.795179, -34.644011 ], [ -58.794730999999899, -34.64289 ], [ -58.794485, -34.64227 ], [ -58.794221, -34.641618 ], [ -58.793752, -34.640441 ], [ -58.793328, -34.639391 ], [ -58.792867, -34.638248 ], [ -58.792419, -34.637148 ], [ -58.792042, -34.636205 ], [ -58.791969, -34.636024 ], [ -58.791554, -34.634959 ], [ -58.791504, -34.634763 ], [ -58.791047, -34.633774 ], [ -58.791031, -34.633529 ], [ -58.791234, -34.633539 ], [ -58.791295, -34.633562 ], [ -58.791375, -34.633609 ], [ -58.791451, -34.633674 ], [ -58.79152, -34.633727 ], [ -58.791588, -34.633766 ], [ -58.791672, -34.633781 ], [ -58.791733, -34.633781 ], [ -58.791836, -34.633777 ], [ -58.792042, -34.633762 ], [ -58.792168, -34.633746 ], [ -58.792344, -34.633726 ], [ -58.79237, -34.633715 ], [ -58.79258, -34.633673 ], [ -58.792859, -34.633561 ], [ -58.796849, -34.631413 ], [ -58.799837, -34.629803 ], [ -58.808034, -34.627503 ], [ -58.811531, -34.626518 ], [ -58.837658, -34.6196 ], [ -58.838453, -34.619396 ], [ -58.841769, -34.61854 ], [ -58.841897, -34.618506 ], [ -58.848872, -34.61663 ], [ -58.867275, -34.611014 ], [ -58.871068, -34.609886 ], [ -58.876312, -34.608514 ], [ -58.887762, -34.605568 ], [ -58.896399, -34.603312 ], [ -58.900032, -34.602453 ], [ -58.901161, -34.602248 ], [ -58.901799, -34.601729 ], [ -58.901995, -34.601458 ], [ -58.902199, -34.601007 ], [ -58.902343, -34.600473 ], [ -58.902394, -34.600263 ], [ -58.902406, -34.600092 ], [ -58.903251, -34.60044 ], [ -58.904092, -34.600774 ], [ -58.904755, -34.601013 ], [ -58.905422, -34.601225 ], [ -58.906017, -34.601392 ], [ -58.907706, -34.601106 ], [ -58.913534, -34.600098 ], [ -58.918338, -34.599387 ], [ -58.922504, -34.598759 ], [ -58.924046, -34.598541 ], [ -58.926476, -34.598128 ], [ -58.929564, -34.597468 ], [ -58.932878, -34.596748 ], [ -58.934593, -34.596391 ], [ -58.934651, -34.59638 ], [ -58.93758, -34.595622 ], [ -58.937615, -34.595611 ], [ -58.944144, -34.594262 ], [ -58.946423, -34.593697 ], [ -58.94656, -34.593664 ], [ -58.949548, -34.593085 ], [ -58.954906, -34.591888 ], [ -58.95908, -34.590749 ], [ -58.96933, -34.588578 ], [ -58.970622, -34.588315 ], [ -58.97117, -34.588185 ], [ -58.973683, -34.587599 ], [ -58.993555999999899, -34.583356 ], [ -58.995104, -34.582589 ], [ -58.998876, -34.581872 ], [ -59.006567, -34.580411 ], [ -59.00714, -34.580023 ], [ -59.007604, -34.579662 ], [ -59.008106, -34.579598 ], [ -59.008762, -34.579682 ], [ -59.009353, -34.579705 ], [ -59.013736, -34.578826 ], [ -59.017, -34.578326 ], [ -59.017058, -34.578349 ], [ -59.01712, -34.578372 ], [ -59.017182, -34.578395 ], [ -59.017243, -34.57841 ], [ -59.017306, -34.578425 ], [ -59.017368, -34.57844 ], [ -59.01743, -34.578448 ], [ -59.017495, -34.578459 ], [ -59.017557, -34.578463 ], [ -59.017624, -34.578471 ], [ -59.017686, -34.578475 ], [ -59.017752, -34.578475 ], [ -59.017818, -34.578478 ], [ -59.01788, -34.578478 ], [ -59.018008, -34.578478 ], [ -59.021315999999899, -34.577889 ], [ -59.026451, -34.576734 ], [ -59.036516, -34.574641 ], [ -59.036867, -34.574217 ], [ -59.037401, -34.573565 ], [ -59.037695, -34.573097 ], [ -59.037864, -34.572709 ], [ -59.038022, -34.572282 ], [ -59.038129, -34.571567 ], [ -59.038155, -34.571666 ], [ -59.038174, -34.571728 ], [ -59.038188, -34.571789 ], [ -59.038207, -34.571849 ], [ -59.038222, -34.57191 ], [ -59.03824, -34.571971 ], [ -59.038259, -34.572032 ], [ -59.038277, -34.572093 ], [ -59.038296, -34.57215 ], [ -59.038318, -34.572211 ], [ -59.038345, -34.572267 ], [ -59.038371, -34.572324 ], [ -59.038401, -34.572378 ], [ -59.038435, -34.572435 ], [ -59.038473, -34.572485 ], [ -59.038508, -34.572538 ], [ -59.03855, -34.572588 ], [ -59.038588, -34.572632 ], [ -59.03863, -34.572682 ], [ -59.038672, -34.572728 ], [ -59.038714, -34.572777 ], [ -59.03876, -34.572823 ], [ -59.038798, -34.572873 ], [ -59.03884, -34.572919 ], [ -59.038882, -34.572968 ], [ -59.038924, -34.573017 ], [ -59.038966, -34.573062 ], [ -59.039006, -34.573112 ], [ -59.039046, -34.573157 ], [ -59.039089, -34.573203 ], [ -59.039129, -34.573247 ], [ -59.039172, -34.573288 ], [ -59.039219, -34.57333 ], [ -59.039263, -34.573371 ], [ -59.039311, -34.573413 ], [ -59.039357, -34.57345 ], [ -59.039405, -34.573488 ], [ -59.039456, -34.573526 ], [ -59.039508, -34.573563 ], [ -59.039559, -34.573597 ], [ -59.039611, -34.573631 ], [ -59.039663, -34.573661 ], [ -59.039718, -34.573687 ], [ -59.039774, -34.573713 ], [ -59.039831, -34.573735 ], [ -59.039891, -34.573754 ], [ -59.039951, -34.573772 ], [ -59.040011, -34.573788 ], [ -59.040071, -34.573803 ], [ -59.040131, -34.573821 ], [ -59.040195, -34.573836 ], [ -59.040251, -34.573854 ], [ -59.058278, -34.569997 ], [ -59.058781, -34.569587 ], [ -59.059193, -34.56925 ], [ -59.059882, -34.568844 ], [ -59.060786, -34.56855 ], [ -59.061862, -34.568471 ], [ -59.062713, -34.568543 ], [ -59.063402, -34.56876 ], [ -59.064637, -34.569197 ], [ -59.06592, -34.569789 ], [ -59.067187, -34.570339 ], [ -59.071883, -34.572192 ], [ -59.072155, -34.571825 ], [ -59.073751, -34.572437 ], [ -59.075382, -34.573124 ], [ -59.075038, -34.573596 ], [ -59.077118, -34.574523 ], [ -59.079022, -34.575365 ], [ -59.080482, -34.576006 ], [ -59.082149, -34.576861 ], [ -59.082536, -34.577195 ], [ -59.083001, -34.577312 ], [ -59.083161, -34.577303 ], [ -59.083523, -34.577357 ], [ -59.084875, -34.577578 ], [ -59.085166999999899, -34.577501 ], [ -59.085519, -34.577406 ], [ -59.086024, -34.577283 ], [ -59.087231, -34.576996 ], [ -59.089024, -34.576589 ], [ -59.08975, -34.575722 ], [ -59.090472, -34.574795 ], [ -59.091122, -34.573942 ], [ -59.091466, -34.573453 ], [ -59.092494, -34.572034 ], [ -59.09391, -34.571649 ], [ -59.095254, -34.571235 ], [ -59.096166, -34.570966 ], [ -59.097059, -34.570703 ], [ -59.097837, -34.570487 ], [ -59.098429, -34.570304 ], [ -59.099907, -34.569866 ], [ -59.101154, -34.569491 ], [ -59.102545, -34.569076 ], [ -59.103904, -34.56867 ], [ -59.105221, -34.568294 ], [ -59.106563, -34.567907 ], [ -59.107968, -34.567502 ], [ -59.109379, -34.567107 ], [ -59.110678, -34.566738 ], [ -59.110221, -34.565819 ], [ -59.109517, -34.56439 ], [ -59.108938, -34.563237 ], [ -59.108336, -34.562123 ], [ -59.107684, -34.560926 ], [ -59.108004, -34.560806 ], [ -59.109113, -34.560357 ], [ -59.109176, -34.560342 ], [ -59.109606, -34.560171 ], [ -59.110523, -34.559807 ], [ -59.110877, -34.559664 ], [ -59.112159, -34.55917 ], [ -59.112411, -34.558998 ], [ -59.11337, -34.55834 ], [ -59.113662, -34.558138 ], [ -59.11575, -34.556486 ], [ -59.116337, -34.555996 ], [ -59.116944, -34.555498 ], [ -59.117247, -34.555335 ], [ -59.117282, -34.555368 ], [ -59.117321, -34.555399 ], [ -59.117362, -34.555425 ], [ -59.117406, -34.555449 ], [ -59.117451, -34.555469 ], [ -59.117498, -34.555485 ], [ -59.117548, -34.555498 ], [ -59.117599, -34.555507 ], [ -59.117652, -34.555514 ], [ -59.117708, -34.555515 ], [ -59.117766, -34.555514 ], [ -59.117825, -34.555508 ], [ -59.117886, -34.5555 ], [ -59.11795, -34.555487 ], [ -59.118015, -34.555474 ], [ -59.118656, -34.5571 ], [ -59.11909, -34.558199 ], [ -59.119551, -34.559333 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 259.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.385918000015636, -34.586612999590216 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.383879999562282, -34.587685999609164 ], [ -58.382827999612459, -34.588287000344735 ], [ -58.381906000261665, -34.588779999697181 ], [ -58.380918999712037, -34.589317000179392 ], [ -58.379437999763866, -34.590110999922672 ], [ -58.378944000365266, -34.590390000198283 ], [ -58.377872000392472, -34.59109799957298 ], [ -58.376690999889718, -34.591870000100357 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373516000063319, -34.593780000046934 ], [ -58.373193999603359, -34.594059000322545 ], [ -58.372872000042719, -34.594424000067534 ], [ -58.372722000320039, -34.594745999628117 ], [ -58.372334999560564, -34.595561000339842 ], [ -58.372099000368507, -34.596140000060927 ], [ -58.371755999839479, -34.596912999735082 ], [ -58.371670000370159, -34.597063000357139 ], [ -58.371177000118394, -34.59807200012267 ], [ -58.371027000395713, -34.598329000283115 ], [ -58.370661999751462, -34.599465999656104 ], [ -58.370383000375114, -34.600668000227984 ], [ -58.370210999637891, -34.601912000038737 ], [ -58.370104000099502, -34.60296399998856 ], [ -58.369932000261542, -34.604250999983606 ], [ -58.369845999892959, -34.605302999933429 ], [ -58.369739000354514, -34.606419000136725 ], [ -58.369609999801582, -34.606568999859405 ], [ -58.369553999917116, -34.606624999743872 ], [ -58.369460000078902, -34.606718999582142 ], [ -58.368944999711914, -34.606848000135074 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368300999691314, -34.606891000319365 ], [ -58.368044000430245, -34.607127000410685 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.369340999987116, -34.609492999802058 ], [ -58.369352999641194, -34.60952999970965 ], [ -58.369331000425291, -34.609916000423027 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.369180999803234, -34.612297999652924 ], [ -58.369117000449194, -34.613584999647969 ], [ -58.368944999711914, -34.614766000150723 ], [ -58.368859000242651, -34.61579599998538 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.368687999551526, -34.617834000438734 ], [ -58.368602000082205, -34.618284999652985 ], [ -58.368494999644497, -34.619400999856225 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.369739000354514, -34.625280000271744 ], [ -58.371068999634588, -34.625343999625841 ], [ -58.372635999951399, -34.625452000109647 ], [ -58.373945000061667, -34.625537000432189 ], [ -58.375061000264907, -34.625645000016675 ], [ -58.376218999707021, -34.626266999922052 ], [ -58.377249000440997, -34.626824999574012 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.380875000380911, -34.627764999754902 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.392312999944977, -34.626438999760012 ], [ -58.393299999595285, -34.626567000266789 ], [ -58.394436999867594, -34.626652999736109 ], [ -58.395530999955668, -34.626760000173817 ], [ -58.397076000157256, -34.626910999942652 ], [ -58.398750000012456, -34.627147000033972 ], [ -58.400102000307015, -34.627296999756709 ], [ -58.401325000048701, -34.627447000378709 ], [ -58.401582000209089, -34.626416999644789 ], [ -58.401840000415632, -34.625193999903104 ], [ -58.402161999976272, -34.623756000139224 ], [ -58.402483000390134, -34.622425999959887 ], [ -58.402804999950774, -34.621138999964842 ], [ -58.403191999810929, -34.619829999854574 ], [ -58.403535000339957, -34.618843000204265 ], [ -58.404136000176209, -34.617039999796134 ], [ -58.404565000174557, -34.615817000054449 ], [ -58.404907999804323, -34.614636999597792 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405959999754145, -34.610560000443627 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.40347100008654, -34.597556999755682 ], [ -58.40314899962658, -34.596570000105373 ], [ -58.402891000319357, -34.595818999647065 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.401860999585438, -34.593351000048585 ], [ -58.401495999840506, -34.592535000190082 ], [ -58.401066999842101, -34.591590999824746 ], [ -58.400380999683364, -34.590197000291312 ], [ -58.399929999569792, -34.589187999626461 ], [ -58.399844000100472, -34.589102000157141 ], [ -58.398750000012456, -34.588372999814055 ], [ -58.398019999623216, -34.587879000415512 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.396196000045336, -34.58691399998105 ], [ -58.394973000303708, -34.586334000213867 ], [ -58.393643000124314, -34.585690000193324 ], [ -58.393493000401634, -34.585625999939907 ], [ -58.392312999944977, -34.585025000103656 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390142999699663, -34.584115000406882 ], [ -58.389075999957413, -34.584616000128278 ], [ -58.389201000325841, -34.584811000127502 ], [ -58.388685999958909, -34.58509000040317 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.385918000015636, -34.586612999590216 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 257.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.380232000406465, -34.626353000290692 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.391905000015697, -34.629550000232257 ], [ -58.394629999774622, -34.630043999630857 ], [ -58.39626100034485, -34.630343999975594 ], [ -58.397741000246924, -34.630623000251205 ], [ -58.398192000360496, -34.629485999978897 ], [ -58.398600000289719, -34.628390999844726 ], [ -58.398750000012456, -34.627147000033972 ], [ -58.398920999804261, -34.625987999646441 ], [ -58.399092999642164, -34.624636000251144 ], [ -58.399286000448512, -34.623392000440447 ], [ -58.399586999940027, -34.622061000214956 ], [ -58.400616999774684, -34.622210999937636 ], [ -58.401368000232992, -34.622297000306276 ], [ -58.401490999609905, -34.622311000052548 ], [ -58.401894000207903, -34.622358000421343 ], [ -58.402483000390134, -34.622425999959887 ], [ -58.404306999968014, -34.622726000304624 ], [ -58.404395000428906, -34.622081000237927 ], [ -58.404478999805974, -34.621460000378647 ], [ -58.404637999943702, -34.620834000288824 ], [ -58.404801000265934, -34.620193999553408 ], [ -58.404866999712226, -34.619899000338535 ], [ -58.405037000357254, -34.619142999649682 ], [ -58.405466000355602, -34.617425999610134 ], [ -58.405808999985311, -34.616075000260992 ], [ -58.406195999845465, -34.614787000219849 ], [ -58.404907999804323, -34.614636999597792 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405980999823271, -34.609812000123668 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406135999776552, -34.607289999833597 ], [ -58.406065000099659, -34.606907000157889 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.40347100008654, -34.597556999755682 ], [ -58.40314899962658, -34.596570000105373 ], [ -58.402891000319357, -34.595818999647065 ], [ -58.402610999997592, -34.595139999811124 ], [ -58.40249299995196, -34.594853000065882 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.401860999585438, -34.593351000048585 ], [ -58.401495999840506, -34.592535000190082 ], [ -58.401066999842101, -34.591590999824746 ], [ -58.400380999683364, -34.590197000291312 ], [ -58.399929999569792, -34.589187999626461 ], [ -58.399844000100472, -34.589102000157141 ], [ -58.398750000012456, -34.588372999814055 ], [ -58.398019999623216, -34.587879000415512 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.396196000045336, -34.58691399998105 ], [ -58.394973000303708, -34.586334000213867 ], [ -58.393493000401634, -34.585625999939907 ], [ -58.392312999944977, -34.585025000103656 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.391024999903777, -34.584960999850239 ], [ -58.39016699990708, -34.585047000218822 ], [ -58.389781000093024, -34.584981999919307 ], [ -58.389488000071083, -34.585024000057501 ], [ -58.388729000143201, -34.585304000379267 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.387608999755514, -34.585735999616645 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.385918000015636, -34.586612999590216 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.383879999562282, -34.587685999609164 ], [ -58.382827999612459, -34.588287000344735 ], [ -58.381906000261665, -34.588779999697181 ], [ -58.38147300007887, -34.589014999742403 ], [ -58.380937999688911, -34.589305999672092 ], [ -58.379437999763866, -34.590110999922672 ], [ -58.378944000365266, -34.590390000198283 ], [ -58.377872000392472, -34.59109799957298 ], [ -58.376690999889718, -34.591870000100357 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373369999625766, -34.594339999791089 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370233999799211, -34.606422000275074 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.369929000123193, -34.606840999812221 ], [ -58.369889000077251, -34.606891000319365 ], [ -58.369760999570417, -34.606997999857754 ], [ -58.369301999987272, -34.60717700001851 ], [ -58.369267000171874, -34.607190999764782 ], [ -58.368634999805352, -34.607317000179364 ], [ -58.368387000059954, -34.607405999787034 ], [ -58.368129999899509, -34.607556000409033 ], [ -58.368046999669275, -34.607662999947422 ], [ -58.367980000176829, -34.607749000316062 ], [ -58.367891999715994, -34.608084999622974 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367951999784907, -34.608679000035806 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368930999965642, -34.609195000448892 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.369267000171874, -34.609230000264233 ], [ -58.369416999894611, -34.609251000333359 ], [ -58.369609999801582, -34.60937999998697 ], [ -58.369609999801582, -34.60993799963893 ], [ -58.369566999617291, -34.611139000164655 ], [ -58.369566999617291, -34.612297999652924 ], [ -58.369503000263194, -34.613606999763192 ], [ -58.369460000078902, -34.614787000219849 ], [ -58.369439000009777, -34.615817000054449 ], [ -58.369439000009777, -34.616547000443688 ], [ -58.369439000009777, -34.617039999796134 ], [ -58.369416999894611, -34.617447999725357 ], [ -58.369566999617291, -34.617770000185317 ], [ -58.369310000356165, -34.618392000090694 ], [ -58.369008999965331, -34.619206999903099 ], [ -58.368602000082205, -34.620173000383602 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.369739000354514, -34.624142999999435 ], [ -58.371198000187519, -34.624228000321921 ], [ -58.37267900013569, -34.624292999722115 ], [ -58.374009000315084, -34.624422000275047 ], [ -58.375490000263255, -34.624549999882561 ], [ -58.376756000189232, -34.625108000433841 ], [ -58.378, -34.625645000016675 ], [ -58.378965999581169, -34.626051999899857 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 256.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.194575101961092, -34.838696267645084 ], [ -58.190325969789484, -34.840591644145555 ], [ -58.190043079196535, -34.840795394521415 ], [ -58.189910293816176, -34.840984929301982 ], [ -58.189858334319503, -34.841072588990393 ], [ -58.189734208855242, -34.841259753958575 ], [ -58.189543690700823, -34.841404273452973 ], [ -58.189309872965836, -34.84148482519219 ], [ -58.189107808256573, -34.841496671029525 ], [ -58.188871103882903, -34.841432703487584 ], [ -58.188579553373842, -34.841219477988702 ], [ -58.188478521019221, -34.841101019139543 ], [ -58.188210063619799, -34.840975452573304 ], [ -58.187826140672229, -34.840935176464313 ], [ -58.18839192185812, -34.840714842107516 ], [ -58.188542027070696, -34.840411585254081 ], [ -58.188524707238479, -34.840179403470515 ], [ -58.188443881354786, -34.840011189728408 ], [ -58.188371715387191, -34.839800329763349 ], [ -58.18578240047011, -34.834346213568978 ], [ -58.189462864817095, -34.83314967146147 ], [ -58.18904718884378, -34.832242183377026 ], [ -58.185320538277544, -34.833448216268842 ], [ -58.182947721263233, -34.828387024594484 ], [ -58.182087502929562, -34.827586114633071 ], [ -58.181440895859993, -34.827164330516354 ], [ -58.172815619413818, -34.832490973533709 ], [ -58.169039895989592, -34.834850888491424 ], [ -58.156500337461466, -34.842631494343017 ], [ -58.156275179642599, -34.843363553689791 ], [ -58.156179920565386, -34.843695228920382 ], [ -58.156052908462428, -34.843922662591723 ], [ -58.155954762746504, -34.844090868340182 ], [ -58.155836410559665, -34.844211691975524 ], [ -58.155674758792259, -34.844358575371743 ], [ -58.155469807444319, -34.844446231467181 ], [ -58.155227329793206, -34.844491244020439 ], [ -58.154889593064901, -34.844569423659713 ], [ -58.15451721667214, -34.844600221679038 ], [ -58.15423143944048, -34.844635757840855 ], [ -58.154012054899027, -34.844680770290466 ], [ -58.153795556996265, -34.844725782715457 ], [ -58.153495346571098, -34.844792116770563 ], [ -58.153111423623528, -34.844912939376421 ], [ -58.152967091688353, -34.844972166079216 ], [ -58.152710180843727, -34.84507403590834 ], [ -58.152424403612073, -34.845244608363103 ], [ -58.148105992111603, -34.847869484335796 ], [ -58.144803677434759, -34.849584610772617 ], [ -58.14334881152817, -34.850228958428026 ], [ -58.141016407455716, -34.851214421553024 ], [ -58.139434529446184, -34.851906133812129 ], [ -58.111561146124835, -34.8635885594936 ], [ -58.096365879989449, -34.869727563339936 ], [ -58.072683896065655, -34.877296475702394 ], [ -58.057303885053216, -34.880782298571525 ], [ -58.047893442879712, -34.86781391068854 ], [ -58.048216746414525, -34.867482332682528 ], [ -58.048101280866376, -34.866866541409884 ], [ -58.047697151447892, -34.866639171158951 ], [ -58.04728147547457, -34.866639171158951 ], [ -58.046900439165697, -34.866885488902412 ], [ -58.046681054624237, -34.86717917447843 ], [ -58.042304910349685, -34.866032847416307 ], [ -58.029661432828199, -34.871953786369914 ], [ -58.026035814616563, -34.873507370134341 ], [ -58.010586524275247, -34.880270801209541 ], [ -58.007076371611753, -34.882165219945648 ], [ -58.003843336263785, -34.884968879538881 ], [ -57.994051857781407, -34.891863959727239 ], [ -57.992931841964428, -34.894411583339824 ], [ -57.992620084984452, -34.895500692003715 ], [ -57.992319874559286, -34.896125739150143 ], [ -57.992019664134112, -34.896703430010767 ], [ -57.99221595556596, -34.897243235831574 ], [ -57.992019664134112, -34.897726216980033 ], [ -57.991696360599327, -34.897915620576768 ], [ -57.990668717220856, -34.897835124101512 ], [ -57.989872004938682, -34.897139063054667 ], [ -57.989317770307608, -34.897063300952134 ], [ -57.98884436156024, -34.897167473825114 ], [ -57.988047649278059, -34.897356878710234 ], [ -57.987441455150311, -34.897470521431664 ], [ -57.986459997991112, -34.897915620576754 ], [ -57.985767204702263, -34.898479093694576 ], [ -57.985184103684141, -34.898909982294121 ], [ -57.984670281994923, -34.899198818441484 ], [ -57.984196873247541, -34.899279313580266 ], [ -57.983654185171282, -34.89879160653043 ], [ -57.983319335081674, -34.898531179249801 ], [ -57.983302015249443, -34.898427008106346 ], [ -57.983261602307607, -34.897977176651644 ], [ -57.98304221776614, -34.897830389012292 ], [ -57.982770873728008, -34.897868269718522 ], [ -57.982707367676518, -34.897948766161264 ], [ -57.982528396076908, -34.898270751143428 ], [ -57.980230631668881, -34.89879160653043 ], [ -57.970658537727957, -34.901073861189651 ], [ -57.969451922749876, -34.900176592286286 ], [ -57.969293157621188, -34.900105567943854 ], [ -57.969062226524905, -34.900181327240247 ], [ -57.968952534254178, -34.900276026262482 ], [ -57.968877481647887, -34.900439381819218 ], [ -57.968848615260839, -34.90060747198045 ], [ -57.968828408789918, -34.900687965738669 ], [ -57.968736036351409, -34.900751887196336 ], [ -57.965679085964382, -34.90304118956702 ], [ -57.964137620896693, -34.904163326884103 ], [ -57.962728941209349, -34.90523810225833 ], [ -57.962919459363796, -34.9055127122122 ], [ -57.962890592976748, -34.905877279180352 ], [ -57.962567289441971, -34.906076133208032 ], [ -57.962243985907151, -34.906312863565475 ], [ -57.96199573497865, -34.906450166860061 ], [ -57.961545419340901, -34.90611874472274 ], [ -57.960685201007259, -34.906734241913085 ], [ -57.95603771269456, -34.910214081551523 ], [ -57.956158951520088, -34.910654377280153 ], [ -57.956089672191212, -34.91097631244746 ], [ -57.955847194540127, -34.9112935120394 ], [ -57.955575850501994, -34.911487618647918 ], [ -57.955142854696462, -34.911530227354206 ], [ -57.954698312336113, -34.911355058086905 ], [ -57.954565526955754, -34.911321917913213 ], [ -57.951072694124477, -34.913864203814882 ], [ -57.949929585197886, -34.914706880836839 ], [ -57.946823561952868, -34.91685614148718 ], [ -57.948197601975764, -34.917802934489998 ], [ -57.949386897121627, -34.918886999066473 ], [ -57.951231459253179, -34.920513069083839 ], [ -57.951990645232186, -34.921275204349385 ], [ -57.952279309102536, -34.921419583214089 ], [ -57.949724633849904, -34.92326808361063 ], [ -57.942092361117759, -34.928924567500637 ], [ -57.944240020313188, -34.930914894394185 ], [ -57.939656038051965, -34.934270651321192 ], [ -57.937473739192107, -34.932301704802647 ], [ -57.934165651237869, -34.934862272651685 ], [ -57.942473397426596, -34.942420451245496 ], [ -57.945481274955682, -34.945117941804284 ], [ -57.943766611565785, -34.946452456953111 ], [ -57.950001751165424, -34.952045826672837 ], [ -57.951803013716422, -34.953735119646439 ], [ -57.952057037922337, -34.953763510827521 ], [ -57.952184050025295, -34.953877075453498 ], [ -57.952088790948082, -34.954002469545216 ], [ -57.948722970219727, -34.95649138427634 ], [ -57.951471050265511, -34.958980223427119 ], [ -57.950408767222605, -34.959850826122469 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 255.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.395671, -34.74411 ], [ -58.395557, -34.742927 ], [ -58.396024, -34.742849 ], [ -58.397422, -34.742677 ], [ -58.39882, -34.742539 ], [ -58.398923, -34.742525 ], [ -58.399123, -34.743656 ], [ -58.399369, -34.744872 ], [ -58.399649, -34.746221 ], [ -58.399868, -34.747401 ], [ -58.400098, -34.74854 ], [ -58.400337, -34.749731 ], [ -58.401796, -34.749491 ], [ -58.403195, -34.749293 ], [ -58.404704, -34.749074 ], [ -58.406137, -34.748844 ], [ -58.406862, -34.748735 ], [ -58.407593, -34.748633 ], [ -58.408963, -34.748453 ], [ -58.410373, -34.74824 ], [ -58.41174, -34.748048 ], [ -58.412577, -34.74792 ], [ -58.413415, -34.747814 ], [ -58.41405, -34.747728 ], [ -58.414784, -34.747625 ], [ -58.41622, -34.7474 ], [ -58.417649, -34.747196 ], [ -58.419113, -34.747013 ], [ -58.420527, -34.74681 ], [ -58.421895, -34.746606 ], [ -58.42273, -34.746487 ], [ -58.423357, -34.746386 ], [ -58.423994, -34.7463 ], [ -58.424503, -34.746234 ], [ -58.425206, -34.746125 ], [ -58.425923, -34.746061 ], [ -58.426592, -34.745962 ], [ -58.428035, -34.74575 ], [ -58.428561, -34.745677 ], [ -58.428875, -34.745634 ], [ -58.429773, -34.7455 ], [ -58.429921, -34.745472 ], [ -58.430171, -34.745433 ], [ -58.430534, -34.74539 ], [ -58.43139, -34.745254 ], [ -58.432236, -34.745141 ], [ -58.432349, -34.745008 ], [ -58.432781, -34.744497 ], [ -58.433187, -34.74474 ], [ -58.434013, -34.745215 ], [ -58.434525, -34.745511 ], [ -58.435377, -34.746002 ], [ -58.436094, -34.746432 ], [ -58.436523, -34.746677 ], [ -58.437161, -34.747048 ], [ -58.437628, -34.747313 ], [ -58.438255, -34.747701 ], [ -58.438701, -34.747947 ], [ -58.439456, -34.748352 ], [ -58.439898, -34.748619 ], [ -58.440489, -34.748984 ], [ -58.441223, -34.749399 ], [ -58.441986, -34.749882 ], [ -58.442858, -34.750372 ], [ -58.443222, -34.750723 ], [ -58.443695, -34.751165 ], [ -58.444028, -34.751526 ], [ -58.444349, -34.751874 ], [ -58.444837, -34.752389 ], [ -58.445054, -34.752597 ], [ -58.445594, -34.752843 ], [ -58.446319, -34.753202 ], [ -58.447163, -34.752126 ], [ -58.448042, -34.751008 ], [ -58.44832, -34.750623 ], [ -58.44885, -34.749923 ], [ -58.449756, -34.748838 ], [ -58.450466, -34.749201 ], [ -58.451271, -34.749628 ], [ -58.452102, -34.750086 ], [ -58.453201, -34.750635 ], [ -58.454378, -34.75123 ], [ -58.455508, -34.751827 ], [ -58.454655, -34.752915 ], [ -58.453823, -34.754019 ], [ -58.452999, -34.755115 ], [ -58.452164, -34.756235 ], [ -58.451331, -34.757336 ], [ -58.450503, -34.758438 ], [ -58.44969, -34.759567 ], [ -58.448864, -34.760664 ], [ -58.448025, -34.761777 ], [ -58.447192, -34.762881 ], [ -58.446373, -34.763976 ], [ -58.445545, -34.765093 ], [ -58.444671, -34.76621 ], [ -58.443834, -34.767304 ], [ -58.442978, -34.76843 ], [ -58.442177999999899, -34.769544 ], [ -58.441914, -34.769871 ], [ -58.441756, -34.770087 ], [ -58.442052, -34.770236 ], [ -58.442896, -34.770691 ], [ -58.443663999999899, -34.771102 ], [ -58.444041, -34.771308 ], [ -58.446302, -34.77245 ], [ -58.448388, -34.773532 ], [ -58.452827, -34.775831 ], [ -58.454975, -34.776952 ], [ -58.457252, -34.77818 ], [ -58.457598, -34.778345 ], [ -58.457777, -34.778425 ], [ -58.457868, -34.778457 ], [ -58.457969, -34.778465 ], [ -58.458106, -34.778465 ], [ -58.45821, -34.778442 ], [ -58.458357, -34.778393 ], [ -58.458493, -34.778305 ], [ -58.458573, -34.778187 ], [ -58.45902, -34.777542 ], [ -58.459299, -34.777183 ], [ -58.459547, -34.776894 ], [ -58.45969, -34.776834 ], [ -58.459865, -34.776805 ], [ -58.45998, -34.776834 ], [ -58.460116, -34.776905 ], [ -58.460207, -34.776971 ], [ -58.460315, -34.777066 ], [ -58.460368, -34.777169 ], [ -58.460371, -34.777269 ], [ -58.460326, -34.777433 ], [ -58.459802, -34.778115 ], [ -58.458987, -34.779186 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 254.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.83953, -34.491516 ], [ -58.840076, -34.491335 ], [ -58.841309, -34.490915 ], [ -58.842617, -34.490463 ], [ -58.842416, -34.489979 ], [ -58.84193, -34.488586 ], [ -58.841853, -34.488104 ], [ -58.841854, -34.487752 ], [ -58.842085, -34.487334 ], [ -58.842164, -34.487233 ], [ -58.842493, -34.486807 ], [ -58.842546, -34.486732 ], [ -58.842833, -34.48636 ], [ -58.843086, -34.486033 ], [ -58.843512, -34.485478 ], [ -58.843962, -34.484884 ], [ -58.844117, -34.484675 ], [ -58.844336, -34.484392 ], [ -58.844388, -34.484322 ], [ -58.844555, -34.484101 ], [ -58.844751, -34.483848 ], [ -58.845068, -34.483448 ], [ -58.845563, -34.4828 ], [ -58.846197, -34.481961 ], [ -58.846738, -34.481258 ], [ -58.846955, -34.480967 ], [ -58.847615, -34.480104 ], [ -58.848157, -34.479381 ], [ -58.848526, -34.478891 ], [ -58.848582, -34.478825 ], [ -58.848993, -34.478277 ], [ -58.849146, -34.478071 ], [ -58.849404, -34.477732 ], [ -58.849437, -34.477687 ], [ -58.849709, -34.477332 ], [ -58.850165, -34.476719 ], [ -58.85052, -34.476256 ], [ -58.850717, -34.47598 ], [ -58.851083, -34.475498 ], [ -58.851401, -34.475089 ], [ -58.851692, -34.474697 ], [ -58.852028, -34.474266 ], [ -58.852222, -34.474001 ], [ -58.852928, -34.473072 ], [ -58.853155, -34.472761 ], [ -58.853718999999899, -34.472034 ], [ -58.85386, -34.471839 ], [ -58.854249, -34.471311 ], [ -58.854682, -34.47074 ], [ -58.855029, -34.470273 ], [ -58.855496, -34.469655 ], [ -58.855627, -34.469488 ], [ -58.856474, -34.468376 ], [ -58.857329, -34.467237 ], [ -58.858217, -34.46606 ], [ -58.858291, -34.46597 ], [ -58.859248, -34.46471 ], [ -58.859908, -34.463836 ], [ -58.859961, -34.463761 ], [ -58.860472, -34.46307 ], [ -58.860883, -34.462542 ], [ -58.861132, -34.462203 ], [ -58.861771, -34.461364 ], [ -58.862096, -34.460936 ], [ -58.862346, -34.460597 ], [ -58.862562, -34.460306 ], [ -58.863006, -34.459731 ], [ -58.863406, -34.459186 ], [ -58.86357, -34.458976 ], [ -58.863861, -34.458592 ], [ -58.864209, -34.458117 ], [ -58.864275, -34.458036 ], [ -58.86472, -34.457461 ], [ -58.864783, -34.457371 ], [ -58.865176, -34.456842 ], [ -58.865403, -34.456532 ], [ -58.8659, -34.455848 ], [ -58.866433, -34.45511 ], [ -58.866508, -34.455009 ], [ -58.867135, -34.454196 ], [ -58.867677, -34.453481 ], [ -58.868199, -34.452801 ], [ -58.86865, -34.452214 ], [ -58.868934, -34.45184 ], [ -58.869106, -34.451606 ], [ -58.869561, -34.451027 ], [ -58.870028, -34.450421 ], [ -58.870297, -34.450077 ], [ -58.87113, -34.450138 ], [ -58.87147, -34.450159 ], [ -58.872066, -34.450285 ], [ -58.872948, -34.450463 ], [ -58.873438, -34.45056 ], [ -58.873704, -34.450613 ], [ -58.874661, -34.450824 ], [ -58.875863, -34.451104 ], [ -58.877015, -34.451352 ], [ -58.878215, -34.451624 ], [ -58.878918, -34.451775 ], [ -58.879652, -34.451944 ], [ -58.882248, -34.452437 ], [ -58.884227, -34.452795 ], [ -58.885012, -34.45296 ], [ -58.885876, -34.453122 ], [ -58.886977, -34.453343 ], [ -58.887555, -34.453468 ], [ -58.887881, -34.453523 ], [ -58.888851, -34.453732 ], [ -58.889626, -34.453887 ], [ -58.890193, -34.453985 ], [ -58.890889999999899, -34.454129 ], [ -58.890979, -34.454147 ], [ -58.89186, -34.454321 ], [ -58.892144, -34.454387 ], [ -58.892888, -34.45453 ], [ -58.893892, -34.454732 ], [ -58.894012, -34.454758 ], [ -58.894928, -34.454931 ], [ -58.895779, -34.455096 ], [ -58.896248, -34.455196 ], [ -58.896335, -34.455214 ], [ -58.896684, -34.455275 ], [ -58.897229, -34.455386 ], [ -58.897601, -34.455449 ], [ -58.898299, -34.455584 ], [ -58.898518, -34.455621 ], [ -58.900067, -34.455922 ], [ -58.900481, -34.45601 ], [ -58.900534, -34.45601 ], [ -58.90151, -34.456129 ], [ -58.901949, -34.456176 ], [ -58.902275, -34.456216 ], [ -58.902833, -34.456288 ], [ -58.903174, -34.456323 ], [ -58.903951, -34.456425 ], [ -58.904081, -34.456432 ], [ -58.905253, -34.45658 ], [ -58.905691, -34.456627 ], [ -58.906094, -34.456681 ], [ -58.906379, -34.45669 ], [ -58.907927, -34.456764 ], [ -58.908787, -34.456778 ], [ -58.909476, -34.456815 ], [ -58.909814, -34.456813 ], [ -58.910619, -34.456835 ], [ -58.910537, -34.458044 ], [ -58.910503, -34.45859 ], [ -58.910468, -34.4592 ], [ -58.910396, -34.460286 ], [ -58.910349, -34.461483 ], [ -58.910306, -34.462617 ], [ -58.910096, -34.462598 ], [ -58.911032, -34.463088 ], [ -58.910213, -34.464209 ], [ -58.909359, -34.465344 ], [ -58.908621, -34.466345 ], [ -58.907698, -34.467584 ], [ -58.906948, -34.468605 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 252.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.620503749313357, -34.936709467887717 ], [ -58.624931269837255, -34.941776863172642 ], [ -58.630896553899753, -34.94854715096676 ], [ -58.636975364129526, -34.955523849974114 ], [ -58.639534863173644, -34.957587962106466 ], [ -58.644922195839086, -34.960952464882205 ], [ -58.653075438761881, -34.965823769514557 ], [ -58.658091231243496, -34.968692885378523 ], [ -58.661414451776587, -34.971892259183669 ], [ -58.673427584386879, -34.978476776885877 ], [ -58.685564563725116, -34.985205782437347 ], [ -58.686926877732468, -34.988879902032934 ], [ -58.694440245894235, -34.995072238429991 ], [ -58.701458227144229, -35.002420477621172 ], [ -58.717640866261881, -35.016951827032933 ], [ -58.72948886990158, -35.027189823209412 ], [ -58.731759393247167, -35.02923329422044 ], [ -58.732750167070698, -35.030905225047647 ], [ -58.733575811923636, -35.032432668025592 ], [ -58.733906069864815, -35.032721643724116 ], [ -58.734855561445698, -35.033093183907944 ], [ -58.735474795085402, -35.033980752124855 ], [ -58.736300439938347, -35.034744473613827 ], [ -58.741481361390555, -35.038501157694711 ], [ -58.746228819294963, -35.041638608135884 ], [ -58.748086520214081, -35.043744002510884 ], [ -58.748581907125846, -35.044610929606478 ], [ -58.751182688412612, -35.045395292216767 ], [ -58.752586284662613, -35.046592477253533 ], [ -58.761400043467759, -35.054023280930011 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 249.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.79543, -34.350207 ], [ -58.795882, -34.350656 ], [ -58.796536, -34.351329 ], [ -58.797305, -34.35207 ], [ -58.798046, -34.352804 ], [ -58.796759, -34.353635 ], [ -58.795579, -34.35442 ], [ -58.796303, -34.355126 ], [ -58.796482, -34.355299 ], [ -58.796891, -34.355702 ], [ -58.797227, -34.356032 ], [ -58.797383, -34.35619 ], [ -58.79785, -34.356775 ], [ -58.798463, -34.357517 ], [ -58.799127, -34.358379 ], [ -58.798599, -34.358415 ], [ -58.798174, -34.358488 ], [ -58.797631, -34.358605 ], [ -58.797056, -34.358788 ], [ -58.796095, -34.359125 ], [ -58.795363, -34.359418 ], [ -58.794602, -34.359874 ], [ -58.793129, -34.360943 ], [ -58.791542, -34.361855 ], [ -58.790561, -34.362339 ], [ -58.789489, -34.36296 ], [ -58.778312, -34.369002 ], [ -58.775768, -34.370294 ], [ -58.772742, -34.371128 ], [ -58.769317, -34.372181 ], [ -58.764312, -34.373216 ], [ -58.760836, -34.374545 ], [ -58.757203, -34.375498 ], [ -58.754417, -34.376549 ], [ -58.753703, -34.377062 ], [ -58.752945, -34.378202 ], [ -58.752452, -34.378954 ], [ -58.751779, -34.380053 ], [ -58.750944, -34.380619 ], [ -58.750236, -34.381291 ], [ -58.749936, -34.381671 ], [ -58.750789, -34.382259 ], [ -58.751389, -34.382539 ], [ -58.752146, -34.382852 ], [ -58.753145, -34.383295 ], [ -58.753537, -34.383479 ], [ -58.754102, -34.383738 ], [ -58.75457, -34.383954 ], [ -58.755093, -34.384174 ], [ -58.755908, -34.38456 ], [ -58.756096, -34.384637 ], [ -58.756181, -34.384677 ], [ -58.75668, -34.384908 ], [ -58.756846, -34.384985 ], [ -58.756876, -34.385004 ], [ -58.75713, -34.385112 ], [ -58.75753, -34.385304 ], [ -58.758336, -34.385691 ], [ -58.759073, -34.386038 ], [ -58.759553, -34.386303 ], [ -58.760137, -34.386602 ], [ -58.7607, -34.38692 ], [ -58.760961, -34.387052 ], [ -58.762135, -34.387703 ], [ -58.762319, -34.38781 ], [ -58.763044, -34.388219 ], [ -58.763221, -34.388298 ], [ -58.763358, -34.388436 ], [ -58.764402, -34.389651 ], [ -58.764682, -34.390256 ], [ -58.764741, -34.390458 ], [ -58.764829, -34.391157 ], [ -58.764864, -34.391459 ], [ -58.76498, -34.39234 ], [ -58.765014, -34.392588 ], [ -58.765053, -34.392825 ], [ -58.765106, -34.393597 ], [ -58.765112, -34.393697 ], [ -58.765357, -34.394325 ], [ -58.765631, -34.395084 ], [ -58.765654, -34.395138 ], [ -58.765696, -34.395211 ], [ -58.766148, -34.39608 ], [ -58.766517, -34.396819 ], [ -58.766688, -34.397149 ], [ -58.766802, -34.397447 ], [ -58.766893, -34.3977 ], [ -58.76709, -34.398267 ], [ -58.767215, -34.398582 ], [ -58.767238, -34.398665 ], [ -58.767279, -34.398765 ], [ -58.767341, -34.398956 ], [ -58.767733, -34.400206 ], [ -58.768223, -34.40183 ], [ -58.768424, -34.402447 ], [ -58.768773, -34.403601 ], [ -58.768998, -34.404248 ], [ -58.769551, -34.405048 ], [ -58.769702, -34.405265 ], [ -58.770155, -34.405913 ], [ -58.770238, -34.406041 ], [ -58.770617999999899, -34.406584 ], [ -58.770837, -34.406895 ], [ -58.771018, -34.407146 ], [ -58.771195, -34.407393 ], [ -58.77153, -34.407895 ], [ -58.771564, -34.40793 ], [ -58.771719, -34.408206 ], [ -58.771846, -34.408401 ], [ -58.772161, -34.408877 ], [ -58.772611, -34.409577 ], [ -58.772656, -34.409649 ], [ -58.773614, -34.411039 ], [ -58.773734, -34.411764 ], [ -58.773954, -34.412299 ], [ -58.774294, -34.413265 ], [ -58.774347, -34.413399 ], [ -58.774406, -34.413556 ], [ -58.774588, -34.414054 ], [ -58.77471, -34.414395 ], [ -58.775089, -34.415405 ], [ -58.775393, -34.416201 ], [ -58.775568, -34.416665 ], [ -58.775678, -34.417003 ], [ -58.775901, -34.417597 ], [ -58.775975, -34.417773 ], [ -58.776064, -34.418076 ], [ -58.776245, -34.418599 ], [ -58.776308, -34.418783 ], [ -58.776541, -34.419479 ], [ -58.776681, -34.419912 ], [ -58.776966, -34.420755 ], [ -58.777288, -34.421712 ], [ -58.777498, -34.422352 ], [ -58.777911, -34.423355 ], [ -58.778156, -34.424338 ], [ -58.778412, -34.425311 ], [ -58.77851, -34.425704 ], [ -58.778771, -34.426624 ], [ -58.778858, -34.426968 ], [ -58.779217, -34.428314 ], [ -58.779386, -34.428946 ], [ -58.779603, -34.429717 ], [ -58.779903, -34.430857 ], [ -58.779909, -34.430887 ], [ -58.77999, -34.431172 ], [ -58.780228, -34.432058 ], [ -58.780298, -34.43233 ], [ -58.780715, -34.433864 ], [ -58.780892, -34.434519 ], [ -58.780994, -34.434881 ], [ -58.781042, -34.435075 ], [ -58.781361, -34.436246 ], [ -58.781678, -34.437564 ], [ -58.781715, -34.437697 ], [ -58.782174, -34.439591 ], [ -58.782205, -34.43977 ], [ -58.782428, -34.440554 ], [ -58.78259, -34.441001 ], [ -58.782873, -34.441615 ], [ -58.783207, -34.442317 ], [ -58.783926, -34.442801 ], [ -58.784914, -34.443387 ], [ -58.78632, -34.444221 ], [ -58.786384, -34.444256 ], [ -58.787131, -34.444626 ], [ -58.788136, -34.445103 ], [ -58.78897, -34.445492 ], [ -58.789762, -34.445904 ], [ -58.790444, -34.446242 ], [ -58.791151, -34.446586 ], [ -58.79206, -34.447024 ], [ -58.793102, -34.447515 ], [ -58.793055, -34.447574 ], [ -58.794229, -34.448143 ], [ -58.794876, -34.448457 ], [ -58.794931, -34.448487 ], [ -58.79581, -34.448884 ], [ -58.795833, -34.448892 ], [ -58.795906, -34.449007 ], [ -58.796308, -34.449568 ], [ -58.796772, -34.450218 ], [ -58.797355, -34.451026 ], [ -58.79786, -34.451747 ], [ -58.798294, -34.452352 ], [ -58.798456, -34.452573 ], [ -58.798509, -34.452644 ], [ -58.798564, -34.452727 ], [ -58.798618, -34.452805 ], [ -58.798726, -34.452954 ], [ -58.79878, -34.453036 ], [ -58.799394, -34.453889 ], [ -58.799954, -34.454688 ], [ -58.800591, -34.455571 ], [ -58.800808, -34.455881 ], [ -58.800838, -34.455918 ], [ -58.802419, -34.456682 ], [ -58.802652, -34.456802 ], [ -58.803132, -34.457045 ], [ -58.808213, -34.459525 ], [ -58.808717, -34.459769 ], [ -58.810896, -34.459789 ], [ -58.811075, -34.459665 ], [ -58.811837, -34.45927 ], [ -58.813022, -34.458407 ], [ -58.813684, -34.457919 ], [ -58.813843, -34.457807 ], [ -58.814325, -34.457456 ], [ -58.815141, -34.456862 ], [ -58.815805, -34.456605 ], [ -58.817149, -34.45609 ], [ -58.817461, -34.455837 ], [ -58.818424, -34.455078 ], [ -58.81865, -34.454898 ], [ -58.820613, -34.453327 ], [ -58.821337, -34.452753 ], [ -58.821978, -34.452481 ], [ -58.822717, -34.451723 ], [ -58.823364, -34.451593 ], [ -58.823638, -34.4515 ], [ -58.825097, -34.451644 ], [ -58.826666, -34.451899 ], [ -58.827421999999899, -34.451987 ], [ -58.82789, -34.452029 ], [ -58.82823, -34.452074 ], [ -58.828754, -34.452134 ], [ -58.829405, -34.452193 ], [ -58.829475, -34.452211 ], [ -58.830531, -34.45232 ], [ -58.831671, -34.452439 ], [ -58.832501, -34.452533 ], [ -58.832726, -34.452561 ], [ -58.835199, -34.452834 ], [ -58.835764, -34.452895 ], [ -58.837563, -34.453045 ], [ -58.838759, -34.452964 ], [ -58.839261, -34.452918 ], [ -58.839451, -34.4529 ], [ -58.840947, -34.452759 ], [ -58.841642, -34.452722 ], [ -58.842483999999899, -34.452658 ], [ -58.843179, -34.452608 ], [ -58.844301, -34.45252 ], [ -58.844394, -34.452511 ], [ -58.844992, -34.452463 ], [ -58.847203, -34.452265 ], [ -58.847864999999899, -34.452205 ], [ -58.84905, -34.45215 ], [ -58.849252, -34.452144 ], [ -58.850759, -34.452058 ], [ -58.850811, -34.45206 ], [ -58.851036, -34.452037 ], [ -58.852124, -34.451951 ], [ -58.853265, -34.451852 ], [ -58.853373, -34.451834 ], [ -58.853564, -34.451812 ], [ -58.854753, -34.451642 ], [ -58.854955, -34.451624 ], [ -58.85553, -34.451538 ], [ -58.856331, -34.45144 ], [ -58.857142, -34.451334 ], [ -58.857883, -34.451238 ], [ -58.858787, -34.451123 ], [ -58.859079, -34.451088 ], [ -58.859535, -34.451031 ], [ -58.860316, -34.450936 ], [ -58.860724, -34.450881 ], [ -58.862227, -34.450703 ], [ -58.862571, -34.450656 ], [ -58.864182, -34.45045 ], [ -58.865839, -34.450251 ], [ -58.867099, -34.450084 ], [ -58.867451, -34.450045 ], [ -58.867962, -34.449935 ], [ -58.868168, -34.449909 ], [ -58.86951, -34.450008 ], [ -58.870297, -34.450077 ], [ -58.87113, -34.450138 ], [ -58.87147, -34.450159 ], [ -58.872066, -34.450285 ], [ -58.872948, -34.450463 ], [ -58.873438, -34.45056 ], [ -58.873704, -34.450613 ], [ -58.874661, -34.450824 ], [ -58.875863, -34.451104 ], [ -58.877015, -34.451352 ], [ -58.878215, -34.451624 ], [ -58.878918, -34.451775 ], [ -58.879652, -34.451944 ], [ -58.882248, -34.452437 ], [ -58.884227, -34.452795 ], [ -58.885012, -34.45296 ], [ -58.885876, -34.453122 ], [ -58.886977, -34.453343 ], [ -58.887555, -34.453468 ], [ -58.887881, -34.453523 ], [ -58.888851, -34.453732 ], [ -58.889626, -34.453887 ], [ -58.890193, -34.453985 ], [ -58.890889999999899, -34.454129 ], [ -58.890979, -34.454147 ], [ -58.89186, -34.454321 ], [ -58.892144, -34.454387 ], [ -58.892888, -34.45453 ], [ -58.893892, -34.454732 ], [ -58.894012, -34.454758 ], [ -58.894928, -34.454931 ], [ -58.895779, -34.455096 ], [ -58.896248, -34.455196 ], [ -58.896335, -34.455214 ], [ -58.896684, -34.455275 ], [ -58.897229, -34.455386 ], [ -58.897601, -34.455449 ], [ -58.898299, -34.455584 ], [ -58.898518, -34.455621 ], [ -58.900067, -34.455922 ], [ -58.900481, -34.45601 ], [ -58.900534, -34.45601 ], [ -58.90151, -34.456129 ], [ -58.901949, -34.456176 ], [ -58.902275, -34.456216 ], [ -58.902833, -34.456288 ], [ -58.903174, -34.456323 ], [ -58.903951, -34.456425 ], [ -58.904081, -34.456432 ], [ -58.905253, -34.45658 ], [ -58.905691, -34.456627 ], [ -58.906094, -34.456681 ], [ -58.906379, -34.45669 ], [ -58.907927, -34.456764 ], [ -58.908787, -34.456778 ], [ -58.909476, -34.456815 ], [ -58.909814, -34.456813 ], [ -58.910619, -34.456835 ], [ -58.91065, -34.456835 ], [ -58.912121, -34.456882 ], [ -58.912043, -34.458077 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 247.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.092856372866592, -35.183422002217526 ], [ -59.093127856966234, -35.181996710694406 ], [ -59.091363210318562, -35.181996710694406 ], [ -59.091566823393293, -35.177245738950674 ], [ -59.062246540631968, -35.176499157676659 ], [ -59.022202635934789, -35.142495774196512 ], [ -59.020370118262207, -35.1378805445026 ], [ -59.002587909735666, -35.122066595698456 ], [ -58.995597194169882, -35.116161816531246 ], [ -58.974557176447632, -35.109849811214566 ], [ -58.937058435184589, -35.098786834154154 ], [ -58.925656102999625, -35.095393282908624 ], [ -58.900102662120844, -35.114804396033016 ], [ -58.902104857355702, -35.117044139855061 ], [ -58.900849243394859, -35.118605173428001 ], [ -58.897930789323709, -35.116433300630867 ], [ -58.889412975697446, -35.123797306833652 ], [ -58.88208290500711, -35.129125182289123 ], [ -58.881098775145901, -35.12807318140301 ], [ -58.89725207907459, -35.115584912819479 ], [ -58.894740851152903, -35.113345168997434 ], [ -58.896743046387762, -35.111919877474314 ], [ -58.899559693921546, -35.113989943734083 ], [ -58.92389145635196, -35.094850314709326 ], [ -58.878689353761573, -35.080495592940757 ], [ -58.861280435872047, -35.074251458649002 ], [ -58.788929923317482, -35.056062023972991 ], [ -58.777391849082711, -35.0532453764392 ], [ -58.768263196232255, -35.045643821649229 ], [ -58.767889905595247, -35.045915305748871 ], [ -58.769959971855016, -35.047883565471274 ], [ -58.762867449751873, -35.053720473613573 ], [ -58.766736098171769, -35.057147960371559 ], [ -58.762901385264328, -35.060439705079716 ], [ -58.761408222716298, -35.059082284581507 ], [ -58.757709251858678, -35.061797125577925 ], [ -58.753976345488596, -35.057962412670484 ], [ -58.757234154684305, -35.055519055773708 ], [ -58.754994410862253, -35.053686538101118 ], [ -58.758320091082872, -35.05103956812961 ], [ -58.752483182940566, -35.046051047798692 ], [ -58.746985629922818, -35.042589625528251 ], [ -58.735413620175585, -35.033664585752526 ], [ -58.743218788040288, -35.027216838386025 ], [ -58.745322789812512, -35.026605999161831 ], [ -58.745899693524251, -35.025078901101345 ], [ -58.747223178510005, -35.024162642265054 ], [ -58.747494662609647, -35.020769091019531 ], [ -58.748071566321386, -35.019275928471501 ], [ -58.747223178510005, -35.01764702387365 ], [ -58.74803763080893, -35.011572567144164 ], [ -58.74725711402246, -35.005294497339939 ], [ -58.748105501833841, -34.991957840945034 ], [ -58.741522012417526, -34.977942474301017 ], [ -58.736516524330384, -34.967710917295769 ], [ -58.730102712476338, -34.954374260900856 ], [ -58.726098322006621, -34.944532962288839 ], [ -58.722552060955053, -34.935811535587845 ], [ -58.721652769874986, -34.926937399080799 ], [ -58.721873350705948, -34.918063262573753 ], [ -58.720515930207739, -34.91616287387626 ], [ -58.698322105062012, -34.904964154766034 ], [ -58.683933447780994, -34.888607237762606 ], [ -58.683186866506979, -34.886503235990382 ], [ -58.667440788727745, -34.863902184695192 ], [ -58.656513553717161, -34.853721530958623 ], [ -58.652712776322183, -34.841369004424919 ], [ -58.636627343418397, -34.811234269364668 ], [ -58.631197661425553, -34.802275294076487 ], [ -58.633573147297419, -34.795691804660173 ], [ -58.623867590735223, -34.780895921229686 ], [ -58.617623456443461, -34.765692811649743 ], [ -58.613822679048468, -34.752322219742375 ], [ -58.603845638386623, -34.736440399913327 ], [ -58.597669375119771, -34.722866194931228 ], [ -58.595226018222995, -34.717368641913481 ], [ -58.577443809696447, -34.697957528789082 ], [ -58.566991671860237, -34.688930682475991 ], [ -58.560883279618295, -34.685605002255379 ], [ -58.553621079952869, -34.682075708960035 ], [ -58.560136698344273, -34.678003447465407 ], [ -58.55823630964678, -34.67542434851881 ], [ -58.563258765490154, -34.671284215999272 ], [ -58.560679666543557, -34.668501503977936 ], [ -58.565973606486573, -34.640945867864282 ], [ -58.529866221234201, -34.639316963266431 ], [ -58.511405302458556, -34.639384834291342 ], [ -58.468035717540758, -34.630357987978243 ], [ -58.420865355227988, -34.611421972028218 ], [ -58.409123667918472, -34.610403906654561 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 246.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.391748, -34.708165 ], [ -58.392041, -34.709529 ], [ -58.392251, -34.710465 ], [ -58.392485, -34.711588 ], [ -58.392739, -34.712746 ], [ -58.392968, -34.713773 ], [ -58.393147, -34.714514 ], [ -58.393433, -34.715817 ], [ -58.393695, -34.71708 ], [ -58.393951999999899, -34.718314 ], [ -58.394197, -34.719558 ], [ -58.394478, -34.720843 ], [ -58.394789, -34.722242 ], [ -58.395042, -34.723522 ], [ -58.395304, -34.724729 ], [ -58.395578, -34.726001 ], [ -58.395814, -34.72718 ], [ -58.396073, -34.72837 ], [ -58.396201, -34.729132 ], [ -58.396362, -34.729804 ], [ -58.396562, -34.730794 ], [ -58.396773, -34.73178 ], [ -58.39701, -34.732969 ], [ -58.397246, -34.734094 ], [ -58.397485, -34.735254 ], [ -58.397711, -34.736456 ], [ -58.397967, -34.737694 ], [ -58.398207, -34.738886 ], [ -58.398431, -34.740042 ], [ -58.398672, -34.741332 ], [ -58.398923, -34.742525 ], [ -58.399123, -34.743656 ], [ -58.399369, -34.744872 ], [ -58.399649, -34.746221 ], [ -58.399868, -34.747401 ], [ -58.400098, -34.74854 ], [ -58.400337, -34.749731 ], [ -58.400587, -34.750975 ], [ -58.400805, -34.752127 ], [ -58.401065, -34.753287 ], [ -58.401305, -34.754477 ], [ -58.401545, -34.755672 ], [ -58.401812, -34.756834 ], [ -58.402067, -34.757966 ], [ -58.402318, -34.759207 ], [ -58.402596, -34.760469 ], [ -58.402859, -34.761595 ], [ -58.403097, -34.76279 ], [ -58.403348, -34.763973 ], [ -58.403524, -34.764789 ], [ -58.403855, -34.766342 ], [ -58.404108, -34.767548 ], [ -58.404336, -34.768745 ], [ -58.404616, -34.769993 ], [ -58.404828, -34.771091 ], [ -58.405001, -34.772559 ], [ -58.405136, -34.773448 ], [ -58.405196, -34.773894 ], [ -58.405382, -34.775278 ], [ -58.405413, -34.77566 ], [ -58.405652, -34.776794 ], [ -58.405882, -34.777855 ], [ -58.405979, -34.778347 ], [ -58.406095, -34.77889 ], [ -58.406324, -34.780042 ], [ -58.406439, -34.780574 ], [ -58.406453, -34.780642 ], [ -58.406729, -34.781791 ], [ -58.406936, -34.782809 ], [ -58.407097, -34.783526 ], [ -58.407368, -34.784686 ], [ -58.407623, -34.785864 ], [ -58.407726, -34.786347 ], [ -58.408024, -34.787712 ], [ -58.408207, -34.788562 ], [ -58.408402, -34.78934 ], [ -58.40858, -34.790176 ], [ -58.408727, -34.790886 ], [ -58.40895, -34.791839 ], [ -58.409099, -34.792551 ], [ -58.409104, -34.792662 ], [ -58.409104, -34.793458 ], [ -58.409076, -34.794306 ], [ -58.409058, -34.794999 ], [ -58.409039, -34.795438 ], [ -58.40903, -34.795636 ], [ -58.408965, -34.795914 ], [ -58.408676, -34.796875 ], [ -58.408427, -34.797785 ], [ -58.408138, -34.798703 ], [ -58.407828, -34.799632 ], [ -58.407793, -34.799721 ], [ -58.407779, -34.799747 ], [ -58.407794, -34.800374 ], [ -58.407815, -34.80113 ], [ -58.407365, -34.801683 ], [ -58.40677, -34.802487 ], [ -58.406063, -34.803431 ], [ -58.405624, -34.80402 ], [ -58.405143, -34.804654 ], [ -58.404552, -34.805425 ], [ -58.403911, -34.806256 ], [ -58.403164, -34.807247 ], [ -58.403037, -34.80743 ], [ -58.402898, -34.807625 ], [ -58.402545, -34.808099 ], [ -58.402131, -34.808656 ], [ -58.40144, -34.809597 ], [ -58.401279, -34.80981 ], [ -58.400841, -34.810397 ], [ -58.400519, -34.810833 ], [ -58.399692, -34.81194 ], [ -58.399499, -34.812174 ], [ -58.398894, -34.812919 ], [ -58.398749, -34.813094 ], [ -58.398381, -34.813546 ], [ -58.397887, -34.814162 ], [ -58.397763, -34.814321 ], [ -58.397311, -34.814986 ], [ -58.396756, -34.815769 ], [ -58.396647, -34.815934 ], [ -58.396567, -34.816056 ], [ -58.39614, -34.816658 ], [ -58.395693, -34.817293 ], [ -58.395276, -34.817901 ], [ -58.394991, -34.81827 ], [ -58.394865, -34.818431 ], [ -58.394759, -34.818601 ], [ -58.394669, -34.818806 ], [ -58.39463, -34.81894 ], [ -58.394608, -34.819095 ], [ -58.394651, -34.819274 ], [ -58.394804, -34.819681 ], [ -58.395069, -34.820318 ], [ -58.395423, -34.821098 ], [ -58.395616, -34.821507 ], [ -58.395902, -34.822182 ], [ -58.396115, -34.822692 ], [ -58.396354, -34.823239 ], [ -58.396615, -34.823836 ], [ -58.396821, -34.824328 ], [ -58.397098, -34.824952 ], [ -58.397322, -34.825457 ], [ -58.397395, -34.825648 ], [ -58.397666, -34.826283 ], [ -58.397768, -34.826506 ], [ -58.398111, -34.827267 ], [ -58.398355, -34.827785 ], [ -58.398515, -34.828134 ], [ -58.398745, -34.828674 ], [ -58.398829, -34.828838 ], [ -58.399354, -34.830042 ], [ -58.399763, -34.831113 ], [ -58.400024, -34.831895 ], [ -58.400235, -34.832545 ], [ -58.400356, -34.832902 ], [ -58.400646, -34.83378 ], [ -58.400783, -34.834223 ], [ -58.400974, -34.834753 ], [ -58.40107, -34.834866 ], [ -58.401202, -34.834958 ], [ -58.401287, -34.834994 ], [ -58.401337, -34.835025 ], [ -58.401373, -34.835073 ], [ -58.401423, -34.835147 ], [ -58.401446, -34.835228 ], [ -58.40144, -34.835339 ], [ -58.401419, -34.835384 ], [ -58.401342, -34.835483 ], [ -58.401308, -34.835558 ], [ -58.401279, -34.835643 ], [ -58.40127, -34.835745 ], [ -58.401275, -34.835841 ], [ -58.401542, -34.836695 ], [ -58.402021, -34.838259 ], [ -58.402538, -34.840084 ], [ -58.402801, -34.84114 ], [ -58.402827, -34.841349 ], [ -58.40284, -34.841493 ], [ -58.40316, -34.841498 ], [ -58.402391, -34.843719 ], [ -58.402129, -34.84384 ], [ -58.402114, -34.843846 ], [ -58.402102, -34.843847 ], [ -58.402093, -34.843848 ], [ -58.402083, -34.84385 ], [ -58.402074, -34.843852 ], [ -58.402065, -34.843853 ], [ -58.402055, -34.843855 ], [ -58.402046, -34.843857 ], [ -58.402037, -34.84386 ], [ -58.402028, -34.843862 ], [ -58.402018, -34.843864 ], [ -58.402009, -34.843867 ], [ -58.402, -34.84387 ], [ -58.401991, -34.843873 ], [ -58.401982, -34.843876 ], [ -58.401974, -34.843879 ], [ -58.401965, -34.843882 ], [ -58.401956, -34.843885 ], [ -58.401948, -34.843889 ], [ -58.401939, -34.843893 ], [ -58.401931, -34.843896 ], [ -58.401922, -34.8439 ], [ -58.401914, -34.843904 ], [ -58.401906, -34.843908 ], [ -58.401898, -34.843912 ], [ -58.401889, -34.843917 ], [ -58.401882, -34.843921 ], [ -58.401874, -34.843926 ], [ -58.401866, -34.843931 ], [ -58.401858, -34.843935 ], [ -58.401851, -34.84394 ], [ -58.401843, -34.843945 ], [ -58.401836, -34.84395 ], [ -58.401829, -34.843956 ], [ -58.401822, -34.843961 ], [ -58.401815, -34.843966 ], [ -58.401808, -34.843972 ], [ -58.401801, -34.843977 ], [ -58.401794, -34.843983 ], [ -58.401788, -34.843989 ], [ -58.401781, -34.843995 ], [ -58.401775, -34.844001 ], [ -58.401769, -34.844007 ], [ -58.401763, -34.844013 ], [ -58.401757, -34.844019 ], [ -58.401751, -34.844026 ], [ -58.401746, -34.844032 ], [ -58.40174, -34.844039 ], [ -58.401735, -34.844045 ], [ -58.40173, -34.844052 ], [ -58.401725, -34.844059 ], [ -58.40172, -34.844066 ], [ -58.401711, -34.844079 ], [ -58.401352, -34.844586 ], [ -58.400705, -34.845463 ], [ -58.400456, -34.845808 ], [ -58.400057, -34.846367 ], [ -58.399971, -34.846488 ], [ -58.399459, -34.847168 ], [ -58.399387, -34.847268 ], [ -58.398981, -34.847827 ], [ -58.39871, -34.848202 ], [ -58.398503, -34.848491 ], [ -58.398059, -34.849102 ], [ -58.397583, -34.849768 ], [ -58.397466, -34.849914 ], [ -58.397142, -34.850359 ], [ -58.396968, -34.85061 ], [ -58.396489, -34.851279 ], [ -58.396471, -34.851304 ], [ -58.396064, -34.851864 ], [ -58.396047, -34.851891 ], [ -58.395552, -34.852565 ], [ -58.395375, -34.852809 ], [ -58.395074, -34.853224 ], [ -58.394896, -34.853461 ], [ -58.394582, -34.853887 ], [ -58.394438, -34.85409 ], [ -58.39411, -34.854552 ], [ -58.393911, -34.854838 ], [ -58.393625, -34.855221 ], [ -58.393195, -34.855813 ], [ -58.392714, -34.856464 ], [ -58.392253, -34.857079 ], [ -58.392129, -34.857399 ], [ -58.392047, -34.857355 ], [ -58.392033, -34.857396 ], [ -58.392026, -34.85743 ], [ -58.39202, -34.857463 ], [ -58.392014, -34.857497 ], [ -58.392009, -34.85753 ], [ -58.392005, -34.857564 ], [ -58.391903, -34.858267 ], [ -58.391894, -34.858346 ], [ -58.391888, -34.858388 ], [ -58.391882, -34.85843 ], [ -58.391874, -34.858472 ], [ -58.391868, -34.858491 ], [ -58.391866, -34.858514 ], [ -58.391857, -34.858556 ], [ -58.391846, -34.858597 ], [ -58.391835, -34.858639 ], [ -58.391823, -34.85868 ], [ -58.391811, -34.858721 ], [ -58.391797, -34.858762 ], [ -58.391782, -34.858803 ], [ -58.391767, -34.858843 ], [ -58.391751, -34.858884 ], [ -58.391733, -34.858924 ], [ -58.391716, -34.858963 ], [ -58.391697, -34.859003 ], [ -58.391677, -34.859042 ], [ -58.391657, -34.859081 ], [ -58.391623, -34.859135 ], [ -58.391354, -34.859495 ], [ -58.390787, -34.860155 ], [ -58.390661, -34.860438 ], [ -58.390118, -34.861173 ], [ -58.390021, -34.861312 ], [ -58.38977, -34.861665 ], [ -58.389738, -34.861706 ], [ -58.389719, -34.861732 ], [ -58.389701, -34.861757 ], [ -58.389684, -34.861783 ], [ -58.389668, -34.861809 ], [ -58.389651, -34.861835 ], [ -58.389636, -34.861862 ], [ -58.389621, -34.861888 ], [ -58.389606, -34.861915 ], [ -58.389592, -34.861942 ], [ -58.389579, -34.861969 ], [ -58.389566, -34.861997 ], [ -58.389554, -34.862025 ], [ -58.389543, -34.862052 ], [ -58.389532, -34.86208 ], [ -58.389521, -34.862108 ], [ -58.389511, -34.862137 ], [ -58.389502, -34.862165 ], [ -58.389494, -34.862194 ], [ -58.389495, -34.862212 ], [ -58.389486, -34.862222 ], [ -58.389478, -34.862251 ], [ -58.389472, -34.86228 ], [ -58.389465, -34.862309 ], [ -58.38946, -34.862338 ], [ -58.389455, -34.862367 ], [ -58.389451, -34.862396 ], [ -58.389426, -34.86268 ], [ -58.389428, -34.863128 ], [ -58.389431, -34.863469 ], [ -58.389436, -34.863544 ], [ -58.38944, -34.864318 ], [ -58.389444, -34.865098 ], [ -58.389449, -34.865319 ], [ -58.389457, -34.865882 ], [ -58.389461, -34.86615 ], [ -58.389474, -34.866766 ], [ -58.389494, -34.867484 ], [ -58.389514, -34.86754 ], [ -58.389496, -34.868254 ], [ -58.389496, -34.86836 ], [ -58.389527, -34.869064 ], [ -58.389531, -34.869147 ], [ -58.389534, -34.869874 ], [ -58.389526, -34.869984 ], [ -58.389538, -34.87079 ], [ -58.389556, -34.871003 ], [ -58.38958, -34.872163 ], [ -58.389584, -34.87239 ], [ -58.38961, -34.873189 ], [ -58.389614, -34.873291 ], [ -58.389621, -34.874021 ], [ -58.38965, -34.874245 ], [ -58.389666, -34.875083 ], [ -58.389746, -34.876503 ], [ -58.389761, -34.876716 ], [ -58.389788, -34.877322 ], [ -58.389821, -34.878269 ], [ -58.389848, -34.879168 ], [ -58.389876, -34.87974 ], [ -58.389895, -34.880368 ], [ -58.38991, -34.880591 ], [ -58.389952, -34.88151 ], [ -58.389956, -34.882178 ], [ -58.389972, -34.882885 ], [ -58.390004, -34.883682 ], [ -58.390032, -34.884227 ], [ -58.390038, -34.884507 ], [ -58.390056999999899, -34.885313 ], [ -58.390077, -34.88563 ], [ -58.390092, -34.886087 ], [ -58.390092, -34.886506 ], [ -58.390103, -34.8869 ], [ -58.390117, -34.887254 ], [ -58.390129, -34.887712 ], [ -58.390168, -34.888577 ], [ -58.390204, -34.889414 ], [ -58.390206, -34.889468 ], [ -58.390231, -34.890226 ], [ -58.390254, -34.890807 ], [ -58.390265, -34.891064 ], [ -58.390284, -34.891864 ], [ -58.390294, -34.892173 ], [ -58.390311, -34.892657 ], [ -58.390344, -34.893499 ], [ -58.390372, -34.894269 ], [ -58.390405, -34.895003 ], [ -58.390406, -34.895082 ], [ -58.390414, -34.895659 ], [ -58.390417, -34.895909 ], [ -58.390458, -34.896709 ], [ -58.390486, -34.897519 ], [ -58.390498, -34.897947 ], [ -58.390512, -34.898338 ], [ -58.390534, -34.898981 ], [ -58.390539, -34.899131 ], [ -58.390573, -34.899966 ], [ -58.390576, -34.900023 ], [ -58.390612, -34.900753 ], [ -58.390627, -34.901546 ], [ -58.390634, -34.901676 ], [ -58.390654, -34.902368 ], [ -58.390662, -34.902512 ], [ -58.390688, -34.903159 ], [ -58.390709, -34.903483 ], [ -58.390742, -34.904739 ], [ -58.390748, -34.904903 ], [ -58.390783, -34.905638 ], [ -58.390721, -34.907018 ], [ -58.390857, -34.908081 ], [ -58.390678, -34.908726 ], [ -58.390365, -34.909194 ], [ -58.390039, -34.909689 ], [ -58.38979, -34.910024 ], [ -58.389616, -34.910292 ], [ -58.389272, -34.91079 ], [ -58.388753, -34.911484 ], [ -58.388334, -34.912027 ], [ -58.387873, -34.912588 ], [ -58.387427, -34.913195 ], [ -58.387031, -34.91376 ], [ -58.386669, -34.91429 ], [ -58.386197, -34.914885 ], [ -58.385769, -34.91547 ], [ -58.385332, -34.91605 ], [ -58.385111, -34.916389 ], [ -58.384897, -34.916683 ], [ -58.384494, -34.917301 ], [ -58.383869, -34.918172 ], [ -58.383233, -34.919038 ], [ -58.382394, -34.920168 ], [ -58.381628, -34.921266 ], [ -58.38132, -34.921709 ], [ -58.380751, -34.92308 ], [ -58.380674, -34.923294 ], [ -58.380637, -34.923575 ], [ -58.380471, -34.925096 ], [ -58.380386, -34.926072 ], [ -58.380278, -34.926992 ], [ -58.380146, -34.928414 ], [ -58.38002, -34.929517 ], [ -58.379995, -34.929931 ], [ -58.37979, -34.931399 ], [ -58.379661, -34.932874 ], [ -58.37949, -34.934341 ], [ -58.379319, -34.935843 ], [ -58.379101, -34.93801 ], [ -58.378796, -34.940516 ], [ -58.378514, -34.942839 ], [ -58.378254, -34.944968 ], [ -58.378254, -34.94498 ], [ -58.378091, -34.946223 ], [ -58.377956, -34.947246 ], [ -58.377919, -34.947551 ], [ -58.377751, -34.948863 ], [ -58.377577, -34.950192 ], [ -58.377596, -34.951064 ], [ -58.37761, -34.95163 ], [ -58.377617, -34.952169 ], [ -58.377605, -34.952973 ], [ -58.377624, -34.95305 ], [ -58.37827, -34.955629 ], [ -58.378339, -34.956317 ], [ -58.378512, -34.957214 ], [ -58.378645, -34.957858 ], [ -58.378704, -34.958183 ], [ -58.378806, -34.958693 ], [ -58.37892, -34.959264 ], [ -58.378932, -34.959329 ], [ -58.379125, -34.960382 ], [ -58.379208, -34.960807 ], [ -58.379424, -34.961789 ], [ -58.379556, -34.962405 ], [ -58.379667, -34.962976 ], [ -58.379893, -34.963965 ], [ -58.379969, -34.964367 ], [ -58.380129, -34.965137 ], [ -58.380185, -34.965363 ], [ -58.380306, -34.965946 ], [ -58.380349, -34.966172 ], [ -58.380428, -34.966554 ], [ -58.380553, -34.967114 ], [ -58.38073, -34.967979 ], [ -58.38078, -34.968198 ], [ -58.381079, -34.969605 ], [ -58.381118999999899, -34.969765 ], [ -58.381377, -34.970999 ], [ -58.381659, -34.971342 ], [ -58.381642, -34.971713 ], [ -58.381618, -34.972443 ], [ -58.381601, -34.972914 ], [ -58.381564, -34.973923 ], [ -58.38156, -34.974014 ], [ -58.381466, -34.975269 ], [ -58.381383, -34.97635 ], [ -58.381308, -34.977585 ], [ -58.380512, -34.978691 ], [ -58.37994, -34.979475 ], [ -58.379657, -34.979836 ], [ -58.378455, -34.97975 ], [ -58.377753, -34.979699 ], [ -58.37694, -34.979627 ], [ -58.375595, -34.979516 ], [ -58.374214, -34.97941 ], [ -58.374015, -34.981263 ], [ -58.374335, -34.98143 ], [ -58.374823, -34.981687 ], [ -58.376146, -34.982355 ], [ -58.376835, -34.982705 ], [ -58.377328, -34.982961 ], [ -58.376801, -34.983673 ], [ -58.376721, -34.983772 ], [ -58.376137, -34.984551 ], [ -58.376801, -34.985126 ], [ -58.377759, -34.985929 ], [ -58.378523, -34.986567 ], [ -58.379252, -34.987185 ], [ -58.379336, -34.987258 ], [ -58.380165, -34.987949 ], [ -58.381065, -34.988713 ], [ -58.381988, -34.989488 ], [ -58.38287, -34.990225 ], [ -58.382977, -34.990318 ], [ -58.383858, -34.991054 ], [ -58.3839, -34.991092 ], [ -58.384554, -34.991646 ], [ -58.384899, -34.99193 ], [ -58.385253, -34.992232 ], [ -58.385382, -34.992336 ], [ -58.385917, -34.992797 ], [ -58.386153, -34.992989 ], [ -58.386659, -34.993415 ], [ -58.387388, -34.994021 ], [ -58.387465, -34.994087 ], [ -58.388388, -34.99487 ], [ -58.389117, -34.995476 ], [ -58.389318, -34.995652 ], [ -58.389706, -34.995975 ], [ -58.390052, -34.996278 ], [ -58.390536, -34.996632 ], [ -58.391984, -34.997042 ], [ -58.392667, -34.997469 ], [ -58.394624, -34.996834 ], [ -58.395951, -34.996401 ], [ -58.400483, -34.994921 ], [ -58.402108, -34.998095 ], [ -58.402702, -34.99928 ], [ -58.40323, -35.000324 ], [ -58.403939, -35.001711 ], [ -58.404516, -35.002843 ], [ -58.405, -35.003788 ], [ -58.404999, -35.003804 ], [ -58.405951, -35.004716 ], [ -58.406761, -35.005531 ], [ -58.407602, -35.006367 ], [ -58.409206, -35.007888 ], [ -58.409845, -35.00863 ], [ -58.410665, -35.009499 ], [ -58.411176, -35.010039 ], [ -58.411476, -35.010353 ], [ -58.411242999999899, -35.011912 ], [ -58.41109, -35.012995 ], [ -58.410925, -35.014112 ], [ -58.410771, -35.015209 ], [ -58.410588, -35.016367 ], [ -58.411449, -35.016854 ], [ -58.412735, -35.017618 ], [ -58.413973, -35.018328 ], [ -58.415199, -35.019057 ], [ -58.41646, -35.019802 ], [ -58.417651, -35.020512 ], [ -58.418919, -35.021238 ], [ -58.420192, -35.021987 ], [ -58.421429, -35.022713 ], [ -58.42265, -35.023442 ], [ -58.423946, -35.024168 ], [ -58.423205, -35.024992 ], [ -58.422509, -35.025769 ], [ -58.42184, -35.026513 ], [ -58.42118, -35.027233 ], [ -58.420511, -35.027977 ], [ -58.419795, -35.02878 ], [ -58.419366, -35.029243 ], [ -58.419056, -35.029583 ], [ -58.418603, -35.030116 ], [ -58.418425, -35.030332 ], [ -58.417793, -35.031097 ], [ -58.417157, -35.03187 ], [ -58.416824, -35.032273 ], [ -58.415866, -35.033414 ], [ -58.415142, -35.034223 ], [ -58.41451, -35.034929 ], [ -58.413897, -35.035702 ], [ -58.413231, -35.036494 ], [ -58.412496, -35.037347 ], [ -58.411841, -35.03812 ], [ -58.411193, -35.038892 ], [ -58.410504, -35.039699 ], [ -58.409803, -35.040527 ], [ -58.409224, -35.041218 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 245.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.396282, -34.761253 ], [ -58.396461, -34.762432 ], [ -58.396572, -34.763607 ], [ -58.396622, -34.764217 ], [ -58.396652, -34.764771 ], [ -58.396603, -34.765888 ], [ -58.396557, -34.766659 ], [ -58.396488, -34.767937 ], [ -58.396477, -34.768497 ], [ -58.396404, -34.770287 ], [ -58.395802, -34.77113 ], [ -58.394905, -34.7724 ], [ -58.394512, -34.772957 ], [ -58.394249, -34.773338 ], [ -58.393505, -34.774395 ], [ -58.392635, -34.775631 ], [ -58.392097, -34.77639 ], [ -58.3918, -34.776806 ], [ -58.391548, -34.777164 ], [ -58.391087, -34.77829 ], [ -58.390823, -34.778999 ], [ -58.390652, -34.779469 ], [ -58.390574999999899, -34.779675 ], [ -58.390217, -34.780594 ], [ -58.390114, -34.780895 ], [ -58.389828, -34.781616 ], [ -58.38966, -34.782097 ], [ -58.389591, -34.782413 ], [ -58.389458, -34.783009 ], [ -58.389332, -34.78371 ], [ -58.389267, -34.784023 ], [ -58.38924, -34.784206 ], [ -58.389206, -34.784649 ], [ -58.389172, -34.785366 ], [ -58.389187, -34.786659 ], [ -58.389137, -34.787334 ], [ -58.389095, -34.788399 ], [ -58.389076, -34.789818 ], [ -58.389076, -34.790054 ], [ -58.389065, -34.790394 ], [ -58.389023, -34.790924 ], [ -58.388977, -34.791035 ], [ -58.388939, -34.791145 ], [ -58.388924, -34.792175 ], [ -58.38892, -34.792824 ], [ -58.388905, -34.79422 ], [ -58.388889, -34.795635 ], [ -58.388874, -34.797146 ], [ -58.388866, -34.797596 ], [ -58.388847, -34.799385 ], [ -58.38884, -34.800106 ], [ -58.389141, -34.800323 ], [ -58.389107, -34.800587 ], [ -58.388844, -34.800739 ], [ -58.388813, -34.803116 ], [ -58.388805, -34.803745 ], [ -58.388786, -34.805267 ], [ -58.388775, -34.806583 ], [ -58.388767, -34.807148 ], [ -58.388763, -34.80798 ], [ -58.388748, -34.808998 ], [ -58.388767, -34.809162 ], [ -58.388741, -34.809341 ], [ -58.388737, -34.809608 ], [ -58.388771, -34.810307 ], [ -58.388828, -34.811359 ], [ -58.388885, -34.812561 ], [ -58.388947, -34.813694 ], [ -58.389008, -34.814854 ], [ -58.389091, -34.816536 ], [ -58.389065, -34.817467 ], [ -58.389217, -34.819035 ], [ -58.38929, -34.820282 ], [ -58.389294, -34.820469 ], [ -58.389339, -34.821365 ], [ -58.389381, -34.82222 ], [ -58.389324, -34.822514 ], [ -58.390728, -34.823277 ], [ -58.390591, -34.824581 ], [ -58.389168, -34.824505 ], [ -58.388962, -34.824467 ], [ -58.388809, -34.825256 ], [ -58.388687, -34.825909 ], [ -58.388493, -34.826931 ], [ -58.38834, -34.827755 ], [ -58.387459, -34.829491 ], [ -58.386971, -34.830425 ], [ -58.386505, -34.831326 ], [ -58.38612, -34.832016 ], [ -58.385887, -34.832489 ], [ -58.38567, -34.832916 ], [ -58.385632, -34.832977 ], [ -58.385262, -34.833622 ], [ -58.385132, -34.833603 ], [ -58.384998, -34.833614 ], [ -58.384884, -34.833633 ], [ -58.384804, -34.833683 ], [ -58.384735, -34.833755 ], [ -58.384151, -34.833447 ], [ -58.383148, -34.832928 ], [ -58.383106, -34.832851 ], [ -58.383049, -34.83279 ], [ -58.381989, -34.832241 ], [ -58.381145, -34.831795 ], [ -58.380363, -34.831394 ], [ -58.379578, -34.830978 ], [ -58.37891, -34.830631 ], [ -58.378162, -34.830238 ], [ -58.377125, -34.829693 ], [ -58.375988, -34.829102 ], [ -58.375271, -34.82872 ], [ -58.374611, -34.828381 ], [ -58.373592, -34.827847 ], [ -58.372944, -34.827503 ], [ -58.372845, -34.827457 ], [ -58.372742, -34.827408 ], [ -58.371803, -34.826916 ], [ -58.371216, -34.826611 ], [ -58.370131999999899, -34.826038 ], [ -58.368549, -34.825214 ], [ -58.367207, -34.824509 ], [ -58.366322, -34.824017 ], [ -58.364704, -34.82317 ], [ -58.364052, -34.822788 ], [ -58.363365, -34.822418 ], [ -58.362694, -34.82206 ], [ -58.361912, -34.821632 ], [ -58.361172, -34.821232 ], [ -58.360432, -34.820831 ], [ -58.359695, -34.820431 ], [ -58.358765, -34.819927 ], [ -58.357948, -34.819485 ], [ -58.35709, -34.819023 ], [ -58.356274, -34.818562 ], [ -58.355404, -34.818111 ], [ -58.355282, -34.818188 ], [ -58.353905, -34.820015 ], [ -58.353298, -34.820824 ], [ -58.352737, -34.821568 ], [ -58.352074, -34.822456 ], [ -58.351563, -34.823139 ], [ -58.351002, -34.823879 ], [ -58.350578, -34.824451 ], [ -58.349777, -34.825516 ], [ -58.349152, -34.825195 ], [ -58.349033, -34.825142 ], [ -58.348225, -34.824734 ], [ -58.347389, -34.824303 ], [ -58.346836, -34.824032 ], [ -58.346138, -34.823669 ], [ -58.34539, -34.823299 ], [ -58.344711, -34.822941 ], [ -58.343872, -34.822521 ], [ -58.343391, -34.822273 ], [ -58.343601, -34.822273 ], [ -58.343254, -34.821095 ], [ -58.342621, -34.818954 ], [ -58.3433, -34.818817 ], [ -58.344063, -34.818661 ], [ -58.344849, -34.818504 ], [ -58.345592, -34.818352 ], [ -58.346336, -34.818207 ], [ -58.347038, -34.818062 ], [ -58.348602, -34.817749 ], [ -58.34922, -34.817623 ], [ -58.349895, -34.81749 ], [ -58.350567, -34.817352 ], [ -58.35207, -34.817055 ], [ -58.352875, -34.816887 ], [ -58.353073, -34.816849 ], [ -58.352467, -34.816517 ], [ -58.351807, -34.816162 ], [ -58.34964, -34.814991 ], [ -58.348694, -34.81448 ], [ -58.348633, -34.814445 ], [ -58.34774, -34.813953 ], [ -58.347561, -34.813656 ], [ -58.347221, -34.813221 ], [ -58.347012, -34.812866 ], [ -58.34684, -34.812454 ], [ -58.346718, -34.811939 ], [ -58.346516, -34.811436 ], [ -58.346321, -34.811035 ], [ -58.346008, -34.810574 ], [ -58.34594, -34.810436 ], [ -58.345833, -34.810318 ], [ -58.344818, -34.80957 ], [ -58.344688, -34.809509 ], [ -58.344577999999899, -34.809448 ], [ -58.343296, -34.808758 ], [ -58.34211, -34.808113 ], [ -58.340744, -34.807381 ], [ -58.339409, -34.806656 ], [ -58.338467, -34.806156 ], [ -58.338062, -34.80592 ], [ -58.337715, -34.805744 ], [ -58.336819, -34.80526 ], [ -58.336159, -34.804905 ], [ -58.335777, -34.804691 ], [ -58.33514, -34.804363 ], [ -58.334499, -34.804016 ], [ -58.333969, -34.803741 ], [ -58.333824, -34.80368 ], [ -58.33345, -34.803478 ], [ -58.332733, -34.803082 ], [ -58.332268, -34.802818 ], [ -58.331051, -34.802223 ], [ -58.330688, -34.802021 ], [ -58.328671, -34.800888 ], [ -58.328094, -34.800571 ], [ -58.32703, -34.799976 ], [ -58.326771, -34.799858 ], [ -58.326378, -34.799683 ], [ -58.325748, -34.799339 ], [ -58.325211, -34.799038 ], [ -58.324436, -34.798618 ], [ -58.323399, -34.79805 ], [ -58.323368, -34.798031 ], [ -58.322281, -34.797436 ], [ -58.321171, -34.796829 ], [ -58.319992, -34.796181 ], [ -58.318863, -34.795567 ], [ -58.318783, -34.795494 ], [ -58.31863, -34.795361 ], [ -58.317383, -34.794674 ], [ -58.31588, -34.793842 ], [ -58.314384, -34.792999 ], [ -58.312889, -34.792164 ], [ -58.311371, -34.791332 ], [ -58.31028, -34.790657 ], [ -58.30983, -34.790382 ], [ -58.308826, -34.789757 ], [ -58.308598, -34.789612 ], [ -58.308464, -34.789474 ], [ -58.30698, -34.788635 ], [ -58.305428, -34.787663 ], [ -58.305012, -34.787376 ], [ -58.304371, -34.786938 ], [ -58.304226, -34.786839 ], [ -58.303097, -34.786152 ], [ -58.302334, -34.785686 ], [ -58.302055, -34.785515 ], [ -58.301624, -34.785255 ], [ -58.30117, -34.784981 ], [ -58.300877, -34.784794 ], [ -58.300102, -34.784328 ], [ -58.298889, -34.783588 ], [ -58.297874, -34.783142 ], [ -58.297649, -34.783043 ], [ -58.29694, -34.782734 ], [ -58.296143, -34.782276 ], [ -58.295391, -34.781853 ], [ -58.294624, -34.781414 ], [ -58.294102, -34.781116 ], [ -58.293911, -34.781017 ], [ -58.293198, -34.780632 ], [ -58.29245, -34.780224 ], [ -58.292294, -34.780144 ], [ -58.291389, -34.779652 ], [ -58.291245, -34.779572 ], [ -58.290627, -34.77924 ], [ -58.290184, -34.778999 ], [ -58.289825, -34.778805 ], [ -58.289322, -34.77853 ], [ -58.289093, -34.778412 ], [ -58.288425, -34.778049 ], [ -58.287495, -34.777546 ], [ -58.286461, -34.776985 ], [ -58.285519, -34.776482 ], [ -58.284481, -34.775928 ], [ -58.283794, -34.775562 ], [ -58.283398, -34.775345 ], [ -58.282257, -34.774734 ], [ -58.281521, -34.774338 ], [ -58.280594, -34.773838 ], [ -58.279766, -34.773396 ], [ -58.278572, -34.772755 ], [ -58.278351, -34.772743 ], [ -58.278191, -34.77272 ], [ -58.278084, -34.772686 ], [ -58.278069, -34.772667 ], [ -58.278034, -34.772633 ], [ -58.278019, -34.772575 ], [ -58.278015, -34.77253 ], [ -58.278023, -34.772457 ], [ -58.277802, -34.772579 ], [ -58.277088, -34.77298 ], [ -58.276878, -34.773087 ], [ -58.276024, -34.773556 ], [ -58.275288, -34.773952 ], [ -58.273842, -34.774727 ], [ -58.272823, -34.775249 ], [ -58.272193999999899, -34.775608 ], [ -58.271427, -34.776012 ], [ -58.270321, -34.776615 ], [ -58.26923, -34.777184 ], [ -58.26907, -34.777313 ], [ -58.268173, -34.777809 ], [ -58.267174, -34.778336 ], [ -58.266178, -34.778908 ], [ -58.264874, -34.779568 ], [ -58.263714, -34.780239 ], [ -58.262589, -34.780849 ], [ -58.263283, -34.781231 ], [ -58.264133, -34.781662 ], [ -58.265141, -34.782242 ], [ -58.266006, -34.782677 ], [ -58.266979, -34.783245 ], [ -58.267929, -34.783745 ], [ -58.268463, -34.784035 ], [ -58.269234, -34.784454 ], [ -58.270046, -34.784893 ], [ -58.27037, -34.785069 ], [ -58.271843, -34.785866 ], [ -58.2728, -34.786385 ], [ -58.27396, -34.787006 ], [ -58.275131, -34.787643 ], [ -58.276112, -34.78817 ], [ -58.276711, -34.788494 ], [ -58.277493, -34.788918 ], [ -58.278072, -34.789234 ], [ -58.278603, -34.78949 ], [ -58.27874, -34.790443 ], [ -58.278873, -34.790615 ], [ -58.278946, -34.791008 ], [ -58.278976, -34.79126 ], [ -58.279053, -34.791985 ], [ -58.279057, -34.793022 ], [ -58.279064, -34.794128 ], [ -58.279053, -34.794353 ], [ -58.278996, -34.79607 ], [ -58.278973, -34.796299 ], [ -58.278885, -34.79747 ], [ -58.278828, -34.798553 ], [ -58.278759, -34.799484 ], [ -58.278713, -34.800671 ], [ -58.278625, -34.80175 ], [ -58.278564, -34.802792 ], [ -58.278511, -34.803871 ], [ -58.27845, -34.804901 ], [ -58.278389, -34.805988 ], [ -58.27837, -34.807037 ], [ -58.278332, -34.808067 ], [ -58.278069, -34.808056 ], [ -58.276245, -34.807953 ], [ -58.274639, -34.807854 ], [ -58.272976, -34.807751 ], [ -58.272911, -34.808792 ], [ -58.272846, -34.80986 ], [ -58.272797, -34.810684 ], [ -58.274498, -34.810749 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 244.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.232206767417402, -35.168233973303046 ], [ -58.232876467596626, -35.167035224544222 ], [ -58.242113711447921, -35.170282188163476 ], [ -58.251212396641463, -35.155443262087815 ], [ -58.251859003711054, -35.141659137684364 ], [ -58.276430072355524, -35.09949922516509 ], [ -58.287884254731146, -35.080376521121011 ], [ -58.349127181465306, -35.023586677616578 ], [ -58.380718555436772, -34.991355449214012 ], [ -58.382196514452993, -34.980154773423884 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 243.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.463980999923194, -34.692400000059934 ], [ -58.463315999833469, -34.691777000108402 ], [ -58.461749999562812, -34.690275000091162 ], [ -58.460441000351864, -34.689031000280409 ], [ -58.461106000441532, -34.688365000144586 ], [ -58.463025999949878, -34.686434000128941 ], [ -58.464570000105368, -34.684880999558459 ], [ -58.464711000312377, -34.684739000204672 ], [ -58.464774999666474, -34.684674999951255 ], [ -58.464652000289561, -34.684260999745277 ], [ -58.465466000055812, -34.683409000025279 ], [ -58.465960000353675, -34.682891999566095 ], [ -58.466469999590743, -34.682357000075456 ], [ -58.466705999682119, -34.682120999984136 ], [ -58.466837000327246, -34.682056999730719 ], [ -58.467120999934139, -34.682024000007573 ], [ -58.467392999887011, -34.681993000376622 ], [ -58.467457000140428, -34.681928000077107 ], [ -58.467744999931767, -34.681684999662934 ], [ -58.468016999884583, -34.681451999709964 ], [ -58.468080000091902, -34.68130600017173 ], [ -58.468229999814582, -34.681156000448993 ], [ -58.468701999997279, -34.680799000173693 ], [ -58.469109999926502, -34.680490000313227 ], [ -58.470483000290187, -34.679418000340377 ], [ -58.471426999756204, -34.678666999882068 ], [ -58.472564000028513, -34.677786999770206 ], [ -58.473680000231809, -34.676906999658286 ], [ -58.4743670004367, -34.676392000190617 ], [ -58.473357999771849, -34.675468999894406 ], [ -58.472221000398804, -34.674396999921555 ], [ -58.471469999940496, -34.673709999716664 ], [ -58.470461000174964, -34.672679999882064 ], [ -58.469988999992324, -34.672250999883715 ], [ -58.469238000433336, -34.67158599979399 ], [ -58.468530000159319, -34.670898999589099 ], [ -58.469688999647587, -34.66999800030743 ], [ -58.470848000035119, -34.669096000080287 ], [ -58.472027999592456, -34.668173999830174 ], [ -58.473229000118238, -34.667251000433282 ], [ -58.471662999847524, -34.665921000253888 ], [ -58.470891000219467, -34.665277000233345 ], [ -58.470117999645936, -34.664568999959329 ], [ -58.470353999737256, -34.664332999868009 ], [ -58.470997999757856, -34.66390399986966 ], [ -58.471447999825273, -34.663517000009506 ], [ -58.471985000307484, -34.663044999826809 ], [ -58.472928999773501, -34.662358999668072 ], [ -58.473680000231809, -34.661865000269529 ], [ -58.474324000252352, -34.661372000017764 ], [ -58.475117999995689, -34.660749000066232 ], [ -58.475868999554621, -34.660149000276078 ], [ -58.477026999896111, -34.659247000048993 ], [ -58.477907000008031, -34.658560999890199 ], [ -58.478271999752963, -34.658260000398684 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.480159999584259, -34.656758000381387 ], [ -58.480395999675579, -34.656586999690262 ], [ -58.481426000409556, -34.655770999831759 ], [ -58.48204900036103, -34.655256000364091 ], [ -58.482649000151184, -34.654784000181394 ], [ -58.483894000008036, -34.653818999746989 ], [ -58.484687999751372, -34.653217999910737 ], [ -58.485010000211275, -34.652959999704194 ], [ -58.485137999818789, -34.652938999635069 ], [ -58.487090999949658, -34.652573999890137 ], [ -58.487198000387366, -34.652488000420817 ], [ -58.487327000040978, -34.652380999983109 ], [ -58.487669999670686, -34.652122999776566 ], [ -58.488228000221966, -34.651672999709149 ], [ -58.489193999803206, -34.65092200015016 ], [ -58.490202000421959, -34.650148999576629 ], [ -58.490996000165239, -34.650814999712395 ], [ -58.491768999839451, -34.651457999686897 ], [ -58.492562999582731, -34.652122999776566 ], [ -58.493378000294456, -34.652788999912389 ], [ -58.494343999875639, -34.652016000238177 ], [ -58.495351999595073, -34.6512439997108 ], [ -58.496597000351244, -34.650257000060435 ], [ -58.497391000094524, -34.649677000293309 ], [ -58.497863000277221, -34.649311999649001 ], [ -58.499042999834558, -34.648390000298207 ], [ -58.50024500040638, -34.647489000117218 ], [ -58.50080300005834, -34.647016999934579 ], [ -58.501402999848551, -34.646543999705784 ], [ -58.501810999777774, -34.646201000076076 ], [ -58.502305000075637, -34.645793000146796 ], [ -58.502840999612374, -34.645364000148447 ], [ -58.503334999910294, -34.644957000265322 ], [ -58.503850000277225, -34.644570000405167 ], [ -58.504472000182602, -34.644098000222471 ], [ -58.505651999739939, -34.643197000041482 ], [ -58.506854000311819, -34.642295999860437 ], [ -58.508033999869156, -34.641394999679449 ], [ -58.509214000325812, -34.640493000351626 ], [ -58.509815000162064, -34.64000000009986 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529105000295488, -34.63952799991722 ], [ -58.529062000111196, -34.640021000168986 ], [ -58.529169999695682, -34.64017199993782 ], [ -58.529211999833876, -34.640257000260306 ], [ -58.529362999602711, -34.640300000444597 ], [ -58.529598999694031, -34.640300000444597 ], [ -58.529727000200864, -34.640257000260306 ], [ -58.529855999854476, -34.640128999753472 ], [ -58.529877999969699, -34.640043000284209 ], [ -58.529877999969699, -34.639785000077666 ], [ -58.529791999601059, -34.639248999641552 ], [ -58.529791999601059, -34.63888399989662 ], [ -58.529833999739253, -34.638560000243785 ], [ -58.529985000407407, -34.637381999879324 ], [ -58.530173000083835, -34.636401999652492 ], [ -58.530200000429659, -34.636265999676084 ], [ -58.530263999783699, -34.636094999884278 ], [ -58.530371000221464, -34.635900999931152 ], [ -58.530520999944144, -34.635730000139347 ], [ -58.530757000035464, -34.635494000048027 ], [ -58.530835000035211, -34.635447999725386 ], [ -58.531444000240356, -34.635086000118747 ], [ -58.531572999893967, -34.635042999934456 ], [ -58.532001999892316, -34.635042999934456 ], [ -58.532903000073361, -34.635086000118747 ], [ -58.532994999819323, -34.634394999729409 ], [ -58.533031999726973, -34.634119999638244 ], [ -58.532259000052761, -34.634141999753467 ], [ -58.531858000446334, -34.634157000445157 ], [ -58.531680000331733, -34.634162999822536 ], [ -58.531336999802647, -34.634334999660439 ], [ -58.531208000149036, -34.634442000098204 ], [ -58.531078999596104, -34.634613999936107 ], [ -58.530735999966396, -34.634657000120399 ], [ -58.529985000407407, -34.634721000373816 ], [ -58.529491000109545, -34.634806999843136 ], [ -58.528655000228014, -34.634828999958359 ], [ -58.528225000183568, -34.634828999958359 ], [ -58.526873999935106, -34.634700000304747 ], [ -58.527002000441939, -34.63399200003073 ], [ -58.527110000026425, -34.633005000380422 ], [ -58.527280999818231, -34.632103000153279 ], [ -58.527367000186871, -34.631330999625902 ], [ -58.527603000278191, -34.630623000251205 ], [ -58.528032000276539, -34.629227999772354 ], [ -58.528375999952402, -34.62813399968428 ], [ -58.528461000274888, -34.627855000307989 ], [ -58.528546999744208, -34.627553999917097 ], [ -58.528848000135042, -34.626524000082497 ], [ -58.528353999837179, -34.626287999991177 ], [ -58.527881999654539, -34.626030999830732 ], [ -58.528419000136694, -34.625558999648092 ], [ -58.528933999604362, -34.625193999903104 ], [ -58.527796000185219, -34.624615000182075 ], [ -58.526917000119397, -34.624142999999435 ], [ -58.526379999637243, -34.623884999792836 ], [ -58.525071000426294, -34.623198999634099 ], [ -58.523955000223054, -34.622618999866916 ], [ -58.523160999580398, -34.623219999703167 ], [ -58.522840000065912, -34.623476999863612 ], [ -58.521638000393352, -34.624379000090755 ], [ -58.520650999843724, -34.625150999718812 ], [ -58.520093000191764, -34.625558999648092 ], [ -58.519577999824776, -34.625987999646441 ], [ -58.518976999988524, -34.626438999760012 ], [ -58.518461999621536, -34.626824999574012 ], [ -58.51796900026909, -34.627211000287389 ], [ -58.517474999971228, -34.627619000216669 ], [ -58.516981999719462, -34.628005000030669 ], [ -58.516401999952279, -34.628434000029017 ], [ -58.515693999678319, -34.628991999680977 ], [ -58.515264999679971, -34.629335000210062 ], [ -58.514922000050205, -34.629593000416605 ], [ -58.514041999938286, -34.630237000437205 ], [ -58.513012000103686, -34.631009000065262 ], [ -58.512045999623126, -34.631759999624251 ], [ -58.511058999972818, -34.63255400026685 ], [ -58.510114999607481, -34.633261999641547 ], [ -58.509084999772881, -34.634056000284147 ], [ -58.508162000375989, -34.633219000356519 ], [ -58.507110999572944, -34.632274999991239 ], [ -58.506167000106927, -34.631460000178834 ], [ -58.505265999925939, -34.630644000320331 ], [ -58.504321999560602, -34.629765000254508 ], [ -58.503571000001614, -34.629099000118742 ], [ -58.503034000418722, -34.628605999866977 ], [ -58.502605000420374, -34.62822000005292 ], [ -58.501789999708706, -34.627489999663737 ], [ -58.500373000013894, -34.626416999644789 ], [ -58.500072999669158, -34.626266999922052 ], [ -58.498827999812306, -34.625731000385315 ], [ -58.497584000001552, -34.625172999834035 ], [ -58.496361000259924, -34.624615000182075 ], [ -58.495116000403073, -34.624056999630795 ], [ -58.494965999781016, -34.623927999977184 ], [ -58.494666000335599, -34.623670999816738 ], [ -58.494451000313347, -34.623476999863612 ], [ -58.494236000291153, -34.623306000071807 ], [ -58.494000000199833, -34.623113000164778 ], [ -58.493764000108456, -34.62292000025775 ], [ -58.493550000132359, -34.622748000419847 ], [ -58.493335000110108, -34.622554999613499 ], [ -58.493099000018788, -34.62236199970647 ], [ -58.492841999858342, -34.622168999799442 ], [ -58.492648999951371, -34.621996999961539 ], [ -58.492433999929119, -34.621825000123636 ], [ -58.492218999906868, -34.62165400033183 ], [ -58.491296999656754, -34.620880999758299 ], [ -58.490417000444154, -34.62013000019931 ], [ -58.489429999894526, -34.619293000271682 ], [ -58.488679000335537, -34.618649000251139 ], [ -58.487948999946354, -34.618027000345762 ], [ -58.486919000111698, -34.617169000349065 ], [ -58.485868000208029, -34.61658999972866 ], [ -58.48490199972747, -34.616053000145769 ], [ -58.484494999844344, -34.615839000169672 ], [ -58.483657999916716, -34.615409000125226 ], [ -58.482369999875573, -34.614744000035557 ], [ -58.481126000064819, -34.614078999945832 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.478594000212922, -34.612791999950787 ], [ -58.477262999987431, -34.612104999745895 ], [ -58.476019000176677, -34.611439999656227 ], [ -58.474731000135534, -34.61073200028153 ], [ -58.473529999609752, -34.610088000260987 ], [ -58.472393000236707, -34.609487000424679 ], [ -58.471834999685427, -34.609187000079942 ], [ -58.471277000033467, -34.60890799980433 ], [ -58.470117999645936, -34.608328000037147 ], [ -58.468766000250696, -34.607728000246993 ], [ -58.467286000348622, -34.607105000295462 ], [ -58.465955000123131, -34.606546999744182 ], [ -58.464967999573503, -34.606117999745834 ], [ -58.463616000178206, -34.605539000024805 ], [ -58.462372000367509, -34.605002000441914 ], [ -58.461191999910852, -34.604509000190149 ], [ -58.46150099977126, -34.603890000423121 ], [ -58.461514000370755, -34.603865000169606 ], [ -58.461492000255589, -34.603715000446869 ], [ -58.461256000164212, -34.603028000241977 ], [ -58.461041000142018, -34.602363000152309 ], [ -58.460655000327961, -34.601119000341555 ], [ -58.460332999868001, -34.600088999607578 ], [ -58.460011000307361, -34.599036999657756 ], [ -58.459646999709207, -34.59798599975403 ], [ -58.459259999849053, -34.596697999712887 ], [ -58.459175000425887, -34.59663400035879 ], [ -58.459023999757733, -34.59639800026747 ], [ -58.457693999578396, -34.595174999626465 ], [ -58.457092999742088, -34.594616999974505 ], [ -58.456814000365796, -34.594337999698894 ], [ -58.455913000184751, -34.593479999702197 ], [ -58.455012000003762, -34.592642999774569 ], [ -58.454110999822717, -34.591783999731774 ], [ -58.453251999779923, -34.590991000034592 ], [ -58.452330000429129, -34.590154000106963 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.451450000317209, -34.588737000412209 ], [ -58.452779999597283, -34.588265000229512 ], [ -58.454110999822717, -34.587771999977747 ], [ -58.455033000072831, -34.587470999586913 ], [ -58.455204999910791, -34.587277999679884 ], [ -58.455248000095082, -34.587127999957204 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 242.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619825, -34.650519 ], [ -58.619846, -34.651701 ], [ -58.621191, -34.651688 ], [ -58.622695, -34.651649 ], [ -58.624203, -34.651627 ], [ -58.625317, -34.651612 ], [ -58.626418, -34.65159 ], [ -58.626445, -34.651591 ], [ -58.627581, -34.651567 ], [ -58.627605, -34.652872 ], [ -58.627621, -34.653801 ], [ -58.628765, -34.653788 ], [ -58.629892, -34.653778 ], [ -58.629882, -34.65296 ], [ -58.629873, -34.65286 ], [ -58.630211, -34.652883 ], [ -58.630551, -34.653107 ], [ -58.630755, -34.65322 ], [ -58.631056, -34.653247 ], [ -58.631238, -34.653251 ], [ -58.631793, -34.653198 ], [ -58.632568, -34.653079 ], [ -58.633365, -34.652952 ], [ -58.634192, -34.652817 ], [ -58.634477, -34.652777 ], [ -58.635681, -34.652585 ], [ -58.636057, -34.652527 ], [ -58.636857, -34.652398 ], [ -58.637546, -34.652281 ], [ -58.637953, -34.652213 ], [ -58.638991, -34.652044 ], [ -58.640475, -34.651787 ], [ -58.640718, -34.651916 ], [ -58.642643, -34.652532 ], [ -58.642679, -34.652736 ], [ -58.642988, -34.653905 ], [ -58.643396, -34.655083 ], [ -58.643681, -34.656291 ], [ -58.643978, -34.657476 ], [ -58.644581, -34.657356 ], [ -58.645953, -34.656996 ], [ -58.646608, -34.65696 ], [ -58.646939, -34.656899 ], [ -58.648055, -34.656569 ], [ -58.650313, -34.656213 ], [ -58.652053, -34.655895 ], [ -58.652621, -34.655792 ], [ -58.652987, -34.655714 ], [ -58.655104, -34.65632 ], [ -58.655876, -34.65656 ], [ -58.656244999999899, -34.656674 ], [ -58.658524, -34.657386 ], [ -58.659589, -34.657765 ], [ -58.660411, -34.65799 ], [ -58.661458, -34.65831 ], [ -58.662859, -34.658748 ], [ -58.664271, -34.659246 ], [ -58.665677, -34.659679 ], [ -58.665761, -34.659741 ], [ -58.667003, -34.660183 ], [ -58.667109, -34.660167 ], [ -58.668596, -34.66056 ], [ -58.669994, -34.661028 ], [ -58.670941, -34.661321 ], [ -58.671398, -34.661432 ], [ -58.672872, -34.661891 ], [ -58.674233999999899, -34.662325 ], [ -58.675177, -34.66256 ], [ -58.676058, -34.662768 ], [ -58.676717, -34.662914 ], [ -58.67831, -34.66317 ], [ -58.678714, -34.663231 ], [ -58.680011, -34.663414 ], [ -58.681433, -34.663601 ], [ -58.682951, -34.663789 ], [ -58.684392, -34.663992 ], [ -58.685793, -34.664171 ], [ -58.68744, -34.664388 ], [ -58.689153, -34.664619 ], [ -58.690868, -34.664815 ], [ -58.69246, -34.665062 ], [ -58.69442, -34.665313 ], [ -58.694451, -34.665317 ], [ -58.69635, -34.665543 ], [ -58.697796, -34.665715 ], [ -58.698383, -34.665781 ], [ -58.700023, -34.666005 ], [ -58.700344, -34.66605 ], [ -58.70222, -34.666313 ], [ -58.70318, -34.666442 ], [ -58.704078, -34.666556 ], [ -58.705966, -34.666792 ], [ -58.706678, -34.666877 ], [ -58.70753, -34.667004 ], [ -58.7082, -34.667068 ], [ -58.708649, -34.667109 ], [ -58.709243, -34.667166 ], [ -58.709587, -34.667163 ], [ -58.710172, -34.667162 ], [ -58.710543, -34.667211 ], [ -58.711238, -34.667159 ], [ -58.712867, -34.667018 ], [ -58.713219, -34.666987 ], [ -58.714865, -34.66672 ], [ -58.716511, -34.666444 ], [ -58.718088, -34.666232 ], [ -58.719566, -34.666032 ], [ -58.719738, -34.666005 ], [ -58.720674, -34.66585 ], [ -58.721391, -34.665733 ], [ -58.722675, -34.665534 ], [ -58.723525, -34.665385 ], [ -58.724878, -34.66517 ], [ -58.72523, -34.665125 ], [ -58.72654, -34.664996 ], [ -58.727293, -34.664866 ], [ -58.727399, -34.665346 ], [ -58.727434, -34.665499 ], [ -58.726893, -34.666593 ], [ -58.726321, -34.66775 ], [ -58.725761, -34.668889 ], [ -58.725753, -34.6689 ], [ -58.725235, -34.670035 ], [ -58.724698, -34.671185 ], [ -58.724172, -34.672321 ], [ -58.723763, -34.673132 ], [ -58.724452, -34.674332 ], [ -58.723105, -34.674877 ], [ -58.721742, -34.67541 ], [ -58.721192, -34.675633 ], [ -58.720429, -34.675927 ], [ -58.719886, -34.676146 ], [ -58.719894, -34.676146 ], [ -58.720536, -34.677259 ], [ -58.721038, -34.678117 ], [ -58.721551, -34.678973 ], [ -58.722036, -34.679781 ], [ -58.722523, -34.680608 ], [ -58.723044, -34.681485 ], [ -58.72333, -34.682003 ], [ -58.723463, -34.682102 ], [ -58.724093, -34.682549 ], [ -58.724093, -34.682556 ], [ -58.724594, -34.683083 ], [ -58.7251, -34.683604 ], [ -58.725678, -34.684207 ], [ -58.724287, -34.685145 ], [ -58.724883, -34.685774 ], [ -58.724861, -34.685785 ], [ -58.723477, -34.686712 ], [ -58.723504, -34.686747 ], [ -58.724047, -34.68731 ], [ -58.724633, -34.687905 ], [ -58.72521, -34.688503 ], [ -58.725723, -34.689034 ], [ -58.726232, -34.689556 ], [ -58.726821, -34.690169 ], [ -58.727391, -34.690768 ], [ -58.728003, -34.691408 ], [ -58.72858, -34.692011 ], [ -58.729173, -34.692632 ], [ -58.729736, -34.693242 ], [ -58.730366, -34.693821 ], [ -58.731017, -34.694404 ], [ -58.731731, -34.695118 ], [ -58.731869, -34.696074 ], [ -58.730921, -34.696688 ], [ -58.729519, -34.697599 ], [ -58.730104, -34.698206 ], [ -58.731495, -34.697283 ], [ -58.732053, -34.697862 ], [ -58.732623, -34.698449 ], [ -58.733197, -34.69904 ], [ -58.733775, -34.699639 ], [ -58.734352, -34.700229 ], [ -58.735781, -34.699265 ], [ -58.737168, -34.69835 ], [ -58.738589, -34.6974 ], [ -58.739186, -34.698018 ], [ -58.739741, -34.698598 ], [ -58.740307, -34.699184 ], [ -58.740892, -34.699779 ], [ -58.741835, -34.700762 ], [ -58.742374, -34.701323 ], [ -58.742924, -34.701845 ], [ -58.743472, -34.702367 ], [ -58.744, -34.70295 ], [ -58.742681, -34.703892 ], [ -58.741317, -34.704861 ], [ -58.740313, -34.70557 ], [ -58.739945, -34.705791 ], [ -58.739471, -34.706172 ], [ -58.738926, -34.706565 ], [ -58.738752, -34.706687 ], [ -58.738589, -34.706806 ], [ -58.737262, -34.707751 ], [ -58.736391, -34.70838 ], [ -58.735341, -34.709143 ], [ -58.735236, -34.708987 ], [ -58.734167, -34.709775 ], [ -58.733358, -34.709452 ], [ -58.733108999999899, -34.70989 ], [ -58.732072, -34.709464 ], [ -58.731229, -34.709132 ], [ -58.729634, -34.708465 ], [ -58.728035, -34.707786 ], [ -58.727091, -34.708427 ], [ -58.727007, -34.708484 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 241.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.384629, -34.888757 ], [ -58.385919, -34.889844 ], [ -58.386851, -34.890689 ], [ -58.387827999999899, -34.891536 ], [ -58.3888, -34.892404 ], [ -58.389756, -34.893263 ], [ -58.389917, -34.893412 ], [ -58.390219, -34.89347 ], [ -58.390344, -34.893499 ], [ -58.390372, -34.894269 ], [ -58.390405, -34.895003 ], [ -58.390406, -34.895082 ], [ -58.390414, -34.895659 ], [ -58.390417, -34.895909 ], [ -58.390458, -34.896709 ], [ -58.390486, -34.897519 ], [ -58.390498, -34.897947 ], [ -58.390512, -34.898338 ], [ -58.390534, -34.898981 ], [ -58.390539, -34.899131 ], [ -58.390573, -34.899966 ], [ -58.390576, -34.900023 ], [ -58.390612, -34.900753 ], [ -58.390627, -34.901546 ], [ -58.390634, -34.901676 ], [ -58.390654, -34.902368 ], [ -58.390662, -34.902512 ], [ -58.390688, -34.903159 ], [ -58.390709, -34.903483 ], [ -58.390742, -34.904739 ], [ -58.390748, -34.904903 ], [ -58.390783, -34.905638 ], [ -58.390721, -34.907018 ], [ -58.390857, -34.908081 ], [ -58.390678, -34.908726 ], [ -58.390365, -34.909194 ], [ -58.390039, -34.909689 ], [ -58.38979, -34.910024 ], [ -58.389616, -34.910292 ], [ -58.389272, -34.91079 ], [ -58.388753, -34.911484 ], [ -58.388334, -34.912027 ], [ -58.387873, -34.912588 ], [ -58.387427, -34.913195 ], [ -58.387031, -34.91376 ], [ -58.386669, -34.91429 ], [ -58.386197, -34.914885 ], [ -58.385769, -34.91547 ], [ -58.385332, -34.91605 ], [ -58.385111, -34.916389 ], [ -58.384897, -34.916683 ], [ -58.384494, -34.917301 ], [ -58.383869, -34.918172 ], [ -58.383233, -34.919038 ], [ -58.382394, -34.920168 ], [ -58.381628, -34.921266 ], [ -58.38132, -34.921709 ], [ -58.380751, -34.92308 ], [ -58.380674, -34.923294 ], [ -58.380637, -34.923575 ], [ -58.380471, -34.925096 ], [ -58.381349, -34.925542 ], [ -58.382643, -34.92618 ], [ -58.383601, -34.926657 ], [ -58.38433, -34.927006 ], [ -58.38504, -34.927366 ], [ -58.385727, -34.9277 ], [ -58.386118, -34.927872 ], [ -58.386475, -34.928038 ], [ -58.387173, -34.928379 ], [ -58.388276, -34.928923 ], [ -58.38918, -34.929378 ], [ -58.390099, -34.929841 ], [ -58.391007, -34.930291 ], [ -58.391945, -34.930758 ], [ -58.39283, -34.931197 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 240.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.761269, -34.659043 ], [ -58.761475, -34.659631 ], [ -58.76163, -34.659655 ], [ -58.76176, -34.659655 ], [ -58.761892, -34.659648 ], [ -58.762025, -34.659629 ], [ -58.762177, -34.659608 ], [ -58.762359, -34.659581 ], [ -58.762595, -34.659525 ], [ -58.76303, -34.660583 ], [ -58.763049, -34.660721 ], [ -58.762734, -34.661292 ], [ -58.762823, -34.662277 ], [ -58.761935, -34.662914 ], [ -58.76117, -34.663434 ], [ -58.760225, -34.664098 ], [ -58.75983, -34.664379 ], [ -58.75936, -34.664675 ], [ -58.759353, -34.664679 ], [ -58.758506, -34.665252 ], [ -58.757694999999899, -34.665779 ], [ -58.758452, -34.666533 ], [ -58.759193, -34.667273 ], [ -58.759848, -34.667924 ], [ -58.758998, -34.668534 ], [ -58.759815, -34.669268 ], [ -58.759815, -34.669272 ], [ -58.760589, -34.670028 ], [ -58.761296, -34.67072 ], [ -58.761982, -34.671389 ], [ -58.762587, -34.67198 ], [ -58.762597, -34.671991 ], [ -58.763388, -34.672747 ], [ -58.764208, -34.673527 ], [ -58.765055, -34.674338 ], [ -58.765852, -34.675099 ], [ -58.766656, -34.674528 ], [ -58.767454, -34.673957 ], [ -58.768141, -34.673439 ], [ -58.768809, -34.672989 ], [ -58.768836, -34.672975 ], [ -58.769447, -34.672536 ], [ -58.770074, -34.67209 ], [ -58.771217, -34.673171 ], [ -58.771236, -34.673182 ], [ -58.771737, -34.673653 ], [ -58.772299, -34.674186 ], [ -58.772842, -34.674695 ], [ -58.773354, -34.675186 ], [ -58.773931, -34.675726 ], [ -58.774498, -34.676259 ], [ -58.774502, -34.676267 ], [ -58.775117, -34.676852 ], [ -58.773954, -34.677665 ], [ -58.772659, -34.678576 ], [ -58.771244, -34.679562 ], [ -58.770443, -34.680129 ], [ -58.769656, -34.680673 ], [ -58.769645, -34.680681 ], [ -58.768832, -34.681252 ], [ -58.768027, -34.681818 ], [ -58.76698, -34.682547 ], [ -58.766824, -34.68266 ], [ -58.765574999999899, -34.68353 ], [ -58.764162, -34.684516 ], [ -58.763923, -34.684766 ], [ -58.763024, -34.685716 ], [ -58.762401, -34.6848 ], [ -58.760681, -34.682455 ], [ -58.760092, -34.681679 ], [ -58.75985, -34.681368 ], [ -58.759606, -34.681052 ], [ -58.759132, -34.680433 ], [ -58.758543, -34.679923 ], [ -58.757932, -34.679421 ], [ -58.757203, -34.678824 ], [ -58.756454, -34.678214 ], [ -58.756014, -34.677857 ], [ -58.755445, -34.677388 ], [ -58.755122, -34.677153 ], [ -58.754803, -34.676966 ], [ -58.754529, -34.676708 ], [ -58.754048, -34.676232 ], [ -58.75344, -34.675729 ], [ -58.752803, -34.675167 ], [ -58.749836, -34.672735 ], [ -58.748721, -34.671844 ], [ -58.747618, -34.670941 ], [ -58.746524, -34.670051 ], [ -58.746482, -34.670044 ], [ -58.745274, -34.669753 ], [ -58.742051, -34.668974 ], [ -58.741888, -34.668969 ], [ -58.741794, -34.668965 ], [ -58.741029, -34.668325 ], [ -58.740222, -34.667651 ], [ -58.740207, -34.667639 ], [ -58.739336, -34.666857 ], [ -58.739271, -34.666834 ], [ -58.738485, -34.666572 ], [ -58.737614, -34.666286 ], [ -58.735775, -34.665676 ], [ -58.734764, -34.665344 ], [ -58.733681, -34.664985 ], [ -58.732575, -34.664622 ], [ -58.731322, -34.664785 ], [ -58.730043, -34.664979 ], [ -58.729564, -34.665034 ], [ -58.728493, -34.66519 ], [ -58.727399, -34.665346 ], [ -58.726313, -34.665522 ], [ -58.724982, -34.665742 ], [ -58.724674, -34.665798 ], [ -58.723898, -34.66552 ], [ -58.723525, -34.665385 ], [ -58.722675, -34.665534 ], [ -58.721391, -34.665733 ], [ -58.720674, -34.66585 ], [ -58.719738, -34.666005 ], [ -58.719566, -34.666032 ], [ -58.718088, -34.666232 ], [ -58.716511, -34.666444 ], [ -58.714865, -34.66672 ], [ -58.713219, -34.666987 ], [ -58.712867, -34.667018 ], [ -58.711238, -34.667159 ], [ -58.710543, -34.667211 ], [ -58.710172, -34.667162 ], [ -58.709587, -34.667163 ], [ -58.709243, -34.667166 ], [ -58.708649, -34.667109 ], [ -58.7082, -34.667068 ], [ -58.70753, -34.667004 ], [ -58.706678, -34.666877 ], [ -58.705966, -34.666792 ], [ -58.704078, -34.666556 ], [ -58.70318, -34.666442 ], [ -58.70222, -34.666313 ], [ -58.700344, -34.66605 ], [ -58.700023, -34.666005 ], [ -58.698383, -34.665781 ], [ -58.697796, -34.665715 ], [ -58.69635, -34.665543 ], [ -58.694451, -34.665317 ], [ -58.69442, -34.665313 ], [ -58.69246, -34.665062 ], [ -58.690868, -34.664815 ], [ -58.689153, -34.664619 ], [ -58.68744, -34.664388 ], [ -58.685793, -34.664171 ], [ -58.684392, -34.663992 ], [ -58.682951, -34.663789 ], [ -58.681433, -34.663601 ], [ -58.680011, -34.663414 ], [ -58.678714, -34.663231 ], [ -58.67831, -34.66317 ], [ -58.676717, -34.662914 ], [ -58.676058, -34.662768 ], [ -58.675177, -34.66256 ], [ -58.674233999999899, -34.662325 ], [ -58.672872, -34.661891 ], [ -58.671398, -34.661432 ], [ -58.670941, -34.661321 ], [ -58.669994, -34.661028 ], [ -58.668596, -34.66056 ], [ -58.667109, -34.660167 ], [ -58.667003, -34.660183 ], [ -58.665761, -34.659741 ], [ -58.665677, -34.659679 ], [ -58.664271, -34.659246 ], [ -58.662859, -34.658748 ], [ -58.661458, -34.65831 ], [ -58.660411, -34.65799 ], [ -58.659589, -34.657765 ], [ -58.658524, -34.657386 ], [ -58.656244999999899, -34.656674 ], [ -58.655876, -34.65656 ], [ -58.655104, -34.65632 ], [ -58.652987, -34.655714 ], [ -58.652621, -34.655792 ], [ -58.652053, -34.655895 ], [ -58.650313, -34.656213 ], [ -58.648055, -34.656569 ], [ -58.646939, -34.656899 ], [ -58.646608, -34.65696 ], [ -58.645953, -34.656996 ], [ -58.644581, -34.657356 ], [ -58.643978, -34.657476 ], [ -58.643252, -34.657614 ], [ -58.642545, -34.657752 ], [ -58.642453, -34.657676 ], [ -58.642051, -34.656563 ], [ -58.641733, -34.655448 ], [ -58.64171, -34.655372 ], [ -58.641373, -34.6542 ], [ -58.641165, -34.653511 ], [ -58.641029, -34.653003 ], [ -58.639343, -34.653274 ], [ -58.637887, -34.653502 ], [ -58.637043, -34.653647 ], [ -58.636416, -34.653476 ], [ -58.635717, -34.653273 ], [ -58.634811, -34.653417 ], [ -58.634279, -34.653816 ], [ -58.633879, -34.65416 ], [ -58.632916, -34.654346 ], [ -58.632059, -34.654477 ], [ -58.631061, -34.654654 ], [ -58.630907, -34.654682 ], [ -58.629912, -34.654708 ], [ -58.628785, -34.654716 ], [ -58.628761, -34.653815 ], [ -58.628765, -34.653788 ], [ -58.628753, -34.652894 ], [ -58.628749, -34.652868 ], [ -58.627605, -34.652872 ], [ -58.62647, -34.652877 ], [ -58.625349, -34.652885 ], [ -58.624224, -34.652888 ], [ -58.624203, -34.651627 ], [ -58.624194, -34.650351 ], [ -58.622667, -34.650408 ], [ -58.621147, -34.650473 ], [ -58.619825, -34.650519 ], [ -58.618713, -34.650555 ], [ -58.618526, -34.650555 ], [ -58.618501, -34.649258 ], [ -58.619143, -34.649255 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 239.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.341682, -34.915315 ], [ -58.342269, -34.914517 ], [ -58.343028, -34.914894 ], [ -58.343601, -34.914123 ], [ -58.344314, -34.914489 ], [ -58.345045, -34.914852 ], [ -58.345923, -34.915276 ], [ -58.346476, -34.914516 ], [ -58.347056, -34.913727 ], [ -58.347922, -34.914147 ], [ -58.348758, -34.914571 ], [ -58.34936, -34.913777 ], [ -58.350146, -34.914158 ], [ -58.350233, -34.914251 ], [ -58.353977, -34.9092 ], [ -58.356089, -34.910245 ], [ -58.357085, -34.910742 ], [ -58.35803, -34.91119 ], [ -58.35914, -34.911753 ], [ -58.360176, -34.912258 ], [ -58.361179, -34.912771 ], [ -58.363266, -34.913819 ], [ -58.364263, -34.914307 ], [ -58.365345, -34.914842 ], [ -58.366377, -34.915338 ], [ -58.368201, -34.915695 ], [ -58.369327, -34.915906 ], [ -58.3694, -34.915726 ], [ -58.369491, -34.9156 ], [ -58.369636, -34.915471 ], [ -58.369857, -34.915386 ], [ -58.370076, -34.915353 ], [ -58.370306, -34.915367 ], [ -58.370543, -34.915426 ], [ -58.370678, -34.915521 ], [ -58.370786, -34.915627 ], [ -58.370867, -34.915786 ], [ -58.370886, -34.915964 ], [ -58.370852, -34.916181 ], [ -58.371305, -34.916273 ], [ -58.372492, -34.916467 ], [ -58.374079, -34.916765 ], [ -58.37488, -34.916893 ], [ -58.376057, -34.917083 ], [ -58.377865, -34.917403 ], [ -58.377678, -34.916671 ], [ -58.378379, -34.915708 ], [ -58.379047, -34.914785 ], [ -58.379076, -34.914659 ], [ -58.378144, -34.914225 ], [ -58.377535, -34.913928 ], [ -58.37803, -34.913283 ], [ -58.378461, -34.912714 ], [ -58.378887, -34.912131 ], [ -58.379322, -34.911554 ], [ -58.377853, -34.910819 ], [ -58.37645, -34.91011 ], [ -58.374939, -34.9094 ], [ -58.37348, -34.908712 ], [ -58.372043, -34.907997 ], [ -58.370541, -34.907275 ], [ -58.369056, -34.906529 ], [ -58.36949, -34.905925 ], [ -58.369917, -34.905337 ], [ -58.370332, -34.904773 ], [ -58.370747, -34.904208 ], [ -58.371181, -34.903628 ], [ -58.371596, -34.903063 ], [ -58.372012, -34.902494 ], [ -58.372438, -34.901914 ], [ -58.372846, -34.901342 ], [ -58.373268, -34.900768 ], [ -58.373869, -34.899968 ], [ -58.374515, -34.899087 ], [ -58.375059, -34.899355 ], [ -58.375421, -34.89592 ], [ -58.375668, -34.893711 ], [ -58.375827, -34.892221 ], [ -58.376912, -34.892305 ], [ -58.377973, -34.892385 ], [ -58.379061, -34.892465 ], [ -58.380339, -34.892556 ], [ -58.380428, -34.891803 ], [ -58.38051, -34.891044 ], [ -58.380595, -34.890329 ], [ -58.380672, -34.889607 ], [ -58.380723, -34.889133 ], [ -58.380741, -34.888898 ], [ -58.380818, -34.888225 ], [ -58.38081, -34.888129 ], [ -58.380808, -34.888048 ], [ -58.380883, -34.887283 ], [ -58.381359, -34.887468 ], [ -58.382091, -34.887771 ], [ -58.382865, -34.888061 ], [ -58.383321, -34.888297 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 237.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.697796, -34.665715 ], [ -58.698383, -34.665781 ], [ -58.700023, -34.666005 ], [ -58.700344, -34.66605 ], [ -58.70222, -34.666313 ], [ -58.70318, -34.666442 ], [ -58.704078, -34.666556 ], [ -58.705966, -34.666792 ], [ -58.706678, -34.666877 ], [ -58.70753, -34.667004 ], [ -58.7082, -34.667068 ], [ -58.708649, -34.667109 ], [ -58.709243, -34.667166 ], [ -58.709587, -34.667163 ], [ -58.710172, -34.667162 ], [ -58.710543, -34.667211 ], [ -58.711238, -34.667159 ], [ -58.712867, -34.667018 ], [ -58.713219, -34.666987 ], [ -58.714865, -34.66672 ], [ -58.716511, -34.666444 ], [ -58.718088, -34.666232 ], [ -58.719566, -34.666032 ], [ -58.719738, -34.666005 ], [ -58.720674, -34.66585 ], [ -58.721391, -34.665733 ], [ -58.722675, -34.665534 ], [ -58.723525, -34.665385 ], [ -58.724878, -34.66517 ], [ -58.72523, -34.665125 ], [ -58.72654, -34.664996 ], [ -58.727293, -34.664866 ], [ -58.728413, -34.664748 ], [ -58.72948, -34.664549 ], [ -58.730273, -34.664469 ], [ -58.731576, -34.664237 ], [ -58.73287, -34.664032 ], [ -58.733755, -34.66386 ], [ -58.734245, -34.663789 ], [ -58.735586, -34.663592 ], [ -58.735513, -34.663729 ], [ -58.736536, -34.664061 ], [ -58.738379, -34.664664 ], [ -58.739249, -34.664949 ], [ -58.740146, -34.665239 ], [ -58.740746, -34.665439 ], [ -58.740853, -34.665349 ], [ -58.741894, -34.666215 ], [ -58.742754, -34.666927 ], [ -58.743557, -34.667602 ], [ -58.743671, -34.667496 ], [ -58.744273, -34.667014 ], [ -58.74499, -34.666448 ], [ -58.746261, -34.665399 ], [ -58.747073, -34.664731 ], [ -58.747088, -34.664719 ], [ -58.747444, -34.664431 ], [ -58.748631, -34.663497 ], [ -58.749592, -34.662726 ], [ -58.750521, -34.662047 ], [ -58.751227, -34.661545 ], [ -58.751602, -34.661479 ], [ -58.752344, -34.662161 ], [ -58.752767, -34.662543 ], [ -58.752998, -34.662758 ], [ -58.754044, -34.663708 ], [ -58.754044, -34.663712 ], [ -58.754676, -34.664302 ], [ -58.755342, -34.664919 ], [ -58.756012, -34.665547 ], [ -58.756228, -34.665739 ], [ -58.75704, -34.665185 ], [ -58.757694999999899, -34.665779 ], [ -58.758452, -34.666533 ], [ -58.759193, -34.667273 ], [ -58.759848, -34.667924 ], [ -58.758998, -34.668534 ], [ -58.759815, -34.669268 ], [ -58.759815, -34.669272 ], [ -58.760589, -34.670028 ], [ -58.761296, -34.67072 ], [ -58.761982, -34.671389 ], [ -58.762587, -34.67198 ], [ -58.762597, -34.671991 ], [ -58.763388, -34.672747 ], [ -58.764208, -34.673527 ], [ -58.765055, -34.674338 ], [ -58.765852, -34.675099 ], [ -58.766656, -34.674528 ], [ -58.767454, -34.673957 ], [ -58.768141, -34.673439 ], [ -58.768809, -34.672989 ], [ -58.768836, -34.672975 ], [ -58.769447, -34.672536 ], [ -58.770074, -34.67209 ], [ -58.771217, -34.673171 ], [ -58.771236, -34.673182 ], [ -58.771737, -34.673653 ], [ -58.772299, -34.674186 ], [ -58.772842, -34.674695 ], [ -58.773354, -34.675186 ], [ -58.773931, -34.675726 ], [ -58.774498, -34.676259 ], [ -58.774502, -34.676267 ], [ -58.775117, -34.676852 ], [ -58.77592, -34.67761 ], [ -58.77667, -34.678321 ], [ -58.777483, -34.679084 ], [ -58.777496, -34.679095 ], [ -58.77825, -34.679806 ], [ -58.779041, -34.68055 ], [ -58.779827, -34.681291 ], [ -58.780636, -34.682053 ], [ -58.780647, -34.682065 ], [ -58.781403, -34.682775 ], [ -58.782054, -34.683387 ], [ -58.780836, -34.684229 ], [ -58.781376, -34.684746 ], [ -58.78163, -34.684985 ], [ -58.781896, -34.685234 ], [ -58.782447, -34.685744 ], [ -58.782982, -34.686251 ], [ -58.78351, -34.686738 ], [ -58.782347, -34.687583 ], [ -58.782893, -34.688093 ], [ -58.783506, -34.688663 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 236.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.390642, -34.708323 ], [ -58.390447, -34.707739 ], [ -58.38934, -34.708526 ], [ -58.388314, -34.709254 ], [ -58.387642, -34.709707 ], [ -58.386701, -34.710415 ], [ -58.386701, -34.710418 ], [ -58.385697, -34.71112 ], [ -58.385689, -34.711124 ], [ -58.384739, -34.711831 ], [ -58.383737, -34.712545 ], [ -58.383733, -34.712549 ], [ -58.382733, -34.713244 ], [ -58.38273, -34.713248 ], [ -58.381747, -34.713943 ], [ -58.38172, -34.713963 ], [ -58.38073, -34.714696 ], [ -58.379722, -34.715395 ], [ -58.379707, -34.715402 ], [ -58.378779, -34.71609 ], [ -58.378768, -34.716098 ], [ -58.377813, -34.716769 ], [ -58.37685, -34.717447 ], [ -58.37549, -34.718509 ], [ -58.375386, -34.718513 ], [ -58.375413, -34.718547 ], [ -58.376212, -34.719329 ], [ -58.376224, -34.719336 ], [ -58.377057, -34.720091 ], [ -58.377874, -34.720862 ], [ -58.378736, -34.721711 ], [ -58.379154, -34.722104 ], [ -58.379586, -34.722514 ], [ -58.378414, -34.723369 ], [ -58.377271, -34.724185 ], [ -58.376141, -34.724977 ], [ -58.374618, -34.725997 ], [ -58.37461, -34.726083 ], [ -58.374553, -34.726157 ], [ -58.373861, -34.726656 ], [ -58.372718, -34.727479 ], [ -58.371565, -34.728261 ], [ -58.370491999999899, -34.729011 ], [ -58.370377, -34.729046 ], [ -58.37102, -34.729624 ], [ -58.370142, -34.730214 ], [ -58.369278, -34.730851 ], [ -58.368435, -34.731489 ], [ -58.36816, -34.731675 ], [ -58.367267, -34.732348 ], [ -58.368219, -34.733144 ], [ -58.369114, -34.733938 ], [ -58.368152, -34.734633 ], [ -58.367187, -34.735353 ], [ -58.367172, -34.735364 ], [ -58.366351, -34.736 ], [ -58.365474, -34.736657 ], [ -58.364599, -34.737311 ], [ -58.363753, -34.737938 ], [ -58.362942, -34.738619 ], [ -58.36209, -34.739277 ], [ -58.361235, -34.739938 ], [ -58.360371, -34.740601 ], [ -58.359488, -34.74128 ], [ -58.359075, -34.74158 ], [ -58.358941, -34.74151 ], [ -58.358244, -34.741161 ], [ -58.357652, -34.741966 ], [ -58.357069, -34.742735 ], [ -58.356497, -34.743505 ], [ -58.355904, -34.744287 ], [ -58.355328, -34.745091 ], [ -58.354311, -34.746428 ], [ -58.353297, -34.747754 ], [ -58.352647, -34.748635 ], [ -58.352094, -34.749369 ], [ -58.351686, -34.749913 ], [ -58.350816, -34.751087 ], [ -58.350418, -34.751626 ], [ -58.349987, -34.752218 ], [ -58.349518, -34.752838 ], [ -58.349074, -34.753432 ], [ -58.348621, -34.754025 ], [ -58.348027, -34.754784 ], [ -58.349037, -34.755288 ], [ -58.349416, -34.755488 ], [ -58.350081, -34.755798 ], [ -58.350746999999899, -34.756146 ], [ -58.351359, -34.756452 ], [ -58.352225, -34.756815 ], [ -58.353626, -34.757576 ], [ -58.354618, -34.75806 ], [ -58.355057, -34.758277 ], [ -58.355675, -34.758578 ], [ -58.356119, -34.7588 ], [ -58.356416, -34.758946 ], [ -58.357251, -34.759366 ], [ -58.357458, -34.75947 ], [ -58.358465, -34.75996 ], [ -58.359194, -34.760313 ], [ -58.359508, -34.760464 ], [ -58.360634, -34.761003 ], [ -58.361412, -34.761395 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 235.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.396274, -34.761266 ], [ -58.39494, -34.761447 ], [ -58.393621, -34.761619 ], [ -58.39223, -34.76181 ], [ -58.390981, -34.761965 ], [ -58.39067, -34.760718 ], [ -58.390391, -34.75955 ], [ -58.390141, -34.75843 ], [ -58.388755, -34.758552 ], [ -58.388598, -34.75861 ], [ -58.388104, -34.758389 ], [ -58.387147, -34.7579 ], [ -58.386818, -34.757707 ], [ -58.385966, -34.757262 ], [ -58.384887, -34.756693 ], [ -58.383552, -34.756009 ], [ -58.382334, -34.755371 ], [ -58.381568999999899, -34.754989 ], [ -58.380746, -34.754542 ], [ -58.379343, -34.753811 ], [ -58.379117, -34.7537 ], [ -58.378323, -34.753268 ], [ -58.37739, -34.752805 ], [ -58.376435, -34.752286 ], [ -58.376355, -34.752237 ], [ -58.375201, -34.751642 ], [ -58.374257, -34.751169 ], [ -58.373153, -34.750574 ], [ -58.372709, -34.750335 ], [ -58.372361, -34.750157 ], [ -58.37173, -34.749825 ], [ -58.371601, -34.749733 ], [ -58.370696, -34.749311 ], [ -58.37048, -34.750557 ], [ -58.370458, -34.750682 ], [ -58.370281, -34.751675 ], [ -58.37026, -34.751791 ], [ -58.370076, -34.752765 ], [ -58.369381, -34.7524 ], [ -58.368885, -34.752144 ], [ -58.368462, -34.751927 ], [ -58.367547, -34.751447 ], [ -58.366608, -34.750959 ], [ -58.365687, -34.750438 ], [ -58.364757, -34.749975 ], [ -58.363782, -34.749466 ], [ -58.362833, -34.748948 ], [ -58.361877, -34.748446 ], [ -58.360917, -34.747954 ], [ -58.360605, -34.747792 ], [ -58.359993, -34.747478 ], [ -58.359314, -34.747143 ], [ -58.359042, -34.746987 ], [ -58.358142, -34.746527 ], [ -58.35785, -34.746374 ], [ -58.357169, -34.746041 ], [ -58.35626, -34.745592 ], [ -58.355328, -34.745091 ], [ -58.354541, -34.74469 ], [ -58.35375, -34.744287 ], [ -58.353094, -34.74395 ], [ -58.352499, -34.74365 ], [ -58.351222, -34.742993 ], [ -58.349945, -34.74234 ], [ -58.349393, -34.742068 ], [ -58.34866, -34.741693 ], [ -58.34809, -34.741397 ], [ -58.347939, -34.741336 ], [ -58.347139, -34.740953 ], [ -58.346628, -34.742484 ], [ -58.346059, -34.743894 ], [ -58.346003, -34.744034 ], [ -58.345548, -34.745139 ], [ -58.345754, -34.745254 ], [ -58.34658, -34.745663 ], [ -58.347418, -34.746037 ], [ -58.347534, -34.746041 ], [ -58.347645, -34.746022 ], [ -58.3482, -34.746379 ], [ -58.349228, -34.746904 ], [ -58.350444, -34.74751 ], [ -58.351164, -34.747886 ], [ -58.35188, -34.748239 ], [ -58.352647, -34.748635 ], [ -58.352094, -34.749369 ], [ -58.351686, -34.749913 ], [ -58.350816, -34.751087 ], [ -58.350418, -34.751626 ], [ -58.349987, -34.752218 ], [ -58.349518, -34.752838 ], [ -58.349074, -34.753432 ], [ -58.348621, -34.754025 ], [ -58.348027, -34.754784 ], [ -58.347136, -34.754311 ], [ -58.346432, -34.753942 ], [ -58.345822, -34.753622 ], [ -58.34553, -34.753462 ], [ -58.345196, -34.753281 ], [ -58.344746, -34.753041 ], [ -58.343899, -34.752589 ], [ -58.342956999999899, -34.752102 ], [ -58.3427, -34.751958 ], [ -58.342401, -34.751808 ], [ -58.342063, -34.751635 ], [ -58.341624, -34.75142 ], [ -58.341347, -34.751262 ], [ -58.340901, -34.751034 ], [ -58.340403, -34.75076 ], [ -58.3402, -34.75069 ], [ -58.339351, -34.75045 ], [ -58.338142, -34.750079 ], [ -58.337683, -34.749891 ], [ -58.337405, -34.749734 ], [ -58.336707, -34.749392 ], [ -58.335988, -34.749051 ], [ -58.335262, -34.748703 ], [ -58.33475, -34.74844 ], [ -58.334601, -34.748334 ], [ -58.334472, -34.748611 ], [ -58.334134, -34.749042 ], [ -58.333313, -34.750088 ], [ -58.333253, -34.750142 ], [ -58.332644, -34.750847 ], [ -58.332201, -34.751424 ], [ -58.332016, -34.751591 ], [ -58.331856, -34.751738 ], [ -58.331345, -34.752488 ], [ -58.330702, -34.753396 ], [ -58.330099, -34.754199 ], [ -58.329567, -34.754945 ], [ -58.328968, -34.755795 ], [ -58.328445, -34.756564 ], [ -58.328385, -34.756658 ], [ -58.327811, -34.757512 ], [ -58.327297, -34.758242 ], [ -58.32722, -34.758341 ], [ -58.327093, -34.7585 ], [ -58.326733, -34.758975 ], [ -58.326256, -34.759604 ], [ -58.325706, -34.760326 ], [ -58.325246, -34.760943 ], [ -58.324775, -34.761559 ], [ -58.324237, -34.762272 ], [ -58.323753, -34.762908 ], [ -58.3247, -34.763399 ], [ -58.324153, -34.764127 ], [ -58.323611, -34.764858 ], [ -58.323147, -34.765473 ], [ -58.323068, -34.765549 ], [ -58.322969, -34.765645 ], [ -58.322869, -34.765741 ], [ -58.322794, -34.765814 ], [ -58.322288, -34.766456 ], [ -58.321695, -34.767236 ], [ -58.320998, -34.768144 ], [ -58.320315, -34.769038 ], [ -58.319773, -34.769707 ], [ -58.319212, -34.770413 ], [ -58.318698, -34.771059 ], [ -58.318207, -34.771668 ], [ -58.317783, -34.772206 ], [ -58.317751, -34.772275 ], [ -58.317727, -34.772336 ], [ -58.317508, -34.772585 ], [ -58.317018, -34.773125 ], [ -58.316528, -34.773669 ], [ -58.316035, -34.774209 ], [ -58.315543, -34.774755 ], [ -58.316989, -34.775639 ], [ -58.316504, -34.77618 ], [ -58.316025, -34.776712 ], [ -58.315525, -34.777246 ], [ -58.315017, -34.777795 ], [ -58.314536, -34.778338 ], [ -58.314049, -34.778881 ], [ -58.313552, -34.779425 ], [ -58.313071, -34.779955 ], [ -58.312539999999899, -34.780537 ], [ -58.313961, -34.781442 ], [ -58.315333, -34.782324 ], [ -58.314733, -34.78281 ], [ -58.314088, -34.783257 ], [ -58.313376, -34.783647 ], [ -58.312575, -34.784005 ], [ -58.311249, -34.784449 ], [ -58.310827, -34.784578 ], [ -58.309584, -34.783807 ], [ -58.308129, -34.782938 ], [ -58.306672, -34.782051 ], [ -58.305185, -34.781128 ], [ -58.304689, -34.781685 ], [ -58.3042, -34.782224 ], [ -58.303714, -34.782765 ], [ -58.303229, -34.783298 ], [ -58.302741, -34.783836 ], [ -58.302241, -34.784382 ], [ -58.301947, -34.784711 ], [ -58.301557, -34.785176 ], [ -58.30109, -34.784908 ], [ -58.300789, -34.784726 ], [ -58.300009, -34.784276 ], [ -58.299126, -34.783778 ], [ -58.298717, -34.783547 ], [ -58.298177, -34.783241 ], [ -58.29761, -34.782988 ], [ -58.296937, -34.782615 ], [ -58.29604, -34.782124 ], [ -58.295063, -34.781567 ], [ -58.294572, -34.781345 ], [ -58.294046, -34.781046 ], [ -58.293852999999899, -34.780947 ], [ -58.293134, -34.780562 ], [ -58.292379, -34.780153 ], [ -58.292222, -34.780073 ], [ -58.291345, -34.779593 ], [ -58.291206, -34.779515 ], [ -58.290607, -34.77919 ], [ -58.290178, -34.778955 ], [ -58.28983, -34.778766 ], [ -58.289343, -34.778497 ], [ -58.288614, -34.779389 ], [ -58.287942, -34.780231 ], [ -58.287247, -34.781108 ], [ -58.286556, -34.781973 ], [ -58.285861, -34.782848 ], [ -58.285208, -34.783674 ], [ -58.284703, -34.784317 ], [ -58.285494, -34.784736 ], [ -58.286554, -34.785315 ], [ -58.287894, -34.786039 ], [ -58.288613, -34.786415 ], [ -58.289316, -34.786776 ], [ -58.290077, -34.787164 ], [ -58.290845, -34.787555 ], [ -58.291679, -34.787984 ], [ -58.292459, -34.788396 ], [ -58.291977, -34.789025 ], [ -58.291424, -34.789778 ], [ -58.290847, -34.79053 ], [ -58.290191, -34.79144 ], [ -58.290329, -34.791769 ], [ -58.288987, -34.792083 ], [ -58.288899999999899, -34.792417 ], [ -58.288192, -34.793359 ], [ -58.287192, -34.794625 ], [ -58.28619, -34.795918 ], [ -58.285211, -34.797201 ], [ -58.284119, -34.798324 ], [ -58.284071, -34.798524 ], [ -58.283952, -34.799742 ], [ -58.283881, -34.80078 ], [ -58.283814, -34.801813 ], [ -58.283743, -34.802831 ], [ -58.283676, -34.803881 ], [ -58.283602, -34.804956 ], [ -58.283532, -34.806046 ], [ -58.283464, -34.807053 ], [ -58.283431, -34.808075 ], [ -58.283402, -34.809094 ], [ -58.283372, -34.810011 ], [ -58.28335, -34.810695 ], [ -58.283123, -34.810986 ], [ -58.282586, -34.811682 ], [ -58.281459, -34.811652 ], [ -58.280263, -34.811626 ], [ -58.280246, -34.812686 ], [ -58.279134, -34.812652 ], [ -58.279174, -34.8116 ], [ -58.278173, -34.811568 ], [ -58.277923, -34.811552 ], [ -58.276304, -34.811516 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 234.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.794613217999938, -34.351500445999932 ], [ -58.79459043199995, -34.351515607999943 ], [ -58.794097529999931, -34.351093701999957 ], [ -58.793980327999918, -34.350966454999934 ], [ -58.793878052999901, -34.35085541299992 ], [ -58.793300816999931, -34.35026767599993 ], [ -58.792622791999918, -34.34959170299993 ], [ -58.7926646599999, -34.349563607999926 ], [ -58.793879338999943, -34.348748511999929 ], [ -58.7950895809999, -34.347956057999909 ], [ -58.795254299999954, -34.347846237999931 ], [ -58.796332765999921, -34.347106298999904 ], [ -58.796362171999931, -34.347074908999957 ], [ -58.797631678999949, -34.346202503999905 ], [ -58.798749682999926, -34.345450242999902 ], [ -58.798776118999911, -34.345432455999912 ], [ -58.798144420999904, -34.344833220999931 ], [ -58.79812925199991, -34.34481883199993 ], [ -58.79901988499995, -34.344257421999941 ], [ -58.799789085999919, -34.34377891999992 ], [ -58.800363198999946, -34.343411340999921 ], [ -58.80048834899992, -34.343340035999915 ], [ -58.801154475999908, -34.342917058999944 ], [ -58.80156652799991, -34.342605682999931 ], [ -58.801757823999935, -34.342455985999948 ], [ -58.802202957999953, -34.342109296999922 ], [ -58.802412611999955, -34.341932218999943 ], [ -58.803611793999949, -34.340959699999928 ], [ -58.80402689999994, -34.34041927699991 ], [ -58.804688226999929, -34.339592671999924 ], [ -58.805738948999931, -34.338260871999921 ], [ -58.806785984999919, -34.336929114999919 ], [ -58.807796262999943, -34.335636595999915 ], [ -58.8077012359999, -34.335586516999911 ], [ -58.806888010999899, -34.335157946999914 ], [ -58.805917002999934, -34.334648965999918 ], [ -58.804934868999908, -34.33411682499991 ], [ -58.803907236999919, -34.33355845299991 ], [ -58.803871502999925, -34.333539036999923 ], [ -58.804841228999919, -34.332246982999948 ], [ -58.8048797699999, -34.332267003999902 ], [ -58.804841228999919, -34.332246982999948 ], [ -58.803910835999943, -34.331760825999936 ], [ -58.802895502999945, -34.331221301999904 ], [ -58.801519121999945, -34.330487987999902 ], [ -58.800473585999953, -34.329975956999931 ], [ -58.800435935999928, -34.329956906999939 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 233.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.794572445333365, -34.350993707783786 ], [ -58.792656030112283, -34.34915680049032 ], [ -58.79605567943149, -34.34670027969193 ], [ -58.79308921123522, -34.343744778106355 ], [ -58.792080283050154, -34.342867449249788 ], [ -58.788406468463265, -34.341090858315233 ], [ -58.787562039438832, -34.342066886668178 ], [ -58.781799085512233, -34.338606920990074 ], [ -58.779712687825203, -34.337345760758765 ], [ -58.77850636064742, -34.335996867641789 ], [ -58.777596131958731, -34.335305971167237 ], [ -58.775293143710229, -34.334033844325219 ], [ -58.776576237162963, -34.332394336024507 ], [ -58.776779119461047, -34.332443685772688 ], [ -58.778380244624287, -34.330294230074088 ], [ -58.778884708716809, -34.329663649958434 ], [ -58.779592055107422, -34.329992648279642 ], [ -58.78153314520258, -34.327448394595592 ], [ -58.782051317558484, -34.326784914647817 ], [ -58.780993039625251, -34.326324316998118 ], [ -58.779051949530079, -34.325233139232751 ], [ -58.78012119407402, -34.323884246115774 ], [ -58.780812090548572, -34.323028850480618 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 232.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.28062, -34.697484 ], [ -58.281501, -34.698238 ], [ -58.280908, -34.698753 ], [ -58.280175, -34.699335 ], [ -58.281042, -34.700084 ], [ -58.281932, -34.700833 ], [ -58.282365, -34.7012 ], [ -58.282463, -34.701286 ], [ -58.282556, -34.701375 ], [ -58.283115, -34.702232 ], [ -58.283557, -34.702929 ], [ -58.284238, -34.703988 ], [ -58.28479, -34.704877 ], [ -58.285346, -34.705712 ], [ -58.285401, -34.705787 ], [ -58.284598, -34.706147 ], [ -58.284339, -34.706256 ], [ -58.283646, -34.706577 ], [ -58.28273, -34.706975 ], [ -58.28187, -34.707361 ], [ -58.281224, -34.707653 ], [ -58.28207, -34.708322 ], [ -58.279654, -34.709446 ], [ -58.279623999999899, -34.709462 ], [ -58.279388, -34.709587 ], [ -58.278765, -34.709879 ], [ -58.277981, -34.708932 ], [ -58.277191, -34.707989 ], [ -58.27645, -34.707073 ], [ -58.275754, -34.706214 ], [ -58.274945, -34.705243 ], [ -58.273884, -34.70562 ], [ -58.272869, -34.706006 ], [ -58.271642, -34.706451 ], [ -58.27083, -34.706733 ], [ -58.269982, -34.707025 ], [ -58.269146, -34.70732 ], [ -58.267818, -34.707752 ], [ -58.267425, -34.708289 ], [ -58.266788, -34.709227 ], [ -58.266111, -34.710127 ], [ -58.267056, -34.710591 ], [ -58.26806, -34.711116 ], [ -58.269041, -34.711623 ], [ -58.268492, -34.712381 ], [ -58.268432, -34.712456 ], [ -58.268376, -34.712535 ], [ -58.267795, -34.713305 ], [ -58.2674, -34.713844 ], [ -58.266849, -34.714599 ], [ -58.266283, -34.715354 ], [ -58.265709, -34.716126 ], [ -58.265448, -34.716466 ], [ -58.265123, -34.716895 ], [ -58.264786, -34.717333 ], [ -58.26454, -34.71766 ], [ -58.264151, -34.718174 ], [ -58.263899, -34.718506 ], [ -58.263454, -34.719097 ], [ -58.263047, -34.719632 ], [ -58.262825, -34.719928 ], [ -58.262479, -34.720392 ], [ -58.262268, -34.720682 ], [ -58.261943, -34.721146 ], [ -58.261785, -34.721369 ], [ -58.261709, -34.721435 ], [ -58.261658, -34.721489 ], [ -58.261337, -34.721947 ], [ -58.261071, -34.722312 ], [ -58.260753, -34.72273 ], [ -58.260492, -34.723067 ], [ -58.260131, -34.723545 ], [ -58.259575, -34.724308 ], [ -58.259026, -34.725058 ], [ -58.258417, -34.725855 ], [ -58.258517, -34.725911 ], [ -58.25937, -34.72634 ], [ -58.25953, -34.726432 ], [ -58.260367, -34.726833 ], [ -58.260471, -34.726873 ], [ -58.260579, -34.726909 ], [ -58.261475, -34.727352 ], [ -58.260941, -34.728096 ], [ -58.260873, -34.728176 ], [ -58.261521, -34.728497 ], [ -58.262471, -34.728967 ], [ -58.263634, -34.729516 ], [ -58.264589, -34.729963 ], [ -58.265549, -34.730415 ], [ -58.265634, -34.730458 ], [ -58.265735, -34.730508 ], [ -58.266606, -34.730924 ], [ -58.267551, -34.731361 ], [ -58.268511, -34.731782 ], [ -58.26948, -34.732239 ], [ -58.269573, -34.732296 ], [ -58.269668, -34.73234 ], [ -58.270502, -34.732813 ], [ -58.271513, -34.733332 ], [ -58.27244, -34.733825 ], [ -58.273412, -34.734343 ], [ -58.274492, -34.73491 ], [ -58.275473, -34.735446 ], [ -58.276415, -34.735969 ], [ -58.27664, -34.736094 ], [ -58.27763, -34.736609 ], [ -58.278644, -34.737126 ], [ -58.279614, -34.737584 ], [ -58.28075, -34.738117 ], [ -58.281676, -34.738564 ], [ -58.281813, -34.738595 ], [ -58.281942999999899, -34.738621 ], [ -58.282799, -34.739022 ], [ -58.283788999999899, -34.739487 ], [ -58.284828, -34.739973 ], [ -58.285881, -34.740473 ], [ -58.286943, -34.740971 ], [ -58.287971, -34.741458 ], [ -58.288935, -34.741912 ], [ -58.289974, -34.742402 ], [ -58.290083, -34.742489 ], [ -58.289454, -34.743324 ], [ -58.288857, -34.74412 ], [ -58.288329, -34.74483 ], [ -58.288298, -34.74486 ], [ -58.288244, -34.744923 ], [ -58.287629, -34.745737 ], [ -58.287554, -34.745832 ], [ -58.287156, -34.746673 ], [ -58.287061, -34.74686 ], [ -58.286871, -34.74743 ], [ -58.286622, -34.748203 ], [ -58.286385, -34.749069 ], [ -58.286189, -34.749767 ], [ -58.285999, -34.750441 ], [ -58.285941, -34.750534 ], [ -58.286017, -34.750587 ], [ -58.287016, -34.751199 ], [ -58.287912, -34.751742 ], [ -58.288309, -34.751979 ], [ -58.288918, -34.75235 ], [ -58.2893, -34.752561 ], [ -58.289871, -34.752939 ], [ -58.290879, -34.753549 ], [ -58.291908, -34.754106 ], [ -58.292918, -34.754707 ], [ -58.293743, -34.755168 ], [ -58.29395, -34.755301 ], [ -58.294126, -34.755421 ], [ -58.295287, -34.755941 ], [ -58.29612, -34.75631 ], [ -58.296758, -34.756597 ], [ -58.29826, -34.757265 ], [ -58.298348, -34.757297 ], [ -58.298218, -34.757458 ], [ -58.297749, -34.757868 ], [ -58.297482, -34.758093 ], [ -58.296968, -34.758533 ], [ -58.297099, -34.758571 ], [ -58.297832, -34.758951 ], [ -58.29872, -34.759403 ], [ -58.299813, -34.759991 ], [ -58.301048, -34.760656 ], [ -58.302284, -34.761303 ], [ -58.303512, -34.761985 ], [ -58.304225, -34.762342 ], [ -58.304585, -34.762574 ], [ -58.304827, -34.762705 ], [ -58.306124, -34.763408 ], [ -58.307068999999899, -34.763917 ], [ -58.308532, -34.764692 ], [ -58.310032, -34.765491 ], [ -58.311565, -34.766305 ], [ -58.31307, -34.76712 ], [ -58.314574, -34.767948 ], [ -58.316132, -34.768784 ], [ -58.31768, -34.769621 ], [ -58.319212, -34.770413 ], [ -58.320724, -34.77122 ], [ -58.322215, -34.772026 ], [ -58.322819, -34.772569 ], [ -58.323413, -34.77303 ], [ -58.323351, -34.773177 ], [ -58.32318, -34.773518 ], [ -58.322769, -34.774142 ], [ -58.322348, -34.774794 ], [ -58.322002, -34.775373 ], [ -58.321913, -34.775493 ], [ -58.321584, -34.775945 ], [ -58.321166, -34.776502 ], [ -58.320725, -34.777056 ], [ -58.320528, -34.777262 ], [ -58.320171, -34.7776 ], [ -58.319634, -34.778122 ], [ -58.319113, -34.778639 ], [ -58.318589, -34.779138 ], [ -58.318052, -34.779629 ], [ -58.317514, -34.780165 ], [ -58.316995, -34.780698 ], [ -58.316445, -34.781233 ], [ -58.315914, -34.781752 ], [ -58.315333, -34.782324 ], [ -58.314733, -34.78281 ], [ -58.314088, -34.783257 ], [ -58.313376, -34.783647 ], [ -58.313585, -34.784037 ], [ -58.314165, -34.784336 ], [ -58.31569, -34.785051 ], [ -58.31577, -34.78511 ], [ -58.315353, -34.785674 ], [ -58.31492, -34.786263 ], [ -58.314513, -34.786829 ], [ -58.314075, -34.787438 ], [ -58.313671, -34.787997 ], [ -58.313262, -34.788567 ], [ -58.312811, -34.789155 ], [ -58.312406, -34.78973 ], [ -58.311966, -34.79029 ], [ -58.311555, -34.790915 ], [ -58.311301, -34.791257 ], [ -58.312835, -34.792122 ], [ -58.314334, -34.792952 ], [ -58.315848, -34.793782 ], [ -58.31737, -34.794602 ], [ -58.318576, -34.795256 ], [ -58.318721, -34.795384 ], [ -58.318797, -34.795454 ], [ -58.319909, -34.796057 ], [ -58.321148, -34.796723 ], [ -58.322258, -34.79732 ], [ -58.323345, -34.797904 ], [ -58.323376, -34.797923 ], [ -58.324409, -34.798501 ], [ -58.325182, -34.798929 ], [ -58.325723, -34.799239 ], [ -58.326366, -34.799598 ], [ -58.326765, -34.799771 ], [ -58.327027, -34.799888 ], [ -58.328105, -34.800478 ], [ -58.32869, -34.800793 ], [ -58.330698, -34.801915 ], [ -58.331063, -34.802126 ], [ -58.331809, -34.8025 ], [ -58.332206, -34.802699 ], [ -58.332753, -34.803024 ], [ -58.333473, -34.803434 ], [ -58.333851, -34.803637 ], [ -58.333997, -34.803698 ], [ -58.334532, -34.803975 ], [ -58.335179, -34.804299 ], [ -58.335827, -34.804636 ], [ -58.336214, -34.804855 ], [ -58.336888, -34.805219 ], [ -58.337769, -34.805673 ], [ -58.338146, -34.805889 ], [ -58.338443, -34.806055 ], [ -58.338583, -34.806132 ], [ -58.339496, -34.806633 ], [ -58.340804, -34.807354 ], [ -58.342178, -34.808093 ], [ -58.343525, -34.80881 ], [ -58.344645, -34.809445 ], [ -58.344829, -34.809553 ], [ -58.344907, -34.809607 ], [ -58.345133, -34.809736 ], [ -58.346219, -34.810389 ], [ -58.347484, -34.8111 ], [ -58.347589, -34.811158 ], [ -58.348517, -34.811669 ], [ -58.349305, -34.812092 ], [ -58.350284, -34.812649 ], [ -58.351083, -34.813094 ], [ -58.351156, -34.813119 ], [ -58.351224, -34.813155 ], [ -58.351742, -34.813365 ], [ -58.352336, -34.813605 ], [ -58.352776, -34.813777 ], [ -58.353239, -34.814027 ], [ -58.353491, -34.814166 ], [ -58.354151, -34.814544 ], [ -58.354814, -34.814911 ], [ -58.355943, -34.815545 ], [ -58.357062, -34.816175 ], [ -58.357901, -34.816637 ], [ -58.358718, -34.817088 ], [ -58.359177, -34.817359 ], [ -58.359522, -34.817554 ], [ -58.359579, -34.817587 ], [ -58.360347, -34.818001 ], [ -58.360445, -34.818061 ], [ -58.361237, -34.81854 ], [ -58.361493, -34.818681 ], [ -58.361985, -34.818995 ], [ -58.362681, -34.81938 ], [ -58.363444, -34.819806 ], [ -58.36422, -34.820235 ], [ -58.364871, -34.820601 ], [ -58.364999, -34.820672 ], [ -58.365229, -34.820801 ], [ -58.365458, -34.820938 ], [ -58.367153, -34.821852 ], [ -58.367797, -34.822191 ], [ -58.368652, -34.822651 ], [ -58.36998, -34.82336 ], [ -58.371416, -34.824114 ], [ -58.372823, -34.824881 ], [ -58.374299, -34.825681 ], [ -58.375998, -34.826603 ], [ -58.377377, -34.82734 ], [ -58.378505, -34.827942 ], [ -58.379518, -34.828474 ], [ -58.380221, -34.828867 ], [ -58.380542, -34.829041 ], [ -58.381614, -34.829635 ], [ -58.381936, -34.829794 ], [ -58.382439, -34.830029 ], [ -58.383267, -34.830495 ], [ -58.38441, -34.831144 ], [ -58.385468, -34.831737 ], [ -58.386056, -34.832032 ], [ -58.386455, -34.831328 ], [ -58.386929, -34.830402 ], [ -58.387414, -34.82948 ], [ -58.388308, -34.827766 ], [ -58.388458, -34.826926 ], [ -58.388643, -34.825931 ], [ -58.38876, -34.825295 ], [ -58.388896, -34.824503 ], [ -58.389098, -34.824543 ], [ -58.390489, -34.824635 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 231.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.604509, -34.557783 ], [ -58.603228, -34.557357 ], [ -58.602556, -34.557174 ], [ -58.602391, -34.557132 ], [ -58.601792, -34.556923 ], [ -58.600639, -34.556589 ], [ -58.600279, -34.556446 ], [ -58.599769, -34.556271 ], [ -58.598812, -34.557048 ], [ -58.597918, -34.557777 ], [ -58.596998, -34.558493 ], [ -58.596276, -34.557883 ], [ -58.595913, -34.557563 ], [ -58.595517, -34.55722 ], [ -58.594874, -34.556644 ], [ -58.594295, -34.556168 ], [ -58.594198, -34.556065 ], [ -58.593363, -34.555343 ], [ -58.592525, -34.554588 ], [ -58.593136999999899, -34.554097 ], [ -58.5938, -34.55356 ], [ -58.594406, -34.553068 ], [ -58.594431, -34.553048 ], [ -58.595716, -34.552014 ], [ -58.597053, -34.551029 ], [ -58.59837, -34.549983 ], [ -58.597611, -34.549296 ], [ -58.597045, -34.548785 ], [ -58.596469, -34.548257 ], [ -58.595887, -34.547725 ], [ -58.59534, -34.547246 ], [ -58.594738, -34.546706 ], [ -58.593415, -34.547704 ], [ -58.592093, -34.548696 ], [ -58.590707, -34.549738 ], [ -58.589419, -34.550704 ], [ -58.588092, -34.551702 ], [ -58.58675, -34.552703 ], [ -58.58577, -34.553477 ], [ -58.585566, -34.553553 ], [ -58.585157, -34.554202 ], [ -58.585062, -34.554354 ], [ -58.584546, -34.553058 ], [ -58.584293, -34.552413 ], [ -58.583727, -34.551348 ], [ -58.582429, -34.548032 ], [ -58.581036, -34.549165 ], [ -58.579995, -34.550012 ], [ -58.578872, -34.550934 ], [ -58.577939999999899, -34.551704 ], [ -58.577641, -34.551952 ], [ -58.577345, -34.552188 ], [ -58.577207, -34.552304 ], [ -58.576829, -34.552607 ], [ -58.576172, -34.55316 ], [ -58.575944, -34.553327 ], [ -58.575596, -34.553615 ], [ -58.57552, -34.553672 ], [ -58.575192999999899, -34.553923 ], [ -58.574824, -34.554236 ], [ -58.574101, -34.554813 ], [ -58.573574, -34.555205 ], [ -58.573253, -34.55545 ], [ -58.572753, -34.555895 ], [ -58.572333, -34.556245 ], [ -58.57137, -34.557013 ], [ -58.570395, -34.557806 ], [ -58.56965, -34.558399 ], [ -58.56893, -34.558991 ], [ -58.56845, -34.559388 ], [ -58.56731, -34.560302 ], [ -58.566098, -34.561258 ], [ -58.56538, -34.561841 ], [ -58.56501, -34.562068 ], [ -58.564408, -34.56258 ], [ -58.563904, -34.56298 ], [ -58.56356, -34.563262 ], [ -58.56331, -34.563475 ], [ -58.562734, -34.563914 ], [ -58.561466, -34.564905 ], [ -58.560867, -34.565397 ], [ -58.56034, -34.565788 ], [ -58.559986, -34.566057 ], [ -58.56082, -34.566737 ], [ -58.560882, -34.566755 ], [ -58.56095, -34.566834 ], [ -58.559636, -34.567092 ], [ -58.558989, -34.567225 ], [ -58.558828, -34.567282 ], [ -58.558683, -34.56734 ], [ -58.558251, -34.567588 ], [ -58.558036, -34.567791 ], [ -58.556936, -34.568679 ], [ -58.556131, -34.569311 ], [ -58.555352, -34.56993 ], [ -58.554289, -34.570788 ], [ -58.553753, -34.571219 ], [ -58.55216, -34.572458 ], [ -58.552082, -34.572519 ], [ -58.55197, -34.572611 ], [ -58.550806, -34.573562 ], [ -58.550595, -34.57374 ], [ -58.549913, -34.574273 ], [ -58.548868, -34.575062 ], [ -58.548484, -34.575424 ], [ -58.548365, -34.575528 ], [ -58.54815, -34.575771 ], [ -58.548095, -34.575844 ], [ -58.548015, -34.575983 ], [ -58.547998, -34.576147 ], [ -58.54786, -34.576045 ], [ -58.546775, -34.576932 ], [ -58.545699, -34.577785 ], [ -58.54464, -34.578625 ], [ -58.545483, -34.579308 ], [ -58.544434, -34.580162 ], [ -58.544331, -34.580076 ], [ -58.543606, -34.579461 ], [ -58.542807, -34.578786 ], [ -58.542774, -34.578757 ], [ -58.542094, -34.578197 ], [ -58.542047, -34.57815 ], [ -58.541292, -34.577518 ], [ -58.540508, -34.576852 ], [ -58.539487, -34.577721 ], [ -58.538414, -34.578582 ], [ -58.537323, -34.57942 ], [ -58.536296, -34.580302 ], [ -58.535281, -34.581148 ], [ -58.534156, -34.582069 ], [ -58.534912, -34.582715 ], [ -58.535679, -34.583346 ], [ -58.534614, -34.584219 ], [ -58.534061, -34.584656 ], [ -58.533521, -34.585076 ], [ -58.532493, -34.58591 ], [ -58.532467, -34.585936 ], [ -58.53143, -34.586775 ], [ -58.530694, -34.587367 ], [ -58.528719, -34.588992 ], [ -58.527776, -34.590055 ], [ -58.526831, -34.591082 ], [ -58.525973, -34.592073 ], [ -58.525948, -34.59226 ], [ -58.525272, -34.593022 ], [ -58.524615, -34.593763 ], [ -58.523965, -34.594485 ], [ -58.523254, -34.595271 ], [ -58.521998, -34.59447 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 230.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.394606, -34.743041 ], [ -58.393192, -34.743219 ], [ -58.391702, -34.743409 ], [ -58.390112, -34.743598 ], [ -58.38874, -34.743786 ], [ -58.387272, -34.743982 ], [ -58.386418, -34.7441 ], [ -58.385864, -34.744164 ], [ -58.384438, -34.744342 ], [ -58.383071, -34.744534 ], [ -58.381661, -34.744705 ], [ -58.380243, -34.744874 ], [ -58.379015, -34.745081 ], [ -58.378891, -34.745148 ], [ -58.378897, -34.745253 ], [ -58.378243, -34.745999 ], [ -58.377638, -34.746791 ], [ -58.377075, -34.747514 ], [ -58.376519, -34.748242 ], [ -58.375964, -34.748964 ], [ -58.375383, -34.749698 ], [ -58.375359, -34.749839 ], [ -58.374841, -34.750428 ], [ -58.374257, -34.751169 ], [ -58.373153, -34.750574 ], [ -58.372709, -34.750335 ], [ -58.372361, -34.750157 ], [ -58.37173, -34.749825 ], [ -58.371601, -34.749733 ], [ -58.370696, -34.749311 ], [ -58.37048, -34.750557 ], [ -58.370458, -34.750682 ], [ -58.370281, -34.751675 ], [ -58.37026, -34.751791 ], [ -58.370076, -34.752765 ], [ -58.369381, -34.7524 ], [ -58.368885, -34.752144 ], [ -58.368462, -34.751927 ], [ -58.367547, -34.751447 ], [ -58.366608, -34.750959 ], [ -58.365687, -34.750438 ], [ -58.364757, -34.749975 ], [ -58.363782, -34.749466 ], [ -58.362833, -34.748948 ], [ -58.361877, -34.748446 ], [ -58.360917, -34.747954 ], [ -58.360605, -34.747792 ], [ -58.359993, -34.747478 ], [ -58.359314, -34.747143 ], [ -58.359042, -34.746987 ], [ -58.358142, -34.746527 ], [ -58.35785, -34.746374 ], [ -58.357169, -34.746041 ], [ -58.35626, -34.745592 ], [ -58.355328, -34.745091 ], [ -58.354311, -34.746428 ], [ -58.353297, -34.747754 ], [ -58.352647, -34.748635 ], [ -58.35188, -34.748239 ], [ -58.351164, -34.747886 ], [ -58.350444, -34.74751 ], [ -58.349228, -34.746904 ], [ -58.3482, -34.746379 ], [ -58.347645, -34.746022 ], [ -58.347534, -34.746041 ], [ -58.347418, -34.746037 ], [ -58.34658, -34.745663 ], [ -58.347014, -34.744559 ], [ -58.346632, -34.744364 ], [ -58.347675, -34.743028 ], [ -58.34866, -34.741693 ], [ -58.34809, -34.741397 ], [ -58.347939, -34.741336 ], [ -58.347139, -34.740953 ], [ -58.347317, -34.740398 ], [ -58.347544, -34.739811 ], [ -58.347798, -34.739051 ], [ -58.348388, -34.737579 ], [ -58.34891, -34.736196 ], [ -58.349121, -34.735638 ], [ -58.349322, -34.735159 ], [ -58.349411, -34.734865 ], [ -58.34973, -34.73407 ], [ -58.350132, -34.733041 ], [ -58.35023, -34.732699 ], [ -58.350546, -34.731875 ], [ -58.350895, -34.730826 ], [ -58.3517, -34.731513 ], [ -58.352666, -34.732377 ], [ -58.353538, -34.733137 ], [ -58.354391, -34.733895 ], [ -58.355252, -34.733237 ], [ -58.356085, -34.732587 ], [ -58.356948, -34.731921 ], [ -58.357784, -34.731273 ], [ -58.358652, -34.73063 ], [ -58.359492, -34.729958 ], [ -58.360289, -34.729347 ], [ -58.36127, -34.72865 ], [ -58.362241, -34.727959 ], [ -58.36318, -34.727277 ], [ -58.363468, -34.727069 ], [ -58.364231, -34.726491 ], [ -58.364314, -34.72647 ], [ -58.364375, -34.726442 ], [ -58.365171, -34.725832 ], [ -58.366007, -34.725217 ], [ -58.367324, -34.724299 ], [ -58.36816, -34.725081 ], [ -58.36897, -34.725847 ], [ -58.369841, -34.726648 ], [ -58.370986, -34.725816 ], [ -58.372128, -34.724996 ], [ -58.372962, -34.724372 ], [ -58.373622, -34.723882 ], [ -58.374425, -34.723339 ], [ -58.375535, -34.722529 ], [ -58.376711, -34.721702 ], [ -58.377188, -34.721387 ], [ -58.377874, -34.720862 ], [ -58.379328, -34.719807 ], [ -58.37934, -34.719799 ], [ -58.38027, -34.719111 ], [ -58.380285999999899, -34.719099 ], [ -58.381239, -34.718421 ], [ -58.381243, -34.718417 ], [ -58.382208, -34.717755 ], [ -58.383196, -34.717054 ], [ -58.384236, -34.71632 ], [ -58.384239, -34.71632 ], [ -58.385202, -34.715624 ], [ -58.386206999999899, -34.71489 ], [ -58.38621, -34.714886 ], [ -58.387175, -34.714163 ], [ -58.38639, -34.713398 ], [ -58.385572, -34.712643 ], [ -58.386524, -34.711922 ], [ -58.386549, -34.711902 ], [ -58.387499, -34.711207 ], [ -58.388522, -34.710464 ], [ -58.388557, -34.710442 ], [ -58.389152, -34.710015 ], [ -58.389164, -34.710007 ], [ -58.39016, -34.709303 ], [ -58.390175, -34.709292 ], [ -58.390828, -34.708849 ], [ -58.390642, -34.708323 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 229.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.424112999615204, -34.570862999927442 ], [ -58.424284000306329, -34.571099000018819 ], [ -58.424627999982192, -34.571357000225362 ], [ -58.427395999925409, -34.57290200042695 ], [ -58.424970999611901, -34.574510999982635 ], [ -58.426558999997837, -34.57755800020152 ], [ -58.426623000251197, -34.57779400029284 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.426623000251197, -34.578265999576161 ], [ -58.428039999946009, -34.579982999615709 ], [ -58.429005000380414, -34.580948000050114 ], [ -58.430035000215071, -34.581871000346325 ], [ -58.430679000235614, -34.582364999744925 ], [ -58.431665999885922, -34.58309400008801 ], [ -58.432909999696676, -34.584017000384222 ], [ -58.433832999992887, -34.58468199957457 ], [ -58.434756000289156, -34.585389999848587 ], [ -58.435699999755116, -34.586098000122547 ], [ -58.436321999660493, -34.586549000236118 ], [ -58.436638999889908, -34.586772999774098 ], [ -58.43756700041672, -34.587429000348038 ], [ -58.437823999677789, -34.587665000439358 ], [ -58.437910000046429, -34.587815000162095 ], [ -58.438363000252195, -34.589173999880131 ], [ -58.438382000229069, -34.589230999810752 ], [ -58.43883300034264, -34.590560999990089 ], [ -58.439132999788058, -34.591033000172786 ], [ -58.439648000155046, -34.591547999640454 ], [ -58.440677999989646, -34.592278000029637 ], [ -58.441729999939525, -34.59300800041882 ], [ -58.442695000373931, -34.593672999609225 ], [ -58.443532000301559, -34.594209000045282 ], [ -58.444303999929616, -34.594745999628117 ], [ -58.445505999602176, -34.595582000408967 ], [ -58.446578999621067, -34.596334000014053 ], [ -58.447672999709141, -34.597084999573042 ], [ -58.448767999843255, -34.597857000100419 ], [ -58.449840999862204, -34.598607999659407 ], [ -58.450891999765929, -34.599315999933424 ], [ -58.451214000225889, -34.599530999955618 ], [ -58.451985999853946, -34.600003000138315 ], [ -58.452115000406877, -34.600109999676704 ], [ -58.452694000127963, -34.600538999675052 ], [ -58.453102000057243, -34.600796999881595 ], [ -58.454088999707551, -34.601439999856041 ], [ -58.455055000188054, -34.602127000060989 ], [ -58.455998999654071, -34.602792000150657 ], [ -58.45743700031727, -34.60375799973184 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.459624999594041, -34.605216999564846 ], [ -58.46052599977503, -34.605860999585445 ], [ -58.461598999793978, -34.606589999928531 ], [ -58.462157000345258, -34.606976999788685 ], [ -58.462714999997218, -34.607341000386839 ], [ -58.463959999854069, -34.60817800031441 ], [ -58.464409999921543, -34.608607000312759 ], [ -58.464646000012863, -34.608843000404079 ], [ -58.464838999919891, -34.60905800042633 ], [ -58.465354000286823, -34.609637000147416 ], [ -58.465934000054006, -34.610281000167959 ], [ -58.466555999959382, -34.610602999728599 ], [ -58.467844000000582, -34.611311000002615 ], [ -58.468443999790736, -34.611590000278227 ], [ -58.469002000342016, -34.611889999723644 ], [ -58.469559999993976, -34.612191000114535 ], [ -58.470075000360964, -34.612470000390147 ], [ -58.471211999733953, -34.613070000180301 ], [ -58.472327999937193, -34.613736000316123 ], [ -58.473079000395501, -34.615087999711363 ], [ -58.473723000416101, -34.615903000423089 ], [ -58.474066000045809, -34.616075000260992 ], [ -58.474710000066409, -34.616438999959826 ], [ -58.475182000249049, -34.617039999796134 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.476899000288597, -34.619013999996071 ], [ -58.477070000080403, -34.619163999718751 ], [ -58.478336000006379, -34.619829999854574 ], [ -58.479002000142145, -34.620173000383602 ], [ -58.479172999933951, -34.620345000221562 ], [ -58.479452000209619, -34.620666999782145 ], [ -58.480846999789151, -34.622083000330178 ], [ -58.481876999623807, -34.62292000025775 ], [ -58.482649000151184, -34.623498999978835 ], [ -58.483421999825396, -34.624120999884212 ], [ -58.484752000004733, -34.624679000435492 ], [ -58.485953999677292, -34.625150999718812 ], [ -58.486597999697892, -34.625365999741064 ], [ -58.487283999856686, -34.625622999901509 ], [ -58.487863999623869, -34.625815999808481 ], [ -58.488486000428509, -34.626030999830732 ], [ -58.489130000449109, -34.626266999922052 ], [ -58.489752000354486, -34.626481999944303 ], [ -58.491124999818851, -34.626997000311292 ], [ -58.491898000392382, -34.627532999848029 ], [ -58.493055999834496, -34.628305000375406 ], [ -58.493678999785971, -34.628735000419908 ], [ -58.494321999760416, -34.629164000418257 ], [ -58.494430000244279, -34.62924999988752 ], [ -58.494859000242627, -34.629529000163188 ], [ -58.495696000170256, -34.630107999884217 ], [ -58.496210999637867, -34.630430000344177 ], [ -58.497455000347941, -34.630859000342525 ], [ -58.499343000179294, -34.631460000178834 ], [ -58.50000900031506, -34.631738999555125 ], [ -58.500973999850146, -34.632167999553474 ], [ -58.502369000329054, -34.632769000289102 ], [ -58.503571000001614, -34.633283999756713 ], [ -58.504621999905339, -34.63375599993941 ], [ -58.504965000434368, -34.633884000446244 ], [ -58.505608999555648, -34.634098999569119 ], [ -58.505931000015607, -34.634206000006827 ], [ -58.506724999758887, -34.634355999729564 ], [ -58.508419999683213, -34.634635000005176 ], [ -58.509299999795132, -34.634700000304747 ], [ -58.510265000229538, -34.634763999658787 ], [ -58.511102000157166, -34.634613999936107 ], [ -58.511445999832972, -34.63446400021337 ], [ -58.512689999643726, -34.633926999731216 ], [ -58.513892000215606, -34.63343400037877 ], [ -58.514578000374399, -34.633240999572422 ], [ -58.515158000141525, -34.633132999987936 ], [ -58.516059000322571, -34.633068999734519 ], [ -58.516787999766336, -34.633089999803587 ], [ -58.517089000157171, -34.633047999665393 ], [ -58.518118999991827, -34.63302600044949 ], [ -58.518547999990176, -34.63302600044949 ], [ -58.518890999619884, -34.633068999734519 ], [ -58.519556999755707, -34.63319800028745 ], [ -58.519857000100444, -34.63319800028745 ], [ -58.520006999823124, -34.633176000172227 ], [ -58.520286000098793, -34.63319800028745 ], [ -58.520457999936696, -34.633240999572422 ], [ -58.520650999843724, -34.633412000263547 ], [ -58.520994000372752, -34.633584000101507 ], [ -58.521574000139935, -34.633820000192827 ], [ -58.522967999673426, -34.634141999753467 ], [ -58.523225999879969, -34.63422800012205 ], [ -58.524233999599346, -34.63446400021337 ], [ -58.525585999893963, -34.634570999751816 ], [ -58.526873999935106, -34.634700000304747 ], [ -58.528225000183568, -34.634828999958359 ], [ -58.528655000228014, -34.634828999958359 ], [ -58.529491000109545, -34.634806999843136 ], [ -58.529985000407407, -34.634721000373816 ], [ -58.530735999966396, -34.634657000120399 ], [ -58.531078999596104, -34.634613999936107 ], [ -58.531208000149036, -34.634442000098204 ], [ -58.531336999802647, -34.634334999660439 ], [ -58.531680000331733, -34.634162999822536 ], [ -58.532259000052761, -34.634141999753467 ], [ -58.533031999726973, -34.634119999638244 ], [ -58.533354000186932, -34.634098999569119 ], [ -58.534082999630698, -34.634141999753467 ], [ -58.534899000388521, -34.634206000006827 ], [ -58.535649999947509, -34.63422800012205 ], [ -58.536035999761566, -34.63422800012205 ], [ -58.536143000199274, -34.634206000006827 ], [ -58.537023000311194, -34.63390599966209 ], [ -58.537238000333389, -34.63384200030805 ], [ -58.537516999709737, -34.633799000123702 ], [ -58.537773999870183, -34.633926999731216 ], [ -58.537923999592863, -34.634035000215022 ], [ -58.538697000166394, -34.634570999751816 ], [ -58.539061999911326, -34.634700000304747 ], [ -58.539704999885771, -34.634721000373816 ], [ -58.540520999744274, -34.634742999589719 ], [ -58.541378999741028, -34.63478599977401 ], [ -58.542880999758268, -34.634828999958359 ], [ -58.544040000145856, -34.634871000096553 ], [ -58.545306000071832, -34.634893000211719 ], [ -58.546228000321889, -34.634721000373816 ], [ -58.546742999789558, -34.634657000120399 ], [ -58.548480999898175, -34.634527999567467 ], [ -58.550692000235586, -34.634742999589719 ], [ -58.551571000301408, -34.634828999958359 ], [ -58.552215000321951, -34.634956999565816 ], [ -58.552623000251231, -34.635065000049678 ], [ -58.553609999901539, -34.635365000394415 ], [ -58.55453300019775, -34.635622999701638 ], [ -58.554896999896584, -34.635708000024124 ], [ -58.556119999638213, -34.636072999769056 ], [ -58.557150000372189, -34.636374000159947 ], [ -58.558609000205138, -34.636824000227364 ], [ -58.559253000225738, -34.636996000065324 ], [ -58.559639000039795, -34.637124999718935 ], [ -58.560090000153366, -34.637253000225712 ], [ -58.560326000244686, -34.637338999695032 ], [ -58.561399000263634, -34.637640000085867 ], [ -58.561571000101537, -34.637704000339284 ], [ -58.562321999660526, -34.637918000315437 ], [ -58.563415999748543, -34.638239999876077 ], [ -58.563630999770794, -34.638046999969049 ], [ -58.5638019995626, -34.637940000430604 ], [ -58.563995000368948, -34.637876000177243 ], [ -58.564403000298171, -34.637918000315437 ], [ -58.565626000039856, -34.638112000268563 ], [ -58.566441999898359, -34.638218999806952 ], [ -58.567793000146821, -34.638283000060369 ], [ -58.567943999915599, -34.638283000060369 ], [ -58.569445999932896, -34.638305000175592 ], [ -58.569574000439729, -34.638305000175592 ], [ -58.570969000019318, -34.638305000175592 ], [ -58.572557000405197, -34.638348000359883 ], [ -58.574016000238203, -34.638348000359883 ], [ -58.57511000032622, -34.638369000429009 ], [ -58.575540000370665, -34.638348000359883 ], [ -58.576247999745362, -34.63832600024466 ], [ -58.577062999557768, -34.63832600024466 ], [ -58.577685000362408, -34.638283000060369 ], [ -58.578564999575008, -34.638239999876077 ], [ -58.579316000033316, -34.639033999619357 ], [ -58.579873999685276, -34.639571000101512 ], [ -58.580495999590653, -34.640193000006889 ], [ -58.581397999817796, -34.641073000118809 ], [ -58.582684999812841, -34.641222999841546 ], [ -58.583608000109052, -34.641309000210128 ], [ -58.584509000290097, -34.641458999932865 ], [ -58.585495999940406, -34.641587999586477 ], [ -58.586482999590714, -34.641738000208477 ], [ -58.587555999609663, -34.641887999931214 ], [ -58.588586000343582, -34.641995000368922 ], [ -58.589701999647502, -34.642102999953465 ], [ -58.590795999735576, -34.642230999560923 ], [ -58.590623999897616, -34.643175999972357 ], [ -58.590623999897616, -34.643175999972357 ], [ -58.591417999640953, -34.643240000225774 ], [ -58.592191000214427, -34.643283000410122 ], [ -58.592877000373221, -34.643368999879385 ], [ -58.593650000047433, -34.643455000248025 ], [ -58.594079000045781, -34.643497000386219 ], [ -58.595195000249021, -34.643669000224122 ], [ -58.595796000085272, -34.64371200040847 ], [ -58.596461000174997, -34.642917999765814 ], [ -58.596803999804706, -34.642488999767465 ], [ -58.597169000448957, -34.642059999769117 ], [ -58.597812999570237, -34.641287000094962 ], [ -58.598541999913323, -34.640450000167334 ], [ -58.598713999751226, -34.640236000191237 ], [ -58.599229000118214, -34.63961400028586 ], [ -58.599916000323105, -34.638819999643204 ], [ -58.600644999766871, -34.638025999899924 ], [ -58.601224000387276, -34.637360999810255 ], [ -58.602125999715099, -34.637511000432255 ], [ -58.603070000080379, -34.637640000085867 ], [ -58.604164000168453, -34.637810999877672 ], [ -58.605301000440761, -34.638003999784701 ], [ -58.606416999744681, -34.638175999622661 ], [ -58.607340000040949, -34.638305000175592 ], [ -58.608670000220286, -34.638519000151689 ], [ -58.60929300017176, -34.637940000430604 ], [ -58.609529000263137, -34.637704000339284 ], [ -58.610344000075486, -34.638261999991244 ], [ -58.61167100011653, -34.639251999779901 ], [ -58.613047999765342, -34.640279000375529 ], [ -58.613970000015456, -34.640901000280905 ], [ -58.614506999598291, -34.641352000394477 ], [ -58.615086000218696, -34.641801999562574 ], [ -58.615579999617239, -34.641394999679449 ], [ -58.616567000166867, -34.640578999820946 ], [ -58.617553999817176, -34.641372999564226 ], [ -58.618583999651833, -34.642230999560923 ], [ -58.619076999903598, -34.642681999674494 ], [ -58.619614000385752, -34.643153999857191 ], [ -58.620514999667478, -34.643947999600471 ], [ -58.619785000177558, -34.644549000336042 ], [ -58.619120000087889, -34.645041999688488 ], [ -58.618498000182512, -34.64553599998635 ], [ -58.618498000182512, -34.646459000282618 ], [ -58.61847600006729, -34.647016999934579 ], [ -58.61847600006729, -34.647380999633356 ], [ -58.618498000182512, -34.647918000115567 ], [ -58.618498000182512, -34.648088999907372 ], [ -58.618519000251638, -34.648347000113915 ], [ -58.618519000251638, -34.648496999836652 ], [ -58.618519000251638, -34.648861999581584 ], [ -58.618519000251638, -34.649248000294961 ], [ -58.618541000366861, -34.650557000405229 ], [ -58.618541000366861, -34.651050999803772 ], [ -58.618541000366861, -34.65171599989344 ], [ -58.619849999577752, -34.651693999778217 ], [ -58.621179999757146, -34.651672999709149 ], [ -58.622724999958734, -34.65163000042412 ], [ -58.62418399979174, -34.65163000042412 ], [ -58.625343000179271, -34.65163000042412 ], [ -58.625343000179271, -34.652853000165805 ], [ -58.625364000248396, -34.653796999631766 ], [ -58.625407000432688, -34.654697999812811 ], [ -58.625428999648591, -34.655685000362439 ], [ -58.625449999717659, -34.65716600031061 ], [ -58.625471999832882, -34.658389000052239 ], [ -58.625471999832882, -34.659375999702604 ], [ -58.625471999832882, -34.660491999905844 ], [ -58.625386000363562, -34.660706999928038 ], [ -58.625364000248396, -34.662165999761044 ], [ -58.625536000086299, -34.662488000221003 ], [ -58.626008000268939, -34.663452999756089 ], [ -58.626114999807328, -34.663645999663117 ], [ -58.626416000198219, -34.66422600032962 ], [ -58.626543999805733, -34.664546999844106 ], [ -58.626715999643636, -34.664869000304066 ], [ -58.627209999941499, -34.665791999700957 ], [ -58.627532000401459, -34.666413999606334 ], [ -58.627767999593459, -34.666972000157614 ], [ -58.627961000399807, -34.667336999902602 ], [ -58.628453999752253, -34.668260000198813 ], [ -58.628540000120893, -34.668430999990619 ], [ -58.629097999772853, -34.669632999663179 ], [ -58.629784999977744, -34.671112999565253 ], [ -58.630471000136481, -34.672594000412744 ], [ -58.630578999721024, -34.672829999604744 ], [ -58.630771999628053, -34.673238000433344 ], [ -58.631050999903664, -34.673796000085304 ], [ -58.631608000408846, -34.675018999826932 ], [ -58.632101999807389, -34.676069999730657 ], [ -58.632231000360321, -34.6763279999372 ], [ -58.632660000358669, -34.677250000187314 ], [ -58.632832000196629, -34.677614999932246 ], [ -58.633174999826338, -34.678366000390554 ], [ -58.633431999986783, -34.678880999858222 ], [ -58.633711000262394, -34.679460999625405 ], [ -58.633862000031229, -34.679760999970142 ], [ -58.634119000191674, -34.680318999622102 ], [ -58.634268999914354, -34.680618999966839 ], [ -58.634591000374314, -34.68130600017173 ], [ -58.634806000396566, -34.681735000170079 ], [ -58.635341999933303, -34.682936999842639 ], [ -58.635836000231166, -34.684009999861587 ], [ -58.635879000415514, -34.684223999837684 ], [ -58.636093000391611, -34.685426000409564 ], [ -58.636350999698834, -34.686798999873929 ], [ -58.636543999605863, -34.687807999639404 ], [ -58.636629999974502, -34.688323000006392 ], [ -58.636822999881474, -34.689330999725826 ], [ -58.636866000065822, -34.689717000439202 ], [ -58.636930000319239, -34.690275000091162 ], [ -58.636930000319239, -34.690533000297705 ], [ -58.636972999604211, -34.691025999650094 ], [ -58.637102000157142, -34.691563000132305 ], [ -58.637338000248462, -34.692056000384071 ], [ -58.637552000224616, -34.692527999667391 ], [ -58.637788000315936, -34.692850000127351 ], [ -58.638045999623159, -34.69325800005663 ], [ -58.638131999991742, -34.693386999710242 ], [ -58.638582000059216, -34.693751000308396 ], [ -58.638946999804148, -34.69405199979991 ], [ -58.639441000102011, -34.694480999798259 ], [ -58.640427999752319, -34.695210000141344 ], [ -58.640641999728473, -34.695338999794956 ], [ -58.640813999566376, -34.69540400009447 ], [ -58.641372000117656, -34.69564000018579 ], [ -58.642080000391672, -34.695876000277167 ], [ -58.642336999652798, -34.695939999631207 ], [ -58.643367000386718, -34.696090000253264 ], [ -58.644183000245221, -34.696239999976001 ], [ -58.644397000221318, -34.696262000091167 ], [ -58.644954999873278, -34.696347999560487 ], [ -58.64791599972358, -34.696755000342932 ], [ -58.6491819996495, -34.697076999903572 ], [ -58.649847999785322, -34.697312999994892 ], [ -58.650898999689048, -34.697699999855047 ], [ -58.651714000400773, -34.698000000199784 ], [ -58.652551000328344, -34.698278999576132 ], [ -58.653002000441916, -34.698429000198132 ], [ -58.653709999816613, -34.698687000404675 ], [ -58.654095999630613, -34.698815000012189 ], [ -58.654503999559893, -34.698943999665801 ], [ -58.655298000202492, -34.699222999941469 ], [ -58.65559799964791, -34.699330000379177 ], [ -58.656069999830606, -34.699481000148012 ], [ -58.656628000381886, -34.699695000124109 ], [ -58.656843000404081, -34.699759000377526 ], [ -58.657637000147417, -34.700037999753818 ], [ -58.658430999890697, -34.700317000029486 ], [ -58.659139000164657, -34.700575000236029 ], [ -58.659224999633977, -34.700596000305154 ], [ -58.659953999977063, -34.700874999681446 ], [ -58.660662000251079, -34.701132999887989 ], [ -58.661455999994359, -34.701412000163657 ], [ -58.662228999668571, -34.701691000439268 ], [ -58.662485999829016, -34.701797999977657 ], [ -58.663322999756588, -34.702120000437617 ], [ -58.664223999937633, -34.702419999883034 ], [ -58.66508199993433, -34.702742000342994 ], [ -58.66596200004625, -34.703063999903634 ], [ -58.666821000089044, -34.703407000432662 ], [ -58.667764999555061, -34.703772000177651 ], [ -58.668602000381952, -34.704114999807359 ], [ -58.668729999989466, -34.704157999991651 ], [ -58.669502999663678, -34.704479999552291 ], [ -58.670661000005111, -34.704930999665862 ], [ -58.671476999863614, -34.705253000125822 ], [ -58.67252799976734, -34.70568200012417 ], [ -58.673643999970579, -34.706111000122519 ], [ -58.674480999898208, -34.70647599986745 ], [ -58.675295999710556, -34.70679800032741 ], [ -58.676411999913796, -34.707227000325759 ], [ -58.677356000279133, -34.707613000139816 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 228.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.530053223999914, -34.638352598999916 ], [ -58.53011456999991, -34.637772286999905 ], [ -58.53014014699994, -34.637430385999949 ], [ -58.530149589999951, -34.637087520999955 ], [ -58.530165997999916, -34.636655553999958 ], [ -58.530194475999906, -34.636561505999907 ], [ -58.530225256999927, -34.636515334999956 ], [ -58.530269457999907, -34.636481946999936 ], [ -58.53032124799995, -34.636442826999939 ], [ -58.530462233999913, -34.636450951999905 ], [ -58.53141910699992, -34.636506093999913 ], [ -58.532225462999918, -34.63659419499993 ], [ -58.532801616999905, -34.636620508999954 ], [ -58.532980852999913, -34.636635884999919 ], [ -58.534154668999918, -34.636758716999907 ], [ -58.535388288999911, -34.63682468199994 ], [ -58.536409951999929, -34.636882493999906 ], [ -58.536617278999927, -34.636894225999924 ], [ -58.536556233999931, -34.637828611999907 ], [ -58.53641624799991, -34.63872243599991 ], [ -58.536640443999943, -34.638728332999904 ], [ -58.537721155999918, -34.638756758999932 ], [ -58.539358102999927, -34.638840223999921 ], [ -58.54077056999995, -34.638832614999956 ], [ -58.540963327999918, -34.638831576999905 ], [ -58.540848591999918, -34.63977517099994 ], [ -58.541060048999952, -34.639775796999913 ], [ -58.542298427999924, -34.639779464999947 ], [ -58.542322497999919, -34.639612252999939 ], [ -58.542431995999948, -34.638851599999953 ], [ -58.542500860999951, -34.637956425999903 ], [ -58.542581100999939, -34.637383622999948 ], [ -58.54262695999995, -34.637015669999926 ], [ -58.542726887999947, -34.635928337999928 ], [ -58.542753153999911, -34.635642539999935 ], [ -58.543639617999929, -34.635926605999941 ], [ -58.543920443999923, -34.636016596999923 ], [ -58.54421444399992, -34.635804565999933 ], [ -58.544736970999907, -34.635427722999907 ], [ -58.545397077999951, -34.63486938199992 ], [ -58.546557008999912, -34.634007010999937 ], [ -58.547659710999937, -34.633171259999926 ], [ -58.547839039999928, -34.633042086999922 ], [ -58.548575472999914, -34.632366077999905 ], [ -58.549243232999913, -34.631701530999919 ], [ -58.549516331999939, -34.63143490199991 ], [ -58.549929440999904, -34.631031579999956 ], [ -58.549831621999942, -34.630991661999929 ], [ -58.54988603399994, -34.630342575999919 ], [ -58.549923581999906, -34.62992569499994 ], [ -58.549934029999918, -34.629721056999927 ], [ -58.549870416999909, -34.629499388999932 ], [ -58.549833666999916, -34.629290287999936 ], [ -58.549857817999907, -34.629245864999916 ], [ -58.549898809999945, -34.62921487999995 ], [ -58.54997103799991, -34.629195161999917 ], [ -58.550003285999935, -34.62920730399992 ], [ -58.550196849999907, -34.629280180999956 ], [ -58.550620693999917, -34.62944725299991 ], [ -58.551057606999905, -34.629628700999945 ], [ -58.551311946999931, -34.629603257999918 ], [ -58.551593405999938, -34.629544775999932 ], [ -58.552795131999915, -34.62855365899992 ], [ -58.552940101999923, -34.628435936999949 ], [ -58.55486666999991, -34.626909305999902 ], [ -58.555763190999926, -34.626206740999919 ], [ -58.556388854999909, -34.625644683999951 ], [ -58.55705261199995, -34.625106811999956 ], [ -58.557754516999921, -34.624565124999947 ], [ -58.558205297999905, -34.62421110799994 ], [ -58.558483123999906, -34.623992919999921 ], [ -58.557991027999947, -34.623783111999956 ], [ -58.558064850999926, -34.623780608999937 ], [ -58.558441161999951, -34.623767852999947 ], [ -58.558372497999926, -34.622730254999908 ], [ -58.558277129999908, -34.621677398999907 ], [ -58.558251856999902, -34.620927629999926 ], [ -58.558242797999924, -34.620658874999947 ], [ -58.559783935999917, -34.620601653999927 ], [ -58.561382293999941, -34.620532989999901 ], [ -58.562961577999943, -34.620441436999954 ], [ -58.564781188999916, -34.620376586999953 ], [ -58.564769062999915, -34.62020810599995 ], [ -58.564708709999934, -34.619369506999931 ], [ -58.564636229999905, -34.618305205999945 ], [ -58.564563750999923, -34.617259978999925 ], [ -58.564510344999917, -34.61627578699995 ], [ -58.56440353399995, -34.615211486999954 ], [ -58.564380645999904, -34.614158629999906 ], [ -58.5642890929999, -34.613132476999908 ], [ -58.564281463999919, -34.612106322999921 ], [ -58.564186095999901, -34.611068725999928 ], [ -58.564125060999913, -34.610012053999924 ], [ -58.564064025999926, -34.608955382999909 ], [ -58.563999175999925, -34.607917785999916 ], [ -58.56393051099991, -34.606906890999937 ], [ -58.563707661999899, -34.606916333999948 ], [ -58.562129973999902, -34.606983184999933 ], [ -58.562109551999924, -34.606774422999933 ], [ -58.562026977999949, -34.605930327999943 ], [ -58.561981200999924, -34.60502624499992 ], [ -58.561981200999924, -34.604816436999954 ], [ -58.561970381999913, -34.604639264999946 ], [ -58.561950683999953, -34.60431671099991 ], [ -58.561870574999944, -34.603313445999902 ], [ -58.561851928999943, -34.602255953999929 ], [ -58.561754331999907, -34.60121149899993 ], [ -58.561673267999936, -34.600183365999953 ], [ -58.561626433999947, -34.599124907999908 ], [ -58.561569213999917, -34.598377227999947 ], [ -58.5615386959999, -34.597618102999945 ], [ -58.561508178999929, -34.596824645999902 ], [ -58.56148529099994, -34.596675872999924 ], [ -58.561442831999955, -34.59619934299991 ], [ -58.561434593999934, -34.595917429999929 ], [ -58.561402588999954, -34.595201184999951 ], [ -58.561336721999908, -34.594614349999915 ], [ -58.561335297999904, -34.593993431999934 ], [ -58.561261298999909, -34.593170394999902 ], [ -58.561233594999919, -34.59267510299992 ], [ -58.56128620599992, -34.592446710999923 ], [ -58.561110782999947, -34.592337964999956 ], [ -58.560298010999929, -34.59183412099992 ], [ -58.560222842999906, -34.591790158999913 ], [ -58.560109236999949, -34.591723716999923 ], [ -58.559986251999931, -34.591651788999911 ], [ -58.559872361999908, -34.591585180999914 ], [ -58.559731126999907, -34.591492003999917 ], [ -58.559651898999903, -34.591439734999938 ], [ -58.559641575999933, -34.591433031999941 ], [ -58.558727263999913, -34.590839385999914 ], [ -58.557662963999917, -34.590141295999956 ], [ -58.556648253999924, -34.589607238999918 ], [ -58.555831908999949, -34.589134215999934 ], [ -58.555794413999934, -34.589140052999937 ], [ -58.555766518999917, -34.589144394999948 ], [ -58.5555820269999, -34.589173112999902 ], [ -58.555023192999954, -34.589260100999923 ], [ -58.553661345999899, -34.589450835999912 ], [ -58.553474425999923, -34.589439391999917 ], [ -58.553622791999942, -34.589289961999953 ], [ -58.554507775999923, -34.588398634999919 ], [ -58.554523201999928, -34.588383097999952 ], [ -58.554538726999908, -34.588367461999951 ], [ -58.554306029999907, -34.588214873999902 ], [ -58.554178951999916, -34.588141803999918 ], [ -58.553237914999954, -34.587600707999911 ], [ -58.551980705999938, -34.586869511999907 ], [ -58.5519589459999, -34.58685685599994 ], [ -58.551952361999952, -34.586853026999904 ], [ -58.551927400999944, -34.58683833799995 ], [ -58.549301146999937, -34.585292815999935 ], [ -58.549424858999942, -34.585180194999907 ], [ -58.549854278999931, -34.584789275999924 ], [ -58.549709934999953, -34.584659082999906 ], [ -58.549076079999907, -34.584087371999942 ], [ -58.548324584999932, -34.583412169999917 ], [ -58.547550200999922, -34.582725524999944 ], [ -58.547359466999922, -34.582553863999919 ], [ -58.546783446999939, -34.582080840999936 ], [ -58.545978545999901, -34.581413268999938 ], [ -58.545215606999932, -34.580783843999939 ], [ -58.544437407999908, -34.580139159999931 ], [ -58.544219666999936, -34.580315923999933 ], [ -58.543403624999939, -34.580978393999942 ], [ -58.542263504999937, -34.581938310999931 ], [ -58.542090996999946, -34.581793777999906 ], [ -58.541436788999931, -34.581245657999943 ], [ -58.540668629999914, -34.580559942999912 ], [ -58.539899868999953, -34.579890255999942 ], [ -58.539127207999911, -34.579212833999918 ], [ -58.538414245999945, -34.578582179999955 ], [ -58.538216760999944, -34.578733900999907 ], [ -58.53732320599994, -34.579420388999949 ], [ -58.537117948999935, -34.579250242999933 ], [ -58.536537553999949, -34.578769130999945 ], [ -58.535751212999912, -34.578092729999923 ], [ -58.53498411299995, -34.577450617999943 ], [ -58.534201663999909, -34.576793296999938 ], [ -58.533476942999926, -34.576173958999902 ], [ -58.532755940999948, -34.575556678999931 ], [ -58.532620732999931, -34.575442169999917 ], [ -58.531803289999914, -34.574775000999921 ], [ -58.531922903999941, -34.574671531999911 ], [ -58.532851915999913, -34.573867915999926 ], [ -58.533660040999905, -34.573226369999929 ], [ -58.533874459999936, -34.57305614899991 ], [ -58.534666086999948, -34.573700201999941 ], [ -58.534938085999954, -34.573495219999927 ], [ -58.535773744999915, -34.572865455999931 ], [ -58.535811762999913, -34.572838596999929 ], [ -58.536799769999902, -34.572018805999903 ], [ -58.537796096999955, -34.571193175999952 ], [ -58.537864232999937, -34.571140308999929 ], [ -58.538254002999906, -34.570815505999917 ], [ -58.538893529999939, -34.570282981999924 ], [ -58.539964518999909, -34.569403019999925 ], [ -58.540034534999904, -34.569345350999924 ], [ -58.540041540999937, -34.569339579999905 ], [ -58.541069556999901, -34.568492840999909 ], [ -58.542144367999924, -34.567616672999918 ], [ -58.543117245999952, -34.566869010999937 ], [ -58.5432463329999, -34.566838970999925 ], [ -58.543073659999948, -34.566704949999917 ], [ -58.542444583999952, -34.566216689999919 ], [ -58.542630439999925, -34.566071664999924 ], [ -58.543591520999939, -34.565321728999947 ], [ -58.544637456999908, -34.564497321999909 ], [ -58.545675985999935, -34.563679842999932 ], [ -58.546706939999922, -34.56286997299992 ], [ -58.547819577999917, -34.561998218999918 ], [ -58.548784771999919, -34.561242220999929 ], [ -58.548915790999899, -34.561355700999911 ], [ -58.549150925999925, -34.561559359999933 ], [ -58.549170127999901, -34.561543864999919 ], [ -58.549357047999933, -34.561393038999938 ], [ -58.550253464999912, -34.56066971599995 ], [ -58.551707001999944, -34.559508801999925 ], [ -58.552458613999931, -34.558905036999931 ], [ -58.553145840999946, -34.558358605999956 ], [ -58.553253025999936, -34.558274549999908 ], [ -58.554669370999932, -34.55714361999992 ], [ -58.556131654999945, -34.555978301999914 ], [ -58.557632225999953, -34.554786236999917 ], [ -58.557554532999916, -34.554719630999955 ], [ -58.556661281999936, -34.553953850999903 ], [ -58.555625082999939, -34.55305655199993 ], [ -58.555711870999914, -34.553009004999922 ], [ -58.555797809999945, -34.552961922999941 ], [ -58.555820383999901, -34.552949554999941 ], [ -58.556394502999922, -34.552487253999914 ], [ -58.557426452999948, -34.551651000999925 ], [ -58.558395385999916, -34.550868987999934 ], [ -58.559337615999937, -34.550106048999908 ], [ -58.559318541999914, -34.54995727499994 ], [ -58.559297302999937, -34.549934188999941 ], [ -58.559143065999933, -34.54976654099994 ], [ -58.558975219999923, -34.549606322999921 ], [ -58.558463769999946, -34.549212563999902 ], [ -58.558461465999926, -34.549210789999904 ], [ -58.558349939999914, -34.549124927999912 ], [ -58.558342917999937, -34.549119521999955 ], [ -58.5576324459999, -34.548572539999952 ], [ -58.557502746999944, -34.548477172999924 ], [ -58.557464599999946, -34.548366546999944 ], [ -58.557460784999932, -34.548233031999928 ], [ -58.557338782999921, -34.548329293999927 ], [ -58.556140899999946, -34.549274444999924 ], [ -58.554843902999949, -34.550296782999908 ], [ -58.553611702999945, -34.551338666999925 ], [ -58.55236029799994, -34.552377926999952 ], [ -58.552212593999911, -34.552251095999907 ], [ -58.551505938999924, -34.551644302999932 ], [ -58.55065583399994, -34.550906715999929 ], [ -58.549788143999933, -34.550168633999931 ], [ -58.549624514999948, -34.550023315999908 ], [ -58.548901416999911, -34.549419077999914 ], [ -58.548014319999936, -34.548677480999913 ], [ -58.547164444999908, -34.547967228999937 ], [ -58.546341242999915, -34.547276076999935 ], [ -58.545552350999913, -34.546623091999948 ], [ -58.545095014999902, -34.546237424999902 ], [ -58.544767255999943, -34.545958679999956 ], [ -58.544755629999941, -34.54594880399992 ], [ -58.544749911999929, -34.545943946999955 ], [ -58.544066004999934, -34.54536300299992 ], [ -58.543418097999904, -34.544801712999913 ], [ -58.542762563999929, -34.544248049999908 ], [ -58.542913078999902, -34.544128687999944 ], [ -58.544049542999915, -34.543227446999936 ], [ -58.545319392999943, -34.542172402999938 ], [ -58.54659965299993, -34.541123928999923 ], [ -58.547886079999955, -34.540102104999903 ], [ -58.549171750999903, -34.539089242999921 ], [ -58.550504546999946, -34.538033997999946 ], [ -58.550933949999944, -34.537692039999911 ], [ -58.551777556999923, -34.537000423999928 ], [ -58.553058298999929, -34.535951475999923 ], [ -58.554336447999901, -34.534900436999919 ], [ -58.555738363999922, -34.533756725999922 ], [ -58.556873269999926, -34.532835780999903 ], [ -58.556911572999923, -34.532805564999933 ], [ -58.556809863999945, -34.532721371999912 ], [ -58.55622442799995, -34.532236757999954 ], [ -58.555586934999951, -34.531698071999926 ], [ -58.554861635999941, -34.531087815999911 ], [ -58.554376813999909, -34.530688523999913 ], [ -58.553895814999919, -34.530289227999958 ], [ -58.553863260999947, -34.530263532999925 ], [ -58.553862882999908, -34.53026323499995 ], [ -58.553781281999932, -34.530198827999925 ], [ -58.553773898999907, -34.530192573999955 ], [ -58.553105177999953, -34.529626108999935 ], [ -58.552470992999929, -34.529079425999953 ], [ -58.552199812999902, -34.528849378999951 ], [ -58.551821238999935, -34.528528227999914 ], [ -58.551060605999908, -34.527913292999926 ], [ -58.550531160999924, -34.527415898999948 ], [ -58.549228241999913, -34.526273874999902 ], [ -58.548924074999945, -34.526003997999908 ], [ -58.548185876999923, -34.525349020999954 ], [ -58.547682386999952, -34.524900531999947 ], [ -58.547561217999942, -34.524792599999955 ], [ -58.546878628999934, -34.524190467999915 ], [ -58.546817776999944, -34.524136788999954 ], [ -58.546825725999952, -34.524130763999949 ], [ -58.54694119699991, -34.524043243999927 ], [ -58.547855473999903, -34.523350278999942 ], [ -58.548896932999924, -34.522541244999957 ], [ -58.549894774999927, -34.52174872799992 ], [ -58.549938767999947, -34.521713786999953 ], [ -58.549541080999916, -34.521388473999934 ], [ -58.54944609599994, -34.521308993999924 ], [ -58.549116596999909, -34.521033279999926 ], [ -58.548914884999931, -34.521185799999955 ], [ -58.548309571999937, -34.521643493999932 ], [ -58.548031070999912, -34.521853505999957 ], [ -58.547004789999903, -34.522621125999933 ], [ -58.5461468069999, -34.523262965999947 ], [ -58.545944882999947, -34.523414020999951 ], [ -58.545935648999944, -34.52342092899994 ], [ -58.545932727999912, -34.523423113999911 ], [ -58.545748450999952, -34.523271637999926 ], [ -58.545082125999954, -34.522723919999919 ], [ -58.544166584999914, -34.521942624999951 ], [ -58.544156517999909, -34.521934033999912 ], [ -58.543280087999904, -34.521192772999939 ], [ -58.543280672999913, -34.521192329999906 ], [ -58.543454896999947, -34.521060345999956 ], [ -58.54436323099992, -34.520372234999911 ], [ -58.544523417999926, -34.520250115999943 ], [ -58.544481029999929, -34.520154182999931 ], [ -58.54406262099991, -34.519207218999952 ], [ -58.5436044409999, -34.518126077999909 ], [ -58.543113938999909, -34.517021409999927 ], [ -58.542804640999918, -34.516246718999923 ], [ -58.542429758999901, -34.515452860999915 ], [ -58.542047799999921, -34.514565097999935 ], [ -58.541691579999906, -34.513747658999932 ], [ -58.541485843999908, -34.513286354999934 ], [ -58.541344828999911, -34.512946983999939 ], [ -58.541005654999935, -34.512142438999945 ], [ -58.540716078999935, -34.511482858999955 ], [ -58.54040453999994, -34.510775609999939 ], [ -58.540074526999945, -34.510031445999914 ], [ -58.53983171099992, -34.509412289999943 ], [ -58.5398353409999, -34.509172106999927 ], [ -58.539643276999925, -34.508979937999925 ], [ -58.539570063999918, -34.508906685999932 ], [ -58.539255693999905, -34.508769301999905 ], [ -58.538282287999948, -34.508345720999955 ], [ -58.537414933999912, -34.507967927999914 ], [ -58.536657414999922, -34.507628199999942 ], [ -58.535829786999955, -34.507261239999934 ], [ -58.535798112999942, -34.507247195999923 ], [ -58.535615828999937, -34.507166372999905 ], [ -58.535682635999933, -34.507076661999918 ], [ -58.535820240999954, -34.506891881999934 ], [ -58.536547034999899, -34.505898355999932 ], [ -58.536815857999954, -34.50572378399994 ], [ -58.536665433999929, -34.505347849999907 ], [ -58.536549447999903, -34.505057982999915 ], [ -58.536449531999949, -34.504808275999949 ], [ -58.536356391999902, -34.504575504999934 ], [ -58.536315565999928, -34.504473474999941 ], [ -58.536133278999955, -34.504551811999931 ], [ -58.535853610999936, -34.504671997999935 ], [ -58.535648358999936, -34.504784956999913 ], [ -58.534835023999904, -34.50506945199993 ], [ -58.534251823999909, -34.505087370999945 ], [ -58.534028363999937, -34.505011256999921 ], [ -58.533797191999952, -34.504899748999946 ], [ -58.533330193999916, -34.50467448899991 ], [ -58.532359375999931, -34.50424447599994 ], [ -58.531412203999935, -34.503821384999924 ], [ -58.531071552999947, -34.503671853999947 ], [ -58.530422993999935, -34.503361219999931 ], [ -58.529513225999949, -34.502933536999933 ], [ -58.528530014999944, -34.502477920999922 ], [ -58.52794924199992, -34.502200848999905 ], [ -58.52756588099993, -34.502014910999947 ], [ -58.52656307299992, -34.501535988999933 ], [ -58.525524745999917, -34.501062713999943 ], [ -58.525142007999932, -34.500886589999936 ], [ -58.523955760999911, -34.500338094999904 ], [ -58.523626215999911, -34.500185720999923 ], [ -58.523398847999943, -34.500079289999917 ], [ -58.522993369999938, -34.499895868999943 ], [ -58.522800107999899, -34.499804099999949 ], [ -58.52244388999992, -34.499646403999918 ], [ -58.521669770999949, -34.499271061999934 ], [ -58.521528373999899, -34.499202981999929 ], [ -58.520554077999918, -34.498767838999925 ], [ -58.519483919999914, -34.498323126999935 ], [ -58.518171181999946, -34.497758139999917 ], [ -58.516997510999943, -34.49721969299992 ], [ -58.515781549999929, -34.496660654999914 ], [ -58.514550843999928, -34.496131661999925 ], [ -58.514121289999935, -34.495937885999922 ], [ -58.513365822999901, -34.495602536999911 ], [ -58.512173129999951, -34.49506968399993 ], [ -58.512045787999909, -34.494843276999916 ], [ -58.511442923999937, -34.493771416999948 ], [ -58.510737519999907, -34.492501748999928 ], [ -58.510613561999946, -34.492444385999931 ], [ -58.50952587799992, -34.49194104299994 ], [ -58.509189144999937, -34.491976437999938 ], [ -58.507889469999952, -34.492113051999922 ], [ -58.507728156999917, -34.492033145999926 ], [ -58.506767495999952, -34.491557282999906 ], [ -58.506620196999904, -34.491767076999906 ], [ -58.506246968999903, -34.492298652999921 ], [ -58.505759715999943, -34.493003855999916 ], [ -58.505277409999906, -34.493708492999929 ], [ -58.505221708999954, -34.493785497999909 ], [ -58.505150294999908, -34.493750962999911 ], [ -58.504325839999922, -34.493352265999931 ], [ -58.503237727999931, -34.492820713999947 ], [ -58.502680338999937, -34.492565298999921 ], [ -58.502093013999911, -34.492295241999955 ], [ -58.500980855999899, -34.491756102999943 ], [ -58.499928682999951, -34.491222661999927 ], [ -58.499700538999946, -34.491106995999928 ], [ -58.499868472999935, -34.490810294999903 ], [ -58.500174543999947, -34.490269536999904 ], [ -58.500577018999934, -34.489540059999911 ], [ -58.500993363999953, -34.488734757999907 ], [ -58.501407874999927, -34.488019900999916 ], [ -58.501745616999926, -34.487329092999914 ], [ -58.502030576999914, -34.486727372999951 ], [ -58.502077190999955, -34.486654440999928 ], [ -58.50279188199994, -34.485518617999958 ], [ -58.503312602999927, -34.484880176999923 ], [ -58.503858438999941, -34.484156852999945 ], [ -58.503858793999939, -34.484156382999913 ], [ -58.503863820999925, -34.484149730999945 ], [ -58.504203951999955, -34.483699653999906 ], [ -58.50435944499992, -34.483498357999906 ], [ -58.504852471999925, -34.482859628999904 ], [ -58.505297599999949, -34.48231071899994 ], [ -58.505739754999922, -34.481765474999918 ], [ -58.506288477999931, -34.481091610999954 ], [ -58.506601729999943, -34.480688096999927 ], [ -58.506764053999916, -34.480490167999903 ], [ -58.507054893999907, -34.480185754999923 ], [ -58.507270193999943, -34.479961251999953 ], [ -58.507697040999915, -34.479523677999907 ], [ -58.508403225999928, -34.478781458999947 ], [ -58.509103998999933, -34.478048019999903 ], [ -58.509802420999904, -34.477310959999954 ], [ -58.509842422999952, -34.477268744999947 ], [ -58.510464137999918, -34.476634610999952 ], [ -58.511142244999917, -34.475908824999919 ], [ -58.511565607999955, -34.475469601999919 ], [ -58.511952305999955, -34.475068417999921 ], [ -58.51265720899994, -34.474368135999953 ], [ -58.513554363999901, -34.473467002999939 ], [ -58.514370179999901, -34.472688865999942 ], [ -58.514438469999902, -34.472619235999957 ], [ -58.515007297999944, -34.471943350999936 ], [ -58.515457700999946, -34.471455132999949 ], [ -58.515931132999924, -34.471004783999945 ], [ -58.516256833999932, -34.470682333999946 ], [ -58.516676721999943, -34.470140760999925 ], [ -58.516992986999924, -34.469652101999941 ], [ -58.517825291999941, -34.468668425999908 ], [ -58.517938785999945, -34.468534460999933 ], [ -58.518404155999917, -34.467979501999935 ], [ -58.519009577999952, -34.46724854699994 ], [ -58.519928965999952, -34.466682359999936 ], [ -58.52070905599993, -34.466185713999948 ], [ -58.521504205999918, -34.46568134599994 ], [ -58.521987813999942, -34.46537600399995 ], [ -58.522293090999938, -34.465183257999911 ], [ -58.52267371399995, -34.46537883499991 ], [ -58.523258208999948, -34.465679168999941 ], [ -58.523433684999929, -34.465766906999932 ], [ -58.524345397999923, -34.466205596999941 ], [ -58.52562822099992, -34.466821998999933 ], [ -58.526821294999934, -34.467393069999957 ], [ -58.528135568999915, -34.468020858999921 ], [ -58.52828706899993, -34.468092709999951 ], [ -58.529582414999936, -34.468728210999927 ], [ -58.53020736499991, -34.469042242999933 ], [ -58.530883238999934, -34.469376716999932 ], [ -58.531651704999945, -34.46975756799992 ], [ -58.532043640999916, -34.469953757999917 ], [ -58.536198407999905, -34.471950315999948 ], [ -58.536467608999942, -34.472079679999922 ], [ -58.537246703999926, -34.472454070999902 ], [ -58.537292479999905, -34.472473144999924 ], [ -58.538688659999934, -34.473136901999908 ], [ -58.539745330999949, -34.473632812999938 ], [ -58.539985656999932, -34.473754882999913 ], [ -58.540180205999945, -34.473846435999917 ], [ -58.540576934999933, -34.474029540999936 ], [ -58.541129390999913, -34.474311765999914 ], [ -58.541715877999934, -34.474603286999923 ], [ -58.542298558999903, -34.474894771999914 ], [ -58.543144014999939, -34.47531456999991 ], [ -58.544237428999907, -34.475852614999951 ], [ -58.545769865999944, -34.476598614999943 ], [ -58.548898513999916, -34.478081611999926 ], [ -58.550363966999953, -34.478797171999929 ], [ -58.551527208999914, -34.479357811999932 ], [ -58.552257537999935, -34.479698180999947 ], [ -58.553417205999949, -34.480258941999921 ], [ -58.555183410999916, -34.481105803999924 ], [ -58.555412291999914, -34.481246947999921 ], [ -58.556140439999922, -34.481620125999939 ], [ -58.557087982999917, -34.482078365999939 ], [ -58.558024109999906, -34.482532830999958 ], [ -58.558435090999922, -34.482733560999918 ], [ -58.560166570999911, -34.483517138999957 ], [ -58.560234926999954, -34.483436783999935 ], [ -58.561168138999903, -34.482339764999949 ], [ -58.561267151999914, -34.48222508099991 ], [ -58.56238733999993, -34.479655868999942 ], [ -58.562377651999952, -34.479250554999908 ], [ -58.56237613299993, -34.479187001999946 ], [ -58.562524959999905, -34.478332588999933 ], [ -58.562506005999921, -34.478161099999909 ], [ -58.562646918999917, -34.477977660999954 ], [ -58.563303055999938, -34.477311773999929 ], [ -58.563370432999932, -34.477243395999949 ], [ -58.563651358999948, -34.476957533999951 ], [ -58.566061734999948, -34.472607569999923 ], [ -58.566094202999921, -34.472236437999925 ], [ -58.566146940999943, -34.471633611999948 ], [ -58.566214525999953, -34.47127525399992 ], [ -58.566236473999936, -34.471230807999916 ], [ -58.566242665999937, -34.471218269999952 ], [ -58.566247765999947, -34.471207941999921 ], [ -58.566248727999948, -34.471205993999945 ], [ -58.566480111999908, -34.470987854999919 ], [ -58.566918718999943, -34.470672344999912 ], [ -58.566948321999917, -34.470651049999958 ], [ -58.567280511999911, -34.470313049999902 ], [ -58.567531582999948, -34.469981699999948 ], [ -58.567763827999954, -34.469810622999944 ], [ -58.568089541999939, -34.469224058999941 ], [ -58.568208745999925, -34.46900938999994 ], [ -58.568298278999919, -34.468848154999932 ], [ -58.568697219999933, -34.468129718999933 ], [ -58.569386329999929, -34.466916653999931 ], [ -58.569465851999951, -34.466572692999932 ], [ -58.569537363999927, -34.466270311999949 ], [ -58.5695542119999, -34.466169232999903 ], [ -58.569557524999937, -34.466149353999924 ], [ -58.569562149999911, -34.466051068999946 ], [ -58.569550246999938, -34.465620105999903 ], [ -58.569593557999951, -34.465484040999911 ], [ -58.569621062999943, -34.465404670999931 ], [ -58.569652435999899, -34.465321523999933 ], [ -58.569730081999921, -34.46521194099995 ], [ -58.570163885999932, -34.464724542999932 ], [ -58.5702950189999, -34.464543599999956 ], [ -58.570656809999946, -34.464044383999919 ], [ -58.57094302899992, -34.463772374999905 ], [ -58.570970330999955, -34.463712603999909 ], [ -58.571165721999932, -34.463284848999933 ], [ -58.571549268999945, -34.462362683999913 ], [ -58.571563598999944, -34.462011123999957 ], [ -58.571615434999899, -34.461769214999947 ], [ -58.571675656999901, -34.461417454999946 ], [ -58.571683288999907, -34.461295130999929 ], [ -58.571679777999918, -34.461218973999905 ], [ -58.571679410999934, -34.461211014999947 ], [ -58.571663991999912, -34.461096289999944 ], [ -58.571633207999923, -34.460993004999921 ], [ -58.571583207999936, -34.460878210999908 ], [ -58.571475550999935, -34.460713601999942 ], [ -58.571394812999927, -34.460602570999924 ], [ -58.571559854999919, -34.460182356999951 ], [ -58.571682670999905, -34.459857636999914 ], [ -58.5717172169999, -34.459773597999913 ], [ -58.571790224999916, -34.459781388999943 ], [ -58.571847859999934, -34.45978150399992 ], [ -58.571917016999919, -34.459766349999938 ], [ -58.572013062999929, -34.459735956999907 ], [ -58.572082202999923, -34.459682570999917 ], [ -58.572245428999906, -34.459505445999923 ], [ -58.572374086999901, -34.459365833999925 ], [ -58.572642873999939, -34.458949650999955 ], [ -58.572785965999913, -34.458799805999945 ], [ -58.572899790999941, -34.458680608999941 ], [ -58.573067930999912, -34.458225564999907 ], [ -58.573803955999949, -34.456218240999931 ], [ -58.574495418999902, -34.454448870999954 ], [ -58.574534385999925, -34.454013482999926 ], [ -58.574523384999907, -34.453482759999929 ], [ -58.574514377999947, -34.453418408999937 ], [ -58.574475566999922, -34.45314110299995 ], [ -58.574425400999928, -34.453068504999919 ], [ -58.574351823999905, -34.452991840999914 ], [ -58.574242883999943, -34.45293750299993 ], [ -58.574410889999911, -34.452492260999918 ], [ -58.574474959999918, -34.452314884999907 ], [ -58.574478503999899, -34.452356615999918 ], [ -58.57469422999992, -34.452264399999933 ], [ -58.574873878999938, -34.452136871999926 ], [ -58.575017202999902, -34.451971345999937 ], [ -58.575156824999908, -34.451798286999917 ], [ -58.57529272599993, -34.451621491999902 ], [ -58.5754101469999, -34.451489286999902 ], [ -58.575439794999909, -34.451455905999921 ], [ -58.575594308999939, -34.451297790999945 ], [ -58.575745100999939, -34.451135940999905 ], [ -58.575874194999926, -34.450845378999929 ], [ -58.576257484999928, -34.449979141999904 ], [ -58.576802272999942, -34.44886744799993 ], [ -58.577354950999904, -34.447801700999946 ], [ -58.577985969999929, -34.44669304599995 ], [ -58.578537007999955, -34.44572490999991 ], [ -58.578558551999947, -34.445603239999912 ], [ -58.57860347299993, -34.445508480999933 ], [ -58.578654806999907, -34.44531093899991 ], [ -58.578691480999908, -34.445170380999912 ], [ -58.57873494599994, -34.44495751799991 ], [ -58.578746923999915, -34.444846434999931 ], [ -58.578752177999945, -34.444797709999932 ], [ -58.57877676499993, -34.444611312999939 ], [ -58.578759988999934, -34.444496855999944 ], [ -58.578723584999921, -34.44434790899993 ], [ -58.5789636209999, -34.44405353499991 ], [ -58.578973137999924, -34.444041863999928 ], [ -58.578988434999928, -34.444023103999939 ], [ -58.578990879999935, -34.444020303999935 ], [ -58.579242184999941, -34.443732465999915 ], [ -58.579522177999934, -34.443701138999927 ], [ -58.579644784999914, -34.443653128999927 ], [ -58.579740050999931, -34.443615824999938 ], [ -58.579934877999904, -34.443530266999915 ], [ -58.580072412999925, -34.443470769999919 ], [ -58.58026691099991, -34.44335854499991 ], [ -58.580560652999907, -34.443225884999947 ], [ -58.58058011199995, -34.443217096999945 ], [ -58.580745053999919, -34.443199791999916 ], [ -58.581167897999933, -34.442594174999954 ], [ -58.581179001999942, -34.442544338999937 ], [ -58.581204741999954, -34.442428811999946 ], [ -58.581359559999953, -34.442145086999915 ], [ -58.581415946999925, -34.442014589999928 ], [ -58.58149134599995, -34.441825215999927 ], [ -58.581498493999902, -34.44180726299993 ], [ -58.581531752999922, -34.441668841999956 ], [ -58.581505978999928, -34.441383430999906 ], [ -58.581392343999937, -34.441151151999918 ], [ -58.581593381999937, -34.440879418999941 ], [ -58.581113371999948, -34.440793168999903 ], [ -58.580665856999929, -34.440712757999904 ], [ -58.579491792999931, -34.440478282999948 ], [ -58.578313850999905, -34.440239917999918 ], [ -58.576988908999908, -34.439996969999925 ], [ -58.575640521999901, -34.439761088999944 ], [ -58.5737483609999, -34.439462121999952 ], [ -58.573176167999918, -34.439318331999914 ], [ -58.572645666999904, -34.439246888999946 ], [ -58.572571466999932, -34.439217226999915 ], [ -58.5720779319999, -34.439019930999905 ], [ -58.57206689599991, -34.439015518999952 ], [ -58.571630777999928, -34.438841175999926 ], [ -58.571048524999924, -34.438417146999939 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 227.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.482386999760195, -34.64274099969731 ], [ -58.482864000173436, -34.642360000113854 ], [ -58.483336000356076, -34.642273999745271 ], [ -58.484581000212927, -34.642531999951814 ], [ -58.485373999910109, -34.642724999858785 ], [ -58.485825000023681, -34.641309000210128 ], [ -58.485931999562069, -34.640923000396128 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.486490000113349, -34.639098999918872 ], [ -58.486683000020378, -34.638411999713981 ], [ -58.486875999927406, -34.637832999992895 ], [ -58.487283999856686, -34.636523999882627 ], [ -58.486297000206378, -34.636265999676084 ], [ -58.484387000259801, -34.635815999608667 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.498013, -34.637210000041421 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.529367999833312, -34.639337000102444 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.530241999668533, -34.639378000194483 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.532216999914567, -34.639571000101512 ], [ -58.533311000002584, -34.639635000354929 ], [ -58.535092000295549, -34.639741999893317 ], [ -58.535842999854538, -34.639828000261957 ], [ -58.537280999618417, -34.639913999731277 ], [ -58.538610999797754, -34.640021000168986 ], [ -58.539984000161439, -34.640128999753472 ], [ -58.541399999810096, -34.64017199993782 ], [ -58.542880999758268, -34.640149999822597 ], [ -58.543502999663644, -34.640128999753472 ], [ -58.544083000330147, -34.640106999638306 ], [ -58.544726000304649, -34.640106999638306 ], [ -58.545134000233872, -34.640106999638306 ], [ -58.546228000321889, -34.64008599956918 ], [ -58.548954000126969, -34.640043000284209 ], [ -58.549489999663706, -34.640021000168986 ], [ -58.551099000118711, -34.64000000009986 ], [ -58.552644000320299, -34.639956999915569 ], [ -58.553224000087482, -34.639956999915569 ], [ -58.554253999922139, -34.639934999800346 ], [ -58.55597400009998, -34.639914999777375 ], [ -58.556035000215047, -34.639913999731277 ], [ -58.557065000049647, -34.639913999731277 ], [ -58.557235999841453, -34.639913999731277 ], [ -58.558202000322012, -34.639892999662152 ], [ -58.558673999605332, -34.639913999731277 ], [ -58.560133000337657, -34.640043000284209 ], [ -58.560970000265286, -34.640128999753472 ], [ -58.561592000170606, -34.640214000076014 ], [ -58.562665000189554, -34.640364999844849 ], [ -58.563266000025862, -34.640450000167334 ], [ -58.563502000117182, -34.64055799975182 ], [ -58.564339000044754, -34.640687000304752 ], [ -58.565518999602091, -34.64088000021178 ], [ -58.565905000315468, -34.640858000096557 ], [ -58.566055000038205, -34.640858000096557 ], [ -58.566291000129524, -34.640923000396128 ], [ -58.567214000425736, -34.641094000187934 ], [ -58.567343000079347, -34.6411160003031 ], [ -58.568716000443032, -34.641330000279254 ], [ -58.570260999745301, -34.641587999586477 ], [ -58.571741999693472, -34.641823999677797 ], [ -58.573179000310574, -34.642080999838242 ], [ -58.574594999959231, -34.642295999860437 ], [ -58.576119000091751, -34.642531999951814 ], [ -58.577513999671282, -34.642724999858785 ], [ -58.578993999573356, -34.642960999950162 ], [ -58.580453000305681, -34.643197000041482 ], [ -58.581891000069561, -34.643412000063734 ], [ -58.583328999833441, -34.643648000155054 ], [ -58.584122999576721, -34.643754999693442 ], [ -58.585110000126349, -34.643905000315442 ], [ -58.586117999845783, -34.644055000038179 ], [ -58.587190999864731, -34.644183999691791 ], [ -58.588307000067971, -34.644356000429013 ], [ -58.589357999971696, -34.64450600015175 ], [ -58.590088000360879, -34.644570000405167 ], [ -58.590217000014491, -34.644634999805362 ], [ -58.590323999552879, -34.64474200024307 ], [ -58.590517000359227, -34.644162999622665 ], [ -58.590496000290159, -34.644055000038179 ], [ -58.589444000340279, -34.643927000430665 ], [ -58.589529999809599, -34.643025000203579 ], [ -58.589701999647502, -34.642102999953465 ], [ -58.589873000338628, -34.641222999841546 ], [ -58.590024000107462, -34.640364999844849 ], [ -58.590151999714976, -34.639421000378832 ], [ -58.590302000337033, -34.638519000151689 ], [ -58.590409999921519, -34.637960999600409 ], [ -58.590474000174936, -34.637574999786352 ], [ -58.590646000012839, -34.636652000389461 ], [ -58.591740000100856, -34.636781000043072 ], [ -58.591911999938816, -34.635900999931152 ], [ -58.591976000192233, -34.635580000416667 ], [ -58.591889999823593, -34.635558000301444 ], [ -58.590816999804645, -34.635558000301444 ], [ -58.589722999716628, -34.635537000232318 ], [ -58.588628999628611, -34.635515000117095 ], [ -58.587513000324691, -34.635494000048027 ], [ -58.58738399977176, -34.636159000137695 ], [ -58.587255000118148, -34.636072999769056 ], [ -58.586590000028423, -34.635622999701638 ], [ -58.586525999775006, -34.635600999586416 ], [ -58.586419000236617, -34.635558000301444 ], [ -58.586353999937103, -34.635494000048027 ], [ -58.586011000307394, -34.635279000025776 ], [ -58.585947000053977, -34.635192999657193 ], [ -58.586697999612966, -34.634355999729564 ], [ -58.58738399977176, -34.633584000101507 ], [ -58.587834999885274, -34.63302600044949 ], [ -58.587921000253914, -34.632919000011782 ], [ -58.587899000138691, -34.632576000382073 ], [ -58.587984999608011, -34.632424999713919 ], [ -58.588393000436554, -34.631932000361473 ], [ -58.588434999675428, -34.631888000131084 ], [ -58.588951000088571, -34.631351999694971 ], [ -58.589100999811251, -34.631224000087514 ], [ -58.589314999787348, -34.631158999787942 ], [ -58.589444000340279, -34.631073000318679 ], [ -58.590088000360879, -34.630300999791245 ], [ -58.590667000081964, -34.629593000416605 ], [ -58.591224999733925, -34.628885000142589 ], [ -58.591825999570176, -34.628154999753406 ], [ -58.592555999959416, -34.627233000402612 ], [ -58.592620000212776, -34.627147000033972 ], [ -58.593307000417667, -34.6263100001064 ], [ -58.59418599958417, -34.625258000156521 ], [ -58.594700999951158, -34.624636000251144 ], [ -58.595023000411118, -34.624228000321921 ], [ -58.595323999902632, -34.623841999608544 ], [ -58.595817000154398, -34.623262999887515 ], [ -58.596461000174997, -34.622469000144179 ], [ -58.596610999897678, -34.62227600023715 ], [ -58.597275999987346, -34.62148199959455 ], [ -58.598048999661557, -34.620538000128533 ], [ -58.598262999637655, -34.620258999852922 ], [ -58.598456000444003, -34.620000999646379 ], [ -58.599229000118214, -34.619079000295585 ], [ -58.599528999563631, -34.618756999835625 ], [ -58.599829999954466, -34.618392000090694 ], [ -58.599886999885086, -34.618297000206326 ], [ -58.599894000207883, -34.618177000068442 ], [ -58.599701000300911, -34.617190000418134 ], [ -58.599637000047494, -34.616782999635689 ], [ -58.599400999956117, -34.615730999685866 ], [ -58.599378999840951, -34.615537999778837 ], [ -58.599121999680506, -34.61412200013018 ], [ -58.598906999658254, -34.613005999926884 ], [ -58.598843000304157, -34.612641000181952 ], [ -58.59869199963606, -34.611868999654575 ], [ -58.598564000028546, -34.611182000349004 ], [ -58.598477999659906, -34.61073200028153 ], [ -58.598349000006294, -34.609722999616679 ], [ -58.598262999637655, -34.609744999731902 ], [ -58.597039999896026, -34.609765999801027 ], [ -58.595667000431661, -34.609765999801027 ], [ -58.595645000316495, -34.608714999897302 ], [ -58.595645000316495, -34.607619999763131 ], [ -58.595667000431661, -34.606546999744182 ], [ -58.595645000316495, -34.605667999678417 ], [ -58.595839000269621, -34.605516999909582 ], [ -58.596996999711735, -34.605516999909582 ], [ -58.598327999937226, -34.605495999840457 ], [ -58.598734999820351, -34.605495999840457 ], [ -58.598864000373283, -34.60543199958704 ], [ -58.598906999658254, -34.605389000302068 ], [ -58.598906999658254, -34.605346000117777 ], [ -58.598713999751226, -34.604594999659469 ], [ -58.598713999751226, -34.604487000074926 ], [ -58.598800000119866, -34.60440199975244 ], [ -58.602189999968459, -34.60440199975244 ], [ -58.604143000099327, -34.604379999637217 ], [ -58.604872000442413, -34.604337000352245 ], [ -58.605601999932333, -34.604186999730189 ], [ -58.607725999854949, -34.603500000424617 ], [ -58.608347999760326, -34.603264000333297 ], [ -58.609163999618829, -34.602895000403919 ], [ -58.609249999987469, -34.602856999550852 ], [ -58.610279999822069, -34.60231999996796 ], [ -58.613497999832759, -34.600517999605927 ], [ -58.613866999762195, -34.600320000367674 ], [ -58.614657000220348, -34.599894999654452 ], [ -58.615472000032753, -34.599359000117715 ], [ -58.61665199959009, -34.598286000098767 ], [ -58.616888999727507, -34.598093000191739 ], [ -58.61703500016506, -34.59797099996166 ], [ -58.617145999887953, -34.597878000169544 ], [ -58.618583999651833, -34.59663400035879 ], [ -58.618927000180861, -34.596334000014053 ], [ -58.619484999832821, -34.595882999900482 ], [ -58.619510000086393, -34.595864999969706 ], [ -58.620214000175906, -34.595368000432813 ], [ -58.621351999595049, -34.594488000320894 ], [ -58.622575000236054, -34.593543999955614 ], [ -58.623110999772791, -34.593114999957265 ], [ -58.623711999609043, -34.592642999774569 ], [ -58.62401199995378, -34.592427999752317 ], [ -58.624892000065699, -34.591720000377677 ], [ -58.625471999832882, -34.591269000264106 ], [ -58.626008000268939, -34.590840000265757 ], [ -58.626737999758859, -34.590281999714477 ], [ -58.627081000287887, -34.590003000338129 ], [ -58.627552999571208, -34.589595999555684 ], [ -58.628132000191613, -34.589166999557335 ], [ -58.628304000029516, -34.589037999903724 ], [ -58.628948000050116, -34.588523000436055 ], [ -58.629162000026213, -34.588350999698832 ], [ -58.630042000138133, -34.587728999793455 ], [ -58.630235000045161, -34.587643000324135 ], [ -58.63042799995219, -34.587665000439358 ], [ -58.630536000436052, -34.587728999793455 ], [ -58.631243999810692, -34.588350999698832 ], [ -58.631759000177681, -34.588822999881472 ], [ -58.632509999736669, -34.589489000017295 ], [ -58.634011999753966, -34.588308000413861 ], [ -58.634140000260743, -34.588200999976152 ], [ -58.63572799974736, -34.588179999907027 ], [ -58.635920999654388, -34.588051000253415 ], [ -58.636779999697183, -34.587364000048524 ], [ -58.638281999714479, -34.586204999660936 ], [ -58.638604000174439, -34.585968999569616 ], [ -58.639161999826399, -34.584295999760513 ], [ -58.639247000148885, -34.584037999553971 ], [ -58.639761999616553, -34.582557999651897 ], [ -58.640255999914416, -34.581076999703726 ], [ -58.640320000167833, -34.580904999865822 ], [ -58.640899999935016, -34.579103000403109 ], [ -58.640899999935016, -34.579020000172818 ], [ -58.64182200018513, -34.577751000108549 ], [ -58.642556999905594, -34.576738000158514 ], [ -58.643582000408969, -34.575325999794984 ], [ -58.643860999785261, -34.574939999980984 ], [ -58.644461999621569, -34.574103000053356 ], [ -58.644718999781958, -34.573566999617299 ], [ -58.644612000243569, -34.573437999963687 ], [ -58.643216999764661, -34.57225800040635 ], [ -58.642445000136604, -34.571571000201459 ], [ -58.641651000393324, -34.57090600011179 ], [ -58.640877999819793, -34.570241000022065 ], [ -58.640191999660999, -34.569619000116745 ], [ -58.639865999915912, -34.569350000302222 ], [ -58.639826999916068, -34.569317999725854 ], [ -58.639997999707873, -34.568589000282088 ], [ -58.640019999823096, -34.568459999729157 ], [ -58.640707000027987, -34.565305999971883 ], [ -58.640813999566376, -34.564854999858312 ], [ -58.641285999749073, -34.562923999842667 ], [ -58.643838999670038, -34.56253800002861 ], [ -58.645834999985198, -34.561765000354455 ], [ -58.646413999706283, -34.56142199982537 ], [ -58.647983000115346, -34.560804000104497 ], [ -58.651478000309453, -34.55942600040953 ], [ -58.651821999985259, -34.559212000433433 ], [ -58.653537999978653, -34.558803999604834 ], [ -58.654975999742533, -34.558417999790834 ], [ -58.655259000202648, -34.55832399995262 ], [ -58.655298000202492, -34.558311000252388 ], [ -58.655963000292161, -34.557903000323165 ], [ -58.656928999873401, -34.557172999933982 ], [ -58.657637000147417, -34.556657999566994 ], [ -58.6577520000547, -34.556606999913072 ], [ -58.658215999868446, -34.556401000305868 ], [ -58.658365999591183, -34.556314999937229 ], [ -58.660109999976498, -34.555207000102939 ], [ -58.66297399985018, -34.55338699981013 ], [ -58.665017999680913, -34.552088000161007 ], [ -58.665261000095029, -34.55194900004625 ], [ -58.665619000416484, -34.551743999585881 ], [ -58.666498999629084, -34.551444000140464 ], [ -58.668037999553974, -34.5509160000733 ], [ -58.668686999805175, -34.550692999682155 ], [ -58.671742000392953, -34.549637999593983 ], [ -58.67229199967602, -34.549447999825304 ], [ -58.672699999605243, -34.549298000102567 ], [ -58.673065000249494, -34.549169999595733 ], [ -58.673515000316968, -34.549018999826956 ], [ -58.674295000313975, -34.548746999874083 ], [ -58.675790000008476, -34.548225000083619 ], [ -58.676111999569059, -34.548032000176647 ], [ -58.676518000305407, -34.547697000016512 ], [ -58.677335000210064, -34.547023999557894 ], [ -58.677528000117093, -34.547023999557894 ], [ -58.677634999655481, -34.547130999995602 ], [ -58.677694999724395, -34.547389000202145 ], [ -58.678172000137636, -34.549469999940527 ], [ -58.678342999929441, -34.549534000193887 ], [ -58.679738000408349, -34.548504000359287 ], [ -58.681261999641549, -34.547389000202145 ], [ -58.682419999982983, -34.54653000015935 ], [ -58.68360000043964, -34.545693000231722 ], [ -58.68495199983488, -34.544705999682094 ], [ -58.686519000151691, -34.543526000124757 ], [ -58.687312999894971, -34.542967999573477 ], [ -58.688127999707376, -34.542388999852392 ], [ -58.688450000167336, -34.542173999830197 ], [ -58.688922000349976, -34.541831000200432 ], [ -58.689650999793741, -34.541294999764375 ], [ -58.690145000091661, -34.540930000019443 ], [ -58.690530999905661, -34.540628999628609 ], [ -58.691560999740318, -34.539878000069621 ], [ -58.692419999783112, -34.539256000164244 ], [ -58.693277999779809, -34.538612000143644 ], [ -58.694092999592215, -34.538096999776656 ], [ -58.694866000165746, -34.537539000124696 ], [ -58.695637999793803, -34.538268999614615 ], [ -58.696474999721431, -34.537667999778307 ], [ -58.69737599990242, -34.538526999821158 ], [ -58.698320000267756, -34.539405999886924 ], [ -58.699264999779871, -34.540285999998844 ], [ -58.700037000307304, -34.541016000388083 ], [ -58.700808999935361, -34.540457999836804 ], [ -58.701667999978156, -34.539834999885272 ], [ -58.70235400013695, -34.540501000021095 ], [ -58.703427000155898, -34.541487999671403 ], [ -58.704220999899178, -34.542239000129712 ], [ -58.705122000080223, -34.543097000126409 ], [ -58.706130999845698, -34.544040999592426 ], [ -58.706882000304006, -34.544727999797317 ], [ -58.707632999862994, -34.545436000071277 ], [ -58.708749000066234, -34.544621000258928 ], [ -58.709886000338599, -34.5437840003313 ], [ -58.711022999711645, -34.542947000403728 ], [ -58.712053000445565, -34.542217000014489 ], [ -58.713491000209444, -34.541166000110763 ], [ -58.714906999858101, -34.540136000276163 ], [ -58.71597999987705, -34.539341999633507 ], [ -58.717009999711649, -34.538591000074575 ], [ -58.718190000168306, -34.537733000077822 ], [ -58.719327000440671, -34.53689600015025 ], [ -58.720379000390494, -34.536122999576719 ], [ -58.722246000152722, -34.534793000296702 ], [ -58.722889000127225, -34.534321000114005 ], [ -58.723275999987379, -34.534041999838394 ], [ -58.723639999686213, -34.533762999562725 ], [ -58.724541999913299, -34.533098000372377 ], [ -58.724948999796482, -34.532796999981542 ], [ -58.725915000276984, -34.532088999707526 ], [ -58.727009000365058, -34.531294999964246 ], [ -58.72775999992399, -34.530737000312286 ], [ -58.728553999667326, -34.53015799969188 ], [ -58.729305000125635, -34.529622000155143 ], [ -58.730228000421846, -34.528934999950252 ], [ -58.731150999818738, -34.528269999860584 ], [ -58.731965999631143, -34.527712000208624 ], [ -58.732652999836034, -34.527196999841635 ], [ -58.73305999971916, -34.526896000350121 ], [ -58.734241000221914, -34.526038000353367 ], [ -58.735420999779251, -34.525158000241447 ], [ -58.736514999867325, -34.524363999598847 ], [ -58.737308999610605, -34.523784999877819 ], [ -58.737459000232661, -34.523656000224207 ], [ -58.738317000229358, -34.523013000249705 ], [ -58.739046999719221, -34.522475999767551 ], [ -58.739197000341278, -34.522369000229162 ], [ -58.73979800017753, -34.521940000230757 ], [ -58.740076999553821, -34.521747000323785 ], [ -58.740849000081255, -34.521145999588157 ], [ -58.741836999777661, -34.520438000213517 ], [ -58.742609000305094, -34.519837000377208 ], [ -58.743467000301791, -34.519193000356665 ], [ -58.744304000229363, -34.518591999621037 ], [ -58.745141000156991, -34.51796999971566 ], [ -58.745999000153688, -34.517347999810283 ], [ -58.746815000012191, -34.516725999904907 ], [ -58.746901000380831, -34.516660999605392 ], [ -58.747565999571179, -34.51693999988106 ], [ -58.748702999843545, -34.51749800043234 ], [ -58.749067999588476, -34.517604999970729 ], [ -58.749925999585173, -34.517991999830883 ], [ -58.75054800038987, -34.517132999788089 ], [ -58.751128000157053, -34.516404000344323 ], [ -58.751728999993304, -34.515630999770792 ], [ -58.75230799971439, -34.514880000211804 ], [ -58.752908999550641, -34.514085999569204 ], [ -58.753510000286269, -34.513357000125438 ], [ -58.754089000007298, -34.512583999551907 ], [ -58.754689999843549, -34.511832999992919 ], [ -58.755268999564635, -34.511061000364805 ], [ -58.755870000300206, -34.510287999791331 ], [ -58.756921000203931, -34.51084600034261 ], [ -58.757544000155463, -34.51116799990325 ], [ -58.75784399960088, -34.510825000273485 ], [ -58.758166000060839, -34.510417000344262 ], [ -58.75878799996616, -34.509601999632537 ], [ -58.759282000264079, -34.508978999681062 ], [ -58.760097000076428, -34.507970999961628 ], [ -58.760869999750639, -34.506941000127028 ], [ -58.761449000371044, -34.50618999966872 ], [ -58.761663000347141, -34.505911000292372 ], [ -58.762457000090421, -34.504880999558452 ], [ -58.763229999764633, -34.503914999977212 ], [ -58.76344399974073, -34.503657999816767 ], [ -58.764044999577038, -34.502885000142612 ], [ -58.764538999874901, -34.502263000237235 ], [ -58.764818000150569, -34.501897999592984 ], [ -58.765032000126666, -34.501619000216635 ], [ -58.765611999893849, -34.50088999987355 ], [ -58.765847999985169, -34.500589000382035 ], [ -58.766405999637129, -34.499881000108019 ], [ -58.766662999797575, -34.49953799957899 ], [ -58.767178000164563, -34.498851000273419 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 226.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.529991, -34.63884 ], [ -58.530388, -34.638596 ], [ -58.5317, -34.637608 ], [ -58.532398, -34.637093 ], [ -58.532974, -34.63665 ], [ -58.534157, -34.636726 ], [ -58.535389, -34.636806 ], [ -58.536617, -34.636894 ], [ -58.537888, -34.636974 ], [ -58.538773, -34.636986 ], [ -58.539558, -34.637035 ], [ -58.53944, -34.637959 ], [ -58.53936, -34.638882 ], [ -58.540966, -34.638889 ], [ -58.540852, -34.639839 ], [ -58.542301, -34.639839 ], [ -58.542435, -34.638912 ], [ -58.542503, -34.638012 ], [ -58.542583, -34.637436 ], [ -58.542629, -34.637066 ], [ -58.542755, -34.635685 ], [ -58.542847, -34.634888 ], [ -58.542942, -34.633934 ], [ -58.543011, -34.632954 ], [ -58.544231, -34.633053 ], [ -58.545582, -34.633106 ], [ -58.547661, -34.633205 ], [ -58.54784, -34.633076 ], [ -58.547375, -34.632881 ], [ -58.547314, -34.632858 ], [ -58.546104, -34.632126 ], [ -58.545567, -34.631844 ], [ -58.544788, -34.631653 ], [ -58.544399, -34.63163 ], [ -58.544056, -34.631496 ], [ -58.54324, -34.631176 ], [ -58.541862, -34.630646 ], [ -58.541199, -34.630363 ], [ -58.540184, -34.629509 ], [ -58.539436, -34.628597 ], [ -58.538516999999899, -34.627811 ], [ -58.538132, -34.627445 ], [ -58.537674, -34.627094 ], [ -58.537254, -34.626698 ], [ -58.536736, -34.62627 ], [ -58.535877, -34.625465 ], [ -58.535484, -34.625149 ], [ -58.535, -34.624702 ], [ -58.535759, -34.62413 ], [ -58.536476, -34.6236 ], [ -58.537018, -34.623184 ], [ -58.537502, -34.623604 ], [ -58.538017, -34.62389 ], [ -58.539047, -34.624519 ], [ -58.539677, -34.624889 ], [ -58.540176, -34.625195 ], [ -58.540672, -34.625504 ], [ -58.541168, -34.625809 ], [ -58.542255, -34.626434 ], [ -58.543304, -34.627098 ], [ -58.544487, -34.627834 ], [ -58.545238, -34.627274 ], [ -58.546078, -34.627602 ], [ -58.546883, -34.627937 ], [ -58.54771, -34.628281 ], [ -58.548397, -34.627102 ], [ -58.549084, -34.625946 ], [ -58.54987, -34.626259 ], [ -58.550598, -34.625099 ], [ -58.551372999999899, -34.625435 ], [ -58.552284, -34.625828 ], [ -58.553295, -34.626244 ], [ -58.554195, -34.626633 ], [ -58.554867, -34.626915 ], [ -58.555762999999899, -34.626209 ], [ -58.556389, -34.625645 ], [ -58.557053, -34.625107 ], [ -58.558509999999899, -34.62595 ], [ -58.560005, -34.62685 ], [ -58.561478, -34.627735 ], [ -58.563198, -34.628727 ], [ -58.563293, -34.628647 ], [ -58.563839, -34.628201 ], [ -58.564072, -34.628017 ], [ -58.564723999999899, -34.627495 ], [ -58.565421999999899, -34.626961 ], [ -58.566074, -34.626408 ], [ -58.566689, -34.625896 ], [ -58.56691, -34.625713 ], [ -58.566875, -34.625488 ], [ -58.566826, -34.624443 ], [ -58.566795, -34.623386 ], [ -58.566685, -34.622368 ], [ -58.566647, -34.62133 ], [ -58.566578, -34.620308 ], [ -58.56839, -34.620239 ], [ -58.568939, -34.620201 ], [ -58.568649, -34.619171 ], [ -58.568359, -34.618141 ], [ -58.568145999999899, -34.6171 ], [ -58.568169, -34.61607 ], [ -58.568096, -34.61504 ], [ -58.568027, -34.613998 ], [ -58.567951, -34.612976 ], [ -58.567875, -34.611931 ], [ -58.567802, -34.610897 ], [ -58.567722, -34.609837 ], [ -58.566849, -34.609879 ], [ -58.565948, -34.609928 ], [ -58.565056, -34.609959 ], [ -58.564125, -34.610012 ], [ -58.564064, -34.608955 ], [ -58.563999, -34.607918 ], [ -58.563931, -34.606907 ], [ -58.563866, -34.605831 ], [ -58.564766, -34.605797 ], [ -58.565655, -34.605766 ], [ -58.566589, -34.605724 ], [ -58.567505, -34.605694 ], [ -58.568367, -34.605656 ], [ -58.568436, -34.606705 ], [ -58.568493, -34.607723 ], [ -58.569389, -34.607685 ], [ -58.571232, -34.607601 ], [ -58.573009, -34.607529 ], [ -58.574825, -34.607441 ], [ -58.576595, -34.607338 ], [ -58.577534, -34.607311 ], [ -58.578423, -34.607258 ], [ -58.58028, -34.607166 ], [ -58.581154, -34.607128 ], [ -58.582039, -34.607086 ], [ -58.582932, -34.607063 ], [ -58.58387, -34.607006 ], [ -58.583904, -34.608028 ], [ -58.584, -34.609104 ], [ -58.584068, -34.610104 ], [ -58.584148, -34.610142 ], [ -58.585159, -34.610065 ], [ -58.586044, -34.609993 ], [ -58.585991, -34.610069 ], [ -58.58532, -34.611008 ], [ -58.585239, -34.611118 ], [ -58.584522, -34.612083 ], [ -58.584396, -34.612251 ], [ -58.583637, -34.613327 ], [ -58.582874, -34.614361 ], [ -58.582581, -34.614746 ], [ -58.58202, -34.615486 ], [ -58.581219, -34.61657 ], [ -58.581127, -34.616699 ], [ -58.580929, -34.616982 ], [ -58.580486, -34.617619 ], [ -58.580345, -34.617809 ], [ -58.579697, -34.618702 ], [ -58.579521, -34.618935 ], [ -58.578892, -34.619766 ], [ -58.578682, -34.620045 ], [ -58.578087, -34.620842 ], [ -58.577843, -34.621181 ], [ -58.577297, -34.621929 ], [ -58.577015, -34.622318 ], [ -58.576508, -34.623005 ], [ -58.575714, -34.624092 ], [ -58.574909, -34.625183 ], [ -58.574169, -34.62619 ], [ -58.57336, -34.627296 ], [ -58.572582, -34.628353 ], [ -58.572266, -34.628788 ], [ -58.571545, -34.629776 ], [ -58.573059, -34.630451 ], [ -58.574134999999899, -34.630932 ], [ -58.5742, -34.630932 ], [ -58.57465, -34.630939 ], [ -58.57531, -34.631599 ], [ -58.575199, -34.631653 ], [ -58.574039, -34.632359 ], [ -58.573788, -34.632526 ], [ -58.573105, -34.632942 ], [ -58.572422, -34.633358 ], [ -58.572132, -34.633526 ], [ -58.571396, -34.63398 ], [ -58.571162999999899, -34.634109 ], [ -58.57037, -34.634598 ], [ -58.570217, -34.634693 ], [ -58.56926, -34.635277 ], [ -58.56831, -34.63586 ], [ -58.567959, -34.636089 ], [ -58.56768, -34.63625 ], [ -58.566391, -34.637039 ], [ -58.566093, -34.637215 ], [ -58.56562, -34.637508 ], [ -58.565567, -34.638111 ], [ -58.565319, -34.639153 ], [ -58.565041, -34.640293 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 225.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.275220784313206, -34.773922341176728 ], [ -58.269843686274001, -34.770922827451244 ], [ -58.26888487843086, -34.772004725490454 ], [ -58.272052831372037, -34.773773337255157 ], [ -58.27063405490145, -34.775580819608095 ], [ -58.271366117646544, -34.776047266666922 ], [ -58.262464752940673, -34.781068050980636 ], [ -58.262328705881849, -34.7812170549022 ], [ -58.262244486274007, -34.781294796078669 ], [ -58.262101960783809, -34.78146323529436 ], [ -58.262056611764201, -34.781579847059064 ], [ -58.261939999999498, -34.781806592157103 ], [ -58.26187521568577, -34.782078686274751 ], [ -58.261803952940674, -34.78228599607867 ], [ -58.261706776470085, -34.782480349019849 ], [ -58.261603121568129, -34.782622874510039 ], [ -58.261499466666166, -34.782745964706123 ], [ -58.261305113724987, -34.782856098039453 ], [ -58.261169066666163, -34.782972709804156 ], [ -58.260935843136757, -34.783089321568866 ], [ -58.260676705881856, -34.783192976470822 ], [ -58.260365741175974, -34.78323832549043 ], [ -58.259724376470089, -34.783277196078672 ], [ -58.259478196077936, -34.783309588235532 ], [ -58.256264894117166, -34.786762592157103 ], [ -58.274624768626943, -34.796655156862954 ], [ -58.278103686274001, -34.795521431372762 ], [ -58.278265647058312, -34.795229901961001 ], [ -58.278304517646546, -34.795216945098254 ], [ -58.278615482352429, -34.795203988235507 ], [ -58.27811016470536, -34.808199721568819 ], [ -58.272966290195562, -34.807811015686468 ], [ -58.272810807842625, -34.810661525490389 ], [ -58.270374917646549, -34.810632372549215 ], [ -58.270313372548507, -34.810693917647249 ], [ -58.270161129411257, -34.810752223529605 ], [ -58.27005099607792, -34.810787854902152 ], [ -58.269850164705375, -34.810836443137447 ], [ -58.269701160783804, -34.811630050980582 ], [ -58.274433654901443, -34.811837360784509 ], [ -58.274200431372037, -34.817311635294296 ], [ -58.283846815685749, -34.822364811764885 ], [ -58.281585843136739, -34.825195886274685 ], [ -58.281255443136736, -34.825480937255072 ], [ -58.281242486273989, -34.825629941176643 ], [ -58.290713952940642, -34.830398066666831 ], [ -58.290020760783783, -34.831272654902122 ], [ -58.30021133333279, -34.836468356862902 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 224.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.250370000375199, -34.820631000420292 ], [ -58.250863999773742, -34.819965000284469 ], [ -58.251099999865062, -34.819664999939732 ], [ -58.251357000025507, -34.819322000310024 ], [ -58.25152899986341, -34.819086000218704 ], [ -58.251829000208147, -34.818699000358549 ], [ -58.251957999861759, -34.818527999667424 ], [ -58.252386999860107, -34.817947999900241 ], [ -58.252837999973679, -34.817325999994864 ], [ -58.253266999972027, -34.816725000158613 ], [ -58.253717000039501, -34.816124000322304 ], [ -58.254274999691461, -34.815587999886247 ], [ -58.254661999551615, -34.815223000141316 ], [ -58.254897999642935, -34.815030000234287 ], [ -58.255520000447632, -34.81440800032891 ], [ -58.256399999660232, -34.813550000332214 ], [ -58.257430000394152, -34.812604999920779 ], [ -58.258137999768849, -34.811939999831111 ], [ -58.259318000225505, -34.812519999598237 ], [ -58.260261999691465, -34.813034999965225 ], [ -58.261206000056802, -34.813528000216991 ], [ -58.26212900035307, -34.814021999615534 ], [ -58.263051999749962, -34.814514999867299 ], [ -58.264017000184367, -34.815009000165162 ], [ -58.264960999650384, -34.815502000416927 ], [ -58.265905000015721, -34.81599599981547 ], [ -58.266549000036264, -34.816339000344556 ], [ -58.267622000055212, -34.816896999996516 ], [ -58.268716000143229, -34.817475999717544 ], [ -58.269789000162177, -34.818034000268881 ], [ -58.270862000181125, -34.818591999920841 ], [ -58.271956000269142, -34.819170999641869 ], [ -58.272772000127645, -34.818119999738144 ], [ -58.273652000239565, -34.817025999650127 ], [ -58.274081000237913, -34.817261999741447 ], [ -58.274124000422262, -34.816575000435876 ], [ -58.274166999707234, -34.815802999908499 ], [ -58.274208999845428, -34.814900999681356 ], [ -58.274442999844553, -34.811726999901055 ], [ -58.270560999790291, -34.811575000086123 ], [ -58.26972499990876, -34.811554000017054 ], [ -58.269768000093109, -34.810760000273774 ], [ -58.270068000437846, -34.810739000204649 ], [ -58.270626000089806, -34.810609999651717 ], [ -58.271247999995182, -34.810609999651717 ], [ -58.272470999736811, -34.810630999720843 ], [ -58.272706999828131, -34.810652999836009 ], [ -58.272750000012422, -34.809836999977506 ], [ -58.272815000311994, -34.808763999958614 ], [ -58.272857999596965, -34.807691999985764 ], [ -58.274573999590359, -34.807819999593278 ], [ -58.276248000344879, -34.807905999961861 ], [ -58.278049999807592, -34.808013000399626 ], [ -58.278351000198484, -34.808034999615472 ], [ -58.278329000083261, -34.806982999665649 ], [ -58.278372000267552, -34.805953999877147 ], [ -58.278436999667747, -34.804815999558684 ], [ -58.278479999852095, -34.803785999724084 ], [ -58.278565000174581, -34.802734999820359 ], [ -58.278629999574775, -34.801661999801411 ], [ -58.278715999943415, -34.800588999782462 ], [ -58.278780000196832, -34.799409000225126 ], [ -58.278823000381124, -34.798485999928914 ], [ -58.278908999850444, -34.797456000094257 ], [ -58.278995000219027, -34.796019000376532 ], [ -58.279037000357221, -34.795245999803001 ], [ -58.279101999757415, -34.794044000130441 ], [ -58.279122999826541, -34.792993000226716 ], [ -58.279079999642249, -34.79194200032299 ], [ -58.278995000219027, -34.791190999864682 ], [ -58.278908999850444, -34.790482999590722 ], [ -58.278801000265901, -34.789774000169928 ], [ -58.278780000196832, -34.789538000078608 ], [ -58.278780000196832, -34.789174000379774 ], [ -58.278759000127707, -34.789001999642551 ], [ -58.278693999828192, -34.788938000288454 ], [ -58.278587000289804, -34.788895000104105 ], [ -58.278308000014135, -34.788916000173231 ], [ -58.278221999645552, -34.789001999642551 ], [ -58.277856999900564, -34.789044999826842 ], [ -58.277514000270855, -34.788872999988939 ], [ -58.276677000343227, -34.788422999921465 ], [ -58.27614099990717, -34.788143999645797 ], [ -58.27511100007257, -34.787607000062962 ], [ -58.274081000237913, -34.787070999626906 ], [ -58.273823000031371, -34.786920999904169 ], [ -58.272772000127645, -34.786363000252209 ], [ -58.271848999831434, -34.78584799988522 ], [ -58.270346999814137, -34.785032000026717 ], [ -58.270004000184429, -34.784861000234912 ], [ -58.269188000325926, -34.784410000121341 ], [ -58.268393999683326, -34.783959000007826 ], [ -58.268073000168783, -34.78378800021602 ], [ -58.267728999593601, -34.783595000308992 ], [ -58.267000000149835, -34.783208000448838 ], [ -58.266076999853624, -34.782672000012724 ], [ -58.265905000015721, -34.782607999759364 ], [ -58.265111000272384, -34.782177999714861 ], [ -58.264081000437784, -34.781642000178124 ], [ -58.263287999841282, -34.781191000064553 ], [ -58.262643999820682, -34.780805000250496 ], [ -58.26292300009635, -34.780612000343524 ], [ -58.263673999655339, -34.780204000414244 ], [ -58.264767999743356, -34.779561000439799 ], [ -58.265861999831372, -34.778980999773296 ], [ -58.266076999853624, -34.778852000119684 ], [ -58.267127999757349, -34.778315999683571 ], [ -58.268157999591949, -34.777736999962542 ], [ -58.2691670002568, -34.777157000195359 ], [ -58.270218000160526, -34.776577999574954 ], [ -58.271355999579669, -34.775955999669634 ], [ -58.272084999922754, -34.775547999740354 ], [ -58.272642999574714, -34.775248000294937 ], [ -58.272836000381062, -34.775161999926297 ], [ -58.273715999593662, -34.774689999743657 ], [ -58.275238999680028, -34.773873999885154 ], [ -58.276033000322684, -34.773467000002029 ], [ -58.276892000365478, -34.772972999704109 ], [ -58.277535000339981, -34.772779999797137 ], [ -58.278158000291455, -34.772694000327817 ], [ -58.278420999829223, -34.772567999913235 ], [ -58.278693999828192, -34.772437000167372 ], [ -58.278737000012484, -34.772350999798732 ], [ -58.279037000357221, -34.771878999616092 ], [ -58.279209000195181, -34.771771000031606 ], [ -58.279787999916209, -34.771449999617744 ], [ -58.280431999936809, -34.771105999941881 ], [ -58.280947000303797, -34.770826999666269 ], [ -58.281933999954106, -34.770291000129532 ], [ -58.283308000363888, -34.769497000386195 ], [ -58.284680999828254, -34.768723999812721 ], [ -58.284894999804351, -34.768574000089984 ], [ -58.285753999847202, -34.768037999653927 ], [ -58.28665500002819, -34.767372999564259 ], [ -58.286870000050442, -34.767200999726299 ], [ -58.287898999838944, -34.766471000236436 ], [ -58.288801000066087, -34.765635000354962 ], [ -58.289015000042184, -34.765462999617682 ], [ -58.289273000248727, -34.765247999595488 ], [ -58.289659000062784, -34.764904999965722 ], [ -58.290409999621772, -34.764239999876054 ], [ -58.290560000243772, -34.764111000222442 ], [ -58.291247000448664, -34.763510000386191 ], [ -58.291353999987052, -34.763424000017551 ], [ -58.292255000168097, -34.762652000389437 ], [ -58.293114000210892, -34.761900999931186 ], [ -58.293907999954172, -34.761213999726237 ], [ -58.294701999697509, -34.760548999636569 ], [ -58.295474000224885, -34.759862000330997 ], [ -58.295646000062789, -34.759711999708998 ], [ -58.296224999783874, -34.759219000356552 ], [ -58.296998000357405, -34.758532000151661 ], [ -58.297512999825017, -34.758103000153312 ], [ -58.297748999916394, -34.757910000246284 ], [ -58.298370999821771, -34.757351999695004 ], [ -58.299122000280022, -34.756729999789627 ], [ -58.29972300011633, -34.756193000206736 ], [ -58.300301999837359, -34.75569999995497 ], [ -58.300902999673667, -34.755184999588039 ], [ -58.301567999763336, -34.754583999751731 ], [ -58.301739999601239, -34.75443400002905 ], [ -58.302341000336867, -34.753918999662062 ], [ -58.302468999944324, -34.753811000077576 ], [ -58.302920000057895, -34.753447000378742 ], [ -58.303134000034049, -34.753295999710588 ], [ -58.303607000262787, -34.752866999712239 ], [ -58.303734999870301, -34.752760000173851 ], [ -58.304378999890901, -34.752201999622514 ], [ -58.304979999727152, -34.751687000154902 ], [ -58.305880999908197, -34.750914999627469 ], [ -58.306910999742797, -34.750035000414869 ], [ -58.308113000314677, -34.748982999565726 ], [ -58.309034999665471, -34.748188999822446 ], [ -58.309463999663819, -34.747825000123612 ], [ -58.309636000401042, -34.747674000354777 ], [ -58.310258000306419, -34.747158999987789 ], [ -58.311052000049699, -34.746450999713829 ], [ -58.311159999634242, -34.746366000290664 ], [ -58.311845999793036, -34.745785999624161 ], [ -58.312211000437287, -34.745442999994395 ], [ -58.312576000182219, -34.745100000364687 ], [ -58.313262000341012, -34.744477000413212 ], [ -58.314722000220115, -34.743210999587916 ], [ -58.315966000030812, -34.742137999568968 ], [ -58.316696000420052, -34.741515999663591 ], [ -58.31688900032708, -34.741343999825688 ], [ -58.317318000325429, -34.740958000011631 ], [ -58.317617999770846, -34.740678999736019 ], [ -58.318326000044806, -34.740077999899711 ], [ -58.319013000249697, -34.739499000178682 ], [ -58.319313999741269, -34.739219999903014 ], [ -58.319893000361617, -34.738747999720374 ], [ -58.320494000197925, -34.738190000068414 ], [ -58.321287999941205, -34.73750399990962 ], [ -58.321866999662291, -34.737009999611757 ], [ -58.322468000397862, -34.736495000144089 ], [ -58.323283000210267, -34.735786999870129 ], [ -58.324033999769256, -34.735142999849529 ], [ -58.324378000344382, -34.734863999573861 ], [ -58.324934999950244, -34.734371000221415 ], [ -58.325557999901719, -34.733812999670135 ], [ -58.327059999919015, -34.732503999559867 ], [ -58.327768000193032, -34.731860000438644 ], [ -58.328518999752021, -34.731216000418044 ], [ -58.32931300039462, -34.730551000328376 ], [ -58.329442000048232, -34.730421999775444 ], [ -58.330085000022677, -34.72988600023865 ], [ -58.330835999581666, -34.729242000218107 ], [ -58.331715999693586, -34.728490999759799 ], [ -58.332638999989797, -34.727675999947394 ], [ -58.333432999733134, -34.727010999857725 ], [ -58.334205000260511, -34.726302999583709 ], [ -58.334591000074568, -34.725981000023069 ], [ -58.33484900028111, -34.725766000000874 ], [ -58.335384999817848, -34.725293999818177 ], [ -58.336264999929767, -34.724500000074897 ], [ -58.336544000205379, -34.724242999914452 ], [ -58.336908999950367, -34.723963999638841 ], [ -58.337251999580076, -34.723685000262492 ], [ -58.338025000153607, -34.723020000172824 ], [ -58.338603999874636, -34.722525999874961 ], [ -58.338775999712595, -34.722376000152224 ], [ -58.337981999969259, -34.721688999947332 ], [ -58.337188000225979, -34.721002999788539 ], [ -58.336587000389727, -34.720488000320927 ], [ -58.335857000000487, -34.719865000369452 ], [ -58.335063000257207, -34.719179000210659 ], [ -58.334227000375733, -34.718448999821419 ], [ -58.333196999641757, -34.717568999709499 ], [ -58.332446000082768, -34.716925999735054 ], [ -58.331694999624517, -34.716281999714454 ], [ -58.331029000388014, -34.715724000062494 ], [ -58.330063999953609, -34.714887000134922 ], [ -58.3290770003033, -34.714029000138225 ], [ -58.328067999638449, -34.713171000141472 ], [ -58.327124000172432, -34.712312000098677 ], [ -58.327768000193032, -34.711796999731689 ], [ -58.328390000098409, -34.711282000264077 ], [ -58.328926999681244, -34.710853000265729 ], [ -58.329484000186426, -34.710424000267381 ], [ -58.33034300022922, -34.709759000177655 ], [ -58.331373000063877, -34.708900000134861 ], [ -58.332402999898477, -34.708064000253387 ], [ -58.333432999733134, -34.707248000394884 ], [ -58.334162000076219, -34.706646999659256 ], [ -58.335042000188139, -34.70591800021549 ], [ -58.335985999654099, -34.705144999641959 ], [ -58.336865999766019, -34.704416000198194 ], [ -58.337831000200481, -34.703751000108525 ], [ -58.338796999781664, -34.703084999972702 ], [ -58.339763000262224, -34.702419999883034 ], [ -58.340600000189795, -34.701691000439268 ], [ -58.340664000443212, -34.701648000254977 ], [ -58.341156999795658, -34.701219000256629 ], [ -58.3414150000022, -34.701004000234377 ], [ -58.342165999561189, -34.700360000213777 ], [ -58.342917000019497, -34.6997380003084 ], [ -58.343818000200486, -34.698986999850092 ], [ -58.344719000381531, -34.698236000291161 ], [ -58.345405999687102, -34.697656999670755 ], [ -58.346242999614674, -34.696970000365184 ], [ -58.346971999957816, -34.696347999560487 ], [ -58.347808999885387, -34.695618000070624 ], [ -58.34862499974389, -34.694952999980899 ], [ -58.34941900038649, -34.694308999960356 ], [ -58.350255000268021, -34.69357999961727 ], [ -58.350941999573593, -34.692999999850088 ], [ -58.351307000217844, -34.69270000040467 ], [ -58.351693000031901, -34.692377999944711 ], [ -58.352981000073044, -34.691283999856637 ], [ -58.353710000416129, -34.690683000020385 ], [ -58.35424699999902, -34.690231999906814 ], [ -58.354374999606478, -34.690125000368425 ], [ -58.353387999956169, -34.689288000440797 ], [ -58.352380000236792, -34.688408000328934 ], [ -58.351264000033552, -34.687463999963597 ], [ -58.350255000268021, -34.686605999966901 ], [ -58.349246999649267, -34.685747999970204 ], [ -58.348259999998959, -34.684867999858284 ], [ -58.347186999980011, -34.683987999746364 ], [ -58.346200000329702, -34.683237000187376 ], [ -58.345255999964365, -34.682528999913359 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.361349000156167, -34.664289999683717 ], [ -58.362873000288687, -34.665405999886957 ], [ -58.363837999823772, -34.666114000160917 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370489999913502, -34.659719000231632 ], [ -58.370897999842782, -34.660363000252232 ], [ -58.371133999934102, -34.660469999790621 ], [ -58.37244300004437, -34.660663999743747 ], [ -58.372828999858427, -34.660684999812872 ], [ -58.373622999601707, -34.661007000272775 ], [ -58.374330999875724, -34.661264000433221 ], [ -58.374610000151335, -34.661436000271124 ], [ -58.375039000149684, -34.661070999626872 ], [ -58.375704000239352, -34.662058000176501 ], [ -58.375962000445895, -34.662422999921489 ], [ -58.376197999637952, -34.662765999551198 ], [ -58.376391000444301, -34.663023999757741 ], [ -58.376563000282204, -34.663280999918186 ], [ -58.377163000072358, -34.664204000214397 ], [ -58.378, -34.663517000009506 ], [ -58.37900899976546, -34.662681000128032 ], [ -58.380038999600117, -34.663517000009506 ], [ -58.381175999872482, -34.664440000305717 ], [ -58.382226999776151, -34.665298000302414 ], [ -58.383386000163739, -34.666242999814529 ], [ -58.384030000184339, -34.666779000250642 ], [ -58.38439499992927, -34.667057999626934 ], [ -58.384888000181036, -34.667078999696059 ], [ -58.384973999650299, -34.667100999811225 ], [ -58.385961000199984, -34.667401000155962 ], [ -58.387827999962212, -34.668045000176562 ], [ -58.388857999796812, -34.668925000288482 ], [ -58.389223000441064, -34.669267999918191 ], [ -58.389672999609218, -34.669696999916596 ], [ -58.390573999790206, -34.67046999959075 ], [ -58.390682000274069, -34.670577000028459 ], [ -58.391668999924377, -34.671391999840864 ], [ -58.392676999643754, -34.67055599995939 ], [ -58.393792999847051, -34.66991199993879 ], [ -58.394952000234582, -34.66920399966483 ], [ -58.39585300041557, -34.66864600001287 ], [ -58.396732999628171, -34.66808800036091 ], [ -58.397548000339896, -34.667508999740505 ], [ -58.398342000083176, -34.666928999973322 ], [ -58.399200000079873, -34.666328000137071 ], [ -58.400015999938432, -34.665749000415985 ], [ -58.400852999866004, -34.665147999680414 ], [ -58.401667999678409, -34.664546999844106 ], [ -58.402525999675106, -34.663947000053952 ], [ -58.403342000432929, -34.663367000286769 ], [ -58.404157000245334, -34.664117999845757 ], [ -58.404886999735197, -34.664761999866357 ], [ -58.405616000078282, -34.665449000071249 ], [ -58.406409999821619, -34.664805000050649 ], [ -58.407074999911288, -34.665426999956026 ], [ -58.407741000047054, -34.666027999792334 ], [ -58.408491999606042, -34.666736000066294 ], [ -58.409286000248699, -34.667465999556214 ], [ -58.41003699980763, -34.668130999645882 ], [ -58.410766000150772, -34.668817999850774 ], [ -58.411495999640636, -34.669504000009567 ], [ -58.412332999568207, -34.66888200010419 ], [ -58.413105000095641, -34.668303000383105 ], [ -58.413963000092338, -34.667680000431631 ], [ -58.41477899995084, -34.667057999626934 ], [ -58.41557299969412, -34.666456999790682 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416726999851107, -34.660098999768991 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.657446999779154 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416367000336777, -34.65180200026208 ], [ -58.416237999783846, -34.651759000077732 ], [ -58.415289000087228, -34.651758000031634 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 223.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.394042999684643, -34.645916000423028 ], [ -58.392999000103714, -34.645471999732933 ], [ -58.392290999829754, -34.645193000356642 ], [ -58.389566000070829, -34.644098000222471 ], [ -58.389672999609218, -34.642874999581522 ], [ -58.389758999977801, -34.641781000392825 ], [ -58.38984500034644, -34.640600999936169 ], [ -58.389866000415566, -34.640214000076014 ], [ -58.388835999681589, -34.639698999709026 ], [ -58.388557000305298, -34.639484999732929 ], [ -58.388150000422115, -34.639033999619357 ], [ -58.387526999571321, -34.638411999713981 ], [ -58.387420000032932, -34.638239999876077 ], [ -58.386475999667596, -34.637017000134392 ], [ -58.385595999555676, -34.635858999792958 ], [ -58.383750999908671, -34.63343400037877 ], [ -58.383622000255059, -34.633326999941062 ], [ -58.383450999563934, -34.633283999756713 ], [ -58.383386000163739, -34.633283999756713 ], [ -58.383299999795099, -34.63334800001013 ], [ -58.383150000072419, -34.633540999917159 ], [ -58.382549000236111, -34.633176000172227 ], [ -58.382613999636305, -34.631738999555125 ], [ -58.382677999889722, -34.630859000342525 ], [ -58.382698999958848, -34.630194000252857 ], [ -58.382721000074071, -34.629699999954994 ], [ -58.382742000143139, -34.629034999865326 ], [ -58.382807000442654, -34.627833000192766 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.379614999832313, -34.624154999653456 ], [ -58.379781000292894, -34.623670999816738 ], [ -58.379931000015574, -34.62212599961515 ], [ -58.379996000315145, -34.62092399994259 ], [ -58.380146000037826, -34.619722000270031 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.381090000403162, -34.617598000347414 ], [ -58.381219000056774, -34.61523800033342 ], [ -58.381283000310191, -34.613049000111232 ], [ -58.3812000000799, -34.612295999560672 ], [ -58.381215999918425, -34.611881000207973 ], [ -58.381347999710385, -34.611308999910364 ], [ -58.381390999894677, -34.61073200028153 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381604999870831, -34.607277000133422 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.381712000308539, -34.604834999935235 ], [ -58.381990999684831, -34.604294000167954 ], [ -58.382142000352985, -34.603715000446869 ], [ -58.382077000053471, -34.603156999895589 ], [ -58.381863000077374, -34.602512999874989 ], [ -58.381992999777083, -34.600224000437208 ], [ -58.382077000053471, -34.599036999657756 ], [ -58.382163000422111, -34.597878000169544 ], [ -58.381754999593511, -34.597857000100419 ], [ -58.381691000239414, -34.59774999966271 ], [ -58.381455000148094, -34.596032999623162 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.385843000154296, -34.595652000039706 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.388414000006037, -34.595732000131648 ], [ -58.389974, -34.595776000362093 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.393192000010743, -34.594853000065882 ], [ -58.393084999573034, -34.593823000231225 ], [ -58.392806000196686, -34.592642999774569 ], [ -58.391861999831406, -34.591762999662649 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.419670999816731, -34.58137800009456 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425693999678288, -34.578462999667636 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.430250000237265, -34.575712999655138 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.432523999882676, -34.57360999980159 ], [ -58.43338299992547, -34.572708999620602 ], [ -58.433511000432304, -34.57257999996699 ], [ -58.434091000199487, -34.571979000130682 ], [ -58.434927000080961, -34.571099000018819 ], [ -58.435720999824241, -34.570241000022065 ], [ -58.436557999751869, -34.569317999725854 ], [ -58.437008999865384, -34.568782000189117 ], [ -58.437373999610372, -34.568287999891254 ], [ -58.438102999953458, -34.567301000240946 ], [ -58.439325999695086, -34.566207000152872 ], [ -58.439434000178949, -34.566120999784289 ], [ -58.440356000429063, -34.5653700002253 ], [ -58.439561999786406, -34.564512000228603 ], [ -58.440591999621063, -34.563890000323227 ], [ -58.441256999710731, -34.564597999697867 ], [ -58.442351999844902, -34.565821000338872 ], [ -58.443060000118862, -34.566615000082152 ], [ -58.443747000323754, -34.567386999710209 ], [ -58.444432999583228, -34.568181000352865 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.470011000107547, -34.546679999882031 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476609999551783, -34.537450999663861 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.482242000268059, -34.526660000258744 ], [ -58.482649000151184, -34.525908999800436 ], [ -58.482734999620504, -34.52573800000863 ], [ -58.483143000449047, -34.52502999973467 ], [ -58.483272000102659, -34.524814999712419 ], [ -58.483294000217882, -34.524774999666477 ], [ -58.483765000354424, -34.52391400043075 ], [ -58.484301999937315, -34.522970000065413 ], [ -58.484752000004733, -34.522089999953494 ], [ -58.485288999587624, -34.520910000396157 ], [ -58.485931999562069, -34.519751000008625 ], [ -58.486061000115001, -34.519558000101597 ], [ -58.486319000321544, -34.519042999734609 ], [ -58.486683000020378, -34.518398999714009 ], [ -58.4873490001562, -34.517198000087603 ], [ -58.488077999599966, -34.515932000161627 ], [ -58.488679000335537, -34.514623000051358 ], [ -58.488829000058274, -34.514279000375495 ], [ -58.488894000357789, -34.51419400005301 ], [ -58.489386999710234, -34.513185000287478 ], [ -58.489881000008097, -34.51228400010649 ], [ -58.490374000259862, -34.511425000063639 ], [ -58.489214999872331, -34.510931999811874 ], [ -58.488271000406314, -34.510502999813525 ], [ -58.487327000040978, -34.510009000414982 ], [ -58.486382999675641, -34.509537000232342 ], [ -58.485460000278749, -34.509065000049645 ], [ -58.485953999677292, -34.508293000421588 ], [ -58.486769000389017, -34.507026999596292 ], [ -58.487433999579366, -34.5061040001994 ], [ -58.486469000044281, -34.505675000201052 ], [ -58.485524999678944, -34.505246000202703 ], [ -58.486017999930709, -34.504322999906492 ], [ -58.486748000319892, -34.503399999610224 ], [ -58.485760999770264, -34.502950000442127 ], [ -58.486382999675641, -34.502070000330207 ], [ -58.487004999581018, -34.501233000402578 ], [ -58.487563000132297, -34.500375000405882 ], [ -58.487863999623869, -34.499946000407533 ], [ -58.488185000037674, -34.49945200010967 ], [ -58.488700000404663, -34.498700999651362 ], [ -58.489214999872331, -34.497972000207596 ], [ -58.489858999892874, -34.497113000164802 ], [ -58.490266999822154, -34.496534000443717 ], [ -58.49067399970528, -34.495975999892437 ], [ -58.491317999725879, -34.49488199980442 ], [ -58.492176999768674, -34.495288999687546 ], [ -58.493077999949719, -34.495696999616769 ], [ -58.493314000041039, -34.495804000054534 ], [ -58.494064999600027, -34.496125999615174 ], [ -58.494623000151307, -34.496361999706494 ], [ -58.495030000034433, -34.496554999613522 ], [ -58.495524000332296, -34.496769999635717 ], [ -58.495953000330644, -34.496963000442065 ], [ -58.496939999980953, -34.497413999656317 ], [ -58.497648000254969, -34.497757000185345 ], [ -58.498634999905278, -34.498208000298916 ], [ -58.499450999763781, -34.49857199999775 ], [ -58.500438000313409, -34.499002000042196 ], [ -58.499751000108517, -34.500139000314562 ], [ -58.499365000294461, -34.500718000035647 ], [ -58.498957000365237, -34.501318999871899 ], [ -58.499944000015546, -34.501747999870247 ], [ -58.500888000380883, -34.502176999868595 ], [ -58.5018319998469, -34.502627999982167 ], [ -58.502820000442625, -34.503056999980515 ], [ -58.503763999908642, -34.503529000163155 ], [ -58.504750999558951, -34.503937000092435 ], [ -58.505502000017259, -34.504279999722144 ], [ -58.505672999809065, -34.504366000090783 ], [ -58.506639000289567, -34.504795000089132 ], [ -58.507625999939933, -34.505267000271829 ], [ -58.508698999958824, -34.505760999670372 ], [ -58.509470999586938, -34.5061040001994 ], [ -58.509665000439384, -34.50618999966872 ], [ -58.510501000320858, -34.506597999597943 ], [ -58.510737000412178, -34.506705000035652 ], [ -58.511445999832972, -34.507005000380445 ], [ -58.511831999647029, -34.507198000287417 ], [ -58.512411000267434, -34.507476999663766 ], [ -58.512947999850269, -34.507691999686017 ], [ -58.513312000448423, -34.50786400042324 ], [ -58.514685999958886, -34.508464000213394 ], [ -58.515476000417038, -34.508848999981296 ], [ -58.51552199984036, -34.508872000142674 ], [ -58.515929999769639, -34.509043999980577 ], [ -58.516638000043599, -34.509366000440536 ], [ -58.516874000134976, -34.509450999863702 ], [ -58.517754000246896, -34.509858999792982 ], [ -58.517903999969576, -34.509923000046399 ], [ -58.518827000265787, -34.510353000090845 ], [ -58.519878000169513, -34.510867999558513 ], [ -58.521171999588091, -34.511461999971289 ], [ -58.521251999679976, -34.511532999648182 ], [ -58.52122999956481, -34.511596999901599 ], [ -58.521058999773004, -34.511662000201113 ], [ -58.520093000191764, -34.511683000270182 ], [ -58.519878000169513, -34.51172599955521 ], [ -58.519834999985221, -34.511832999992919 ], [ -58.520006999823124, -34.51211200026853 ], [ -58.520157000445181, -34.51228400010649 ], [ -58.520371999568113, -34.512412999760102 ], [ -58.521059999819101, -34.512747999920236 ], [ -58.521251999679976, -34.51284199975845 ], [ -58.522517999605952, -34.513484999732896 ], [ -58.523312000248552, -34.51387199959305 ], [ -58.523890999969638, -34.514000000099884 ], [ -58.524127000060957, -34.514000000099884 ], [ -58.524319999967986, -34.513892999662175 ], [ -58.524491999805889, -34.513742999939439 ], [ -58.524662999597695, -34.513720999824216 ], [ -58.524748999966334, -34.51387199959305 ], [ -58.524727999897209, -34.51395799996169 ], [ -58.524578000174529, -34.514171999937787 ], [ -58.524384000221403, -34.514236000191204 ], [ -58.523955000223054, -34.514258000306427 ], [ -58.523244999856843, -34.514273000098854 ], [ -58.522946999604301, -34.514279000375495 ], [ -58.521446999679256, -34.514343999775747 ], [ -58.521100999911198, -34.514451000213455 ], [ -58.520715000097141, -34.514623000051358 ], [ -58.520006999823124, -34.515138000418347 ], [ -58.519513999571359, -34.515996000415043 ], [ -58.520199999730153, -34.516295999860461 ], [ -58.521166000210712, -34.51670399978974 ], [ -58.522130999745798, -34.51717599997238 ], [ -58.521552000024712, -34.518077000153369 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 222.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.530043513999942, -34.638444456999935 ], [ -58.53011456999991, -34.637772286999905 ], [ -58.53014014699994, -34.637430385999949 ], [ -58.530149589999951, -34.637087520999955 ], [ -58.530165997999916, -34.636655553999958 ], [ -58.530194475999906, -34.636561505999907 ], [ -58.530225256999927, -34.636515334999956 ], [ -58.530269457999907, -34.636481946999936 ], [ -58.53032124799995, -34.636442826999939 ], [ -58.530500803999928, -34.636453173999939 ], [ -58.53141910699992, -34.636506093999913 ], [ -58.532225462999918, -34.63659419499993 ], [ -58.532801616999905, -34.636620508999954 ], [ -58.532980852999913, -34.636635884999919 ], [ -58.534154668999918, -34.636758716999907 ], [ -58.535388288999911, -34.63682468199994 ], [ -58.536617278999927, -34.636894225999924 ], [ -58.536608079999951, -34.637035036999919 ], [ -58.536556233999931, -34.637828611999907 ], [ -58.53641624799991, -34.63872243599991 ], [ -58.536691317999953, -34.638729670999908 ], [ -58.537721155999918, -34.638756758999932 ], [ -58.539358102999927, -34.638840223999921 ], [ -58.540963327999918, -34.638831576999905 ], [ -58.540937798999948, -34.639041529999929 ], [ -58.540848591999918, -34.63977517099994 ], [ -58.54104289299994, -34.639775745999941 ], [ -58.542298427999924, -34.639779464999947 ], [ -58.542331946999923, -34.639546615999905 ], [ -58.542431995999948, -34.638851599999953 ], [ -58.542500860999951, -34.637956425999903 ], [ -58.542581100999939, -34.637383622999948 ], [ -58.54262695999995, -34.637015669999926 ], [ -58.542753153999911, -34.635642539999935 ], [ -58.543017964999933, -34.635727398999904 ], [ -58.543920443999923, -34.636016596999923 ], [ -58.544132292999905, -34.635863812999958 ], [ -58.544736970999907, -34.635427722999907 ], [ -58.545397077999951, -34.63486938199992 ], [ -58.546557008999912, -34.634007010999937 ], [ -58.547659710999937, -34.633171259999926 ], [ -58.547839039999928, -34.633042086999922 ], [ -58.548575472999914, -34.632366077999905 ], [ -58.549243232999913, -34.631701530999919 ], [ -58.549929440999904, -34.631031579999956 ], [ -58.550385218999907, -34.63054275199994 ], [ -58.550426447999939, -34.630525018999947 ], [ -58.550656231999938, -34.630426184999919 ], [ -58.551156277999951, -34.630302195999946 ], [ -58.551599389999922, -34.630211412999927 ], [ -58.552373498999941, -34.630129361999934 ], [ -58.553142021999918, -34.630460795999909 ], [ -58.553307907999908, -34.630301121999935 ], [ -58.553374739999924, -34.630236792999938 ], [ -58.553527091999911, -34.630039099999919 ], [ -58.553550240999925, -34.630009061999942 ], [ -58.553621841999927, -34.629836826999906 ], [ -58.55364740899995, -34.629702665999957 ], [ -58.553659274999916, -34.629615370999943 ], [ -58.553650393999931, -34.629519359999904 ], [ -58.553620724999917, -34.629405664999922 ], [ -58.5535843749999, -34.629317733999926 ], [ -58.553527791999954, -34.62923062099992 ], [ -58.553310051999915, -34.628966447999915 ], [ -58.553229953999903, -34.628902067999945 ], [ -58.553058311999905, -34.628769527999907 ], [ -58.552942139999914, -34.628674239999953 ], [ -58.552795131999915, -34.62855365899992 ], [ -58.552940101999923, -34.628435936999949 ], [ -58.553157558999942, -34.628263621999906 ], [ -58.55486666999991, -34.626909305999902 ], [ -58.555763190999926, -34.626206740999919 ], [ -58.556388854999909, -34.625644683999951 ], [ -58.55705261199995, -34.625106811999956 ], [ -58.557754516999921, -34.624565124999947 ], [ -58.558483123999906, -34.623992919999921 ], [ -58.557991027999947, -34.623783111999956 ], [ -58.558064850999926, -34.623780608999937 ], [ -58.558441161999951, -34.623767852999947 ], [ -58.558428622999941, -34.62357837199994 ], [ -58.558372497999926, -34.622730254999908 ], [ -58.558277129999908, -34.621677398999907 ], [ -58.558242797999924, -34.620658874999947 ], [ -58.558116912999935, -34.619636535999916 ], [ -58.558344913999917, -34.619627195999954 ], [ -58.559700011999951, -34.619571685999915 ], [ -58.561279296999942, -34.619499206999933 ], [ -58.562896728999931, -34.619403838999915 ], [ -58.562888975999954, -34.619195275999914 ], [ -58.562858581999933, -34.618377685999917 ], [ -58.562801360999913, -34.617347716999916 ], [ -58.562683104999905, -34.616302489999953 ], [ -58.562591552999947, -34.615283965999936 ], [ -58.562549590999936, -34.614513396999939 ], [ -58.562549590999936, -34.614212035999913 ], [ -58.562526702999946, -34.613761901999908 ], [ -58.56247329699994, -34.613224029999913 ], [ -58.562446593999937, -34.612949370999956 ], [ -58.562427520999904, -34.612182616999917 ], [ -58.562377929999911, -34.61113357499994 ], [ -58.562324523999905, -34.610103606999928 ], [ -58.562290191999921, -34.609058379999908 ], [ -58.562194823999903, -34.608009337999931 ], [ -58.562129973999902, -34.606983184999933 ], [ -58.562026977999949, -34.605930327999943 ], [ -58.561981200999924, -34.60502624499992 ], [ -58.561981200999924, -34.604816436999954 ], [ -58.561970381999913, -34.604639264999946 ], [ -58.561950683999953, -34.60431671099991 ], [ -58.561870574999944, -34.603313445999902 ], [ -58.561851928999943, -34.602255953999929 ], [ -58.561625050999908, -34.60226782399991 ], [ -58.560240086999954, -34.602340285999958 ], [ -58.558670197999902, -34.602394111999956 ], [ -58.557036602999915, -34.602485535999904 ], [ -58.557027863999906, -34.602486024999905 ], [ -58.556048612999916, -34.602502935999951 ], [ -58.555069333999938, -34.602538972999923 ], [ -58.554044301999909, -34.602597855999932 ], [ -58.553053580999915, -34.602641516999938 ], [ -58.552047620999929, -34.602685142999917 ], [ -58.55106834399993, -34.602721179999946 ], [ -58.550367232999918, -34.602742544999955 ], [ -58.550188216999913, -34.602696239999943 ], [ -58.549605791999909, -34.602312418999929 ], [ -58.549410282999929, -34.602177444999938 ], [ -58.549255591999952, -34.602070649999916 ], [ -58.548692175999918, -34.601717472999951 ], [ -58.548524703999931, -34.601590868999949 ], [ -58.547858556999927, -34.601134182999942 ], [ -58.547042812999905, -34.600598971999943 ], [ -58.54672248199995, -34.600381335999941 ], [ -58.546131413999944, -34.599995647999947 ], [ -58.545959074999928, -34.600180993999913 ], [ -58.545149604999949, -34.601051557999938 ], [ -58.544153639999934, -34.602116491999936 ], [ -58.543206616999953, -34.60309493099993 ], [ -58.543053245999943, -34.602992576999952 ], [ -58.542351218999954, -34.602524072999927 ], [ -58.542446760999951, -34.602425158999949 ], [ -58.543300957999918, -34.601540808999914 ], [ -58.544272682999917, -34.60048228799991 ], [ -58.545277238999915, -34.599449535999952 ], [ -58.545985032999909, -34.598750972999937 ], [ -58.546719443999905, -34.598010612999929 ], [ -58.547377762999929, -34.597357600999942 ], [ -58.548070280999923, -34.596632366999927 ], [ -58.54871711699991, -34.595937470999957 ], [ -58.54860087499992, -34.595859522999945 ], [ -58.547043020999922, -34.594814881999923 ], [ -58.545918027999903, -34.594036024999923 ], [ -58.545841836999955, -34.593967132999921 ], [ -58.545805335999944, -34.593934127999944 ], [ -58.5458045069999, -34.593933378999907 ], [ -58.545504659999949, -34.593662255999902 ], [ -58.544787509999935, -34.592977493999911 ], [ -58.544055323999942, -34.592296822999913 ], [ -58.543430218999902, -34.591640035999944 ], [ -58.5433982159999, -34.591606357999922 ], [ -58.542430661999902, -34.59081372299994 ], [ -58.542156518999946, -34.590600423999945 ], [ -58.542097673999933, -34.590550906999908 ], [ -58.541567595999936, -34.590110281999955 ], [ -58.540818260999913, -34.589496023999914 ], [ -58.540069002999928, -34.588838285999941 ], [ -58.539287514999955, -34.588177395999935 ], [ -58.538525026999935, -34.587539462999928 ], [ -58.537773518999927, -34.58691558299995 ], [ -58.537747218999925, -34.58689303299991 ], [ -58.537037091999935, -34.586291702999915 ], [ -58.536235149999925, -34.585607439999933 ], [ -58.535969082999941, -34.585381174999952 ], [ -58.53584302999991, -34.585273977999918 ], [ -58.535754517999919, -34.585198706999904 ], [ -58.535956051999904, -34.585023497999941 ], [ -58.536138278999942, -34.58470398399993 ], [ -58.536127929999907, -34.584453818999918 ], [ -58.536119810999935, -34.584257571999956 ], [ -58.536452657999916, -34.58398780899995 ], [ -58.536594708999928, -34.584110245999909 ], [ -58.536832542999946, -34.584315240999956 ], [ -58.536901711999917, -34.584371457999907 ], [ -58.537303695999924, -34.584698167999932 ], [ -58.537342122999917, -34.584665387999905 ], [ -58.537351890999901, -34.584657054999923 ], [ -58.537502010999901, -34.584528992999935 ], [ -58.538374835999946, -34.583784421999951 ], [ -58.539397936999933, -34.582943333999935 ], [ -58.540383899999938, -34.582117389999951 ], [ -58.540263102999916, -34.582016220999947 ], [ -58.539578619999929, -34.581442956999922 ], [ -58.539552736999951, -34.581427303999931 ], [ -58.538836240999899, -34.580773176999912 ], [ -58.538083515999915, -34.580090668999958 ], [ -58.53732320599994, -34.579420388999949 ], [ -58.536537553999949, -34.578769130999945 ], [ -58.535751212999912, -34.578092729999923 ], [ -58.535976153999911, -34.577911539999945 ], [ -58.53683018299995, -34.577223615999912 ], [ -58.53790098099995, -34.576376101999927 ], [ -58.538927487999899, -34.57551897299993 ], [ -58.539903871999911, -34.574702567999907 ], [ -58.541011331999925, -34.573820296999941 ], [ -58.542054392999944, -34.572971929999937 ], [ -58.54318081699995, -34.572074510999926 ], [ -58.543049497999903, -34.571965170999931 ], [ -58.542860732999941, -34.571808 ], [ -58.542393808999918, -34.571414078999908 ], [ -58.541648254999927, -34.570780756999909 ], [ -58.540850485999954, -34.570131445999948 ], [ -58.540124914999922, -34.56953580499993 ], [ -58.539964518999909, -34.569403019999925 ], [ -58.53926948599991, -34.568830146999915 ], [ -58.53860885499995, -34.568291405999958 ], [ -58.538169713999935, -34.567934769999908 ], [ -58.538162090999947, -34.567930970999953 ], [ -58.538257948999899, -34.567855351999924 ], [ -58.538259473999915, -34.567854148999913 ], [ -58.538378304999924, -34.567760407999913 ], [ -58.5393014039999, -34.567032211999958 ], [ -58.54037631999995, -34.566174969999906 ], [ -58.541402085999948, -34.565366842999936 ], [ -58.541974250999942, -34.564915004999932 ], [ -58.541923383999915, -34.56464468799993 ], [ -58.541791973999921, -34.563946347999945 ], [ -58.541921321999951, -34.563973297999951 ], [ -58.542140175999918, -34.563804130999927 ], [ -58.542978857999913, -34.563155857999902 ], [ -58.544036392999942, -34.562338417999911 ], [ -58.545071218999908, -34.561547616999917 ], [ -58.545120481999902, -34.561505784999952 ], [ -58.546164243999954, -34.560672311999951 ], [ -58.547179035999932, -34.559870491999902 ], [ -58.547191875999943, -34.559860372999935 ], [ -58.548273940999934, -34.559007583999914 ], [ -58.549727458999939, -34.557850670999926 ], [ -58.551188603999947, -34.556701398999905 ], [ -58.552211042999943, -34.555887965999943 ], [ -58.552703215999941, -34.555482912999935 ], [ -58.554168290999939, -34.554267760999949 ], [ -58.555625082999939, -34.55305655199993 ], [ -58.555711870999914, -34.553009004999922 ], [ -58.555820383999901, -34.552949554999941 ], [ -58.556394502999922, -34.552487253999914 ], [ -58.557426452999948, -34.551651000999925 ], [ -58.558395385999916, -34.550868987999934 ], [ -58.559337615999937, -34.550106048999908 ], [ -58.559318541999914, -34.54995727499994 ], [ -58.559265273999927, -34.549899374999939 ], [ -58.559143065999933, -34.54976654099994 ], [ -58.558975219999923, -34.549606322999921 ], [ -58.558463769999946, -34.549212563999902 ], [ -58.558461465999926, -34.549210789999904 ], [ -58.558349939999914, -34.549124927999912 ], [ -58.558342917999937, -34.549119521999955 ], [ -58.5576324459999, -34.548572539999952 ], [ -58.557502746999944, -34.548477172999924 ], [ -58.557464599999946, -34.548366546999944 ], [ -58.557460784999932, -34.548233031999928 ], [ -58.557294601999899, -34.548364152999909 ], [ -58.556140899999946, -34.549274444999924 ], [ -58.554843902999949, -34.550296782999908 ], [ -58.554767674999937, -34.550230172999932 ], [ -58.554027556999927, -34.549583434999931 ], [ -58.554154412999935, -34.549481496999931 ], [ -58.555309295999905, -34.54855346699992 ], [ -58.556610106999926, -34.547515868999938 ], [ -58.556510938999907, -34.547433889999922 ], [ -58.555751800999928, -34.546806334999928 ], [ -58.554889678999928, -34.546073913999919 ], [ -58.554000853999923, -34.545330047999926 ], [ -58.55378341699992, -34.545143126999903 ], [ -58.553138732999912, -34.544593810999913 ], [ -58.552227019999918, -34.543815612999936 ], [ -58.551513671999942, -34.543216704999907 ], [ -58.550664415999904, -34.542494111999929 ], [ -58.549902564999911, -34.541836227999909 ], [ -58.549889459999918, -34.541825059999951 ], [ -58.549873826999942, -34.541811737999922 ], [ -58.549500761999923, -34.541493817999935 ], [ -58.549231665999912, -34.541259135999951 ], [ -58.548557539999933, -34.540675632999921 ], [ -58.547886079999955, -34.540102104999903 ], [ -58.547191597999927, -34.539508935999947 ], [ -58.546494732999918, -34.538915875999919 ], [ -58.546672006999927, -34.538776777999942 ], [ -58.547790499999905, -34.537899151999909 ], [ -58.547652678999953, -34.537779284999942 ], [ -58.54712675299993, -34.53732187199995 ], [ -58.5463586649999, -34.536669526999958 ], [ -58.546355836999908, -34.536667124999951 ], [ -58.546294126999953, -34.536614714999928 ], [ -58.546164193999914, -34.536727733999953 ], [ -58.54577951899995, -34.537062334999916 ], [ -58.545041019999928, -34.537691806999931 ], [ -58.544783113999927, -34.537912882999933 ], [ -58.543824601999916, -34.538734517999956 ], [ -58.543471005999947, -34.539036199999941 ], [ -58.54329385199992, -34.538892107999914 ], [ -58.542938527999922, -34.538603099999932 ], [ -58.542612164999923, -34.538341705999926 ], [ -58.542586246999917, -34.538319616999956 ], [ -58.542297389999931, -34.538080494999917 ], [ -58.542023246999918, -34.537863677999951 ], [ -58.541919579999899, -34.537775327999952 ], [ -58.541719489999934, -34.537621080999941 ], [ -58.541449044999922, -34.537407955999925 ], [ -58.541032491999943, -34.537246628999924 ], [ -58.540671654999926, -34.537114338999913 ], [ -58.540582368999935, -34.537082189999921 ], [ -58.540273549999938, -34.536975243999905 ], [ -58.539663379999922, -34.536761207999916 ], [ -58.539241011999934, -34.536611328999925 ], [ -58.538848610999935, -34.536472083999911 ], [ -58.53842925999993, -34.536323546999938 ], [ -58.536746978999929, -34.535690307999914 ], [ -58.535850524999944, -34.535354613999914 ], [ -58.535720824999942, -34.535305022999921 ], [ -58.535644530999946, -34.535278319999918 ], [ -58.534832000999927, -34.534973144999924 ], [ -58.533832549999943, -34.534591674999945 ], [ -58.533409118999941, -34.534435271999939 ], [ -58.533111571999939, -34.534324645999902 ], [ -58.531925200999922, -34.533878325999922 ], [ -58.531656004999945, -34.53381007999991 ], [ -58.531654357999912, -34.533809661999953 ], [ -58.530788421999944, -34.533626555999945 ], [ -58.530372619999923, -34.533470153999929 ], [ -58.529754638999918, -34.533168792999902 ], [ -58.529158150999933, -34.532882141999949 ], [ -58.528675078999925, -34.532649993999939 ], [ -58.528491973999905, -34.53256988499993 ], [ -58.528072356999928, -34.532360076999908 ], [ -58.527610778999929, -34.532138823999958 ], [ -58.526546477999943, -34.531616210999914 ], [ -58.525486063999949, -34.531092361999924 ], [ -58.525385372999949, -34.531034799999929 ], [ -58.524952048999921, -34.530787081999904 ], [ -58.524639263999916, -34.53064014499995 ], [ -58.523403386999917, -34.530029737999939 ], [ -58.522331530999907, -34.529498454999953 ], [ -58.521259674999953, -34.528970945999902 ], [ -58.520702766999932, -34.528695886999913 ], [ -58.520172559999935, -34.528439676999938 ], [ -58.519127405999939, -34.527915918999952 ], [ -58.518021225999917, -34.527320491999944 ], [ -58.51681960399992, -34.526707037999927 ], [ -58.515757036999901, -34.526161085999945 ], [ -58.51512675999993, -34.525856225999917 ], [ -58.514930748999916, -34.525759552999943 ], [ -58.514419600999929, -34.525510449999956 ], [ -58.513666320999903, -34.525142366999944 ], [ -58.512480289999928, -34.524538010999947 ], [ -58.51177118499993, -34.52418227599992 ], [ -58.511336551999932, -34.523964234999937 ], [ -58.511103575999925, -34.523846873999958 ], [ -58.510820180999929, -34.52370411499993 ], [ -58.510711246999904, -34.523649239999941 ], [ -58.510551254999939, -34.523568644999955 ], [ -58.510281085999907, -34.523432547999903 ], [ -58.510181243999909, -34.523378984999908 ], [ -58.510154409999927, -34.52336751699994 ], [ -58.509359827999901, -34.522958225999957 ], [ -58.508603735999941, -34.522579528999927 ], [ -58.507997536999937, -34.522265550999919 ], [ -58.507654909999928, -34.522093260999952 ], [ -58.506856688999903, -34.521683571999915 ], [ -58.506698538999899, -34.521591653999906 ], [ -58.506393551999906, -34.521434661999933 ], [ -58.5060170349999, -34.521239386999923 ], [ -58.505818852999937, -34.521139374999905 ], [ -58.504877497999928, -34.520658538999953 ], [ -58.503955201999929, -34.520185394999942 ], [ -58.503013861999932, -34.519696860999943 ], [ -58.502099195999904, -34.519223714999953 ], [ -58.501188329999934, -34.518758265999907 ], [ -58.500940612999955, -34.518627474999903 ], [ -58.500281285999904, -34.518288965999943 ], [ -58.499801059999925, -34.518054324999923 ], [ -58.499202674999935, -34.51776583599991 ], [ -58.498646177999944, -34.517515825999908 ], [ -58.4981744829999, -34.517302880999921 ], [ -58.498066814999902, -34.517254273999924 ], [ -58.497456991999911, -34.516961938999941 ], [ -58.496305955999901, -34.51640804099992 ], [ -58.495448393999936, -34.515996462999908 ], [ -58.495101547999923, -34.515834912999935 ], [ -58.494240170999944, -34.515423336999902 ], [ -58.493051022999907, -34.514850204999902 ], [ -58.492647019999936, -34.514654031999953 ], [ -58.491869481999913, -34.514288618999956 ], [ -58.49117581999991, -34.513950120999937 ], [ -58.490642206999951, -34.513703951999958 ], [ -58.489662703999954, -34.513250495999955 ], [ -58.489407315999927, -34.513152061999904 ], [ -58.489507227999923, -34.51296771299991 ], [ -58.489874650999923, -34.512289771999917 ], [ -58.490364926999916, -34.51140479399993 ], [ -58.490575604999947, -34.511019032999911 ], [ -58.490836003999902, -34.510576549999939 ], [ -58.491314650999925, -34.509774785999923 ], [ -58.491575048999948, -34.509332300999915 ], [ -58.491931181999917, -34.508727194999949 ], [ -58.4921801939999, -34.508258227999931 ], [ -58.492181792999929, -34.508255224999914 ], [ -58.492693534999944, -34.507293820999905 ], [ -58.492869768999924, -34.506957223999905 ], [ -58.493210682999916, -34.506333198999926 ], [ -58.493690662999938, -34.505446273999951 ], [ -58.494194049999919, -34.504505722999909 ], [ -58.494562926999947, -34.503819282999928 ], [ -58.494689723999954, -34.503584150999927 ], [ -58.495178017999933, -34.502624467999908 ], [ -58.495589434999943, -34.501812708999921 ], [ -58.49595951099991, -34.501085124999918 ], [ -58.49626522199992, -34.50047141999994 ], [ -58.496430925999903, -34.500138774999925 ], [ -58.496527172999947, -34.49997123299994 ], [ -58.496782499999938, -34.499526767999953 ], [ -58.497033167999916, -34.498901918999934 ], [ -58.497618916999954, -34.497747965999906 ], [ -58.497670354999912, -34.497468506999951 ], [ -58.497729277999952, -34.497148380999931 ], [ -58.497776264999914, -34.496833507999952 ], [ -58.497895697999923, -34.496032223999919 ], [ -58.498069371999918, -34.494865777999905 ], [ -58.498243264999928, -34.49404487399994 ], [ -58.498747631999947, -34.492844715999922 ], [ -58.498822337999911, -34.492817678999927 ], [ -58.499204480999936, -34.491962630999922 ], [ -58.499700538999946, -34.491106995999928 ], [ -58.500174543999947, -34.490269536999904 ], [ -58.500577018999934, -34.489540059999911 ], [ -58.500993363999953, -34.488734757999907 ], [ -58.501407874999927, -34.488019900999916 ], [ -58.501745616999926, -34.487329092999914 ], [ -58.502030576999914, -34.486727372999951 ], [ -58.502077190999955, -34.486654440999928 ], [ -58.502389783999945, -34.486157651999918 ], [ -58.50279188199994, -34.485518617999958 ], [ -58.503312602999927, -34.484880176999923 ], [ -58.503858438999941, -34.484156852999945 ], [ -58.503858793999939, -34.484156382999913 ], [ -58.503863820999925, -34.484149730999945 ], [ -58.504203951999955, -34.483699653999906 ], [ -58.50435944499992, -34.483498357999906 ], [ -58.504852471999925, -34.482859628999904 ], [ -58.505739754999922, -34.481765474999918 ], [ -58.506288477999931, -34.481091610999954 ], [ -58.506601729999943, -34.480688096999927 ], [ -58.506764053999916, -34.480490167999903 ], [ -58.507054893999907, -34.480185754999923 ], [ -58.507270193999943, -34.479961251999953 ], [ -58.507697040999915, -34.479523677999907 ], [ -58.508403225999928, -34.478781458999947 ], [ -58.509103998999933, -34.478048019999903 ], [ -58.509802420999904, -34.477310959999954 ], [ -58.509842422999952, -34.477268744999947 ], [ -58.510464137999918, -34.476634610999952 ], [ -58.511142244999917, -34.475908824999919 ], [ -58.511952305999955, -34.475068417999921 ], [ -58.51265720899994, -34.474368135999953 ], [ -58.513554363999901, -34.473467002999939 ], [ -58.513968934999923, -34.473071579999953 ], [ -58.514370179999901, -34.472688865999942 ], [ -58.514438469999902, -34.472619235999957 ], [ -58.515007297999944, -34.471943350999936 ], [ -58.515457700999946, -34.471455132999949 ], [ -58.515931132999924, -34.471004783999945 ], [ -58.516256833999932, -34.470682333999946 ], [ -58.516676721999943, -34.470140760999925 ], [ -58.516992986999924, -34.469652101999941 ], [ -58.517825291999941, -34.468668425999908 ], [ -58.517938785999945, -34.468534460999933 ], [ -58.518404155999917, -34.467979501999935 ], [ -58.519009577999952, -34.46724854699994 ], [ -58.519302542999924, -34.467068129999916 ], [ -58.519928965999952, -34.466682359999936 ], [ -58.52070905599993, -34.466185713999948 ], [ -58.521504205999918, -34.46568134599994 ], [ -58.522293090999938, -34.465183257999911 ], [ -58.522296213999937, -34.465180777999933 ], [ -58.522327638999911, -34.465155822999918 ], [ -58.524497985999915, -34.463432311999952 ], [ -58.525243828999919, -34.462836155999923 ], [ -58.525346028999934, -34.462755587999936 ], [ -58.525970564999909, -34.462218701999916 ], [ -58.526526962999924, -34.461724082999922 ], [ -58.527355903999933, -34.461033691999944 ], [ -58.528112920999945, -34.460389396999915 ], [ -58.528376280999908, -34.460512639999934 ], [ -58.528718923999918, -34.460672984999917 ], [ -58.52958626599991, -34.461081372999956 ], [ -58.530544504999909, -34.461523713999952 ], [ -58.531498961999944, -34.461977517999912 ], [ -58.532434478999903, -34.462416140999949 ], [ -58.533369995999919, -34.462854762999939 ], [ -58.534324451999908, -34.463304751999942 ], [ -58.535243391999927, -34.463737188999914 ], [ -58.536180746999946, -34.46418349299995 ], [ -58.537129504999939, -34.464622142999929 ], [ -58.538051029999906, -34.465065119999906 ], [ -58.539003024999943, -34.465526050999927 ], [ -58.539970263999919, -34.465983338999933 ], [ -58.540891540999951, -34.466428662999931 ], [ -58.542457605999914, -34.467175029999908 ], [ -58.542634826999915, -34.466996544999915 ], [ -58.543248005999942, -34.466378990999942 ], [ -58.543429512999921, -34.466194105999932 ], [ -58.543641238999953, -34.465975225999955 ], [ -58.54400054599995, -34.465616858999908 ], [ -58.544497300999922, -34.465114816999915 ], [ -58.544631736999918, -34.464975755999944 ], [ -58.544773886999906, -34.464801802999943 ], [ -58.545000559999949, -34.464523474999908 ], [ -58.545538423999915, -34.463866322999934 ], [ -58.546272195999904, -34.46299278999993 ], [ -58.54645660999995, -34.462764708999941 ], [ -58.547050207999916, -34.462039200999925 ], [ -58.547050756999909, -34.462038529999916 ], [ -58.547082837999938, -34.461999319999904 ], [ -58.547083770999905, -34.461998725999933 ], [ -58.54767023699992, -34.461625740999921 ], [ -58.548315668999919, -34.460841039999934 ], [ -58.54899185599993, -34.45986604299992 ], [ -58.549079438999911, -34.459751074999929 ], [ -58.549163868999926, -34.459640245999935 ], [ -58.549591904999943, -34.459093384999903 ], [ -58.549722004999921, -34.458899574999919 ], [ -58.550277514999948, -34.458061642999951 ], [ -58.550750710999921, -34.457376554999939 ], [ -58.551200876999928, -34.456718432999935 ], [ -58.551797202999921, -34.455852460999949 ], [ -58.552599777999944, -34.454688203999922 ], [ -58.55262, -34.454658868999957 ], [ -58.553088141999922, -34.453978149999955 ], [ -58.553548579999926, -34.453312651999909 ], [ -58.554020487999935, -34.452635757999929 ], [ -58.554584513999941, -34.451821950999943 ], [ -58.55458766299995, -34.45181860799994 ], [ -58.554695460999937, -34.451704160999952 ], [ -58.554821465999908, -34.451654871999949 ], [ -58.555574720999914, -34.451360223999927 ], [ -58.556107400999906, -34.451179035999928 ], [ -58.556515593999904, -34.45089833399993 ], [ -58.556716686999948, -34.450902060999908 ], [ -58.556766033999907, -34.450902975999952 ], [ -58.557717694999951, -34.450382932999958 ], [ -58.557778679999899, -34.450325797999938 ], [ -58.558590551999941, -34.449563989999945 ], [ -58.559442909999916, -34.448891716999924 ], [ -58.560221016999947, -34.448291729999937 ], [ -58.560994937999908, -34.447694945999956 ], [ -58.561152224999944, -34.447566631999905 ], [ -58.561473421999949, -34.447337342999958 ], [ -58.561826614999916, -34.447038050999936 ], [ -58.562127043999908, -34.446786138999926 ], [ -58.562496659999908, -34.446479995999937 ], [ -58.563297193999915, -34.445824763999951 ], [ -58.564009531999943, -34.445246990999919 ], [ -58.564876685999934, -34.444622441999911 ], [ -58.56561546699993, -34.443984172999933 ], [ -58.566395383999918, -34.443344937999939 ], [ -58.567084159999922, -34.442789096999945 ], [ -58.56715268399995, -34.442734780999956 ], [ -58.567904927999905, -34.44212112799994 ], [ -58.568668210999931, -34.441509296999925 ], [ -58.569471012999941, -34.440898466999954 ], [ -58.570221296999932, -34.440277953999953 ], [ -58.570243454999911, -34.440258467999911 ], [ -58.570610116999944, -34.439881229999912 ], [ -58.570905715999913, -34.439577104999955 ], [ -58.571237096999937, -34.439246100999924 ], [ -58.571630777999928, -34.438841175999926 ], [ -58.571777888999918, -34.438899984999921 ], [ -58.57206689599991, -34.439015518999952 ], [ -58.5720779319999, -34.439019930999905 ], [ -58.572571466999932, -34.439217226999915 ], [ -58.572645666999904, -34.439246888999946 ], [ -58.572318155999938, -34.438889116999917 ], [ -58.571484817999931, -34.438307708999957 ], [ -58.571632621999925, -34.438147188999949 ], [ -58.572509848999914, -34.437194495999904 ], [ -58.572407437999914, -34.43712080499995 ], [ -58.571831139999915, -34.436706121999919 ], [ -58.57114312099992, -34.436208927999928 ], [ -58.571038316999932, -34.436133191999943 ], [ -58.571672983999918, -34.435598917999926 ], [ -58.571374885999944, -34.435541516999933 ], [ -58.571758870999929, -34.434831574999919 ], [ -58.572017577999929, -34.434166600999902 ], [ -58.572021615999915, -34.434156222999945 ], [ -58.57205403599994, -34.433899160999943 ], [ -58.572239690999936, -34.433845357999928 ], [ -58.5726791969999, -34.433718537999937 ], [ -58.572736052999915, -34.433699327999932 ], [ -58.571959936999917, -34.432518065999943 ], [ -58.57184219699991, -34.432356150999908 ], [ -58.571761932999948, -34.432245771999931 ], [ -58.572785805999899, -34.431846272999906 ], [ -58.573053100999914, -34.431738508999956 ], [ -58.57356706999991, -34.431531295999946 ], [ -58.5744361859999, -34.431193883999924 ], [ -58.575181995999912, -34.430905916999905 ], [ -58.576474037999901, -34.430402184999934 ], [ -58.576953356999923, -34.430432321999945 ], [ -58.577141902999927, -34.43035946099991 ], [ -58.578989300999922, -34.42964556499993 ], [ -58.579823050999948, -34.429392535999909 ], [ -58.580812060999904, -34.429050864999908 ], [ -58.580869678999932, -34.429036209999936 ], [ -58.580950324999947, -34.429006521999952 ], [ -58.582105914999943, -34.428423031999955 ], [ -58.583253980999928, -34.427915889999952 ], [ -58.58347200399993, -34.427429128999904 ], [ -58.583498800999905, -34.427379742999904 ], [ -58.583521778999909, -34.427341779999949 ], [ -58.583560122999927, -34.427300162999927 ], [ -58.58360999699994, -34.427258672999926 ], [ -58.583656061999932, -34.427232426999922 ], [ -58.583705984999938, -34.427213866999921 ], [ -58.583759758999918, -34.427199169999938 ], [ -58.583809706999944, -34.427192074999937 ], [ -58.583875045999946, -34.427192790999925 ], [ -58.58438544899991, -34.426839163999944 ], [ -58.585379334999914, -34.426123971999914 ], [ -58.587097764999953, -34.425217127999929 ], [ -58.588106845999903, -34.424686355999938 ], [ -58.588416668999912, -34.424523390999923 ], [ -58.588201805999915, -34.424483371999941 ], [ -58.587259870999901, -34.423676970999907 ], [ -58.586352392999913, -34.422901276999937 ], [ -58.586272018999921, -34.422820768999941 ], [ -58.585457683999948, -34.421965519999958 ], [ -58.585399907999943, -34.421870473999945 ], [ -58.58536363099995, -34.421817219999923 ], [ -58.584632177999936, -34.420843048999927 ], [ -58.584529971999928, -34.420703911999908 ], [ -58.584370179999951, -34.420486378999954 ], [ -58.583519782999929, -34.421004790999916 ], [ -58.582109071999923, -34.421914965999918 ], [ -58.581971482999904, -34.421940001999928 ], [ -58.581279497999901, -34.422424950999925 ], [ -58.581132924999906, -34.422527670999955 ], [ -58.580955675999917, -34.422638004999953 ], [ -58.580915572999913, -34.42266296899993 ], [ -58.58088098099995, -34.422631795999905 ], [ -58.580834929999924, -34.42260430999994 ], [ -58.580788900999949, -34.422580662999906 ], [ -58.580739084999948, -34.422564641999941 ], [ -58.580689288999906, -34.422552460999952 ], [ -58.580631880999931, -34.422547855999937 ], [ -58.580563036999934, -34.422550775999923 ], [ -58.580509514999903, -34.422557738999956 ], [ -58.580463685999916, -34.422572482999954 ], [ -58.58041787499991, -34.422591066999928 ], [ -58.579928852999899, -34.421981840999933 ], [ -58.579761136999934, -34.422098607999942 ], [ -58.579548506999913, -34.422203060999948 ], [ -58.578715660999933, -34.422612192999907 ], [ -58.578003742999954, -34.422959301999924 ], [ -58.576868187999935, -34.423526874999936 ], [ -58.576836401999913, -34.423422645999949 ], [ -58.576525948999915, -34.422404639999911 ], [ -58.576296334999938, -34.421632165999938 ], [ -58.5762872009999, -34.421617222999942 ], [ -58.576223420999952, -34.421512881999945 ], [ -58.576098273999946, -34.421493203999944 ], [ -58.575041821999946, -34.422103966999941 ], [ -58.574419849999913, -34.421534196999914 ], [ -58.574105577999944, -34.421033552999916 ], [ -58.573938536999947, -34.420795521999935 ], [ -58.573851606999938, -34.420699171999956 ], [ -58.573681893999947, -34.420511067999939 ], [ -58.57331058099993, -34.420083176999924 ], [ -58.572851, -34.420248014999913 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 218.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.54345527300319, -34.810014181643432 ], [ -58.543540111784324, -34.807872002419693 ], [ -58.542352368848391, -34.80534804868082 ], [ -58.535671314833742, -34.799854737602118 ], [ -58.529308406248369, -34.794170539265849 ], [ -58.528460018436988, -34.793088844806334 ], [ -58.528099453617145, -34.793406990235603 ], [ -58.525660338659421, -34.789419567522096 ], [ -58.524939209019742, -34.78905900270226 ], [ -58.522415255280876, -34.789398357826812 ], [ -58.522224368023316, -34.788486340929573 ], [ -58.524493805418764, -34.788040937328603 ], [ -58.524875579933891, -34.78710771073608 ], [ -58.523687836997951, -34.785962387190708 ], [ -58.521821383812906, -34.785623032066155 ], [ -58.521906222594048, -34.785007950902902 ], [ -58.524960418715025, -34.784053514615096 ], [ -58.524175659989496, -34.771624633178327 ], [ -58.523666627302667, -34.764201239828715 ], [ -58.522860658881847, -34.751454212962685 ], [ -58.520654850572249, -34.741188720444939 ], [ -58.519339849464608, -34.736416539005916 ], [ -58.519530736722167, -34.73467734399258 ], [ -58.526508726470794, -34.729374920171438 ], [ -58.523878724255503, -34.72636314344102 ], [ -58.521100254173227, -34.727296370033542 ], [ -58.517303718717287, -34.727169111861841 ], [ -58.51594629821907, -34.725737457430121 ], [ -58.514546458330287, -34.723563463663453 ], [ -58.514981257083619, -34.722492374051583 ], [ -58.516699242401671, -34.720625920866539 ], [ -58.518279364700383, -34.718727653138565 ], [ -58.51851267134851, -34.718186805908815 ], [ -58.51797182411876, -34.717783821698404 ], [ -58.514546458330294, -34.720286565741986 ], [ -58.513538997804275, -34.720562291780688 ], [ -58.512680005145249, -34.720138097874994 ], [ -58.511948270657932, -34.719098822806046 ], [ -58.507685121905723, -34.713043454802296 ], [ -58.505702015396615, -34.710328613805871 ], [ -58.502414512627503, -34.706542683197576 ], [ -58.499370921354163, -34.703011268932691 ], [ -58.49778019420782, -34.704071753696923 ], [ -58.496104628280335, -34.704188407020986 ], [ -58.495913741022775, -34.704092963392206 ], [ -58.496953016091723, -34.703700584029441 ], [ -58.496772733681802, -34.702682518655777 ], [ -58.495044143516104, -34.701070581814157 ], [ -58.492848940054152, -34.69974497585887 ], [ -58.490409825096421, -34.695927230707646 ], [ -58.492244463738544, -34.694431947190076 ], [ -58.489381154875126, -34.690412709933646 ], [ -58.487795730152591, -34.6876713568181 ], [ -58.487700286523811, -34.686674501139727 ], [ -58.488166899820072, -34.685614016375496 ], [ -58.489031194902921, -34.68475502371647 ], [ -58.491051418378774, -34.683333974132402 ], [ -58.49971557890251, -34.676737758898895 ], [ -58.510002281115547, -34.668890171643596 ], [ -58.528666812965966, -34.654764514584059 ], [ -58.529981814073622, -34.639429904893298 ], [ -58.522431162552309, -34.638878452815902 ], [ -58.511380911309033, -34.639387485502731 ], [ -58.497509770592906, -34.637160467497857 ], [ -58.489004682783786, -34.635612159742081 ], [ -58.478908867828316, -34.633151835089073 ], [ -58.466373937915122, -34.629864332319954 ], [ -58.455154009109577, -34.626152635645148 ], [ -58.436171331829875, -34.618198999913432 ], [ -58.420709463967398, -34.611348268336506 ], [ -58.414940426849988, -34.610754396868536 ], [ -58.40951074485713, -34.610415041743984 ], [ -58.389435768270275, -34.608983387312279 ], [ -58.388120767162633, -34.60911064548398 ], [ -58.387611734475804, -34.60945000060854 ], [ -58.373401238635125, -34.608601612797152 ], [ -58.373443658025693, -34.608771290359435 ], [ -58.3774310807392, -34.61284355185407 ], [ -58.374716239742774, -34.612758713072935 ], [ -58.374504142789924, -34.617212749082697 ], [ -58.367335265783737, -34.61678855517701 ], [ -58.367292846393177, -34.61820960476107 ], [ -58.368597242653173, -34.618273233846928 ], [ -58.368194258442777, -34.622759084399618 ], [ -58.36677320885871, -34.622663640770838 ], [ -58.366179337390719, -34.626937394370678 ], [ -58.359434654290226, -34.631349010989865 ], [ -58.358968040993965, -34.63223981819182 ], [ -58.36325239944145, -34.634191110158007 ], [ -58.361385946256405, -34.637160467497843 ], [ -58.364185626033972, -34.638602726777201 ], [ -58.366349014953002, -34.638772404339477 ], [ -58.366815628249256, -34.635294014312805 ], [ -58.368300306919181, -34.635294014312805 ], [ -58.367918532404055, -34.637245306278984 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 217.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.475204000364272, -34.654613000389588 ], [ -58.475524999878814, -34.654890999719839 ], [ -58.476554999713414, -34.655836000131274 ], [ -58.477005999826986, -34.656243000014399 ], [ -58.477499000078751, -34.656715000197039 ], [ -58.477950000192322, -34.657102000057193 ], [ -58.478186000283642, -34.657316000033347 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.479624000047522, -34.656199999830108 ], [ -58.480417999790802, -34.654784000181394 ], [ -58.480783000435054, -34.654162000276074 ], [ -58.480976000342082, -34.653796999631766 ], [ -58.481039999696179, -34.653667999978154 ], [ -58.481147000133888, -34.653497000186348 ], [ -58.481940999877224, -34.652122999776566 ], [ -58.482478000359379, -34.651179000310549 ], [ -58.482692000335533, -34.650814999712395 ], [ -58.483442999894464, -34.649484000386281 ], [ -58.484043999730773, -34.648390000298207 ], [ -58.484065999845996, -34.648154000206887 ], [ -58.484173000283704, -34.646695000373938 ], [ -58.484602000282052, -34.64529999989503 ], [ -58.484730999935664, -34.644870999896682 ], [ -58.484988000096109, -34.644055000038179 ], [ -58.485181000003081, -34.643368999879385 ], [ -58.485373999910109, -34.642724999858785 ], [ -58.485825000023681, -34.641309000210128 ], [ -58.485931999562069, -34.640923000396128 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.486490000113349, -34.639098999918872 ], [ -58.486683000020378, -34.638411999713981 ], [ -58.486875999927406, -34.637832999992895 ], [ -58.487283999856686, -34.636523999882627 ], [ -58.486297000206378, -34.636265999676084 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.488464000313343, -34.634527999567467 ], [ -58.488915000426914, -34.634206000006827 ], [ -58.489344000425262, -34.633863000377119 ], [ -58.489450999963651, -34.633777000008479 ], [ -58.490160000283765, -34.633219000356519 ], [ -58.490782000189142, -34.632726000104753 ], [ -58.491018000280462, -34.632533000197782 ], [ -58.492004999930771, -34.631738999555125 ], [ -58.492241000022091, -34.631566999717222 ], [ -58.492369999675702, -34.631481000247902 ], [ -58.492991999581079, -34.630987999996137 ], [ -58.49359300031665, -34.630515999813497 ], [ -58.494343999875639, -34.629914999977245 ], [ -58.49470899962057, -34.629635999701577 ], [ -58.494859000242627, -34.629529000163188 ], [ -58.495416999894587, -34.629078000049617 ], [ -58.495866999962061, -34.628735000419908 ], [ -58.496274999891284, -34.628412999959949 ], [ -58.496424999614021, -34.628284000306337 ], [ -58.496939999980953, -34.627876000377057 ], [ -58.497497999632913, -34.627447000378709 ], [ -58.497926999631261, -34.627790000008474 ], [ -58.498205999906929, -34.628048000215017 ], [ -58.499257999856752, -34.62725399957236 ], [ -58.499386000363586, -34.627168000103097 ], [ -58.499900999831254, -34.626760000173817 ], [ -58.500373000013894, -34.626416999644789 ], [ -58.501123999572883, -34.625837999923704 ], [ -58.501489000217134, -34.625558999648092 ], [ -58.501961000399831, -34.625193999903104 ], [ -58.502090000053443, -34.625108000433841 ], [ -58.502432999683151, -34.624829000158172 ], [ -58.502647999705403, -34.624658000366367 ], [ -58.503484999632974, -34.624035000414892 ], [ -58.504021000069031, -34.623606000416544 ], [ -58.504450000067436, -34.623283999956584 ], [ -58.505479999902036, -34.622512000328527 ], [ -58.505866999762191, -34.622233000052859 ], [ -58.506295999760539, -34.621910999592899 ], [ -58.506811000127527, -34.621502999663676 ], [ -58.507733000377641, -34.620795000288979 ], [ -58.508291000029601, -34.62036600029063 ], [ -58.508827999612436, -34.619979999577254 ], [ -58.509192000210589, -34.619701000200962 ], [ -58.509470999586938, -34.619508000293933 ], [ -58.509900999631384, -34.619229000018265 ], [ -58.510393999883149, -34.618821000089042 ], [ -58.51093100036536, -34.618413000159762 ], [ -58.51196100019996, -34.61761999956326 ], [ -58.512347000014017, -34.617298000002677 ], [ -58.512689999643726, -34.617039999796134 ], [ -58.513097999573006, -34.616718000235494 ], [ -58.51401999982312, -34.615966999777186 ], [ -58.514406999683274, -34.615667000331769 ], [ -58.514793000396594, -34.6153880000561 ], [ -58.515565000024708, -34.614787000219849 ], [ -58.516358999767988, -34.614207999599444 ], [ -58.516681000227948, -34.61395000029222 ], [ -58.517282000064199, -34.613500000224803 ], [ -58.518268999714508, -34.612748999766495 ], [ -58.519213000079844, -34.612019000276575 ], [ -58.520392999637181, -34.611139000164655 ], [ -58.521166000210712, -34.610538000328404 ], [ -58.521981000023118, -34.609895000353958 ], [ -58.522796999881621, -34.609251000333359 ], [ -58.523548000339929, -34.608649999597787 ], [ -58.524319999967986, -34.608048999761479 ], [ -58.525113999711266, -34.607426999856102 ], [ -58.524127000060957, -34.606739999651211 ], [ -58.523246999949038, -34.606160999930182 ], [ -58.521981000023118, -34.605389000302068 ], [ -58.520715000097141, -34.604594999659469 ], [ -58.519449000171164, -34.603800999916189 ], [ -58.518183000245244, -34.603028000241977 ], [ -58.516273000298668, -34.60296399998856 ], [ -58.515587000139931, -34.602534999990212 ], [ -58.514729000143177, -34.602512999874989 ], [ -58.513762999662674, -34.602469999690697 ], [ -58.513612999939937, -34.602385000267532 ], [ -58.512840000265783, -34.602363000152309 ], [ -58.513118999642074, -34.602083999876641 ], [ -58.513741000446771, -34.601397999717847 ], [ -58.512474999621475, -34.600625000043692 ], [ -58.511616999624778, -34.600088999607578 ], [ -58.510758999628081, -34.599552000024744 ], [ -58.511381000432777, -34.598822999681659 ], [ -58.512045999623126, -34.598114000260864 ], [ -58.511810000431126, -34.596848000334887 ], [ -58.511702999993418, -34.596247999645414 ], [ -58.511659999809126, -34.59599000033819 ], [ -58.511638999740001, -34.595839999716191 ], [ -58.511595999555709, -34.595667999878231 ], [ -58.511381000432777, -34.594337999698894 ], [ -58.511166999557361, -34.593092999842042 ], [ -58.511081000088041, -34.59244999986754 ], [ -58.510972999604235, -34.591849000031289 ], [ -58.510994999719401, -34.591720000377677 ], [ -58.510822999881498, -34.591547999640454 ], [ -58.510179999907052, -34.591140999757272 ], [ -58.509622000255092, -34.59077600001234 ], [ -58.508848999681561, -34.5903039998297 ], [ -58.507519000401487, -34.589489000017295 ], [ -58.506895999550693, -34.589102000157141 ], [ -58.506188000176053, -34.588652000089667 ], [ -58.505523000086328, -34.588265000229512 ], [ -58.504836999927591, -34.587879000415512 ], [ -58.504170999791768, -34.587470999586913 ], [ -58.503484999632974, -34.587041999588564 ], [ -58.502840999612374, -34.58667799988973 ], [ -58.502239999776123, -34.586291000029576 ], [ -58.501081000287911, -34.58556199968649 ], [ -58.499922999946477, -34.584875000380919 ], [ -58.498827999812306, -34.58421000029125 ], [ -58.497733999724289, -34.583479999902011 ], [ -58.496554000166952, -34.582793999743274 ], [ -58.495460000078879, -34.582128999653548 ], [ -58.494300999691347, -34.581399000163685 ], [ -58.493463999763719, -34.580862999727628 ], [ -58.493142000203079, -34.580690999889669 ], [ -58.491662000301005, -34.579832999892972 ], [ -58.490589000282114, -34.579209999941497 ], [ -58.489537000332234, -34.57858800003612 ], [ -58.488679000335537, -34.578093999738257 ], [ -58.488464000313343, -34.57794400001552 ], [ -58.487948999946354, -34.577643999670784 ], [ -58.486919000111698, -34.577064999949755 ], [ -58.487628000431812, -34.576249000091252 ], [ -58.488335999806509, -34.575412000163624 ], [ -58.488785999873926, -34.575670000370167 ], [ -58.489087000264817, -34.57528399965679 ], [ -58.489429999894526, -34.574853999612344 ], [ -58.488356999875577, -34.574210999637899 ], [ -58.487219999603269, -34.57360999980159 ], [ -58.486104000299349, -34.573030000034407 ], [ -58.486748000319892, -34.572237000337225 ], [ -58.4873490001562, -34.571485999878973 ], [ -58.487948999946354, -34.570735000319985 ], [ -58.488549999782606, -34.569982999815522 ], [ -58.487283999856686, -34.569296999656785 ], [ -58.486618999766961, -34.568931999911797 ], [ -58.486748000319892, -34.568846000442534 ], [ -58.486083000230224, -34.568459999729157 ], [ -58.485159999934012, -34.567881000008128 ], [ -58.484323000006384, -34.568846000442534 ], [ -58.483421999825396, -34.568287999891254 ], [ -58.482499000428504, -34.567730000239294 ], [ -58.481598000247459, -34.567172999734112 ], [ -58.480674999951248, -34.566615000082152 ], [ -58.479773999770259, -34.566057000430192 ], [ -58.478851000373311, -34.565498999878912 ], [ -58.478078999845934, -34.565004999581049 ], [ -58.477198999734014, -34.564512000228603 ], [ -58.476833999989083, -34.564297000206352 ], [ -58.475911999738969, -34.563717999585947 ], [ -58.474989000342077, -34.563181000003112 ], [ -58.474022999861518, -34.562581000212958 ], [ -58.473121999680473, -34.562043999730747 ], [ -58.472199000283581, -34.563010000211307 ], [ -58.471426999756204, -34.563825000023712 ], [ -58.470440000105896, -34.564854999858312 ], [ -58.469603000178267, -34.564319000321575 ], [ -58.468636999697765, -34.563653000185752 ], [ -58.467542999609691, -34.562967000026958 ], [ -58.466491999705966, -34.562173000283678 ], [ -58.465118000195503, -34.562752000004764 ], [ -58.463744999831817, -34.561958000261484 ], [ -58.462758000181509, -34.561378999641079 ], [ -58.461857000000521, -34.560843000104342 ], [ -58.460976999888601, -34.560327999737353 ], [ -58.460096999776681, -34.559791000154462 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.458102000406939, -34.558631999766931 ], [ -58.45720100022595, -34.558074000114971 ], [ -58.456298999998808, -34.557537999678914 ], [ -58.455397999817819, -34.557002000142177 ], [ -58.454604000074482, -34.557945999608137 ], [ -58.453789000262134, -34.558867999858251 ], [ -58.453723999962563, -34.558824999673959 ], [ -58.452909000150214, -34.558332000321514 ], [ -58.452007999969169, -34.557795999885457 ], [ -58.450891999765929, -34.557129999749634 ], [ -58.449712000208592, -34.556464999659966 ], [ -58.448509999636713, -34.555714000100977 ], [ -58.447479999802113, -34.5550920001956 ], [ -58.446363999598873, -34.554427000105932 ], [ -58.44524900034105, -34.553760999970109 ], [ -58.444111000022588, -34.553095999880441 ], [ -58.443016999934571, -34.552430999790772 ], [ -58.441900999731331, -34.551765999701104 ], [ -58.441085999918926, -34.552710000066384 ], [ -58.440248999991297, -34.55365400043172 ], [ -58.439111999718989, -34.55301000041112 ], [ -58.437974000299846, -34.552324000252383 ], [ -58.436750999658841, -34.551550999678852 ], [ -58.436708000373869, -34.551508000393881 ], [ -58.436729999589772, -34.551444000140464 ], [ -58.436965999681092, -34.551015000142115 ], [ -58.437116000303149, -34.550607000212835 ], [ -58.437244999956761, -34.549898999938875 ], [ -58.437283999956605, -34.549229999664703 ], [ -58.437288000141052, -34.549169999595733 ], [ -58.437309000210178, -34.548589999828607 ], [ -58.437394999679441, -34.548181999899327 ], [ -58.437481000048081, -34.547924999738882 ], [ -58.437609999701692, -34.547688999647562 ], [ -58.437711999908856, -34.547535999786533 ], [ -58.437996000415069, -34.547109999926533 ], [ -58.438425000413417, -34.546380000436613 ], [ -58.438575000136098, -34.545910000346169 ], [ -58.438575000136098, -34.545413999956111 ], [ -58.438575000136098, -34.545328999633568 ], [ -58.438660999605418, -34.545243000164305 ], [ -58.438811000227417, -34.545199999979957 ], [ -58.438875999627612, -34.545221000049082 ], [ -58.438961999996252, -34.545286000348597 ], [ -58.4393909999946, -34.545392999886985 ], [ -58.441129000103217, -34.545413999956111 ], [ -58.441085999918926, -34.5437840003313 ], [ -58.440979000380537, -34.54331200014866 ], [ -58.440957000265314, -34.543246999849146 ], [ -58.441042999734634, -34.543097000126409 ], [ -58.441122999826518, -34.543097000126409 ], [ -58.441322000010246, -34.543097000126409 ], [ -58.441601000285914, -34.5431400003107 ], [ -58.442522999636708, -34.542861000035089 ], [ -58.443359999564279, -34.542409999921517 ], [ -58.445076999603828, -34.54155199992482 ], [ -58.445678000339399, -34.541187000179889 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 216.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.3290770003033, -34.764604999620985 ], [ -58.329484000186426, -34.764068000038151 ], [ -58.329591999770912, -34.763939000384539 ], [ -58.329998999654094, -34.763424000017551 ], [ -58.330234999745414, -34.763081000387842 ], [ -58.330449999767609, -34.762802000112174 ], [ -58.330857999696889, -34.762265999676117 ], [ -58.33098700024982, -34.762093999838157 ], [ -58.33145900043246, -34.76147199993278 ], [ -58.331652000339488, -34.761213999726237 ], [ -58.331973999900129, -34.760784999727889 ], [ -58.332102000406962, -34.760612999889986 ], [ -58.332595999805505, -34.75996999991554 ], [ -58.333111000172494, -34.759304999825815 ], [ -58.333217999710882, -34.759154000057038 ], [ -58.333561000239911, -34.758681999874341 ], [ -58.333839999616259, -34.758296000060284 ], [ -58.334054999638454, -34.758016999784672 ], [ -58.334483999636859, -34.757438000063587 ], [ -58.334785000027694, -34.757030000134364 ], [ -58.33508500037243, -34.756644000320307 ], [ -58.335792999747127, -34.75569999995497 ], [ -58.336072000022739, -34.755313000094816 ], [ -58.336414999652447, -34.754840999912176 ], [ -58.336737000112407, -34.754368999729536 ], [ -58.337016000388076, -34.753939999731188 ], [ -58.337509999786619, -34.753211000287365 ], [ -58.337574000040036, -34.753124999918782 ], [ -58.338025000153607, -34.752459999829114 ], [ -58.338261000244927, -34.752095000084125 ], [ -58.338775999712595, -34.751343999625817 ], [ -58.339334000263875, -34.750443000344148 ], [ -58.340213000329641, -34.750657000320246 ], [ -58.340449000421017, -34.750742999789566 ], [ -58.340942999819561, -34.751022000065234 ], [ -58.341436000071326, -34.751279000225622 ], [ -58.34165100009352, -34.751386999810165 ], [ -58.342080000091869, -34.751600999786262 ], [ -58.342401999652509, -34.751793999693291 ], [ -58.342658999812954, -34.751923000246222 ], [ -58.342938000088566, -34.752072999968902 ], [ -58.343153000110817, -34.752180999553445 ], [ -58.343281999764429, -34.751171999787914 ], [ -58.343452999556234, -34.750785999973857 ], [ -58.343731999831903, -34.750035000414869 ], [ -58.343967999923223, -34.7493700003252 ], [ -58.344375999852446, -34.74825400012196 ], [ -58.344783999781725, -34.747137999918721 ], [ -58.345212999780074, -34.746193999553384 ], [ -58.345598999594131, -34.745163999718784 ], [ -58.346027999592479, -34.744048000414864 ], [ -58.346542999959468, -34.742503000213219 ], [ -58.347100999611428, -34.740914999827339 ], [ -58.34727300034865, -34.740400000359671 ], [ -58.347487000324747, -34.739799999670197 ], [ -58.347765999701096, -34.739048000065111 ], [ -58.348089000207153, -34.738212000183637 ], [ -58.348881999904336, -34.736151999615061 ], [ -58.349074999811364, -34.735637000147392 ], [ -58.349267999718393, -34.735142999849529 ], [ -58.349376000202199, -34.734906999758209 ], [ -58.349718999831964, -34.734026999646289 ], [ -58.350083999576896, -34.732975999742564 ], [ -58.350191000014604, -34.732676000297147 ], [ -58.350470000290215, -34.73188199965449 ], [ -58.350856000104272, -34.73085199981989 ], [ -58.351027999942175, -34.73037999963725 ], [ -58.351543000309164, -34.729992999777096 ], [ -58.352380000236792, -34.729349999802594 ], [ -58.353260000348712, -34.728683999666828 ], [ -58.354118000345409, -34.728018999577102 ], [ -58.35495500027298, -34.727354000386754 ], [ -58.355813000269734, -34.726710000366154 ], [ -58.356563999828666, -34.726151999814874 ], [ -58.357530000309225, -34.725401000255886 ], [ -58.358044999776894, -34.72499400037276 ], [ -58.358494999844311, -34.724649999797634 ], [ -58.359246000302619, -34.724050000007423 ], [ -58.359632000116676, -34.723748999616589 ], [ -58.360447999975179, -34.72308400042624 ], [ -58.361284999902807, -34.722440000405641 ], [ -58.362099999715156, -34.721797000431195 ], [ -58.363559000447481, -34.720702000297024 ], [ -58.362721999620533, -34.719907999654424 ], [ -58.361199000433487, -34.721002999788539 ], [ -58.360298000252442, -34.720230000114384 ], [ -58.359418000140579, -34.71945799958695 ], [ -58.358516999959534, -34.718684999912796 ], [ -58.357701000101031, -34.717976999638779 ], [ -58.357636999847614, -34.717934000353807 ], [ -58.356799999920042, -34.717205000010722 ], [ -58.356306999668277, -34.716753999897151 ], [ -58.356028000291928, -34.716517999805831 ], [ -58.355962999992414, -34.716474999621482 ], [ -58.355705999831969, -34.716239000429482 ], [ -58.3550409997423, -34.715637999693911 ], [ -58.354160999630381, -34.714887000134922 ], [ -58.353108999680558, -34.713963999838654 ], [ -58.352401000305861, -34.713298999748986 ], [ -58.352272999799084, -34.713192000210597 ], [ -58.352122000030249, -34.713084999772889 ], [ -58.351715000147124, -34.712720000027957 ], [ -58.350812999919981, -34.711947000353746 ], [ -58.350727999597439, -34.71201199975394 ], [ -58.350213000129827, -34.711560999640369 ], [ -58.349654999578547, -34.711068000287923 ], [ -58.34918300029517, -34.7106600003587 ], [ -58.348131000345347, -34.709737000062432 ], [ -58.347122999726594, -34.708857999996667 ], [ -58.346070999776771, -34.707934999700456 ], [ -58.345834999685451, -34.707719999678204 ], [ -58.345363000402131, -34.707312999795079 ], [ -58.344483000290211, -34.706540000120867 ], [ -58.344096999576834, -34.706196999591839 ], [ -58.343582000109166, -34.70576799959349 ], [ -58.343517999855749, -34.70568200012417 ], [ -58.343023999557886, -34.705274000194891 ], [ -58.34253100020544, -34.704823000081319 ], [ -58.342401999652509, -34.704737999758834 ], [ -58.341930000369189, -34.704308999760485 ], [ -58.341887000184897, -34.704265999576194 ], [ -58.341436000071326, -34.703857999646914 ], [ -58.340963999888629, -34.703471999832857 ], [ -58.340470999636864, -34.703020999719342 ], [ -58.339956000169252, -34.702569999605771 ], [ -58.339763000262224, -34.702419999883034 ], [ -58.340600000189795, -34.701691000439268 ], [ -58.340664000443212, -34.701648000254977 ], [ -58.341156999795658, -34.701219000256629 ], [ -58.3414150000022, -34.701004000234377 ], [ -58.342165999561189, -34.700360000213777 ], [ -58.342917000019497, -34.6997380003084 ], [ -58.343818000200486, -34.698986999850092 ], [ -58.344719000381531, -34.698236000291161 ], [ -58.345405999687102, -34.697656999670755 ], [ -58.346242999614674, -34.696970000365184 ], [ -58.346971999957816, -34.696347999560487 ], [ -58.347808999885387, -34.695618000070624 ], [ -58.34862499974389, -34.694952999980899 ], [ -58.34941900038649, -34.694308999960356 ], [ -58.350255000268021, -34.69357999961727 ], [ -58.350941999573593, -34.692999999850088 ], [ -58.351307000217844, -34.69270000040467 ], [ -58.351693000031901, -34.692377999944711 ], [ -58.352981000073044, -34.691283999856637 ], [ -58.353710000416129, -34.690683000020385 ], [ -58.35424699999902, -34.690231999906814 ], [ -58.354374999606478, -34.690125000368425 ], [ -58.355082999880494, -34.68954599974802 ], [ -58.355749000016317, -34.68898800009606 ], [ -58.356028000291928, -34.688729999889517 ], [ -58.356284999553054, -34.688472999729129 ], [ -58.356778999850917, -34.688021999615557 ], [ -58.357228999918391, -34.687572000447403 ], [ -58.358152000214602, -34.68684200005822 ], [ -58.357228999918391, -34.686027000245815 ], [ -58.356221000198957, -34.685147000133895 ], [ -58.355148000180009, -34.684180999653393 ], [ -58.354139000414477, -34.683280000371667 ], [ -58.352981000073044, -34.682270999706816 ], [ -58.352573000143821, -34.682593000166776 ], [ -58.351628999778484, -34.681841999708467 ], [ -58.350685000312467, -34.68107000008041 ], [ -58.349697999762839, -34.680233000152782 ], [ -58.348688999997307, -34.679418000340377 ], [ -58.347681000277873, -34.678581000412805 ], [ -58.34727300034865, -34.678258999952845 ], [ -58.348753000250724, -34.677807999839274 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.362271999553116, -34.666114000160917 ], [ -58.363259000102744, -34.666779000250642 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370757999681871, -34.656672000012748 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.371756999885577, -34.654014999792366 ], [ -58.372102999653691, -34.652998999704039 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.373836999577804, -34.648347000113915 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.371606000116799, -34.647939000184692 ], [ -58.370512000028725, -34.647746000277664 ], [ -58.369503000263194, -34.647553000370635 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.367357000225354, -34.641651999839894 ], [ -58.365919999608252, -34.641415999748574 ], [ -58.364266999822121, -34.641137000372225 ], [ -58.362807999989172, -34.64088000021178 ], [ -58.361649999647739, -34.640193000006889 ], [ -58.36160700036271, -34.639741999893317 ], [ -58.361564000178419, -34.639484999732929 ], [ -58.361413000409584, -34.639248999641552 ], [ -58.36034100043679, -34.63897000026526 ], [ -58.358473999775242, -34.63897000026526 ], [ -58.358044999776894, -34.638819999643204 ], [ -58.357143000449071, -34.638411999713981 ], [ -58.357036000011362, -34.638196999691729 ], [ -58.357228999918391, -34.637960999600409 ], [ -58.357400999756294, -34.637767999693381 ], [ -58.357916000123282, -34.636867000411712 ], [ -58.358388000305922, -34.636115999953404 ], [ -58.358880999658368, -34.635301000140998 ], [ -58.359396000025356, -34.634507000397718 ], [ -58.359632000116676, -34.634119999638244 ], [ -58.35978299988551, -34.63384200030805 ], [ -58.359890000323219, -34.63366999957077 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.360855999904459, -34.632038999899862 ], [ -58.362401000106047, -34.630965999880971 ], [ -58.363387999756355, -34.630343999975594 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.368001000245897, -34.62686799975836 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368602000082205, -34.620173000383602 ], [ -58.368708999620594, -34.619442999994419 ], [ -58.368751999804886, -34.619185999833974 ], [ -58.368794999989234, -34.619013999996071 ], [ -58.368817000104457, -34.618979000180673 ], [ -58.369180999803234, -34.618392000090694 ], [ -58.369566999617291, -34.617770000185317 ], [ -58.369416999894611, -34.617447999725357 ], [ -58.369331000425291, -34.617232999703106 ], [ -58.369267000171874, -34.617018999727009 ], [ -58.369117000449194, -34.616332000421437 ], [ -58.369137999618943, -34.61579599998538 ], [ -58.369202999918457, -34.614787000219849 ], [ -58.369310000356165, -34.613606999763192 ], [ -58.369373999710263, -34.612297999652924 ], [ -58.369439000009777, -34.611139000164655 ], [ -58.369482000194125, -34.609916000423027 ], [ -58.369503000263194, -34.60952999970965 ], [ -58.369416999894611, -34.609314999687456 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.368725000358438, -34.609117000449146 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367868999554673, -34.607946999554315 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.368001000245897, -34.607341000386839 ], [ -58.368237000337274, -34.607169999695714 ], [ -58.369310000356165, -34.60691200038849 ], [ -58.369675000101154, -34.606739999651211 ], [ -58.369889000077251, -34.606568999859405 ], [ -58.36994399991562, -34.606391999790901 ], [ -58.369975000445891, -34.606289999583794 ], [ -58.370038999799988, -34.605302999933429 ], [ -58.370168000352919, -34.604144000445217 ], [ -58.370168000352919, -34.603971999707994 ], [ -58.370253999822182, -34.60296399998856 ], [ -58.370340000190822, -34.601912000038737 ], [ -58.370489999913502, -34.600689000297109 ], [ -58.370812000373462, -34.599487999771327 ], [ -58.371090999749811, -34.598565000374435 ], [ -58.371198000187519, -34.598329000283115 ], [ -58.371842000208119, -34.59710599964211 ], [ -58.372250000137342, -34.596140000060927 ], [ -58.372804999650953, -34.595049000111203 ], [ -58.372849999927496, -34.594959999604271 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.374159000037764, -34.591342000033251 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.372696000020369, -34.589513000224713 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.369052000149622, -34.583995000268999 ], [ -58.370210999637891, -34.58333000017933 ], [ -58.373429999694679, -34.581527999817297 ], [ -58.373922999946444, -34.581249000440948 ], [ -58.374309999806599, -34.581013000349628 ], [ -58.375039000149684, -34.580562000236057 ], [ -58.376068999984341, -34.580003999684777 ], [ -58.376327000190884, -34.57994000033068 ], [ -58.379743000339147, -34.580152000214582 ], [ -58.379781000292894, -34.580154000306834 ], [ -58.379996000315145, -34.580090000053417 ], [ -58.380232000406465, -34.579961000399805 ], [ -58.382677999889722, -34.578544999851829 ], [ -58.383042999634711, -34.578373000013869 ], [ -58.383294999564555, -34.578288999737481 ], [ -58.383429000348031, -34.578245000406412 ], [ -58.384115999653602, -34.578180000106897 ], [ -58.384608999905367, -34.578180000106897 ], [ -58.385252999925967, -34.578265999576161 ], [ -58.385864000223364, -34.578175999922394 ], [ -58.386347000013984, -34.577987000199869 ], [ -58.386605000220527, -34.577900999831229 ], [ -58.386904999665944, -34.577836999577812 ], [ -58.387635000055184, -34.577471999832881 ], [ -58.388793000396618, -34.576785999674087 ], [ -58.389437000417217, -34.576249000091252 ], [ -58.389758999977801, -34.575905999562167 ], [ -58.390038000253469, -34.575412000163624 ], [ -58.390274000344789, -34.575132999888012 ], [ -58.390485000182593, -34.574939999980984 ], [ -58.390531999652012, -34.574896999796636 ], [ -58.393234000148937, -34.573365000194542 ], [ -58.393900000284759, -34.572987999896213 ], [ -58.394436999867594, -34.572708999620602 ], [ -58.395015999588679, -34.572408000129087 ], [ -58.395617000324251, -34.57202200031503 ], [ -58.396073999815201, -34.571758999877886 ], [ -58.398448999621621, -34.570390999744802 ], [ -58.398963999988553, -34.570025999999871 ], [ -58.400252000029752, -34.569232000256591 ], [ -58.401023999657809, -34.568716999889602 ], [ -58.401604000324312, -34.568266999822129 ], [ -58.402011000207438, -34.567858999892906 ], [ -58.402740999697357, -34.567021999965277 ], [ -58.4033849997179, -34.566207000152872 ], [ -58.404042000337995, -34.565349000156175 ], [ -58.404372000267585, -34.564919000111729 ], [ -58.405122999826517, -34.563890000323227 ], [ -58.406260000098882, -34.562409000374998 ], [ -58.406409999821619, -34.562242999914474 ], [ -58.407311000002608, -34.561249999987467 ], [ -58.407741000047054, -34.560777999804827 ], [ -58.40821300022975, -34.560263000337159 ], [ -58.408896000250195, -34.559563000432092 ], [ -58.409071000226447, -34.559383000225239 ], [ -58.410014999692464, -34.558525000228542 ], [ -58.411689000446984, -34.557259000302565 ], [ -58.411866999662266, -34.557140000210779 ], [ -58.412332999568207, -34.556830000304217 ], [ -58.412869000004321, -34.556486999775188 ], [ -58.414992999926938, -34.555391999641017 ], [ -58.416494999944234, -34.554877000173349 ], [ -58.417105000195534, -34.554705000335446 ], [ -58.417331999871863, -34.554641000082029 ], [ -58.421540999717308, -34.553593000316653 ], [ -58.423296999756701, -34.553161000179955 ], [ -58.424391999890815, -34.552838999719995 ], [ -58.425411000117549, -34.55251500006716 ], [ -58.425744000185432, -34.552409999721647 ], [ -58.427267000271797, -34.551829999954464 ], [ -58.42772299971665, -34.551631999816891 ], [ -58.428104000199426, -34.551466000255687 ], [ -58.429005000380414, -34.550950999888698 ], [ -58.429755999939402, -34.550542999959418 ], [ -58.430207000052974, -34.550135000030195 ], [ -58.430505000305459, -34.549793999593362 ], [ -58.430657000120391, -34.549619999663207 ], [ -58.430851000073574, -34.549211999733984 ], [ -58.431021999865379, -34.54876199966651 ], [ -58.431087000164894, -34.548332999668162 ], [ -58.431108000233962, -34.547752999900979 ], [ -58.430978999681031, -34.546851999719991 ], [ -58.430994000372777, -34.546561999836399 ], [ -58.431021999865379, -34.546014999792362 ], [ -58.431323000256214, -34.545221000049082 ], [ -58.431752000254562, -34.544663000397122 ], [ -58.432081000137998, -34.544369000329084 ], [ -58.432159000137688, -34.544298999798968 ], [ -58.432610000251259, -34.543998000307397 ], [ -58.433339999741179, -34.54354800023998 ], [ -58.434069000084264, -34.543203999664797 ], [ -58.434841999758419, -34.542947000403728 ], [ -58.435546999894086, -34.542766000150721 ], [ -58.43567799963995, -34.542732000381477 ], [ -58.436494000397772, -34.542624999943769 ], [ -58.436793999843189, -34.54266800012806 ], [ -58.437073000118801, -34.54275399959738 ], [ -58.437345000071673, -34.542939000034778 ], [ -58.437545000301498, -34.54307600005734 ], [ -58.43812500006868, -34.543741000147008 ], [ -58.438415999998369, -34.544271000306367 ], [ -58.438488999767458, -34.544406000236677 ], [ -58.438510999882681, -34.544555999959414 ], [ -58.43859700025132, -34.544963999888637 ], [ -58.438585999744078, -34.545142000003239 ], [ -58.438575000136098, -34.545328999633568 ], [ -58.438575000136098, -34.545413999956111 ], [ -58.438618000320446, -34.545500000324694 ], [ -58.438697000366233, -34.545525999725044 ], [ -58.438746999974001, -34.545542999609722 ], [ -58.43891899981196, -34.545522000439917 ], [ -58.438983000065377, -34.545457000140402 ], [ -58.4393909999946, -34.545392999886985 ], [ -58.441129000103217, -34.545413999956111 ], [ -58.441104999895799, -34.544511999728968 ], [ -58.441085999918926, -34.5437840003313 ], [ -58.441235999641606, -34.543439999756117 ], [ -58.441322000010246, -34.543396999571826 ], [ -58.441967000076943, -34.543197000241321 ], [ -58.443595999655599, -34.542689000197186 ], [ -58.444261999791422, -34.542496000290157 ], [ -58.445141999903342, -34.542198000037615 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 215.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.119946301708389, -34.560512176169716 ], [ -59.120373999525967, -34.561641737072556 ], [ -59.119674878093377, -34.561819944496541 ], [ -59.120149184006465, -34.56293305548332 ], [ -59.118778357668063, -34.563360753300884 ], [ -59.120786618253817, -34.567858434517134 ], [ -59.112624718235047, -34.570254638956634 ], [ -59.108221624036133, -34.561059135878708 ], [ -59.111229217022569, -34.55989667514374 ], [ -59.112424577589643, -34.559309961470909 ], [ -59.115780360466019, -34.556732807954731 ], [ -59.117008620865199, -34.555904828846344 ], [ -59.117014104170558, -34.555718396464322 ], [ -59.116997654254497, -34.55553744738765 ], [ -59.117047004002679, -34.555323598478864 ], [ -59.117129253582981, -34.555296181952095 ], [ -59.117436318682778, -34.555279732036034 ], [ -59.11756243470591, -34.555318115173513 ], [ -59.117814666752174, -34.555235865593204 ], [ -59.117946266080658, -34.555186515845023 ], [ -59.121219799376739, -34.552746444962693 ], [ -59.12327603888432, -34.551496251342073 ], [ -59.12481684768867, -34.550723105287219 ], [ -59.124921030490391, -34.550586022653384 ], [ -59.124986830154633, -34.550437973408833 ], [ -59.125156812620595, -34.550284440858938 ], [ -59.125469361025743, -34.550251541026817 ], [ -59.125617410270294, -34.55036669043924 ], [ -59.125655793407766, -34.550481839851663 ], [ -59.125721593072008, -34.550575056042675 ], [ -59.125990275034333, -34.550640855706916 ], [ -59.126237023775246, -34.550701172065807 ], [ -59.126450872684032, -34.550766971730049 ], [ -59.126653754982115, -34.550838254699649 ], [ -59.126884053806968, -34.550843738005 ], [ -59.128808693986066, -34.550492806462373 ], [ -59.12878676076464, -34.550569572737324 ], [ -59.128816918944082, -34.550651822317626 ], [ -59.129102050822468, -34.550717621981867 ], [ -59.129376216090144, -34.551663492155356 ], [ -59.130560610046544, -34.552283105660308 ], [ -59.13242630469307, -34.549932138489979 ], [ -59.139993266080971, -34.54910964268695 ], [ -59.148146941141732, -34.548851927335349 ], [ -59.154633691374997, -34.547716883127165 ], [ -59.166282973598626, -34.532489744160323 ], [ -59.174968529278665, -34.521303801239057 ], [ -59.187031801056492, -34.505775080477768 ], [ -59.190979780911057, -34.507178806648277 ], [ -59.208219292942651, -34.494457538228019 ], [ -59.216104286041066, -34.484346323156053 ], [ -59.218155042243296, -34.485333318119693 ], [ -59.21895560482492, -34.486177747144147 ], [ -59.221872723273009, -34.484192790606151 ], [ -59.227454728122936, -34.476680662271775 ], [ -59.229319051943143, -34.474651839290956 ], [ -59.231951038512847, -34.471208323528927 ], [ -59.237434343866418, -34.467435809445675 ], [ -59.238903869701169, -34.46572501817537 ], [ -59.245176771025641, -34.460439111814537 ], [ -59.264587671977239, -34.433790247796232 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 214.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.131989445640436, -34.432680376638835 ], [ -59.129378343793014, -34.432468805145263 ], [ -59.12708459918592, -34.432312706665257 ], [ -59.12695043189732, -34.432237882600461 ], [ -59.130216889346784, -34.427784560674915 ], [ -59.126929790776011, -34.426076507885391 ], [ -59.125439759830464, -34.428007742799217 ], [ -59.12467861848166, -34.427633622475227 ], [ -59.123026038705689, -34.429893825260152 ], [ -59.084130425711678, -34.48278927879187 ], [ -59.083805328050836, -34.483067933929732 ], [ -59.083547314034291, -34.482980209164104 ], [ -59.081173585082084, -34.48617958296925 ], [ -59.078531521552669, -34.489869183405837 ], [ -59.067271789870667, -34.505231337950903 ], [ -59.070801421616984, -34.501822972792354 ], [ -59.086622841111485, -34.509645957773984 ], [ -59.088501183151926, -34.509511790485377 ], [ -59.089244263519575, -34.509284738150818 ], [ -59.090554974723617, -34.509088647498245 ], [ -59.091463184061858, -34.508933839088321 ], [ -59.091979212094941, -34.508789351239052 ], [ -59.092794536387224, -34.508789351239052 ], [ -59.093671784043472, -34.508861595163687 ], [ -59.094229094319211, -34.509006083012949 ], [ -59.094734801791631, -34.509264097029494 ], [ -59.095323073749356, -34.509511790485377 ], [ -59.105757160578399, -34.514713353058909 ], [ -59.110958723151924, -34.517499904437585 ], [ -59.111866932490159, -34.518098496955965 ], [ -59.115850668905601, -34.530854709933905 ], [ -59.118786868413935, -34.537913973426576 ], [ -59.122791245950694, -34.544911313555254 ], [ -59.123843943138198, -34.547119913536868 ], [ -59.124731511355108, -34.549493642489075 ], [ -59.125082410417612, -34.550278005099365 ], [ -59.125619079572019, -34.550505057433924 ], [ -59.125722285178639, -34.550608263040544 ], [ -59.125598438450695, -34.551124291073634 ], [ -59.125639720693343, -34.555500208794221 ], [ -59.124179361359737, -34.55719278074276 ], [ -59.12331243426415, -34.558255798490926 ], [ -59.122672559503116, -34.559102084465188 ], [ -59.122073966984736, -34.559938049878795 ], [ -59.121114154843191, -34.560371513426588 ], [ -59.11192885585421, -34.562549151726223 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 213.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370769000189171, -34.586592000420467 ], [ -58.370210999637891, -34.585927000330742 ], [ -58.370081999984279, -34.585775999662587 ], [ -58.369223999987582, -34.58476799994321 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.371009999611772, -34.586328999983323 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371792999747072, -34.587799000323571 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375639999985992, -34.592943000119305 ], [ -58.376970000165329, -34.594530999605922 ], [ -58.377506999748221, -34.594660000158854 ], [ -58.377593000116804, -34.594745999628117 ], [ -58.377742999839541, -34.595024999903785 ], [ -58.3784510001135, -34.595068000088077 ], [ -58.379953000130797, -34.595195999695591 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.389974, -34.595776000362093 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.391818999647057, -34.597213000079819 ], [ -58.391668999924377, -34.598628999728533 ], [ -58.391603999624863, -34.599144000095464 ], [ -58.391562000385989, -34.599552000024744 ], [ -58.391432999833057, -34.600774999766372 ], [ -58.391304000179446, -34.601912000038737 ], [ -58.391174999626514, -34.603113999711297 ], [ -58.390853000065874, -34.603092999642172 ], [ -58.390809999881526, -34.60431600028312 ], [ -58.390788999812457, -34.605539000024805 ], [ -58.390745999628166, -34.606718999582142 ], [ -58.390660000158846, -34.607921000153965 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.391389999648709, -34.609357999871747 ], [ -58.39151900020164, -34.609550999778776 ], [ -58.39151900020164, -34.609722999616679 ], [ -58.391497000086417, -34.609895000353958 ], [ -58.391432999833057, -34.610022999961416 ], [ -58.391347000363737, -34.610131000445278 ], [ -58.391111000272417, -34.61026000009889 ], [ -58.390424000067526, -34.610237999983667 ], [ -58.390359999814109, -34.611375000256032 ], [ -58.390359999814109, -34.612576999928535 ], [ -58.390359999814109, -34.613736000316123 ], [ -58.390380999883178, -34.614850999573946 ], [ -58.390380999883178, -34.615645000216546 ], [ -58.390359999814109, -34.616803999704757 ], [ -58.390337999698886, -34.618027000345762 ], [ -58.390274000344789, -34.618970999811722 ], [ -58.390210000091372, -34.62013000019931 ], [ -58.390038000253469, -34.621439000309579 ], [ -58.389887999631412, -34.622618999866916 ], [ -58.389823000231218, -34.623219999703167 ], [ -58.389781000093024, -34.623627999632447 ], [ -58.389758999977801, -34.623992000230601 ], [ -58.389652000439412, -34.625044000180424 ], [ -58.391325000248514, -34.625237000087452 ], [ -58.392549000036297, -34.625322999556715 ], [ -58.392312999944977, -34.626438999760012 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.391540000270766, -34.630666000435554 ], [ -58.391368000432806, -34.631696000270153 ], [ -58.391174999626514, -34.632853999712268 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.40244100025194, -34.635171999588067 ], [ -58.404049999807626, -34.635515000117095 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.403535000339957, -34.637960999600409 ], [ -58.403320000317706, -34.638862999827552 ], [ -58.403256000064289, -34.63920600035658 ], [ -58.402976999788677, -34.64040800002914 ], [ -58.402718999582135, -34.641587999586477 ], [ -58.404671999713003, -34.642080999838242 ], [ -58.406067000191854, -34.642273999745271 ], [ -58.407397000371247, -34.642445999583174 ], [ -58.407289999933482, -34.643068000387871 ], [ -58.407161000279871, -34.643733999624317 ], [ -58.406989999588745, -34.644570000405167 ], [ -58.406754000396745, -34.645728999893379 ], [ -58.408104999745888, -34.64594399991563 ], [ -58.40947900015567, -34.64618000000695 ], [ -58.410830000404133, -34.646393999983047 ], [ -58.412568999659584, -34.646673000258716 ], [ -58.413919999908046, -34.646909000350036 ], [ -58.415185999833966, -34.647124000372287 ], [ -58.415357999671926, -34.647102000257064 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.417804000054502, -34.651845000446372 ], [ -58.418833999889159, -34.65171599989344 ], [ -58.419564000278342, -34.65163000042412 ], [ -58.420014000345816, -34.651587000239829 ], [ -58.42078700001997, -34.65147999980212 ], [ -58.421645000016724, -34.6513940003328 ], [ -58.422610999597907, -34.651264999779869 ], [ -58.423726999801147, -34.65115800024148 ], [ -58.423897999592953, -34.651050999803772 ], [ -58.424928000326929, -34.65027800012956 ], [ -58.425272000002735, -34.650064000153463 ], [ -58.426043999630849, -34.649548999786475 ], [ -58.427074000364769, -34.648819000296555 ], [ -58.428297000106454, -34.647918000115567 ], [ -58.428104000199426, -34.647831999746927 ], [ -58.42752499957902, -34.647166999657259 ], [ -58.42752499957902, -34.647166999657259 ], [ -58.427609999901506, -34.647038000003647 ], [ -58.428167999553523, -34.647510000186344 ], [ -58.428403999644843, -34.647809999631761 ], [ -58.428854999758414, -34.648175000276012 ], [ -58.429155000103151, -34.648453999652304 ], [ -58.429498999778957, -34.648755000043195 ], [ -58.429863000377111, -34.649075999557681 ], [ -58.430250000237265, -34.649354999833349 ], [ -58.430443000144294, -34.649548999786475 ], [ -58.430613999936099, -34.649719999578281 ], [ -58.431323000256214, -34.650300000244783 ], [ -58.432181000252911, -34.651028999688549 ], [ -58.43306100036483, -34.65180200026208 ], [ -58.433768999739527, -34.652337999798817 ], [ -58.434520000197836, -34.652938999635069 ], [ -58.435185000287504, -34.653454000002057 ], [ -58.436128999753521, -34.654204999561045 ], [ -58.437236000441033, -34.654588000136073 ], [ -58.437673999955109, -34.654869999650714 ], [ -58.438446999629264, -34.655471000386342 ], [ -58.439219000156697, -34.656029000038302 ], [ -58.439480999648367, -34.656251000383293 ], [ -58.439969999715686, -34.65693000021929 ], [ -58.441085999918926, -34.657831000400279 ], [ -58.441343000079371, -34.658324999798879 ], [ -58.441622000354982, -34.658538999774976 ], [ -58.442824000027542, -34.659526000324604 ], [ -58.443574999586531, -34.660127000160912 ], [ -58.444583000205228, -34.660899999835067 ], [ -58.445548999786467, -34.661693999578347 ], [ -58.446449999967456, -34.662379999737141 ], [ -58.447501999917336, -34.663238999779992 ], [ -58.447759000077724, -34.6633460002177 ], [ -58.448552999821061, -34.66390399986966 ], [ -58.448832000096672, -34.664096999776689 ], [ -58.449090000303215, -34.66422600032962 ], [ -58.449948000299912, -34.664891000419289 ], [ -58.450011999654009, -34.66493399970426 ], [ -58.451063999603832, -34.665320000417637 ], [ -58.4513429998795, -34.665449000071249 ], [ -58.45157899997082, -34.665619999863054 ], [ -58.451686000408529, -34.665728000346917 ], [ -58.451749999762626, -34.665834999885305 ], [ -58.451858000246489, -34.666027999792334 ], [ -58.452265000129614, -34.667314999787379 ], [ -58.452330000429129, -34.667444000340311 ], [ -58.452458000036643, -34.667572999993922 ], [ -58.452779999597283, -34.667809000085242 ], [ -58.453574000239882, -34.668130999645882 ], [ -58.454047999615455, -34.668398000267473 ], [ -58.456106000091779, -34.670254999568556 ], [ -58.457544999901756, -34.671639000439484 ], [ -58.458337999598939, -34.672400999606396 ], [ -58.458488000220996, -34.672508000044104 ], [ -58.458917000219344, -34.672636999697716 ], [ -58.459110000126373, -34.672657999766841 ], [ -58.459259999849053, -34.672700999951132 ], [ -58.459518000055596, -34.672872999789092 ], [ -58.459604000424235, -34.672980000226801 ], [ -58.459667999778333, -34.673173000133829 ], [ -58.459942999869497, -34.67370200024709 ], [ -58.461362999702658, -34.674911000242446 ], [ -58.464668000128086, -34.677722000369954 ], [ -58.465439999756143, -34.678472999928942 ], [ -58.466319999868062, -34.679224000387251 ], [ -58.467071000326371, -34.679975999992337 ], [ -58.467071000326371, -34.680083000430102 ], [ -58.466984999957731, -34.680189999968491 ], [ -58.466792000050702, -34.680233000152782 ], [ -58.466599000143674, -34.680189999968491 ], [ -58.466298999798937, -34.680168999899365 ], [ -58.466170000145326, -34.680233000152782 ], [ -58.466104999845811, -34.680318999622102 ], [ -58.466083999776743, -34.680448000175033 ], [ -58.466148000030159, -34.680618999966839 ], [ -58.467050000257245, -34.68154200026305 ], [ -58.467134999680468, -34.68162799973237 ], [ -58.467457000140428, -34.681928000077107 ], [ -58.467392999887011, -34.681993000376622 ], [ -58.466835000235051, -34.682056999730719 ], [ -58.466705999682119, -34.682120999984136 ], [ -58.466469999590743, -34.682357000075456 ], [ -58.464646000012863, -34.684267000021975 ], [ -58.464774999666474, -34.684674999951255 ], [ -58.464732000381446, -34.684739000204672 ], [ -58.462945999857993, -34.686524999828862 ], [ -58.461106000441532, -34.688365000144586 ], [ -58.460441000351864, -34.689031000280409 ], [ -58.461749999562812, -34.690275000091162 ], [ -58.463315999833469, -34.691777000108402 ], [ -58.464088000360903, -34.691198000387374 ], [ -58.465268999964337, -34.690318000275454 ], [ -58.465482999940434, -34.690167999653397 ], [ -58.465955000123131, -34.689781999839397 ], [ -58.466427000305771, -34.689417000094409 ], [ -58.467177999864759, -34.688816000258157 ], [ -58.467606999863108, -34.688493999798197 ], [ -58.468080000091902, -34.68810799998414 ], [ -58.468766000250696, -34.687572000447403 ], [ -58.469582000109199, -34.686948999596609 ], [ -58.469967999923199, -34.686670000220317 ], [ -58.470075000360964, -34.686562999782552 ], [ -58.471084000126439, -34.685747999970204 ], [ -58.471834999685427, -34.685168000203021 ], [ -58.472221000398804, -34.684845999743061 ], [ -58.473058000326432, -34.685489999763661 ], [ -58.473808999885421, -34.686176999968552 ], [ -58.474581000412797, -34.686863000127289 ], [ -58.475331999971786, -34.68755000033218 ], [ -58.476104999645997, -34.688236999637752 ], [ -58.476877000173374, -34.688922999796546 ], [ -58.477627999732363, -34.689610000001437 ], [ -58.478379000190671, -34.690297000206328 ], [ -58.479151999864882, -34.690983000365122 ], [ -58.479752999701134, -34.691519999948014 ], [ -58.479537999678882, -34.691733999924111 ], [ -58.479280000371659, -34.691948999946362 ], [ -58.478401000305894, -34.692636000151253 ], [ -58.475804000154426, -34.694588000235967 ], [ -58.476255000267997, -34.694803000258219 ], [ -58.476383999921609, -34.69493199991183 ], [ -58.476576999828637, -34.695039000349539 ], [ -58.476833999989083, -34.694996000165247 ], [ -58.477820999639391, -34.694501999867384 ], [ -58.478486999775157, -34.69420200042191 ], [ -58.479129999749659, -34.693902000077173 ], [ -58.479773999770259, -34.693600999686339 ], [ -58.480438999859928, -34.693301000240922 ], [ -58.480631999766956, -34.693279000125699 ], [ -58.480653999882122, -34.693428999848436 ], [ -58.481383000225264, -34.694029999684687 ], [ -58.481661999601556, -34.694308999960356 ], [ -58.482133999784196, -34.694716999889579 ], [ -58.482199000083767, -34.694760000073927 ], [ -58.482799999920019, -34.695295999610664 ], [ -58.482864000173436, -34.695381999979247 ], [ -58.483315000287007, -34.695789999908527 ], [ -58.483592999617201, -34.696025999999847 ], [ -58.484344000075509, -34.696712000158641 ], [ -58.485095999680595, -34.697378000294407 ], [ -58.485825000023681, -34.698043000384132 ], [ -58.486661999951309, -34.698750999758772 ], [ -58.487606000316646, -34.698106999738229 ], [ -58.487669999670686, -34.698085999669104 ], [ -58.488120999784257, -34.697913999831201 ], [ -58.488657000220371, -34.697463999763727 ], [ -58.489280000171846, -34.696991000434252 ], [ -58.489450999963651, -34.696840999812252 ], [ -58.489665999985846, -34.696562000435904 ], [ -58.490331000075571, -34.695960999700333 ], [ -58.490652999636211, -34.695704000439207 ], [ -58.491404000094462, -34.695102999703636 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 211.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.377270999656844, -34.583243999810691 ], [ -58.376541000166981, -34.582450000067411 ], [ -58.374909999596753, -34.583394999579525 ], [ -58.373129000203164, -34.584295999760513 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.371777999954702, -34.58491799966589 ], [ -58.371691999586062, -34.585047000218822 ], [ -58.371712999655188, -34.585153999757267 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.37220699995305, -34.586141000306895 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371606000116799, -34.587643000324135 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371391000094548, -34.589273999995044 ], [ -58.371777999954702, -34.589230999810752 ], [ -58.372014000046022, -34.589273999995044 ], [ -58.372271000206467, -34.589402999648655 ], [ -58.372464000113496, -34.589595999555684 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.373472999879027, -34.590819000196632 ], [ -58.373580000316736, -34.590991000034592 ], [ -58.37355900024761, -34.591076000357077 ], [ -58.372958000411359, -34.591354999733426 ], [ -58.372785999674079, -34.591441000102009 ], [ -58.372635999951399, -34.59156999975562 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373922999946444, -34.593758999977808 ], [ -58.374395000129084, -34.594552999721088 ], [ -58.374716999689724, -34.595089000157202 ], [ -58.375018000080615, -34.595603999624814 ], [ -58.375360999710324, -34.59599000033819 ], [ -58.375533000447547, -34.596096999876579 ], [ -58.375832999892964, -34.596205000360442 ], [ -58.376025999799992, -34.596183000245219 ], [ -58.376520000097912, -34.596011999554094 ], [ -58.376970000165329, -34.595711000062579 ], [ -58.377742999839541, -34.595024999903785 ], [ -58.3784510001135, -34.595068000088077 ], [ -58.379953000130797, -34.595195999695591 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.384179999907019, -34.596912999735082 ], [ -58.38407300036863, -34.598093000191739 ], [ -58.384094000437756, -34.598242999914476 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.383922999746574, -34.600410000021441 ], [ -58.383943999815699, -34.600753999697304 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.38383700027731, -34.602599000243629 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.383579000070768, -34.606204000114474 ], [ -58.383514999817351, -34.60747000004045 ], [ -58.384910000296259, -34.607556000409033 ], [ -58.385381999579579, -34.607576999578839 ], [ -58.386303999829693, -34.607641999878354 ], [ -58.387741999593572, -34.607728000246993 ], [ -58.388170999591921, -34.607770000385187 ], [ -58.388857999796812, -34.607812999670159 ], [ -58.389243999610869, -34.607834999785382 ], [ -58.390660000158846, -34.607921000153965 ], [ -58.392033999669309, -34.608005999577188 ], [ -58.393450000217285, -34.608091999945771 ], [ -58.394930000119359, -34.60817800031441 ], [ -58.396388999952364, -34.608284999852799 ], [ -58.397741000246924, -34.608393000336662 ], [ -58.399222000195095, -34.60849999987505 ], [ -58.400552000374489, -34.608543000059342 ], [ -58.401925999884952, -34.608629000427982 ], [ -58.403405999787026, -34.608714999897302 ], [ -58.404671999713003, -34.608800000219787 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406303000283174, -34.608950999988622 ], [ -58.407228999818471, -34.609046999919087 ], [ -58.408791999950779, -34.609208000149067 ], [ -58.409121999880369, -34.609100999711302 ], [ -58.410380000336716, -34.60914399989565 ], [ -58.411774999916247, -34.609208000149067 ], [ -58.411731999731956, -34.610560000443627 ], [ -58.411667000331761, -34.611826000369604 ], [ -58.413018999727001, -34.612448000274924 ], [ -58.413426999656281, -34.612597999997661 ], [ -58.414800000019966, -34.613049000111232 ], [ -58.415636999947537, -34.613328000386844 ], [ -58.416215999668623, -34.613521000293872 ], [ -58.417267999618446, -34.613863999923637 ], [ -58.418684000166422, -34.614271999852861 ], [ -58.420335999906456, -34.61459400031282 ], [ -58.421645000016724, -34.61467999978214 ], [ -58.423060999665381, -34.614744000035557 ], [ -58.424562999682621, -34.614809000335072 ], [ -58.425958000161529, -34.614893999758237 ], [ -58.4274390001097, -34.614959000057752 ], [ -58.427395999925409, -34.616053000145769 ], [ -58.427352999741117, -34.617082999980425 ], [ -58.427309999556769, -34.618155999999374 ], [ -58.428555000312997, -34.618284999652985 ], [ -58.429948999846431, -34.618477999560014 ], [ -58.430636000051322, -34.618563999928597 ], [ -58.431301000140991, -34.618649000251139 ], [ -58.431537000232311, -34.618692000435431 ], [ -58.433403999994539, -34.618927999627431 ], [ -58.434541000266904, -34.619057000180362 ], [ -58.435914999777367, -34.619357999671877 ], [ -58.437331000325344, -34.619744000385253 ], [ -58.438189000322041, -34.620000999646379 ], [ -58.438724999858835, -34.620173000383602 ], [ -58.441106999987994, -34.620817000404202 ], [ -58.442716999589834, -34.621418000240453 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463344000225391, -34.629004000234374 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.486297000206378, -34.636265999676084 ], [ -58.487283999856686, -34.636523999882627 ], [ -58.486875999927406, -34.637832999992895 ], [ -58.486683000020378, -34.638411999713981 ], [ -58.486490000113349, -34.639098999918872 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.485931999562069, -34.640923000396128 ], [ -58.485825000023681, -34.641309000210128 ], [ -58.485373999910109, -34.642724999858785 ], [ -58.485181000003081, -34.643368999879385 ], [ -58.484988000096109, -34.644055000038179 ], [ -58.484730999935664, -34.644870999896682 ], [ -58.484602000282052, -34.64529999989503 ], [ -58.484173000283704, -34.646695000373938 ], [ -58.484065999845996, -34.648154000206887 ], [ -58.484043999730773, -34.648390000298207 ], [ -58.483442999894464, -34.649484000386281 ], [ -58.484001000445801, -34.649977999784824 ], [ -58.485031000280401, -34.650856999850646 ], [ -58.486382999675641, -34.65186599961612 ], [ -58.486425999859989, -34.651973000053886 ], [ -58.486962000296046, -34.652467000351749 ], [ -58.487090999949658, -34.652573999890137 ], [ -58.487884999692938, -34.653238999979806 ], [ -58.488679000335537, -34.653904000069531 ], [ -58.489450999963651, -34.654570000205297 ], [ -58.490244999706931, -34.655235000294965 ], [ -58.491039000349531, -34.65590000038469 ], [ -58.489837999823806, -34.656843999850651 ], [ -58.488679000335537, -34.657745000031696 ], [ -58.487455999694589, -34.658710999612879 ], [ -58.486189999768612, -34.659698000162507 ], [ -58.484967000026984, -34.660663999743747 ], [ -58.484130000099412, -34.661285999649124 ], [ -58.482949999642756, -34.662230000014461 ], [ -58.482499000428504, -34.662551999575101 ], [ -58.48172699990107, -34.663195999595644 ], [ -58.480525000228511, -34.664117999845757 ], [ -58.479752999701134, -34.66469799961294 ], [ -58.478936999842631, -34.665340999587443 ], [ -58.478143000099351, -34.664676000397037 ], [ -58.477370999571917, -34.664011000307369 ], [ -58.476984999757917, -34.66366799977834 ], [ -58.476597999897763, -34.663324000102477 ], [ -58.475804000154426, -34.662659000012809 ], [ -58.474731000135534, -34.663474999871312 ], [ -58.475524999878814, -34.66413999996098 ], [ -58.475932999808037, -34.664482999590689 ], [ -58.476318999622094, -34.664805000050649 ], [ -58.477113000264694, -34.665470000140374 ], [ -58.477907000008031, -34.666135000230042 ], [ -58.478679999682186, -34.666779000250642 ], [ -58.479495000393911, -34.667465999556214 ], [ -58.480289000137191, -34.668130999645882 ], [ -58.480718000135539, -34.668496000290133 ], [ -58.481039999696179, -34.668752999551259 ], [ -58.481511999878876, -34.669161000379802 ], [ -58.482692000335533, -34.67014800003011 ], [ -58.483635999801493, -34.670962999842516 ], [ -58.484387000259801, -34.671671000116532 ], [ -58.485331999771915, -34.672508000044104 ], [ -58.485953999677292, -34.673023000411092 ], [ -58.486512000228572, -34.673494999694412 ], [ -58.485439000209624, -34.674374999806332 ], [ -58.484559000097761, -34.675105000195572 ], [ -58.483529000263104, -34.675963000192269 ], [ -58.484344000075509, -34.676670999566909 ], [ -58.485116999749721, -34.677314999587509 ], [ -58.485911000392321, -34.677979999677177 ], [ -58.486854999858338, -34.678774000319834 ], [ -58.487628000431812, -34.678022999861525 ], [ -58.48782100033884, -34.677851000023566 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 210.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.085203764020243, -34.553811507055848 ], [ -59.086984060734409, -34.554679724221522 ], [ -59.088818540392033, -34.555575032858933 ], [ -59.086016508172357, -34.559589730956361 ], [ -59.085548212732327, -34.560255407119051 ], [ -59.08952033851704, -34.56212213852875 ], [ -59.090136992016582, -34.562420144717855 ], [ -59.084543248137898, -34.5705849982714 ], [ -59.086477063191893, -34.571569321744526 ], [ -59.083055797332541, -34.576516740511771 ], [ -59.084914788321754, -34.577437850550837 ], [ -59.085188283179292, -34.577329484663885 ], [ -59.085394694392527, -34.577061150086685 ], [ -59.085616586446754, -34.576994066442381 ], [ -59.085735272894361, -34.577143714571974 ], [ -59.085838478500982, -34.577339805224547 ], [ -59.085874600463299, -34.577401728588519 ], [ -59.086075851396203, -34.577458491672161 ], [ -59.086406109337382, -34.577458491672161 ], [ -59.086751848119548, -34.577257240739257 ], [ -59.087195632228003, -34.577174676253961 ], [ -59.089192660716044, -34.576692190043026 ], [ -59.089445514452258, -34.576552862474088 ], [ -59.089654505805655, -34.576284527896888 ], [ -59.089943481504186, -34.575822682807271 ], [ -59.091341917473869, -34.573805013197891 ], [ -59.092438477044176, -34.572391096387236 ], [ -59.093793050631028, -34.572022136343577 ], [ -59.109364196529462, -34.567411425867931 ], [ -59.110530419884242, -34.569728391736504 ], [ -59.118895234300602, -34.567081167926766 ], [ -59.120293670270279, -34.566710917813012 ], [ -59.121245741991316, -34.568869205061404 ], [ -59.122556453195372, -34.568429291163191 ], [ -59.123616890803376, -34.568087422591269 ], [ -59.125028227473884, -34.566887657414334 ], [ -59.126457625125539, -34.564968033131244 ], [ -59.125348164854408, -34.564405562575175 ], [ -59.126633074656809, -34.562269206518195 ], [ -59.133119547032713, -34.565587266770954 ], [ -59.13446380005891, -34.566291645036124 ], [ -59.135682916287081, -34.564925460818522 ], [ -59.138010202716295, -34.561924757806111 ], [ -59.139336394761337, -34.560211544736262 ], [ -59.142504806884496, -34.5618808954233 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 209.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.377270999656844, -34.583243999810691 ], [ -58.376541000166981, -34.582450000067411 ], [ -58.374909999596753, -34.583394999579525 ], [ -58.373129000203164, -34.584295999760513 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.371777999954702, -34.58491799966589 ], [ -58.371691999586062, -34.585047000218822 ], [ -58.371712999655188, -34.585153999757267 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.37220699995305, -34.586141000306895 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371606000116799, -34.587643000324135 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371391000094548, -34.589273999995044 ], [ -58.371777999954702, -34.589230999810752 ], [ -58.372014000046022, -34.589273999995044 ], [ -58.372271000206467, -34.589402999648655 ], [ -58.372464000113496, -34.589595999555684 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.373472999879027, -34.590819000196632 ], [ -58.373580000316736, -34.590991000034592 ], [ -58.37355900024761, -34.591076000357077 ], [ -58.372958000411359, -34.591354999733426 ], [ -58.372785999674079, -34.591441000102009 ], [ -58.372635999951399, -34.59156999975562 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373922999946444, -34.593758999977808 ], [ -58.374395000129084, -34.594552999721088 ], [ -58.374395000129084, -34.595089000157202 ], [ -58.374351999944793, -34.59575400024687 ], [ -58.374330999875724, -34.59622600042951 ], [ -58.374266999622307, -34.597449000171196 ], [ -58.374266999622307, -34.597900000284767 ], [ -58.374202000222112, -34.598586999590339 ], [ -58.374094999784347, -34.599810000231287 ], [ -58.375360999710324, -34.599894999654452 ], [ -58.376799000373524, -34.599981000023092 ], [ -58.378192999906958, -34.600109999676704 ], [ -58.37965299978606, -34.600152999860995 ], [ -58.381154999803357, -34.600173999930121 ], [ -58.381670000170345, -34.600196000045344 ], [ -58.381990999684831, -34.600239000229635 ], [ -58.382420999729334, -34.600260000298704 ], [ -58.383922999746574, -34.600410000021441 ], [ -58.385339000294607, -34.600475000320955 ], [ -58.386733999874139, -34.600625000043692 ], [ -58.388085000122601, -34.600689000297109 ], [ -58.388041999938309, -34.601698000062584 ], [ -58.387956999615824, -34.602877999619921 ], [ -58.387871000146504, -34.604037000007509 ], [ -58.387871000146504, -34.605346000117777 ], [ -58.387827999962212, -34.606546999744182 ], [ -58.387741999593572, -34.607728000246993 ], [ -58.387656000124252, -34.608928999873399 ], [ -58.387463000217224, -34.60897200005769 ], [ -58.387291000379321, -34.609164999964719 ], [ -58.387270000310252, -34.609272000402427 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.387270000310252, -34.609765999801027 ], [ -58.387420000032932, -34.609958999707999 ], [ -58.387548999686544, -34.610022999961416 ], [ -58.387485000332447, -34.611161000279878 ], [ -58.387506000401572, -34.612427000205855 ], [ -58.387506000401572, -34.613500000224803 ], [ -58.387506000401572, -34.614636999597792 ], [ -58.387463000217224, -34.615537999778837 ], [ -58.387485000332447, -34.616697000166369 ], [ -58.389050999703841, -34.616740000350717 ], [ -58.390359999814109, -34.616803999704757 ], [ -58.391689999993446, -34.616911000142522 ], [ -58.393192000010743, -34.616954000326814 ], [ -58.394544000305302, -34.6170619999113 ], [ -58.394501000121011, -34.618242000367957 ], [ -58.394501000121011, -34.619508000293933 ], [ -58.395938999884891, -34.619550999578905 ], [ -58.397440999902187, -34.619571999648031 ], [ -58.398856999550844, -34.619636999947545 ], [ -58.399929999569792, -34.619679000085739 ], [ -58.400896000050295, -34.619722000270031 ], [ -58.402161999976272, -34.619764999555059 ], [ -58.403191999810929, -34.619829999854574 ], [ -58.404801000265934, -34.620193999553408 ], [ -58.406239000029814, -34.620538000128533 ], [ -58.407569000209151, -34.620859999689173 ], [ -58.409199999880059, -34.62124600040255 ], [ -58.409993999623339, -34.621418000240453 ], [ -58.410766000150772, -34.621545999847967 ], [ -58.412396999821624, -34.621868000307927 ], [ -58.413683999816669, -34.622061000214956 ], [ -58.414928999673577, -34.62227600023715 ], [ -58.414800000019966, -34.623585000347418 ], [ -58.414756999835618, -34.624356999975532 ], [ -58.414692999582201, -34.625258000156521 ], [ -58.414607000112937, -34.62678200028904 ], [ -58.414586000043812, -34.627768999939349 ], [ -58.41454299985952, -34.628819999843074 ], [ -58.414520999744298, -34.629828999608605 ], [ -58.414520999744298, -34.630387000159885 ], [ -58.414499999675229, -34.631009000065262 ], [ -58.414499999675229, -34.631653000085862 ], [ -58.414477999560006, -34.632361000359822 ], [ -58.414477999560006, -34.633648000354867 ], [ -58.414178000114589, -34.634700000304747 ], [ -58.413813000369657, -34.636029999584764 ], [ -58.413534000093989, -34.637082000433907 ], [ -58.414607000112937, -34.637102999603712 ], [ -58.415658000016663, -34.637124999718935 ], [ -58.416194999599497, -34.637511000432255 ], [ -58.417310999802737, -34.638305000175592 ], [ -58.417675000400891, -34.638647999805301 ], [ -58.418554999613491, -34.639312999894969 ], [ -58.419328000187022, -34.640021000168986 ], [ -58.419842999654691, -34.640450000167334 ], [ -58.420014000345816, -34.640600999936169 ], [ -58.420571999997776, -34.641029999934517 ], [ -58.421794999739404, -34.641995000368922 ], [ -58.422160000383656, -34.642295999860437 ], [ -58.422824999574004, -34.642789000112202 ], [ -58.423598000147535, -34.643455000248025 ], [ -58.423662000400952, -34.643626000039831 ], [ -58.424456000144232, -34.64427000006043 ], [ -58.425100000164832, -34.644785000427362 ], [ -58.425421999725472, -34.644848999781459 ], [ -58.425442999794541, -34.645020999619419 ], [ -58.425744000185432, -34.645364000148447 ], [ -58.426043999630849, -34.645643000424059 ], [ -58.426366000090809, -34.644891999965807 ], [ -58.426987999996186, -34.644935000150099 ], [ -58.427588999832437, -34.644957000265322 ], [ -58.428297000106454, -34.64497800033439 ], [ -58.428984000311345, -34.64497800033439 ], [ -58.429476999663791, -34.645020999619419 ], [ -58.429649000401014, -34.645020999619419 ], [ -58.430421000029071, -34.64506399980371 ], [ -58.431043999980602, -34.645084999872779 ], [ -58.431559000347534, -34.645128000057127 ], [ -58.432094999884271, -34.645171000241419 ], [ -58.432610000251259, -34.645193000356642 ], [ -58.433468000247956, -34.645557000055476 ], [ -58.434949000196184, -34.646223000191242 ], [ -58.437437999863789, -34.647359999564287 ], [ -58.439540999717337, -34.648239999676207 ], [ -58.440700000104869, -34.648711999858847 ], [ -58.442030000284262, -34.649311999649001 ], [ -58.443016999934571, -34.649784999877795 ], [ -58.443296000210182, -34.650213999876144 ], [ -58.443424999863794, -34.650620999759269 ], [ -58.443124000372279, -34.650620999759269 ], [ -58.442930999565931, -34.65068600005884 ], [ -58.442867000211834, -34.6507500003122 ], [ -58.442867000211834, -34.650856999850646 ], [ -58.442910000396182, -34.65092200015016 ], [ -58.443145999588182, -34.651028999688549 ], [ -58.443296000210182, -34.651201000425772 ], [ -58.443274000094959, -34.651500999871189 ], [ -58.443209999841599, -34.651650999593926 ], [ -58.443038000003639, -34.651845000446372 ], [ -58.441643999570886, -34.652959999704194 ], [ -58.440464000013549, -34.653839999816114 ], [ -58.439518999602114, -34.654633999559394 ], [ -58.438446999629264, -34.655471000386342 ], [ -58.438038999700041, -34.655792999946925 ], [ -58.438811000227417, -34.656350999598885 ], [ -58.440591999621063, -34.657745000031696 ], [ -58.441343000079371, -34.658324999798879 ], [ -58.441622000354982, -34.658538999774976 ], [ -58.442824000027542, -34.659526000324604 ], [ -58.443574999586531, -34.660127000160912 ], [ -58.444121999630511, -34.660546999744213 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 208.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.287045005896658, -34.602491910174479 ], [ -59.288838996372235, -34.603613154221712 ], [ -59.282717003874318, -34.611671161441194 ], [ -59.281416360779524, -34.612627956361507 ], [ -59.280265216891024, -34.613091403901031 ], [ -59.266047842372053, -34.614676095487795 ], [ -59.258587831977771, -34.61820427675643 ], [ -59.257556287454307, -34.619945942509794 ], [ -59.257107789835409, -34.621029811755456 ], [ -59.253026461503467, -34.626299658777469 ], [ -59.250440125234505, -34.630709885363288 ], [ -59.249431005591994, -34.632885098814931 ], [ -59.228949614329139, -34.626531382547242 ], [ -59.204820442432592, -34.619086322073585 ], [ -59.171257870618632, -34.608277529458221 ], [ -59.17640064331529, -34.601789263904877 ], [ -59.177110764545198, -34.601045505353547 ], [ -59.177252788791179, -34.601034292913077 ], [ -59.17741350043795, -34.601038030393234 ], [ -59.177585424525191, -34.601038030393234 ], [ -59.177738661211649, -34.600989443151185 ], [ -59.17788816041795, -34.600884793706776 ], [ -59.178007759782986, -34.60076519434174 ], [ -59.178108671747239, -34.600675494817956 ], [ -59.178209583711492, -34.600492358290246 ], [ -59.179323352798413, -34.599113228112145 ], [ -59.181984438670533, -34.595629896605402 ], [ -59.177409762957815, -34.590700160277699 ], [ -59.177671386568839, -34.590199337936603 ], [ -59.180519346448818, -34.58659640706481 ], [ -59.181756452380981, -34.585060302720088 ], [ -59.177779773493448, -34.582997213673181 ], [ -59.185389283094054, -34.573111578656693 ], [ -59.177443400279309, -34.568880751118456 ], [ -59.169744191154948, -34.578777598575407 ], [ -59.129633554105119, -34.558057008582466 ], [ -59.129521429700389, -34.558004683860254 ], [ -59.127551777657409, -34.560628394930795 ], [ -59.125114940594749, -34.564477999492972 ], [ -59.122805177857437, -34.5646424486199 ], [ -59.12225950575445, -34.564911547191237 ], [ -59.123201350754123, -34.568335079015462 ], [ -59.112751356233872, -34.571586686752454 ], [ -59.109895921393573, -34.564395774929508 ], [ -59.121063512104058, -34.561585189851101 ], [ -59.120091767263119, -34.559028753423398 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 207.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.378428999998334, -34.628888000280938 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389479999702189, -34.626739000104749 ], [ -58.39119699974168, -34.627039000449486 ], [ -58.391239999926029, -34.6263100001064 ], [ -58.391325000248514, -34.625237000087452 ], [ -58.391432999833057, -34.623992000230601 ], [ -58.391453999902126, -34.623498999978835 ], [ -58.391497000086417, -34.622726000304624 ], [ -58.391562000385989, -34.621545999847967 ], [ -58.391625999740029, -34.620215999668631 ], [ -58.391668999924377, -34.619100000364654 ], [ -58.391689999993446, -34.618112999815025 ], [ -58.391689999993446, -34.616911000142522 ], [ -58.391646999809154, -34.61570999961674 ], [ -58.391689999993446, -34.614936999942529 ], [ -58.391712000108669, -34.613821999785443 ], [ -58.39175500029296, -34.612684000366301 ], [ -58.391818999647057, -34.611503999909644 ], [ -58.391839999716183, -34.610345000421376 ], [ -58.391497000086417, -34.610281000167959 ], [ -58.391111000272417, -34.61026000009889 ], [ -58.390424000067526, -34.610237999983667 ], [ -58.389050999703841, -34.610109000330056 ], [ -58.387548999686544, -34.610022999961416 ], [ -58.387420000032932, -34.609958999707999 ], [ -58.387270000310252, -34.609765999801027 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.388256999960561, -34.609100999711302 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.394865999865942, -34.609401000056039 ], [ -58.396282000413919, -34.609508999640582 ], [ -58.397569999555799, -34.60961600007829 ], [ -58.399114999757387, -34.609722999616679 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.401818000300409, -34.609895000353958 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.404586000243683, -34.610066000145764 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.411731999731956, -34.610560000443627 ], [ -58.413105000095641, -34.610645999912947 ], [ -58.4144570003902, -34.610753000350655 ], [ -58.415765999601149, -34.610859999889044 ], [ -58.417288999687571, -34.610925000188558 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.419929000023274, -34.60970200044693 ], [ -58.420056999630788, -34.608520999944176 ], [ -58.419971000161468, -34.607255000018199 ], [ -58.419929000023274, -34.606676000297114 ], [ -58.419885999838982, -34.606011000207445 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.419649999747662, -34.604358999568149 ], [ -58.419521000094051, -34.603328999733492 ], [ -58.419328000187022, -34.602040999692349 ], [ -58.419177999564965, -34.600840000065887 ], [ -58.419092000095702, -34.600131999791927 ], [ -58.419005999727062, -34.599530999955618 ], [ -58.418963000442091, -34.598457999936727 ], [ -58.418941000326868, -34.597792999847002 ], [ -58.420186000183719, -34.597770999731836 ], [ -58.421794999739404, -34.59774999966271 ], [ -58.423405000240507, -34.597770999731836 ], [ -58.423576000032313, -34.597642000078224 ], [ -58.424820999889221, -34.597126999711236 ], [ -58.426216000368072, -34.59654799999015 ], [ -58.427052000249546, -34.596183000245219 ], [ -58.428104000199426, -34.595540000270773 ], [ -58.429177000218317, -34.594874000134951 ], [ -58.430078000399362, -34.594315999583671 ], [ -58.431236999887574, -34.593565000024682 ], [ -58.432353000090814, -34.592813999566374 ], [ -58.433468000247956, -34.592085000122609 ], [ -58.434369999575779, -34.591463000217232 ], [ -58.435335000010184, -34.590840000265757 ], [ -58.436215000122104, -34.590260999645352 ], [ -58.437138000418372, -34.589616999624809 ], [ -58.438059999769109, -34.588952000434404 ], [ -58.438146000137749, -34.588909000250112 ], [ -58.438446999629264, -34.588758999628112 ], [ -58.439412000063726, -34.588114999607512 ], [ -58.440162999622714, -34.587600000139844 ], [ -58.441408000378885, -34.586785000327438 ], [ -58.442459000282611, -34.586098000122547 ], [ -58.443511000232434, -34.58541199996381 ], [ -58.444626000389576, -34.584661000404822 ], [ -58.444798000227479, -34.584552999920959 ], [ -58.446449999967456, -34.583781000292902 ], [ -58.44580699999301, -34.582578999721022 ], [ -58.445184000041536, -34.581463000417102 ], [ -58.444583000205228, -34.580904999865822 ], [ -58.443617999770822, -34.580090000053417 ], [ -58.445505999602176, -34.57867400040476 ], [ -58.446300000244776, -34.57811599985348 ], [ -58.447243999710793, -34.577707999924201 ], [ -58.447974000099975, -34.577407999579464 ], [ -58.448896000350089, -34.576999999650241 ], [ -58.450054999838358, -34.576420999929155 ], [ -58.450978000134569, -34.575991999930807 ], [ -58.452673000058837, -34.57528399965679 ], [ -58.454175000076134, -34.574467999798287 ], [ -58.455098000372402, -34.573975000445898 ], [ -58.455956000369099, -34.573524000332327 ], [ -58.456878999765991, -34.57305200014963 ], [ -58.457929999669716, -34.572473000428602 ], [ -58.458809999781636, -34.572001000245905 ], [ -58.458230000014453, -34.570862999927442 ], [ -58.457929999669716, -34.570197999837774 ], [ -58.457866000315619, -34.570048000115094 ], [ -58.457736999762687, -34.569768999839425 ], [ -58.45743700031727, -34.569103999749757 ], [ -58.457630000224299, -34.568975000096145 ], [ -58.458939000334567, -34.567537000332266 ], [ -58.459667999778333, -34.566658000266443 ], [ -58.460504999705904, -34.56569199978594 ], [ -58.461320000417629, -34.564748000319923 ], [ -58.462136000276132, -34.563803999954587 ], [ -58.462930000019469, -34.562880999658375 ], [ -58.463744999831817, -34.561958000261484 ], [ -58.464538999575154, -34.561013999896147 ], [ -58.465161000379851, -34.560220000152867 ], [ -58.465826999616297, -34.559447999625434 ], [ -58.466512999775091, -34.558653999882154 ], [ -58.467177999864759, -34.557860000138874 ], [ -58.468080000091902, -34.556851000373342 ], [ -58.468938000088599, -34.555929000123228 ], [ -58.469688999647587, -34.555156000449017 ], [ -58.470719000381507, -34.554062000361 ], [ -58.471254999918244, -34.553354000086983 ], [ -58.471877999869776, -34.552560000343703 ], [ -58.47271399975125, -34.551444000140464 ], [ -58.473423000071364, -34.550477999659904 ], [ -58.474044999976741, -34.549706000031847 ], [ -58.474088000161032, -34.54964199977843 ], [ -58.473058000326432, -34.549426999756179 ], [ -58.473208000049112, -34.549148000379887 ], [ -58.473701000300878, -34.548139999761133 ], [ -58.474088000161032, -34.54732399990263 ], [ -58.474517000159381, -34.546509000090225 ], [ -58.474902999973438, -34.545672000162654 ], [ -58.475117999995689, -34.545264000233374 ], [ -58.475310999902661, -34.544835000235025 ], [ -58.475717999785843, -34.54402000042262 ], [ -58.476104999645997, -34.543203999664797 ], [ -58.476491000359317, -34.542388999852392 ], [ -58.47563300036262, -34.542089000406975 ], [ -58.474645999812992, -34.541766999947072 ], [ -58.4743670004367, -34.541680999578432 ], [ -58.474796000435049, -34.540843999650804 ], [ -58.475031999627049, -34.540414999652455 ], [ -58.475139000064758, -34.540028999838455 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476608000358908, -34.537454999848308 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 204.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.389960654999925, -34.706310269999904 ], [ -58.389672368999925, -34.705488809999906 ], [ -58.389329817999908, -34.704388597999923 ], [ -58.388743851999948, -34.703908529999921 ], [ -58.388413820999915, -34.703638142999921 ], [ -58.387062809999918, -34.704620227999953 ], [ -58.386058115999901, -34.705349130999934 ], [ -58.385217607999948, -34.705976459999931 ], [ -58.38504579399995, -34.706104696999944 ], [ -58.383993080999915, -34.705104244999916 ], [ -58.383974076999948, -34.705089163999958 ], [ -58.383031449999919, -34.704346487999942 ], [ -58.382505468999909, -34.703923766999935 ], [ -58.382156269999939, -34.703643122999949 ], [ -58.382115682999938, -34.703609932999939 ], [ -58.381319945999905, -34.704323557999942 ], [ -58.380642460999923, -34.704909648999944 ], [ -58.379854560999945, -34.705637124999953 ], [ -58.379839334999929, -34.70565242999993 ], [ -58.378990590999933, -34.706368901999952 ], [ -58.378967749999902, -34.706391861999919 ], [ -58.378088530999946, -34.70716555599995 ], [ -58.37807711499994, -34.707173233999924 ], [ -58.377117985999917, -34.707993073999944 ], [ -58.377114176999953, -34.708000700999946 ], [ -58.376097972999901, -34.708851328999913 ], [ -58.376063716999909, -34.708881965999922 ], [ -58.375100832999919, -34.70964480799995 ], [ -58.375078002999942, -34.709656361999919 ], [ -58.374290242999905, -34.710212769999941 ], [ -58.374267410999948, -34.710228125999947 ], [ -58.373352162999936, -34.710899215999916 ], [ -58.373344497999938, -34.710910569999953 ], [ -58.372402435999902, -34.711573330999954 ], [ -58.37237562699994, -34.711595960999944 ], [ -58.371422095999947, -34.712239634999946 ], [ -58.371402947999911, -34.712254712999936 ], [ -58.369932398999936, -34.713305494999929 ], [ -58.368796464999946, -34.714142356999957 ], [ -58.367650763999904, -34.714971617999936 ], [ -58.36646266899993, -34.715785943999947 ], [ -58.366439605999915, -34.715804948999903 ], [ -58.365339065999933, -34.716590938999957 ], [ -58.365316486999916, -34.716610001999925 ], [ -58.364207789999909, -34.717423946999929 ], [ -58.364177283999936, -34.717443115999913 ], [ -58.36305578799994, -34.718269364999912 ], [ -58.363025282999899, -34.718288533999953 ], [ -58.361903859999927, -34.719092123999928 ], [ -58.360854059999951, -34.719863131999944 ], [ -58.360501527999929, -34.720122042999947 ], [ -58.36049255599994, -34.720128632999945 ], [ -58.360336065999945, -34.720243563999929 ], [ -58.359448021999924, -34.719477778999931 ], [ -58.358878980999918, -34.718995886999949 ], [ -58.358553886999914, -34.718720580999957 ], [ -58.357748834999938, -34.719351554999946 ], [ -58.356918237999935, -34.719992949999948 ], [ -58.356902888999912, -34.720000581999955 ], [ -58.356104450999908, -34.720644533999916 ], [ -58.356092936999914, -34.72065215799995 ], [ -58.355006681999953, -34.721502499999929 ], [ -58.354082372999926, -34.722281935999945 ], [ -58.353936319999946, -34.722560987999941 ], [ -58.353472495999938, -34.723447181999916 ], [ -58.353954314999953, -34.723834990999933 ], [ -58.354488372999924, -34.724300384999935 ], [ -58.354827880999949, -34.724594115999935 ], [ -58.354589930999907, -34.724783222999918 ], [ -58.354103087999931, -34.725170134999928 ], [ -58.353252410999914, -34.725822448999907 ], [ -58.352453252999908, -34.726440603999947 ], [ -58.352350762999947, -34.726486793999925 ], [ -58.352237713999955, -34.726840000999914 ], [ -58.352121102999945, -34.727204334999954 ], [ -58.351939903999948, -34.72715700099991 ], [ -58.351225475999911, -34.726982026999906 ], [ -58.350991432999933, -34.727552387999935 ], [ -58.350843814999905, -34.727938920999918 ], [ -58.350455262999901, -34.728969685999914 ], [ -58.350260938999952, -34.729492651999919 ], [ -58.350055081999926, -34.730026972999951 ], [ -58.349844879999921, -34.730605993999916 ], [ -58.349655841999947, -34.731126717999928 ], [ -58.348993693999944, -34.730529258999923 ], [ -58.348123890999943, -34.729734920999931 ], [ -58.347234818999937, -34.728967090999902 ], [ -58.346859813999913, -34.728627769999946 ], [ -58.346440938999933, -34.728248752999946 ], [ -58.346397547999914, -34.728464832999919 ], [ -58.3459762949999, -34.728627070999949 ], [ -58.345362228999932, -34.729073357999937 ], [ -58.345021809999935, -34.728774012999907 ], [ -58.344544465999945, -34.72835426499995 ], [ -58.344026137999947, -34.727875518999952 ], [ -58.343525707999902, -34.727418514999954 ], [ -58.343923075999953, -34.727095388999942 ], [ -58.344255203999921, -34.726825313999939 ], [ -58.343373935999921, -34.726316560999919 ], [ -58.342983842999899, -34.726092642999902 ], [ -58.342873957999927, -34.726073321999934 ], [ -58.343512027999907, -34.725696800999913 ], [ -58.344503707999934, -34.725111616999925 ], [ -58.343781604999947, -34.724419495999939 ], [ -58.343403667999951, -34.724048587999903 ], [ -58.343008229999953, -34.723689263999916 ], [ -58.342780852999908, -34.723482652999905 ], [ -58.343503703999943, -34.722932510999954 ], [ -58.343305543999918, -34.722749990999944 ], [ -58.342831151999917, -34.72231304099995 ], [ -58.342446717999906, -34.721986319999928 ], [ -58.342115729999932, -34.721705020999934 ], [ -58.342747928999927, -34.721244467999952 ], [ -58.343022965999921, -34.721044105999908 ], [ -58.343749518999914, -34.721682708999936 ], [ -58.344186170999933, -34.722055066999928 ], [ -58.344426648999899, -34.722260135999932 ], [ -58.343920975999936, -34.722628523999902 ], [ -58.343503703999943, -34.722932510999954 ], [ -58.342831151999917, -34.72231304099995 ], [ -58.342115729999932, -34.721705020999934 ], [ -58.341742448999923, -34.721966849999944 ], [ -58.34151118199992, -34.722129066999912 ], [ -58.341390579999938, -34.722186369999918 ], [ -58.340994653999928, -34.721813621999956 ], [ -58.340748840999936, -34.721582199999943 ], [ -58.340603574999932, -34.721436891999929 ], [ -58.340354084999944, -34.721200307999936 ], [ -58.340341784999907, -34.721188643999938 ], [ -58.340270978999911, -34.721121499999924 ], [ -58.340240653999899, -34.721092743999918 ], [ -58.339848718999917, -34.721429417999957 ], [ -58.339415810999924, -34.721808173999932 ], [ -58.339237455999921, -34.721963580999955 ], [ -58.338744026999905, -34.722393522999937 ], [ -58.338564942999938, -34.722554206999916 ], [ -58.338064939999924, -34.722997998999915 ], [ -58.337263920999931, -34.723690921999946 ], [ -58.336937637999938, -34.723971884999912 ], [ -58.336573427999951, -34.724275272999932 ], [ -58.336354427999936, -34.72446659499991 ], [ -58.335725501999946, -34.725015609999957 ], [ -58.335485898999934, -34.725222422999934 ], [ -58.335135088999948, -34.725527232999923 ], [ -58.3348756769999, -34.725752629999931 ], [ -58.33500102499994, -34.725114594999923 ], [ -58.335043807999909, -34.724896825999906 ], [ -58.335138189999952, -34.72430109499993 ], [ -58.33580470499993, -34.724391790999903 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 203.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.582427625999912, -34.479536724999946 ], [ -58.582072379999943, -34.479831096999931 ], [ -58.581961922999938, -34.479922740999939 ], [ -58.581234425999924, -34.480529839999917 ], [ -58.581009713999947, -34.48070939999991 ], [ -58.580790364999928, -34.480906649999952 ], [ -58.580636402999914, -34.481045099999903 ], [ -58.581107473999907, -34.481880921999903 ], [ -58.581567039999925, -34.482689791999917 ], [ -58.58097409599992, -34.484653374999937 ], [ -58.580782763999935, -34.485286984999902 ], [ -58.580844153999919, -34.485751154999946 ], [ -58.581024320999916, -34.486174530999904 ], [ -58.581150807999904, -34.486401952999927 ], [ -58.581296451999947, -34.48661810099992 ], [ -58.581465088999948, -34.486842167999953 ], [ -58.581610735999902, -34.487077465999903 ], [ -58.581660590999945, -34.487311682999916 ], [ -58.58166445899991, -34.487518567999928 ], [ -58.581757564999918, -34.487996792999922 ], [ -58.581814872999928, -34.488291149999952 ], [ -58.581955936999918, -34.489015708999943 ], [ -58.582170308999935, -34.489597150999941 ], [ -58.582515583999907, -34.490217109999946 ], [ -58.582552002999932, -34.49035286499992 ], [ -58.582515583999907, -34.490217109999946 ], [ -58.582565422999949, -34.490367057999947 ], [ -58.582547313999953, -34.490556331999926 ], [ -58.5824200859999, -34.491886075999957 ], [ -58.58238267899992, -34.492380763999904 ], [ -58.582507407999913, -34.49281891499993 ], [ -58.582725683999911, -34.49358567999991 ], [ -58.582482052999922, -34.494860611999911 ], [ -58.582193200999939, -34.496365098999945 ], [ -58.58217848299995, -34.496460151999941 ], [ -58.582305254999937, -34.497003419999942 ], [ -58.582431573999941, -34.497544745999903 ], [ -58.5825016739999, -34.49784750099991 ], [ -58.582653370999935, -34.498468503999902 ], [ -58.582890591999899, -34.499430718999918 ], [ -58.582971442999906, -34.49960782699992 ], [ -58.582591733999948, -34.499891738999906 ], [ -58.582215594999923, -34.500172982999914 ], [ -58.581687428999942, -34.500639775999957 ], [ -58.581109775999948, -34.501113161999911 ], [ -58.580416465999917, -34.501719843999922 ], [ -58.579925609999918, -34.502148485999953 ], [ -58.579605454999921, -34.502425179999932 ], [ -58.578918046999945, -34.503024448999952 ], [ -58.578169575999937, -34.503621616999908 ], [ -58.577497785999924, -34.504245232999949 ], [ -58.576966094999932, -34.504696828999954 ], [ -58.576745825999922, -34.504884353999955 ], [ -58.576392648999899, -34.505186683999909 ], [ -58.575655830999949, -34.505806691999908 ], [ -58.575344468999901, -34.506078386999945 ], [ -58.575245698999936, -34.50615876899991 ], [ -58.574366434999945, -34.506909459999918 ], [ -58.574343873999908, -34.506934027999932 ], [ -58.574160795999944, -34.507135407999954 ], [ -58.573958518999916, -34.507357905999925 ], [ -58.573923875999924, -34.507387584999947 ], [ -58.573288990999913, -34.507907805999935 ], [ -58.572234499999922, -34.508798374999913 ], [ -58.57124022499994, -34.509657279999942 ], [ -58.57070927299992, -34.510107421999919 ], [ -58.570212442999946, -34.510528634999957 ], [ -58.569367662999923, -34.50987743099995 ], [ -58.568939689999922, -34.509538068999916 ], [ -58.568560831999946, -34.509237652999957 ], [ -58.568021836999947, -34.508805032999931 ], [ -58.567751073999943, -34.508587706999947 ], [ -58.567062095999916, -34.50805003399995 ], [ -58.566659253999944, -34.508170682999946 ], [ -58.566482594999911, -34.508223590999933 ], [ -58.565842498999928, -34.508534322999935 ], [ -58.566042427999946, -34.508925897999916 ], [ -58.566080849999935, -34.508998831999918 ], [ -58.566296407999914, -34.509543059999942 ], [ -58.566401699999915, -34.509808893999946 ], [ -58.566792986999928, -34.510790340999904 ], [ -58.567084523999938, -34.511422014999937 ], [ -58.567230345999917, -34.511741704999906 ], [ -58.567630366999936, -34.512769617999936 ], [ -58.567732817999911, -34.513133012999958 ], [ -58.567888744999948, -34.513686089999908 ], [ -58.568451713999934, -34.513176073999944 ], [ -58.568856611999934, -34.512809260999916 ], [ -58.569286780999903, -34.513150239999902 ], [ -58.569521426999927, -34.51333623599993 ], [ -58.568831392999925, -34.513968296999906 ], [ -58.568700403999912, -34.514088280999943 ], [ -58.568568357999936, -34.514205216999926 ], [ -58.568077071999937, -34.514649485999939 ], [ -58.567559618999951, -34.515100877999942 ], [ -58.56651895899995, -34.515972017999957 ], [ -58.565498024999954, -34.516822804999947 ], [ -58.564944652999941, -34.517279133999921 ], [ -58.564455892999945, -34.517688929999906 ], [ -58.563397877999932, -34.518590066999934 ], [ -58.562483558999929, -34.519389869999941 ], [ -58.561207545999935, -34.520448448999957 ], [ -58.560712207999927, -34.520905563999918 ], [ -58.560023789999946, -34.521535394999944 ], [ -58.559967161999907, -34.52158720299991 ], [ -58.559066866999899, -34.522342548999916 ], [ -58.5580448689999, -34.523197381999921 ], [ -58.557025874999908, -34.524102038999956 ], [ -58.556712216999927, -34.524360689999924 ], [ -58.556254297999942, -34.524746988999937 ], [ -58.555344032999926, -34.525498972999912 ], [ -58.554849718999947, -34.525907332999907 ], [ -58.554389698999955, -34.525526386999957 ], [ -58.554151671999932, -34.525329275999923 ], [ -58.553523087999906, -34.524745078999956 ], [ -58.552398877999906, -34.523755319999907 ], [ -58.551762869999948, -34.523231810999903 ], [ -58.551170144999901, -34.522741989999929 ], [ -58.550627118999955, -34.522289576999924 ], [ -58.549938767999947, -34.521713786999953 ], [ -58.549541080999916, -34.521388473999934 ], [ -58.54944609599994, -34.521308993999924 ], [ -58.549328534999916, -34.521210621999955 ], [ -58.549116596999909, -34.521033279999926 ], [ -58.548673944999905, -34.521367981999902 ], [ -58.548309571999937, -34.521643493999932 ], [ -58.548031070999912, -34.521853505999957 ], [ -58.547004789999903, -34.522621125999933 ], [ -58.545944882999947, -34.523414020999951 ], [ -58.545935648999944, -34.52342092899994 ], [ -58.545932727999912, -34.523423113999911 ], [ -58.545748450999952, -34.523271637999926 ], [ -58.545520938999914, -34.523084623999921 ], [ -58.545082125999954, -34.522723919999919 ], [ -58.544166584999914, -34.521942624999951 ], [ -58.544156517999909, -34.521934033999912 ], [ -58.543280087999904, -34.521192772999939 ], [ -58.543179812999938, -34.521108221999953 ], [ -58.542965134999918, -34.520927207999932 ], [ -58.542418753999925, -34.520466506999924 ], [ -58.541581398999938, -34.519751949999943 ], [ -58.541576359999908, -34.519747649999942 ], [ -58.541443993999906, -34.519636920999915 ], [ -58.540654544999938, -34.518976515999952 ], [ -58.540076607999936, -34.518478514999913 ], [ -58.539929315999927, -34.518347425999934 ], [ -58.539435745999924, -34.517929943999945 ], [ -58.539000839999915, -34.517550494999909 ], [ -58.53869863299991, -34.517286823999939 ], [ -58.538524079999945, -34.51742837799992 ], [ -58.537801373999912, -34.518008664999911 ], [ -58.537446867999904, -34.518284318999918 ], [ -58.537286493999943, -34.518409021999958 ], [ -58.537090254999953, -34.518561612999918 ], [ -58.537090164999938, -34.518561682999916 ], [ -58.537070858999925, -34.518576694999922 ], [ -58.536344730999929, -34.518054494999944 ], [ -58.535765853999919, -34.517633309999951 ], [ -58.535626711999953, -34.517535509999902 ], [ -58.535006351999925, -34.517091703999938 ], [ -58.534547845999953, -34.516753286999915 ], [ -58.533852337999917, -34.516253086999939 ], [ -58.533592957999929, -34.51606505299992 ], [ -58.533437471999946, -34.515952234999929 ], [ -58.533250881999948, -34.515816848999918 ], [ -58.532981815999904, -34.515620789999957 ], [ -58.532712431999926, -34.515424497999902 ], [ -58.532461903999945, -34.515241945999946 ], [ -58.532296127999928, -34.515121149999914 ], [ -58.532100597999943, -34.514981983999917 ], [ -58.532109636999905, -34.514974073999952 ], [ -58.532571114999939, -34.514570242999923 ], [ -58.53282497899994, -34.514348091999921 ], [ -58.532460275999938, -34.514060922999931 ], [ -58.532068871999911, -34.513752729999908 ], [ -58.531349098999954, -34.513188159999913 ], [ -58.531341454999904, -34.513182163999943 ], [ -58.531234766999944, -34.513098480999929 ], [ -58.531217726999955, -34.513085115999957 ], [ -58.531217487999925, -34.513084927999955 ], [ -58.531214690999946, -34.513083574999939 ], [ -58.531213969999953, -34.513083225999935 ], [ -58.530391348999899, -34.512685249999947 ], [ -58.530198288999941, -34.512588355999924 ], [ -58.530182865999905, -34.512580615999923 ], [ -58.530136837999919, -34.512557515999902 ], [ -58.529542668999909, -34.512273880999942 ], [ -58.529416415999947, -34.512213612999915 ], [ -58.529044486999908, -34.512049176999938 ], [ -58.528618545999905, -34.511862121999911 ], [ -58.528414168999916, -34.511772367999924 ], [ -58.527901318999909, -34.511555401999942 ], [ -58.527652209999928, -34.511409866999941 ], [ -58.526828338999906, -34.511022487999924 ], [ -58.526243106999914, -34.510747312999911 ], [ -58.52598108299992, -34.510682709999912 ], [ -58.525923488999922, -34.510656033999908 ], [ -58.525727429999904, -34.510565226999915 ], [ -58.525649944999941, -34.510529337999913 ], [ -58.525618077999923, -34.510514578999903 ], [ -58.52560541999992, -34.510508715999947 ], [ -58.525527669999917, -34.510472704999927 ], [ -58.525452601999916, -34.510437935999903 ], [ -58.525256550999927, -34.510347131999936 ], [ -58.525021040999945, -34.510171663999927 ], [ -58.524649631999921, -34.509996707999903 ], [ -58.524116165999942, -34.509745408999947 ], [ -58.523574667999924, -34.509492798999929 ], [ -58.522486421999929, -34.50899095199992 ], [ -58.522141319999946, -34.508827444999952 ], [ -58.521381116999919, -34.50854251599992 ], [ -58.520296369999926, -34.508054050999931 ], [ -58.519918881999899, -34.507894001999944 ], [ -58.519202280999934, -34.507564658999911 ], [ -58.518880343999911, -34.507420732999947 ], [ -58.518107094999948, -34.507080605999931 ], [ -58.517357403999938, -34.506750084999908 ], [ -58.517014545999928, -34.506601897999928 ], [ -58.515783404999922, -34.506069709999906 ], [ -58.514616334999914, -34.505541379999954 ], [ -58.5144548479999, -34.505470105999905 ], [ -58.513333592999913, -34.504941415999951 ], [ -58.512232579999932, -34.504442849999919 ], [ -58.511152187999926, -34.503937022999935 ], [ -58.51042876799994, -34.503606235999939 ], [ -58.510147046999919, -34.503474785999913 ], [ -58.509827487999928, -34.503329118999943 ], [ -58.509187586999928, -34.503035005999948 ], [ -58.508625843999937, -34.502777055999957 ], [ -58.508150199999932, -34.502556292999941 ], [ -58.508031528999936, -34.502501212999903 ], [ -58.507183948999909, -34.502115601999947 ], [ -58.506782839999914, -34.501933239999914 ], [ -58.50621441699991, -34.501686626999913 ], [ -58.506161512999938, -34.501663673999929 ], [ -58.505535370999951, -34.501369431999933 ], [ -58.505245632999902, -34.501233351999929 ], [ -58.504977827999937, -34.501107586999922 ], [ -58.504296038999939, -34.500793514999941 ], [ -58.503599932999919, -34.500482852999937 ], [ -58.503328520999901, -34.50035648699992 ], [ -58.502467072999934, -34.499955405999913 ], [ -58.502364954999905, -34.499909936999927 ], [ -58.501396218999901, -34.49946829299995 ], [ -58.501250244999937, -34.499402096999916 ], [ -58.50044750099994, -34.499036678999914 ], [ -58.500375289999909, -34.499003400999925 ], [ -58.499485632999949, -34.498587151999914 ], [ -58.498634116999938, -34.498197229999903 ], [ -58.497949000999938, -34.497894040999938 ], [ -58.497618916999954, -34.497747965999906 ], [ -58.497687431999907, -34.497375725999916 ], [ -58.497729277999952, -34.497148380999931 ], [ -58.497776264999914, -34.496833507999952 ], [ -58.497895697999923, -34.496032223999919 ], [ -58.498069371999918, -34.494865777999905 ], [ -58.498243264999928, -34.49404487399994 ], [ -58.498747631999947, -34.492844715999922 ], [ -58.498822337999911, -34.492817678999927 ], [ -58.499204480999936, -34.491962630999922 ], [ -58.499700538999946, -34.491106995999928 ], [ -58.500174543999947, -34.490269536999904 ], [ -58.500577018999934, -34.489540059999911 ], [ -58.500993363999953, -34.488734757999907 ], [ -58.501407874999927, -34.488019900999916 ], [ -58.501745616999926, -34.487329092999914 ], [ -58.502030576999914, -34.486727372999951 ], [ -58.502077190999955, -34.486654440999928 ], [ -58.50279188199994, -34.485518617999958 ], [ -58.503312602999927, -34.484880176999923 ], [ -58.503858438999941, -34.484156852999945 ], [ -58.503858793999939, -34.484156382999913 ], [ -58.503863820999925, -34.484149730999945 ], [ -58.504203951999955, -34.483699653999906 ], [ -58.50435944499992, -34.483498357999906 ], [ -58.504852471999925, -34.482859628999904 ], [ -58.505739754999922, -34.481765474999918 ], [ -58.506288477999931, -34.481091610999954 ], [ -58.506417939999949, -34.480924844999947 ], [ -58.506601729999943, -34.480688096999927 ], [ -58.506764053999916, -34.480490167999903 ], [ -58.507054893999907, -34.480185754999923 ], [ -58.507270193999943, -34.479961251999953 ], [ -58.507697040999915, -34.479523677999907 ], [ -58.508403225999928, -34.478781458999947 ], [ -58.509103998999933, -34.478048019999903 ], [ -58.509802420999904, -34.477310959999954 ], [ -58.509842422999952, -34.477268744999947 ], [ -58.510464137999918, -34.476634610999952 ], [ -58.511142244999917, -34.475908824999919 ], [ -58.511952305999955, -34.475068417999921 ], [ -58.51265720899994, -34.474368135999953 ], [ -58.513554363999901, -34.473467002999939 ], [ -58.514370179999901, -34.472688865999942 ], [ -58.514438469999902, -34.472619235999957 ], [ -58.515007297999944, -34.471943350999936 ], [ -58.515457700999946, -34.471455132999949 ], [ -58.515931132999924, -34.471004783999945 ], [ -58.516256833999932, -34.470682333999946 ], [ -58.516676721999943, -34.470140760999925 ], [ -58.516992986999924, -34.469652101999941 ], [ -58.517825291999941, -34.468668425999908 ], [ -58.517938785999945, -34.468534460999933 ], [ -58.518404155999917, -34.467979501999935 ], [ -58.519009577999952, -34.46724854699994 ], [ -58.519928965999952, -34.466682359999936 ], [ -58.52070905599993, -34.466185713999948 ], [ -58.521504205999918, -34.46568134599994 ], [ -58.52178041499991, -34.465506952999931 ], [ -58.522293090999938, -34.465183257999911 ], [ -58.522296213999937, -34.465180777999933 ], [ -58.522327638999911, -34.465155822999918 ], [ -58.524497985999915, -34.463432311999952 ], [ -58.525243828999919, -34.462836155999923 ], [ -58.525346028999934, -34.462755587999936 ], [ -58.525970564999909, -34.462218701999916 ], [ -58.526526962999924, -34.461724082999922 ], [ -58.527355903999933, -34.461033691999944 ], [ -58.528112920999945, -34.460389396999915 ], [ -58.528218902999924, -34.460297364999917 ], [ -58.529130322999947, -34.45967158499991 ], [ -58.529633618999924, -34.459265477999907 ], [ -58.5302800689999, -34.45896513799994 ], [ -58.531367576999912, -34.458368621999909 ], [ -58.532462258999942, -34.457806173999927 ], [ -58.532787145999919, -34.45763850599991 ], [ -58.533235447999914, -34.457407145999923 ], [ -58.53342317399995, -34.457296985999903 ], [ -58.533621681999932, -34.457236032999958 ], [ -58.533861778999949, -34.457193939999911 ], [ -58.534120840999947, -34.457155597999929 ], [ -58.534650459999909, -34.457097873999942 ], [ -58.535004263999951, -34.457059311999956 ], [ -58.536255248999908, -34.456886855999926 ], [ -58.536271590999945, -34.456884602999935 ], [ -58.536307855999951, -34.456879603999937 ], [ -58.53686240199994, -34.457105282999919 ], [ -58.53729110799992, -34.457279749999941 ], [ -58.537800116999904, -34.457531967999955 ], [ -58.538231481999901, -34.457745712999952 ], [ -58.538285615999939, -34.457773058999919 ], [ -58.53865942199991, -34.457961890999911 ], [ -58.539178975999903, -34.458224347999931 ], [ -58.539255460999925, -34.458266386999924 ], [ -58.540076512999917, -34.458717671999921 ], [ -58.541046649999942, -34.459203482999953 ], [ -58.542024786999946, -34.459662271999946 ], [ -58.542627940999921, -34.459934338999915 ], [ -58.542987917999938, -34.460096714999906 ], [ -58.543628921999925, -34.460384741999917 ], [ -58.54393114699991, -34.460520542999916 ], [ -58.544354646999921, -34.460734321999951 ], [ -58.544378164999955, -34.46074619399991 ], [ -58.544855143999939, -34.460986968999919 ], [ -58.54519909399994, -34.461143405999906 ], [ -58.545444997999937, -34.461255249999908 ], [ -58.545648830999937, -34.461347958999909 ], [ -58.54605005499991, -34.461530204999917 ], [ -58.547082837999938, -34.461999319999904 ], [ -58.548006801999918, -34.462492912999949 ], [ -58.548690135999948, -34.462819546999924 ], [ -58.548965080999949, -34.462950970999941 ], [ -58.549086812999917, -34.46301584999992 ], [ -58.549821236999946, -34.463407271999927 ], [ -58.550439221999909, -34.463685111999951 ], [ -58.550827737999953, -34.463859784999954 ], [ -58.551315122999938, -34.464104686999917 ], [ -58.55170910399994, -34.464302653999937 ], [ -58.552730645999929, -34.464765794999948 ], [ -58.553651654999953, -34.465149603999919 ], [ -58.554879422999932, -34.465764877999902 ], [ -58.555950299999949, -34.466238259999955 ], [ -58.556525873999931, -34.466492692999907 ], [ -58.557467876999908, -34.46697865099992 ], [ -58.558506014999921, -34.467475716999957 ], [ -58.559481355999935, -34.467958687999953 ], [ -58.560133827999948, -34.468252152999924 ], [ -58.56039470099995, -34.468369485999915 ], [ -58.561207839999952, -34.468779341999948 ], [ -58.561354414999926, -34.46885322199995 ], [ -58.562264393999953, -34.46929513799995 ], [ -58.563212552999914, -34.469763549999925 ], [ -58.564111082999943, -34.470197904999907 ], [ -58.564185899999927, -34.470231350999939 ], [ -58.565085623999948, -34.470633562999922 ], [ -58.566248727999948, -34.471205993999945 ], [ -58.566732645999934, -34.471431265999911 ], [ -58.567130896999913, -34.471616657999903 ], [ -58.56823552499992, -34.472149066999918 ], [ -58.568477264999899, -34.472265580999931 ], [ -58.568869012999926, -34.472458064999955 ], [ -58.569869315999938, -34.472956384999918 ], [ -58.570778329999939, -34.473405560999936 ], [ -58.571716701999947, -34.473879238999928 ], [ -58.572643551999931, -34.474346865999905 ], [ -58.57302296499995, -34.474538566999911 ], [ -58.573607800999923, -34.474834057999942 ], [ -58.573894, -34.474963111999955 ], [ -58.574884632999954, -34.475409814999921 ], [ -58.575021987999946, -34.475504248999925 ], [ -58.575056237999945, -34.475519167999948 ], [ -58.575704597999902, -34.475623077999956 ], [ -58.575891122999906, -34.475652971999921 ], [ -58.576332934999925, -34.475724351999929 ], [ -58.576712642999951, -34.475785697999925 ], [ -58.577093690999902, -34.475852666999913 ], [ -58.577329538999948, -34.475894116999939 ], [ -58.577526182999918, -34.47592637899993 ], [ -58.577886247999913, -34.475982367999904 ], [ -58.577942617999952, -34.475991132999923 ], [ -58.578436018999923, -34.476918303999923 ], [ -58.578627874999938, -34.477278828999943 ], [ -58.578678324999942, -34.477373630999921 ], [ -58.578830287999949, -34.47739737899991 ], [ -58.578859550999937, -34.477401951999923 ], [ -58.579478133999942, -34.477651936999905 ], [ -58.579590411999902, -34.477697310999929 ], [ -58.579640669999947, -34.477717621999943 ], [ -58.579772566999907, -34.477770924999902 ], [ -58.580039113999931, -34.477905886999906 ], [ -58.580077349999954, -34.477925246999916 ], [ -58.580192320999913, -34.477983460999951 ], [ -58.580457262999914, -34.478105881999909 ], [ -58.580549732999941, -34.478148608999902 ], [ -58.580749142999935, -34.478241645999958 ], [ -58.58128552799991, -34.478491903999952 ], [ -58.581408529999919, -34.478548598999907 ], [ -58.581497970999919, -34.478589824999915 ], [ -58.58200781499994, -34.478824825999936 ], [ -58.582337860999928, -34.478982569999914 ], [ -58.582580676999953, -34.479098622999913 ], [ -58.582592722999948, -34.47910437999991 ], [ -58.582818914999905, -34.479212486999927 ], [ -58.582808486999909, -34.479221127999949 ], [ -58.582604811999943, -34.479389900999934 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 202.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.336831, -34.676648 ], [ -58.336801, -34.675516 ], [ -58.336797, -34.674288 ], [ -58.336741, -34.673126 ], [ -58.336727, -34.67212 ], [ -58.336722, -34.671767 ], [ -58.336854, -34.671616 ], [ -58.337211, -34.671356 ], [ -58.337425, -34.671197 ], [ -58.33772, -34.671005 ], [ -58.337914, -34.670871 ], [ -58.338545, -34.67051 ], [ -58.339554, -34.669941 ], [ -58.340121, -34.669747 ], [ -58.340597, -34.669588 ], [ -58.341182, -34.669514 ], [ -58.341966, -34.669498 ], [ -58.342641, -34.669477 ], [ -58.343352, -34.669489 ], [ -58.344066, -34.669444 ], [ -58.34404, -34.668275 ], [ -58.344026, -34.667984 ], [ -58.344038, -34.667616 ], [ -58.344001, -34.667132 ], [ -58.343989, -34.666496 ], [ -58.343984, -34.665911 ], [ -58.343932, -34.664028 ], [ -58.3439, -34.663573 ], [ -58.343861, -34.662419 ], [ -58.343841, -34.661836 ], [ -58.343841, -34.66126 ], [ -58.343809, -34.660671 ], [ -58.343784, -34.660098 ], [ -58.345212, -34.660038 ], [ -58.346618, -34.660026 ], [ -58.346687, -34.661184 ], [ -58.346962, -34.661175 ], [ -58.34809, -34.661135 ], [ -58.348365, -34.66117 ], [ -58.348752, -34.6614 ], [ -58.35011, -34.662146 ], [ -58.350206, -34.662219 ], [ -58.351488, -34.662904 ], [ -58.352797, -34.663651 ], [ -58.353917, -34.66429 ], [ -58.354629, -34.663452 ], [ -58.355367, -34.662588 ], [ -58.356051, -34.661803 ], [ -58.356588, -34.661244 ], [ -58.357036, -34.661183 ], [ -58.357405, -34.660365 ], [ -58.357459, -34.660299 ], [ -58.357504, -34.660252 ], [ -58.357996, -34.659459 ], [ -58.35855, -34.658667 ], [ -58.359139, -34.657784 ], [ -58.359458, -34.657967 ], [ -58.360823, -34.658964 ], [ -58.361215999999899, -34.659218 ], [ -58.362169, -34.659914 ], [ -58.363343, -34.660733 ], [ -58.364283, -34.661397 ], [ -58.365342, -34.662128 ], [ -58.36626, -34.661442 ], [ -58.366867, -34.660949 ], [ -58.367045, -34.660821 ], [ -58.368742, -34.659588 ], [ -58.369834, -34.658858 ], [ -58.370418, -34.658569 ], [ -58.371115, -34.658246 ], [ -58.371977999999899, -34.657845 ], [ -58.372932, -34.658724 ], [ -58.373698, -34.659447 ], [ -58.373938, -34.659802 ], [ -58.374633, -34.660606 ], [ -58.375025, -34.661107 ], [ -58.375686, -34.66204 ], [ -58.375947, -34.662421 ], [ -58.376219, -34.662802 ], [ -58.376657, -34.66344 ], [ -58.377191, -34.664202 ], [ -58.377924, -34.665307 ], [ -58.378201, -34.665712 ], [ -58.378718, -34.666491 ], [ -58.379069, -34.667038 ], [ -58.379441, -34.667572 ], [ -58.379852, -34.668189 ], [ -58.380295, -34.668819 ], [ -58.380701, -34.669774 ], [ -58.380822, -34.670138 ], [ -58.380995, -34.670693 ], [ -58.381133, -34.671145 ], [ -58.381212, -34.671444 ], [ -58.381392, -34.672038 ], [ -58.38168, -34.673001 ], [ -58.381795, -34.67336 ], [ -58.382125, -34.674535 ], [ -58.382483, -34.675645 ], [ -58.382925, -34.676847 ], [ -58.383278, -34.677657 ], [ -58.383443, -34.678024 ], [ -58.383524, -34.678204 ], [ -58.383788, -34.678782 ], [ -58.384017, -34.679222 ], [ -58.384318, -34.679946 ], [ -58.384623, -34.680533 ], [ -58.385188, -34.681881 ], [ -58.385268, -34.682052 ], [ -58.385739, -34.68318 ], [ -58.385889, -34.683523 ], [ -58.38638, -34.68442 ], [ -58.386728, -34.685288 ], [ -58.386823, -34.685504 ], [ -58.387099, -34.686212 ], [ -58.387519, -34.687144 ], [ -58.387905, -34.68811 ], [ -58.388086, -34.688566 ], [ -58.388279, -34.689021 ], [ -58.388692, -34.689965 ], [ -58.389101, -34.690891 ], [ -58.389536, -34.69204 ], [ -58.390043, -34.693224 ], [ -58.390385, -34.693988 ], [ -58.390742, -34.694862 ], [ -58.391099, -34.695724 ], [ -58.391455, -34.696567 ], [ -58.39181, -34.697421 ], [ -58.392158, -34.698163 ], [ -58.392057, -34.699814 ], [ -58.392062, -34.700232 ], [ -58.392032, -34.70131 ], [ -58.391988, -34.702391 ], [ -58.391939, -34.703453 ], [ -58.39192, -34.703932 ], [ -58.391889, -34.704684 ], [ -58.391844, -34.705584 ], [ -58.39181, -34.706745 ], [ -58.391748, -34.708165 ], [ -58.392041, -34.709529 ], [ -58.392251, -34.710465 ], [ -58.392485, -34.711588 ], [ -58.392739, -34.712746 ], [ -58.392968, -34.713773 ], [ -58.393147, -34.714514 ], [ -58.393433, -34.715817 ], [ -58.393695, -34.71708 ], [ -58.393951999999899, -34.718314 ], [ -58.394197, -34.719558 ], [ -58.394478, -34.720843 ], [ -58.394789, -34.722242 ], [ -58.395042, -34.723522 ], [ -58.395304, -34.724729 ], [ -58.395578, -34.726001 ], [ -58.395814, -34.72718 ], [ -58.396073, -34.72837 ], [ -58.396201, -34.729132 ], [ -58.396362, -34.729804 ], [ -58.396562, -34.730794 ], [ -58.396773, -34.73178 ], [ -58.39701, -34.732969 ], [ -58.397246, -34.734094 ], [ -58.398377, -34.733923 ], [ -58.399911, -34.733639 ], [ -58.401352, -34.733379 ], [ -58.40282, -34.733136 ], [ -58.403057, -34.734314 ], [ -58.404533999999899, -34.734095 ], [ -58.40592, -34.733886 ], [ -58.407286, -34.733666 ], [ -58.408892, -34.733384 ], [ -58.40982, -34.733278 ], [ -58.410315, -34.733218 ], [ -58.411602, -34.733027 ], [ -58.411765, -34.733003 ], [ -58.413058, -34.732815 ], [ -58.413279, -34.732781 ], [ -58.413312, -34.732739 ], [ -58.413452, -34.732549 ], [ -58.414246, -34.731475 ], [ -58.414998, -34.730475 ], [ -58.41558, -34.729694 ], [ -58.416036, -34.72906 ], [ -58.416342, -34.728643 ], [ -58.416593, -34.728319 ], [ -58.416833, -34.728 ], [ -58.417103, -34.727639 ], [ -58.4177, -34.726872 ], [ -58.41883, -34.727453 ], [ -58.41928, -34.727683 ], [ -58.419958, -34.728044 ], [ -58.42046, -34.728312 ], [ -58.420816, -34.728497 ], [ -58.421025, -34.72861 ], [ -58.421443, -34.728838 ], [ -58.421863, -34.729062 ], [ -58.42245, -34.729406 ], [ -58.423417, -34.729917 ], [ -58.423921, -34.730204 ], [ -58.42434, -34.730423 ], [ -58.424712, -34.730622 ], [ -58.425287, -34.730909 ], [ -58.426191, -34.73138 ], [ -58.426735, -34.731677 ], [ -58.427277, -34.73195 ], [ -58.427778, -34.732186 ], [ -58.428476, -34.732564 ], [ -58.429379, -34.733043 ], [ -58.429817, -34.733253 ], [ -58.430564, -34.733663 ], [ -58.431038, -34.733924 ], [ -58.431645, -34.734255 ], [ -58.432077, -34.734486 ], [ -58.432721, -34.734839 ], [ -58.433215, -34.735083 ], [ -58.433824999999899, -34.735407 ], [ -58.4343, -34.735682 ], [ -58.434702, -34.735917 ], [ -58.434816, -34.735979 ], [ -58.434681, -34.736193 ], [ -58.43456, -34.736393 ], [ -58.434358, -34.736779 ], [ -58.434178, -34.737136 ], [ -58.434013, -34.737507 ], [ -58.433974, -34.737576 ], [ -58.433931, -34.737658 ], [ -58.433783, -34.737958 ], [ -58.433706, -34.738126 ], [ -58.433466, -34.738555 ], [ -58.4334, -34.738658 ], [ -58.433189, -34.738942 ], [ -58.432931, -34.739279 ], [ -58.432889, -34.73933 ], [ -58.432859, -34.739371 ], [ -58.432442, -34.739914 ], [ -58.431982, -34.740496 ], [ -58.431924, -34.740569 ], [ -58.431577, -34.741048 ], [ -58.431552, -34.741078 ], [ -58.431495, -34.741153 ], [ -58.431117, -34.741645 ], [ -58.431062, -34.741718 ], [ -58.430642, -34.742283 ], [ -58.430599, -34.742347 ], [ -58.430235, -34.742853 ], [ -58.430205, -34.742902 ], [ -58.430147, -34.742985 ], [ -58.429775, -34.743494 ], [ -58.429746, -34.743564 ], [ -58.42967, -34.743713 ], [ -58.429639, -34.743829 ], [ -58.429622, -34.743978 ], [ -58.429629, -34.744113 ], [ -58.429646, -34.744308 ], [ -58.429657, -34.744348 ], [ -58.429691, -34.744469 ], [ -58.429859, -34.745149 ], [ -58.429921, -34.745472 ], [ -58.429938, -34.745545 ], [ -58.430057, -34.746129 ], [ -58.430141, -34.746505 ], [ -58.430146, -34.746541 ], [ -58.430164, -34.746612 ], [ -58.430321, -34.747318 ], [ -58.430344, -34.747358 ], [ -58.430351, -34.747422 ], [ -58.43041, -34.747582 ], [ -58.43049, -34.747721 ], [ -58.430556, -34.747839 ], [ -58.430725, -34.748051 ], [ -58.430872, -34.748198 ], [ -58.430985, -34.748299 ], [ -58.431225, -34.748444 ], [ -58.431268, -34.74848 ], [ -58.431398, -34.748543 ], [ -58.432353, -34.749021 ], [ -58.43263, -34.749166 ], [ -58.432718, -34.749214 ], [ -58.433261, -34.749497 ], [ -58.433362, -34.749553 ], [ -58.433482, -34.749609 ], [ -58.434379, -34.750074 ], [ -58.434515, -34.750155 ], [ -58.434615, -34.750202 ], [ -58.435308, -34.750574 ], [ -58.435669, -34.750822 ], [ -58.435738999999899, -34.75092 ], [ -58.435866, -34.751121 ], [ -58.435943, -34.751278 ], [ -58.435993, -34.751499 ], [ -58.436011, -34.751775 ], [ -58.435993, -34.751912 ], [ -58.435869, -34.752223 ], [ -58.435557, -34.752663 ], [ -58.43517, -34.753221 ], [ -58.434991, -34.753504 ], [ -58.434853, -34.753705 ], [ -58.434506, -34.754198 ], [ -58.434269, -34.754518 ], [ -58.434074, -34.754807 ], [ -58.433901, -34.755047 ], [ -58.433601, -34.75547 ], [ -58.433458, -34.755679 ], [ -58.433135, -34.756155 ], [ -58.433014, -34.756336 ], [ -58.432844, -34.756592 ], [ -58.432777, -34.756679 ], [ -58.432745, -34.756729 ], [ -58.432348, -34.757267 ], [ -58.43202, -34.757937 ], [ -58.431715, -34.758716 ], [ -58.431589, -34.759065 ], [ -58.431516, -34.759256 ], [ -58.431316, -34.759822 ], [ -58.431272, -34.759941 ], [ -58.431239, -34.760042 ], [ -58.430975, -34.760834 ], [ -58.430941, -34.760922 ], [ -58.430924, -34.760971 ], [ -58.430867, -34.761141 ], [ -58.430762, -34.761441 ], [ -58.43071, -34.761602 ], [ -58.430661, -34.761751 ], [ -58.430647, -34.761794 ], [ -58.430565, -34.762062 ], [ -58.43054, -34.762152 ], [ -58.430529, -34.762253 ], [ -58.430535, -34.7624 ], [ -58.430573, -34.762542 ], [ -58.430601, -34.762612 ], [ -58.430645, -34.762704 ], [ -58.430686, -34.762778 ], [ -58.430839, -34.762945 ], [ -58.430908, -34.762995 ], [ -58.431239, -34.763212 ], [ -58.431507, -34.763389 ], [ -58.431699, -34.763511 ], [ -58.432284, -34.763905 ], [ -58.432372, -34.763963 ], [ -58.43245, -34.764017 ], [ -58.432794, -34.76425 ], [ -58.433051, -34.764454 ], [ -58.433385, -34.764732 ], [ -58.433466, -34.76481 ], [ -58.433542, -34.764891 ], [ -58.433826, -34.7652 ], [ -58.434068, -34.765498 ], [ -58.434304, -34.765799 ], [ -58.434493, -34.766137 ], [ -58.435777, -34.766775 ], [ -58.436219, -34.76699 ], [ -58.436642, -34.76722 ], [ -58.436922, -34.767463 ], [ -58.437384, -34.767902 ], [ -58.437563, -34.767923 ], [ -58.437603, -34.767944 ], [ -58.438389, -34.768333 ], [ -58.438586, -34.768447 ], [ -58.439502, -34.768916 ], [ -58.440226, -34.769307 ], [ -58.440278, -34.769338 ], [ -58.440336, -34.769365 ], [ -58.44061, -34.769496 ], [ -58.441195, -34.769794 ], [ -58.441756, -34.770087 ], [ -58.442052, -34.770236 ], [ -58.442896, -34.770691 ], [ -58.443663999999899, -34.771102 ], [ -58.444041, -34.771308 ], [ -58.446302, -34.77245 ], [ -58.448388, -34.773532 ], [ -58.452827, -34.775831 ], [ -58.454975, -34.776952 ], [ -58.457252, -34.77818 ], [ -58.457353, -34.778277 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 201.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.495243, -34.471657 ], [ -58.496069, -34.471455 ], [ -58.497072, -34.471118 ], [ -58.498645, -34.470473 ], [ -58.498544, -34.470346 ], [ -58.498171, -34.470063 ], [ -58.499385, -34.469023 ], [ -58.500078, -34.468539 ], [ -58.500598, -34.468269 ], [ -58.50102, -34.468104 ], [ -58.502166, -34.468837 ], [ -58.502903, -34.468405 ], [ -58.503428, -34.468081 ], [ -58.503944, -34.467794 ], [ -58.504566, -34.467427 ], [ -58.505565, -34.466854 ], [ -58.506357, -34.466343 ], [ -58.506932, -34.465985 ], [ -58.507051, -34.465922 ], [ -58.506942, -34.46582 ], [ -58.507383, -34.465613 ], [ -58.508085, -34.46529 ], [ -58.508553, -34.465086 ], [ -58.508795, -34.46503 ], [ -58.508971, -34.465003 ], [ -58.509156, -34.464899 ], [ -58.510312, -34.464399 ], [ -58.510819, -34.465024 ], [ -58.511727, -34.465558 ], [ -58.512248, -34.465894 ], [ -58.513202, -34.466318 ], [ -58.513716, -34.466576 ], [ -58.514824, -34.467121 ], [ -58.515846, -34.467672 ], [ -58.516949, -34.468214 ], [ -58.517246, -34.46837 ], [ -58.517737, -34.468639 ], [ -58.517854, -34.468703 ], [ -58.517009, -34.469671 ], [ -58.516674, -34.470114 ], [ -58.516193, -34.47066 ], [ -58.515897, -34.470957 ], [ -58.515472, -34.471407 ], [ -58.515047, -34.471874 ], [ -58.516649, -34.472675 ], [ -58.517799, -34.473241 ], [ -58.519182, -34.473911 ], [ -58.520481, -34.474557 ], [ -58.521631, -34.475127 ], [ -58.52183, -34.475233 ], [ -58.523192, -34.475956 ], [ -58.52399, -34.476386 ], [ -58.525147, -34.476997 ], [ -58.525855, -34.477367 ], [ -58.526355, -34.477627 ], [ -58.52701, -34.477975 ], [ -58.527509, -34.478242 ], [ -58.52871, -34.478876 ], [ -58.529031, -34.479032 ], [ -58.529442, -34.478258 ], [ -58.529609, -34.477892 ], [ -58.52973, -34.477477 ], [ -58.529957, -34.477669 ], [ -58.530272, -34.477822 ], [ -58.530928, -34.478143 ], [ -58.531958, -34.478657 ], [ -58.533028, -34.479219 ], [ -58.534061, -34.479754 ], [ -58.53513, -34.480291 ], [ -58.535808, -34.480619 ], [ -58.536201, -34.480807 ], [ -58.53725, -34.481371 ], [ -58.538339, -34.481925 ], [ -58.538524, -34.482022 ], [ -58.539397, -34.482467 ], [ -58.540468, -34.48304 ], [ -58.5415, -34.48355 ], [ -58.542659, -34.484151 ], [ -58.543776, -34.48472 ], [ -58.544795, -34.485279 ], [ -58.545047, -34.4854 ], [ -58.545908, -34.485841 ], [ -58.546967, -34.48641 ], [ -58.54803, -34.486951 ], [ -58.549224, -34.487566 ], [ -58.548543, -34.488832 ], [ -58.547979, -34.489856 ], [ -58.547799, -34.490418 ], [ -58.547578, -34.49103 ], [ -58.547368, -34.491628 ], [ -58.547184, -34.492171 ], [ -58.547172, -34.492206 ], [ -58.547612, -34.492463 ], [ -58.548676, -34.492965 ], [ -58.549266, -34.493267 ], [ -58.551129, -34.494217 ], [ -58.551632, -34.49457 ], [ -58.552354, -34.495133 ], [ -58.552644, -34.495321 ], [ -58.553107, -34.495673 ], [ -58.553336, -34.495463 ], [ -58.554085, -34.494835 ], [ -58.554156, -34.494833 ], [ -58.554295, -34.494751 ], [ -58.55449, -34.494662 ], [ -58.554691, -34.494623 ], [ -58.554905, -34.494623 ], [ -58.555146, -34.49459 ], [ -58.555327, -34.494524 ], [ -58.555487, -34.494436 ], [ -58.556241, -34.493753 ], [ -58.556547, -34.493691 ], [ -58.55685, -34.493679 ], [ -58.556997, -34.493712 ], [ -58.55752, -34.493797 ], [ -58.557826, -34.493833 ], [ -58.557897, -34.493828 ], [ -58.558116, -34.493812 ], [ -58.558543, -34.49371 ], [ -58.559116, -34.493598 ], [ -58.561097, -34.492852 ], [ -58.561898, -34.492565 ], [ -58.562276, -34.492356 ], [ -58.562924, -34.492068 ], [ -58.564154, -34.491533 ], [ -58.565287, -34.491082 ], [ -58.566393, -34.490647 ], [ -58.567023, -34.490351 ], [ -58.567895, -34.489928 ], [ -58.568346, -34.489796 ], [ -58.570035, -34.489324 ], [ -58.570463, -34.489353 ], [ -58.572548, -34.489066 ], [ -58.573888, -34.488928 ], [ -58.573952, -34.488919 ], [ -58.574207, -34.488882 ], [ -58.574294, -34.488869 ], [ -58.575802, -34.488678 ], [ -58.575875, -34.488671 ], [ -58.575951, -34.488662 ], [ -58.576144, -34.488637 ], [ -58.576338, -34.488574 ], [ -58.576607, -34.48854 ], [ -58.579624, -34.488171 ], [ -58.579740999999899, -34.488163 ], [ -58.579927, -34.488148 ], [ -58.580135, -34.488126 ], [ -58.580354, -34.488098 ], [ -58.580573, -34.488065 ], [ -58.580819, -34.488041 ], [ -58.581039, -34.487967 ], [ -58.581212, -34.487893 ], [ -58.58147, -34.487814 ], [ -58.58172, -34.487808 ], [ -58.581868, -34.487808 ], [ -58.582048, -34.487795 ], [ -58.58228, -34.487788 ], [ -58.582461, -34.487789 ], [ -58.582703, -34.487782 ], [ -58.582925, -34.487789 ], [ -58.583148, -34.487804 ], [ -58.583375, -34.487827 ], [ -58.583609, -34.487834 ], [ -58.58383, -34.487855 ], [ -58.584056, -34.487872 ], [ -58.58427, -34.487898 ], [ -58.58453, -34.487926 ], [ -58.58475, -34.487931 ], [ -58.585148, -34.48797 ], [ -58.585351, -34.487991 ], [ -58.585763, -34.48797 ], [ -58.585882, -34.487945 ], [ -58.58637, -34.487927 ], [ -58.587507, -34.487843 ], [ -58.588346, -34.487775 ], [ -58.589188, -34.487704 ], [ -58.5899, -34.487613 ], [ -58.590665, -34.4875 ], [ -58.591323, -34.487413 ], [ -58.591931, -34.487334 ], [ -58.592501, -34.487279 ], [ -58.593521, -34.487191 ], [ -58.594229, -34.487136 ], [ -58.595101, -34.487068 ], [ -58.59586, -34.486988 ], [ -58.595888, -34.48698 ], [ -58.600746, -34.486637 ], [ -58.601924, -34.4866 ], [ -58.603445, -34.48657 ], [ -58.60388, -34.486553 ], [ -58.604626, -34.486523 ], [ -58.605048, -34.486506 ], [ -58.606207, -34.486401 ], [ -58.607164, -34.486297 ], [ -58.609895, -34.485964 ], [ -58.612647, -34.485565 ], [ -58.614263, -34.485313 ], [ -58.618058, -34.484787 ], [ -58.619888, -34.484534 ], [ -58.623642, -34.483993 ], [ -58.624083, -34.483875 ], [ -58.624742, -34.483656 ], [ -58.62483, -34.483621 ], [ -58.624903, -34.483606 ], [ -58.625227, -34.48355 ], [ -58.625987, -34.483439 ], [ -58.626693, -34.483335 ], [ -58.627069, -34.48325 ], [ -58.627424, -34.483153 ], [ -58.627813, -34.483062 ], [ -58.628274, -34.482941 ], [ -58.629686, -34.48269 ], [ -58.630608, -34.48252 ], [ -58.631794, -34.482266 ], [ -58.632761, -34.482086 ], [ -58.632992, -34.48203 ], [ -58.633551, -34.481929 ], [ -58.634847, -34.481513 ], [ -58.635198, -34.481485 ], [ -58.635872, -34.48135 ], [ -58.636989, -34.481215 ], [ -58.638751, -34.480882 ], [ -58.64068, -34.480476 ], [ -58.643211, -34.479974 ], [ -58.643788, -34.479783 ], [ -58.644165, -34.479638 ], [ -58.644397, -34.479598 ], [ -58.644615, -34.479528 ], [ -58.645212, -34.479393 ], [ -58.646262, -34.479243 ], [ -58.647437, -34.479004 ], [ -58.648178, -34.478814 ], [ -58.648833, -34.478639 ], [ -58.649738, -34.478306 ], [ -58.650152, -34.478171 ], [ -58.650971, -34.47798 ], [ -58.651337, -34.477941 ], [ -58.652574999999899, -34.477743 ], [ -58.654234, -34.4773 ], [ -58.654753, -34.477164 ], [ -58.656006, -34.476693 ], [ -58.65668, -34.476531 ], [ -58.657443, -34.476334 ], [ -58.658416, -34.476199 ], [ -58.659049, -34.476059 ], [ -58.660225, -34.475771 ], [ -58.660436, -34.475704 ], [ -58.662038, -34.475232 ], [ -58.662126, -34.475206 ], [ -58.662183, -34.47519 ], [ -58.663601, -34.474783 ], [ -58.664339, -34.474583 ], [ -58.66574, -34.474184 ], [ -58.666815, -34.473866 ], [ -58.667648, -34.47352 ], [ -58.668127, -34.473364 ], [ -58.668635, -34.473223 ], [ -58.669178, -34.473091 ], [ -58.669550999999899, -34.473052 ], [ -58.669994, -34.472989 ], [ -58.671637, -34.472526 ], [ -58.672736, -34.472214 ], [ -58.67321, -34.472083 ], [ -58.674548, -34.471713 ], [ -58.675564, -34.471416 ], [ -58.676753, -34.471023 ], [ -58.677673, -34.470665 ], [ -58.678632, -34.470258 ], [ -58.679563, -34.469809 ], [ -58.68086, -34.469099 ], [ -58.682148, -34.468269 ], [ -58.683533, -34.467119 ], [ -58.683952, -34.466734 ], [ -58.684907, -34.465812 ], [ -58.685184, -34.465448 ], [ -58.685648, -34.464745 ], [ -58.686153, -34.464016 ], [ -58.686858, -34.463255 ], [ -58.687433, -34.462654 ], [ -58.687962, -34.461929 ], [ -58.688475, -34.461295 ], [ -58.688695, -34.460963 ], [ -58.688897, -34.460685 ], [ -58.689532, -34.459753 ], [ -58.689986, -34.459108 ], [ -58.69056, -34.458377 ], [ -58.690623, -34.45832 ], [ -58.69086, -34.45812 ], [ -58.691241, -34.457678 ], [ -58.692033, -34.456768 ], [ -58.692068, -34.45673 ], [ -58.693495, -34.454922 ], [ -58.693845, -34.454414 ], [ -58.694412, -34.453288 ], [ -58.694612, -34.453217 ], [ -58.695107, -34.452677 ], [ -58.695216, -34.452551 ], [ -58.695519, -34.452264 ], [ -58.695994, -34.451712 ], [ -58.696741, -34.450744 ], [ -58.697518, -34.449728 ], [ -58.697656, -34.44955 ], [ -58.698148, -34.448915 ], [ -58.698287, -34.448722 ], [ -58.698925, -34.447621 ], [ -58.69914, -34.447356 ], [ -58.699411, -34.447062 ], [ -58.699659, -34.446826 ], [ -58.700043, -34.446454 ], [ -58.701022, -34.445224 ], [ -58.703734, -34.44173 ], [ -58.704347, -34.440938 ], [ -58.704724, -34.440405 ], [ -58.705049, -34.439878 ], [ -58.705146, -34.439728 ], [ -58.705228, -34.439647 ], [ -58.705638, -34.439112 ], [ -58.706098, -34.438724 ], [ -58.706385, -34.438498 ], [ -58.706582, -34.438336 ], [ -58.706736, -34.438208 ], [ -58.707723, -34.437293 ], [ -58.709982, -34.435355 ], [ -58.71055, -34.435135 ], [ -58.710991, -34.434924 ], [ -58.711258, -34.434714 ], [ -58.711902, -34.43439 ], [ -58.71209, -34.434214 ], [ -58.712452, -34.433814 ], [ -58.71278, -34.433364 ], [ -58.713082, -34.432818 ], [ -58.713221, -34.432483 ], [ -58.713372, -34.431966 ], [ -58.713476, -34.431458 ], [ -58.713592, -34.43052 ], [ -58.713743, -34.429969 ], [ -58.714172, -34.428715 ], [ -58.71452, -34.427987 ], [ -58.715008, -34.42726 ], [ -58.716099, -34.425862 ], [ -58.718323, -34.423016 ], [ -58.718345, -34.422925 ], [ -58.718365, -34.42284 ], [ -58.71838, -34.422761 ], [ -58.718391, -34.422688 ], [ -58.718398, -34.42262 ], [ -58.7184, -34.422557 ], [ -58.718398, -34.4225 ], [ -58.718391, -34.422449 ], [ -58.71838, -34.422403 ], [ -58.718365, -34.422363 ], [ -58.718346, -34.422329 ], [ -58.718322, -34.4223 ], [ -58.718294, -34.422276 ], [ -58.718261, -34.422258 ], [ -58.718226, -34.422245 ], [ -58.718291, -34.422255 ], [ -58.718358, -34.42226 ], [ -58.718423, -34.422262 ], [ -58.718487, -34.422259 ], [ -58.718549, -34.422253 ], [ -58.718611, -34.422244 ], [ -58.718671, -34.42223 ], [ -58.71873, -34.422213 ], [ -58.718788, -34.422192 ], [ -58.718845, -34.422167 ], [ -58.718901, -34.422139 ], [ -58.718955, -34.422107 ], [ -58.719008, -34.422071 ], [ -58.719059999999899, -34.422031 ], [ -58.719113, -34.421991 ], [ -58.720266, -34.420483 ], [ -58.721235, -34.419237 ], [ -58.7213, -34.418966 ], [ -58.721514, -34.418628 ], [ -58.721727, -34.418276 ], [ -58.721941, -34.417944 ], [ -58.722121, -34.417666 ], [ -58.722298, -34.417401 ], [ -58.722434, -34.417166 ], [ -58.722536, -34.41696 ], [ -58.722569, -34.416781 ], [ -58.722593, -34.416648 ], [ -58.722608, -34.416576 ], [ -58.722616, -34.416544 ], [ -58.722639999999899, -34.416487 ], [ -58.722673, -34.416431 ], [ -58.722711, -34.416378 ], [ -58.722727, -34.41636 ], [ -58.722736, -34.416342 ], [ -58.723086, -34.416534 ], [ -58.723836, -34.416913 ], [ -58.724681, -34.417226 ], [ -58.724909, -34.417337 ], [ -58.725219, -34.417496 ], [ -58.726131, -34.417954 ], [ -58.726262, -34.418033 ], [ -58.727321, -34.418567 ], [ -58.728353, -34.419164 ], [ -58.729427, -34.419755 ], [ -58.730376, -34.420418 ], [ -58.731344, -34.421063 ], [ -58.732299, -34.421681 ], [ -58.732876, -34.422035 ], [ -58.733696, -34.422497 ], [ -58.733328, -34.421905 ], [ -58.734105, -34.421576 ], [ -58.734986, -34.421217 ], [ -58.735387, -34.421036 ], [ -58.736898, -34.420406 ], [ -58.737971, -34.419952 ], [ -58.738803, -34.419602 ], [ -58.739204, -34.420316 ], [ -58.739348, -34.420584 ], [ -58.739448, -34.420748 ], [ -58.73955, -34.420941 ], [ -58.739631, -34.421089 ], [ -58.739178, -34.421275 ], [ -58.738319, -34.421627 ], [ -58.737306, -34.422016 ], [ -58.737188, -34.422063 ], [ -58.736237, -34.422489 ], [ -58.736101, -34.42255 ], [ -58.735327, -34.422903 ], [ -58.734986, -34.423342 ], [ -58.73394, -34.424816 ], [ -58.733809, -34.425001 ], [ -58.733496, -34.425437 ], [ -58.733369, -34.425602 ], [ -58.733199, -34.425838 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 200.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.389186270382886, -34.724383298561591 ], [ -58.394638059965189, -34.722130160431639 ], [ -58.391700933474354, -34.708208985557299 ], [ -58.391982575740592, -34.698391740848216 ], [ -58.404938119987825, -34.687246754026845 ], [ -58.404495539283722, -34.679280301353089 ], [ -58.417249910483633, -34.668497426016884 ], [ -58.416364749075441, -34.648098479018913 ], [ -58.419543283223057, -34.647012144563398 ], [ -58.422882755808523, -34.642867979788662 ], [ -58.428797243399636, -34.617319002779375 ], [ -58.430165220121395, -34.615146333868353 ], [ -58.434973255952279, -34.608869734792052 ], [ -58.440948095457607, -34.602874777982002 ], [ -58.450966513213999, -34.599273780435034 ], [ -58.459214608153999, -34.596658530819909 ], [ -58.45100674782347, -34.588853016583997 ], [ -58.456518889319959, -34.586861403415554 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 199.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.390783965999901, -34.707461177999903 ], [ -58.390583490999916, -34.706876347999923 ], [ -58.391016085999922, -34.706790164999916 ], [ -58.391517337999915, -34.706690303999949 ], [ -58.391694781999945, -34.706706647999908 ], [ -58.391830605999928, -34.706738064999911 ], [ -58.3930280269999, -34.706722022999941 ], [ -58.394198193999955, -34.706703684999923 ], [ -58.394318125999916, -34.706701804999909 ], [ -58.394284187999915, -34.706797105999954 ], [ -58.394282917999931, -34.706948956999952 ], [ -58.394274432999907, -34.707963871999937 ], [ -58.394935281999949, -34.707918583999913 ], [ -58.395057094999913, -34.70845939499992 ], [ -58.395200705999912, -34.709096983999927 ], [ -58.395407601999921, -34.710019873999954 ], [ -58.395672882999918, -34.711167769999918 ], [ -58.395926644999918, -34.712304219999908 ], [ -58.396336326999915, -34.714088986999911 ], [ -58.396623682999916, -34.715348912999957 ], [ -58.396625094999933, -34.715355102999922 ], [ -58.396626656999899, -34.715362253999956 ], [ -58.396902416999922, -34.716625023999939 ], [ -58.397172113999943, -34.71789875199994 ], [ -58.3974570069999, -34.719153425999934 ], [ -58.397642106999911, -34.719124966999914 ], [ -58.398518519999925, -34.718990217999931 ], [ -58.399564747999932, -34.71882699899993 ], [ -58.400633974999948, -34.718679048999945 ], [ -58.401504626999952, -34.718557648999933 ], [ -58.402352352999912, -34.71843623299992 ], [ -58.403016786999899, -34.718341377999934 ], [ -58.403665991999901, -34.718257950999941 ], [ -58.403748435999944, -34.718246726999951 ], [ -58.404074472999923, -34.718202338999902 ], [ -58.404418276999934, -34.718155532999958 ], [ -58.405059765999908, -34.718056847999947 ], [ -58.405635294999911, -34.71798965399995 ], [ -58.405934246999948, -34.717954750999922 ], [ -58.405956726999932, -34.717952125999943 ], [ -58.405968702999928, -34.717950727999948 ], [ -58.406112968999935, -34.717752554999947 ], [ -58.406375003999926, -34.717409570999905 ], [ -58.406591582999908, -34.717150441999934 ], [ -58.406686497999942, -34.717020866999917 ], [ -58.406713101999912, -34.716990380999903 ], [ -58.407039681999947, -34.716559744999927 ], [ -58.407491583999899, -34.715965238999956 ], [ -58.407491623999931, -34.715965185999949 ], [ -58.407901704999915, -34.715424084999938 ], [ -58.408175095999923, -34.715058231999933 ], [ -58.408339600999909, -34.714840895999941 ], [ -58.408615865999934, -34.714497671999936 ], [ -58.408769348999954, -34.714291732999925 ], [ -58.409183747999919, -34.71375400799991 ], [ -58.409352575999947, -34.713551888999916 ], [ -58.409631478999927, -34.713138744999924 ], [ -58.409684131999938, -34.713060748999908 ], [ -58.409698094999953, -34.713040065999905 ], [ -58.409751635999953, -34.712960753999937 ], [ -58.409755998999913, -34.712964042999943 ], [ -58.409760859999949, -34.712967706999905 ], [ -58.410004816999901, -34.713151574999927 ], [ -58.410119265999924, -34.713235758999929 ], [ -58.410814229999914, -34.713746943999922 ], [ -58.411052067999947, -34.713911056999905 ], [ -58.411884498999939, -34.714517877999924 ], [ -58.41270157699995, -34.715170469999919 ], [ -58.41296626299993, -34.715399441999921 ], [ -58.414151615999913, -34.716239078999934 ], [ -58.414033070999949, -34.716390284999932 ], [ -58.413691172999904, -34.716826379999929 ], [ -58.413526177999927, -34.717055201999926 ], [ -58.413265260999935, -34.717390802999944 ], [ -58.412927600999922, -34.717829371999926 ], [ -58.412831675999939, -34.717947593999952 ], [ -58.412383526999918, -34.718561528999942 ], [ -58.411776257999918, -34.719430460999945 ], [ -58.411115546999952, -34.720310792999953 ], [ -58.410629740999923, -34.721008225999924 ], [ -58.410120557999903, -34.721610317999932 ], [ -58.409584643999949, -34.722216203999949 ], [ -58.409128811999949, -34.722787828999913 ], [ -58.408722546999911, -34.723336612999958 ], [ -58.408342831999903, -34.723843470999952 ], [ -58.407972736999909, -34.724362150999923 ], [ -58.407179063999934, -34.72539183899994 ], [ -58.406557100999919, -34.726207968999915 ], [ -58.405805415999907, -34.727230060999943 ], [ -58.40565003699993, -34.727148610999905 ], [ -58.404507289999913, -34.726549580999915 ], [ -58.403266434999921, -34.725907314999915 ], [ -58.402040829999919, -34.725268884999934 ], [ -58.400749944999916, -34.724604510999939 ], [ -58.400645626999903, -34.724740311999938 ], [ -58.400187879999919, -34.725336207999931 ], [ -58.399963875999902, -34.725641087999918 ], [ -58.399216459999934, -34.726659278999932 ], [ -58.399038129999951, -34.726716944999907 ], [ -58.398934005999934, -34.726750614999958 ], [ -58.397884278999925, -34.726898500999937 ], [ -58.396838370999944, -34.727050205999944 ], [ -58.395666502999916, -34.727239960999952 ], [ -58.3956137159999, -34.727018133999934 ], [ -58.395574759999931, -34.726854428999957 ], [ -58.394097505999923, -34.727070622999918 ], [ -58.394097616999943, -34.727073583999925 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 197.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.581782, -34.508133 ], [ -58.581707, -34.508101 ], [ -58.5806, -34.507181 ], [ -58.580951, -34.506882 ], [ -58.581441, -34.506461 ], [ -58.581701, -34.506241 ], [ -58.582444, -34.505593 ], [ -58.582675, -34.505388 ], [ -58.583181, -34.504956 ], [ -58.583227, -34.504886 ], [ -58.58376, -34.504476 ], [ -58.583827, -34.5044 ], [ -58.584361, -34.503921 ], [ -58.58496, -34.503412 ], [ -58.584584, -34.502554 ], [ -58.584525, -34.502479 ], [ -58.584207, -34.501804 ], [ -58.584019, -34.501404 ], [ -58.584015, -34.501392 ], [ -58.583831, -34.501051 ], [ -58.583506, -34.500525 ], [ -58.583349, -34.500297 ], [ -58.582939, -34.499612 ], [ -58.58375, -34.498902 ], [ -58.584491, -34.498242 ], [ -58.585253, -34.497605 ], [ -58.585692, -34.497229 ], [ -58.58599, -34.496983 ], [ -58.586721, -34.496367 ], [ -58.586292, -34.496041 ], [ -58.585972, -34.495773 ], [ -58.585272, -34.495178 ], [ -58.584467, -34.49448 ], [ -58.5837, -34.493807 ], [ -58.583063, -34.49325 ], [ -58.582676, -34.493592 ], [ -58.582443, -34.49271 ], [ -58.582434, -34.492676 ], [ -58.582336, -34.49229 ], [ -58.582404, -34.491848 ], [ -58.582534, -34.49034 ], [ -58.582469, -34.490206 ], [ -58.582489, -34.490295 ], [ -58.582455, -34.490394 ], [ -58.582398, -34.490452 ], [ -58.582278, -34.490499 ], [ -58.582161, -34.490501 ], [ -58.582087, -34.490469 ], [ -58.581999, -34.490406 ], [ -58.581994, -34.490401 ], [ -58.581987, -34.490392 ], [ -58.58198, -34.490383 ], [ -58.581975, -34.490372 ], [ -58.581969999999899, -34.490361 ], [ -58.581966, -34.490348 ], [ -58.581964, -34.490334 ], [ -58.581962, -34.490319 ], [ -58.581962, -34.490303 ], [ -58.581962, -34.490286 ], [ -58.581964, -34.490268 ], [ -58.581966, -34.490249 ], [ -58.581969999999899, -34.490229 ], [ -58.581974, -34.490207 ], [ -58.581987, -34.490189 ], [ -58.582028, -34.490134 ], [ -58.58208, -34.489942 ], [ -58.582084, -34.489637 ], [ -58.582046, -34.489486 ], [ -58.582013, -34.489198 ], [ -58.581938, -34.488805 ], [ -58.58172, -34.487808 ], [ -58.581658, -34.487352 ], [ -58.581608, -34.487122 ], [ -58.581462, -34.486889 ], [ -58.581293, -34.486668 ], [ -58.581147, -34.486454 ], [ -58.581002, -34.486255 ], [ -58.580932, -34.486112 ], [ -58.580839, -34.485812 ], [ -58.580813, -34.48563 ], [ -58.580719, -34.485258 ], [ -58.580716, -34.48521 ], [ -58.580723, -34.485151 ], [ -58.580908, -34.484887 ], [ -58.581029, -34.484718 ], [ -58.581235, -34.484188 ], [ -58.581462, -34.483419 ], [ -58.58162, -34.483057 ], [ -58.581637, -34.48288 ], [ -58.581541, -34.482717 ], [ -58.581084, -34.481885 ], [ -58.58063, -34.481043 ], [ -58.579985, -34.480441 ], [ -58.579469, -34.479954 ], [ -58.578888, -34.479417 ], [ -58.578387, -34.478956 ], [ -58.577886, -34.478485 ], [ -58.577399, -34.478837 ], [ -58.576726, -34.478434 ], [ -58.575658, -34.477828 ], [ -58.575468, -34.47771 ], [ -58.574361, -34.47704 ], [ -58.573873, -34.476744 ], [ -58.573385, -34.477259 ], [ -58.573073, -34.47753 ], [ -58.572767, -34.4778 ], [ -58.572142, -34.47837 ], [ -58.572034, -34.478445 ], [ -58.571776, -34.478624 ], [ -58.571099, -34.479108 ], [ -58.57098, -34.47919 ], [ -58.570532, -34.479488 ], [ -58.569536, -34.480161 ], [ -58.56899, -34.48055 ], [ -58.568373, -34.48097 ], [ -58.567998, -34.481212 ], [ -58.567179, -34.481738 ], [ -58.567156, -34.481762 ], [ -58.56679, -34.482292 ], [ -58.566445, -34.482761 ], [ -58.56605, -34.483339 ], [ -58.56599, -34.483424 ], [ -58.565465, -34.484166 ], [ -58.565148, -34.48463 ], [ -58.564855, -34.485054 ], [ -58.564522, -34.485538 ], [ -58.564422, -34.485611 ], [ -58.562769, -34.484808 ], [ -58.562588, -34.484716 ], [ -58.562204, -34.484529 ], [ -58.561068, -34.483975 ], [ -58.560146, -34.48351 ], [ -58.558666, -34.482798 ], [ -58.558348, -34.482645 ], [ -58.558047, -34.482499 ], [ -58.557017, -34.482 ], [ -58.55615, -34.481576 ], [ -58.555417, -34.481246 ], [ -58.555188, -34.481105 ], [ -58.553419, -34.480264 ], [ -58.552253, -34.479687 ], [ -58.551548, -34.479349 ], [ -58.550368, -34.478799 ], [ -58.550066999999899, -34.478643 ], [ -58.548929, -34.478054 ], [ -58.548282, -34.477738 ], [ -58.547437, -34.477324 ], [ -58.545816, -34.476531 ], [ -58.544247, -34.475762 ], [ -58.543166, -34.475243 ], [ -58.542329, -34.47484 ], [ -58.541869, -34.474609 ], [ -58.541735, -34.474552 ], [ -58.541147, -34.474261 ], [ -58.540831, -34.474112 ], [ -58.54062, -34.474003 ], [ -58.540033, -34.473721 ], [ -58.539725, -34.47356 ], [ -58.539209, -34.474284 ], [ -58.538717, -34.474977 ], [ -58.53819, -34.475676 ], [ -58.537683999999899, -34.476348 ], [ -58.537881, -34.476446 ], [ -58.537257, -34.477346 ], [ -58.536634, -34.478241 ], [ -58.536524, -34.478344 ], [ -58.535961, -34.478073 ], [ -58.535704, -34.477946 ], [ -58.535469, -34.47783 ], [ -58.534374, -34.477299 ], [ -58.533292, -34.476773 ], [ -58.532978, -34.476619 ], [ -58.532475, -34.476372 ], [ -58.532302, -34.476283 ], [ -58.532262, -34.476264 ], [ -58.531614, -34.475921 ], [ -58.531322, -34.475803 ], [ -58.530335, -34.475289 ], [ -58.530037, -34.476394 ], [ -58.52973, -34.477477 ], [ -58.529605, -34.477376 ], [ -58.529136, -34.477147 ], [ -58.528605, -34.476856 ], [ -58.528071, -34.476568 ], [ -58.527394, -34.476213 ], [ -58.526984, -34.475995 ], [ -58.526233, -34.475611 ], [ -58.525042, -34.474999 ], [ -58.524612, -34.474779 ], [ -58.524118, -34.474524 ], [ -58.522942, -34.473926 ], [ -58.522617, -34.473768 ], [ -58.521689, -34.473336 ], [ -58.521362, -34.473162 ], [ -58.521188, -34.47306 ], [ -58.520076, -34.472561 ], [ -58.519954, -34.472506 ], [ -58.518833, -34.471947 ], [ -58.517575, -34.471322 ], [ -58.516193, -34.47066 ], [ -58.515897, -34.470957 ], [ -58.515472, -34.471407 ], [ -58.515047, -34.471874 ], [ -58.514445, -34.472561 ], [ -58.514371, -34.472626 ], [ -58.513525999999899, -34.473411 ], [ -58.512594, -34.474356 ], [ -58.511804, -34.475181 ], [ -58.511403, -34.475601 ], [ -58.510985, -34.47604 ], [ -58.510557, -34.476512 ], [ -58.509906, -34.477173 ], [ -58.509666, -34.477427 ], [ -58.509156, -34.477967 ], [ -58.507726, -34.479506 ], [ -58.507248, -34.480053 ], [ -58.507292, -34.480099 ], [ -58.507353, -34.480183 ], [ -58.507397, -34.480261 ], [ -58.507407, -34.480315 ], [ -58.507373, -34.480457 ], [ -58.507303, -34.480568 ], [ -58.508514, -34.481213 ], [ -58.50963, -34.481793 ], [ -58.510689, -34.482392 ], [ -58.511756, -34.482976 ], [ -58.512667, -34.483434 ], [ -58.513715, -34.484014 ], [ -58.514672, -34.484559 ], [ -58.515822, -34.485183 ], [ -58.516968, -34.4858 ], [ -58.518109, -34.486415 ], [ -58.51929, -34.486998 ], [ -58.520444, -34.487607 ], [ -58.521639, -34.488193 ], [ -58.522492, -34.48866 ], [ -58.522775, -34.488808 ], [ -58.522185, -34.489558 ], [ -58.522563, -34.489759 ], [ -58.52333, -34.49017 ], [ -58.523986, -34.490516 ], [ -58.524152, -34.490528 ], [ -58.523673, -34.491408 ], [ -58.523375, -34.491955 ], [ -58.523029, -34.492591 ], [ -58.52297, -34.492699 ], [ -58.522649, -34.493287 ], [ -58.522377, -34.493732 ], [ -58.521931, -34.49445 ], [ -58.52122, -34.49558 ], [ -58.520795, -34.496246 ], [ -58.52062, -34.496524 ], [ -58.52039, -34.49689 ], [ -58.520317, -34.49701 ], [ -58.520241, -34.49713 ], [ -58.519958, -34.497594 ], [ -58.519871, -34.497721 ], [ -58.519476, -34.498328 ], [ -58.519043, -34.499175 ], [ -58.518599, -34.499999 ], [ -58.518133, -34.500852 ], [ -58.517816, -34.501458 ], [ -58.51778, -34.501537 ], [ -58.518449, -34.501824 ], [ -58.519547, -34.502327 ], [ -58.520365, -34.502695 ], [ -58.520692, -34.502848 ], [ -58.521364, -34.503162 ], [ -58.522286, -34.50359 ], [ -58.522946, -34.503878 ], [ -58.523662, -34.504196 ], [ -58.524625, -34.504618 ], [ -58.525581, -34.505042 ], [ -58.526534, -34.505487 ], [ -58.527535, -34.505957 ], [ -58.528446, -34.506347 ], [ -58.529411, -34.506788 ], [ -58.53035, -34.507207 ], [ -58.53071, -34.507369 ], [ -58.531972, -34.507953 ], [ -58.533232, -34.508532 ], [ -58.534236, -34.508987 ], [ -58.534001, -34.509319 ], [ -58.533146, -34.510393 ], [ -58.532465, -34.511273 ], [ -58.532071, -34.511814 ], [ -58.531826, -34.512154 ], [ -58.53164, -34.512433 ], [ -58.531202, -34.513056 ], [ -58.530483, -34.514097 ], [ -58.529956, -34.514699 ], [ -58.529488999999899, -34.51524 ], [ -58.528995, -34.515704 ], [ -58.528622, -34.516042 ], [ -58.528351, -34.516301 ], [ -58.527318, -34.517282 ], [ -58.527325, -34.517286 ], [ -58.526007, -34.518217 ], [ -58.525393, -34.518652 ], [ -58.525385, -34.518659 ], [ -58.525203, -34.518813 ], [ -58.52466, -34.519475 ], [ -58.523949, -34.520315 ], [ -58.523209, -34.521188 ], [ -58.522801, -34.521665 ], [ -58.522443, -34.522067 ], [ -58.521915, -34.522691 ], [ -58.521548, -34.523127 ], [ -58.521273, -34.523448 ], [ -58.521155, -34.523578 ], [ -58.520821, -34.52399 ], [ -58.520521, -34.524342 ], [ -58.520332, -34.524551 ], [ -58.519899, -34.525087 ], [ -58.519254, -34.525807 ], [ -58.518594, -34.526551 ], [ -58.518279, -34.526881 ], [ -58.517989, -34.527278 ], [ -58.517487, -34.527907 ], [ -58.517284, -34.528152 ], [ -58.517123, -34.528364 ], [ -58.517008, -34.528514 ], [ -58.516712, -34.528897 ], [ -58.516549, -34.529117 ], [ -58.51612, -34.529689 ], [ -58.517353, -34.530283 ], [ -58.517786, -34.530502 ], [ -58.518444, -34.530815 ], [ -58.518987, -34.531068 ], [ -58.519367, -34.531242 ], [ -58.519527, -34.53132 ], [ -58.520583, -34.531853 ], [ -58.521696, -34.532413 ], [ -58.52324, -34.531635 ], [ -58.524850999999899, -34.530769 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 196.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.374197436254029, -34.590135810797541 ], [ -58.375913153965797, -34.589312484428291 ], [ -58.378081502075922, -34.588246388673397 ], [ -58.379985424455413, -34.587300337639327 ], [ -58.381035509481748, -34.586717622166219 ], [ -58.38269539425076, -34.585811142313702 ], [ -58.383408521546279, -34.585398915199832 ], [ -58.383888122430022, -34.585087499509093 ], [ -58.384282712753901, -34.584819770395491 ], [ -58.384678370694893, -34.584507476481583 ], [ -58.385537681328778, -34.58376813856799 ], [ -58.386142475736932, -34.583289201789981 ], [ -58.386573694906957, -34.582929278794523 ], [ -58.38695415788311, -34.582644019028947 ], [ -58.38735754628221, -34.582365654242643 ], [ -58.387764425182723, -34.582121600330673 ], [ -58.3882248771774, -34.581870672937796 ], [ -58.38869554760474, -34.581629903170729 ], [ -58.389711826246753, -34.58111680873548 ], [ -58.39164708631661, -34.580113665248497 ], [ -58.392729839294553, -34.579541729881832 ], [ -58.393733939720519, -34.579033165695648 ], [ -58.394396525585513, -34.57872473599209 ], [ -58.394912012322663, -34.578505272757653 ], [ -58.395404428260157, -34.578311788083823 ], [ -58.396093513191452, -34.578026952992751 ], [ -58.396537911664758, -34.57784841739511 ], [ -58.396852649299213, -34.577693265807802 ], [ -58.397143858146059, -34.577525359024797 ], [ -58.397400500391299, -34.577360091614082 ], [ -58.397662823415168, -34.577143706974176 ], [ -58.39792306470256, -34.576918907169834 ], [ -58.399659125568867, -34.575421791877517 ], [ -58.400306503760412, -34.574860518632342 ], [ -58.400828865797912, -34.574395517763513 ], [ -58.401243796651549, -34.57398943641293 ], [ -58.401578324869106, -34.573622315389478 ], [ -58.402882048149173, -34.572217594799987 ], [ -58.403626689427682, -34.571438416256747 ], [ -58.404538829442167, -34.570437080098969 ], [ -58.406174341574463, -34.568674861370333 ], [ -58.406640330754072, -34.56818251509079 ], [ -58.406984685957688, -34.567819148265613 ], [ -58.407281641812922, -34.567544272225362 ], [ -58.407648028073723, -34.5672401563737 ], [ -58.40813746278689, -34.566886467295781 ], [ -58.408559602587339, -34.566602958237077 ], [ -58.409024101664301, -34.566328977000779 ], [ -58.409841471686349, -34.565908689152479 ], [ -58.412027856060377, -34.564827808985449 ], [ -58.414276767559258, -34.563697564103869 ], [ -58.414788772794367, -34.563424474043252 ], [ -58.41530817317085, -34.563125463581272 ], [ -58.415825498999901, -34.562790219605297 ], [ -58.416393690710237, -34.562418059718858 ], [ -58.41692315207154, -34.562022283187652 ], [ -58.417275660651292, -34.561726901601567 ], [ -58.41766939731442, -34.561351413587808 ], [ -58.418092291603188, -34.560948466874109 ], [ -58.418723371408497, -34.56036572028006 ], [ -58.418982745770798, -34.560132808322201 ], [ -58.419232293558863, -34.559921381070261 ], [ -58.419513047051161, -34.559706977898891 ], [ -58.41984375041428, -34.559471385238894 ], [ -58.421006714122719, -34.558681388295923 ], [ -58.422809540623, -34.557424596640182 ], [ -58.424309249409433, -34.556426445005172 ], [ -58.425363977504247, -34.555702389509513 ], [ -58.42588979629209, -34.555349449395592 ], [ -58.426313905186902, -34.55505892809969 ], [ -58.426716654456129, -34.554741650404587 ], [ -58.427118157763807, -34.554487789635587 ], [ -58.42751578883901, -34.554260436786059 ], [ -58.42931810437085, -34.553249048448521 ], [ -58.432696334701419, -34.551367912946233 ], [ -58.434052388494997, -34.550624047716909 ], [ -58.436300555933052, -34.549386209813342 ], [ -58.437507844566582, -34.548702973337917 ], [ -58.438386596485927, -34.548216451791667 ], [ -58.440368929751287, -34.547130756044282 ], [ -58.443049852676552, -34.545664936239149 ], [ -58.445715710533612, -34.544192922950117 ], [ -58.447255332732283, -34.543346654464251 ], [ -58.449370149208782, -34.542172527339837 ], [ -58.451186259874078, -34.541176063969317 ], [ -58.451531107598349, -34.541003376948957 ], [ -58.451807377088024, -34.540893602129103 ], [ -58.452100860980387, -34.540784235316032 ], [ -58.452340817540389, -34.54070252204685 ], [ -58.452631263715098, -34.540626061835482 ], [ -58.452978105493933, -34.540537413191061 ], [ -58.453484624052479, -34.540409328186307 ], [ -58.453799121046941, -34.54033187058026 ], [ -58.454063404598699, -34.540247614323533 ], [ -58.454368760089572, -34.540136907863037 ], [ -58.45463441475875, -34.540034331961706 ], [ -58.454889239041862, -34.539924894348253 ], [ -58.455938642283783, -34.53943941211589 ], [ -58.45710674444905, -34.538864801226573 ], [ -58.457523141131126, -34.538653850483058 ], [ -58.457916681780233, -34.538434537161017 ], [ -58.458231888410573, -34.538249689882633 ], [ -58.458646193234998, -34.537966695708768 ], [ -58.459024963282907, -34.537694111253813 ], [ -58.460114892813642, -34.536887776362917 ], [ -58.461125186527198, -34.536133420067323 ], [ -58.462080634142929, -34.53541805996602 ], [ -58.462421286480357, -34.535173664792467 ], [ -58.462749442388407, -34.534953759498428 ], [ -58.463097920655507, -34.534762119566572 ], [ -58.463393007969337, -34.534614549282892 ], [ -58.463721862556781, -34.534471027714211 ], [ -58.464131072799887, -34.53431298908847 ], [ -58.464549979862042, -34.534199972057671 ], [ -58.465045685533788, -34.5341004045004 ], [ -58.465508998865751, -34.534039026087783 ], [ -58.466036412522328, -34.533993854982008 ], [ -58.466439429196278, -34.533985798435779 ], [ -58.46691953610511, -34.534018902406679 ], [ -58.467478895038461, -34.534086510834094 ], [ -58.467963555858958, -34.534178111813993 ], [ -58.468406630599283, -34.534283182460769 ], [ -58.468937147644873, -34.53444100250703 ], [ -58.469585279425957, -34.534618238830298 ], [ -58.470516752101801, -34.534866867383059 ], [ -58.472030542698342, -34.535282941528124 ], [ -58.473087023446112, -34.535627276673587 ], [ -58.475787555791648, -34.536531976581173 ], [ -58.476972787032821, -34.536975256814053 ], [ -58.477781505820197, -34.537350811630297 ], [ -58.478588515963331, -34.537766639163081 ], [ -58.480770277582039, -34.53882899089399 ], [ -58.483055069906698, -34.539934710597507 ], [ -58.485270855810533, -34.541005455238782 ], [ -58.487175254961393, -34.541890364310859 ], [ -58.488614604099759, -34.54260808719971 ], [ -58.489492314792599, -34.543022439203561 ], [ -58.490296952328372, -34.543384610837727 ], [ -58.490655774631463, -34.54353432023192 ], [ -58.491162930313791, -34.543722944736238 ], [ -58.491659404916213, -34.543894540151527 ], [ -58.492076292933049, -34.544011752036489 ], [ -58.49265370229746, -34.544148141057228 ], [ -58.493091095700422, -34.544253505047578 ], [ -58.493699762362013, -34.544360707449513 ], [ -58.49424140866325, -34.544428563574598 ], [ -58.494712364835273, -34.544467798591562 ], [ -58.495147366195248, -34.544496875698563 ], [ -58.495660278413702, -34.544489169974618 ], [ -58.496197746433772, -34.544459966725022 ], [ -58.496493763009028, -34.544447033199347 ], [ -58.496877950683782, -34.544414196858988 ], [ -58.497369083880308, -34.544357059003239 ], [ -58.49782034961725, -34.544284003162893 ], [ -58.498297187928337, -34.544183572800563 ], [ -58.498869782627523, -34.544041029600443 ], [ -58.499224217215669, -34.543946398978932 ], [ -58.499607482520311, -34.543828881311761 ], [ -58.500008524790744, -34.543682544766142 ], [ -58.50043611019187, -34.543515048085489 ], [ -58.500874738102553, -34.543322973392669 ], [ -58.501364277001322, -34.543090011602779 ], [ -58.502222855371379, -34.542646661756443 ], [ -58.503951242330018, -34.541768601825687 ], [ -58.504839146190832, -34.541314706091562 ], [ -58.505660281631627, -34.540907375542183 ], [ -58.506554939802342, -34.540446740334573 ], [ -58.507579415843381, -34.539923312264861 ], [ -58.509333978898731, -34.539038639460323 ], [ -58.510665073107887, -34.538366033565516 ], [ -58.512156945761319, -34.537595851849943 ], [ -58.513981942495043, -34.536666952641909 ], [ -58.515478313996603, -34.535909960351503 ], [ -58.517039460764693, -34.535117540830662 ], [ -58.518607799147752, -34.53432313552387 ], [ -58.520470836466551, -34.533379236124077 ], [ -58.521735146301793, -34.53273570331951 ], [ -58.522726237320647, -34.53224727445027 ], [ -58.524238493258373, -34.531461970073707 ], [ -58.525238583496566, -34.530949964991827 ], [ -58.52571533250417, -34.530717735486633 ], [ -58.5260051558353, -34.530578814413467 ], [ -58.526282056217497, -34.530465105780543 ], [ -58.526557720400497, -34.53036436003574 ], [ -58.526851449905017, -34.530277206315994 ], [ -58.527165115835047, -34.530199006577249 ], [ -58.527734599521089, -34.530092976065959 ], [ -58.528317680295828, -34.530002629265176 ], [ -58.528804411727492, -34.529937365949351 ], [ -58.529942722335527, -34.529790578605038 ], [ -58.531164908697782, -34.529616867860938 ], [ -58.533533748950283, -34.529303563034112 ], [ -58.535134519412807, -34.529087364561413 ], [ -58.536579856711512, -34.528891732740263 ], [ -58.53803261257714, -34.528700081316181 ], [ -58.538436563765323, -34.528645236256843 ], [ -58.538763348755097, -34.528596457224268 ], [ -58.539101065826927, -34.52852670981239 ], [ -58.539399886124869, -34.528440367398581 ], [ -58.539743196365819, -34.528336744886943 ], [ -58.540107496010627, -34.528202301579931 ], [ -58.540380112219488, -34.528089630533479 ], [ -58.5406302380445, -34.527967390477613 ], [ -58.540862798745962, -34.527849397447682 ], [ -58.541051414181453, -34.527741136676518 ], [ -58.541315706892178, -34.527572735265501 ], [ -58.541588571455662, -34.527377447135322 ], [ -58.54204636704992, -34.527023680251489 ], [ -58.542804348822457, -34.526424723073553 ], [ -58.54404101060625, -34.525454699751073 ], [ -58.545124266787958, -34.524586038897723 ], [ -58.546329768851862, -34.523646422934952 ], [ -58.547504274865112, -34.52269632723484 ], [ -58.548605246681817, -34.521840778716196 ], [ -58.550155087278881, -34.520627493957747 ], [ -58.55225569408541, -34.518953910494027 ], [ -58.554051185841807, -34.517525355595218 ], [ -58.556942483891511, -34.515215955849627 ], [ -58.559097899943559, -34.513518370767912 ], [ -58.561546716840112, -34.511554486014802 ], [ -58.564157427610603, -34.509503396220524 ], [ -58.564912237944213, -34.508902703133607 ], [ -58.5652427243988, -34.508652280098538 ], [ -58.565468583116328, -34.508511786707878 ], [ -58.565678157959923, -34.508394923066007 ], [ -58.566157958293147, -34.508160813788074 ], [ -58.566474286959973, -34.508025685384617 ], [ -58.5667755934006, -34.507902565530557 ], [ -58.567175671419513, -34.507760140988751 ], [ -58.56747667008085, -34.50767614491906 ], [ -58.567806325305817, -34.507605166070128 ], [ -58.568004310932629, -34.507558572748479 ], [ -58.568301759929462, -34.507512100036728 ], [ -58.568734456274903, -34.507463387614038 ], [ -58.572460107839269, -34.507221784740182 ], [ -58.579761352113763, -34.506735833450882 ], [ -58.58239269767121, -34.506564682274451 ], [ -58.58795138420107, -34.506196928813701 ], [ -58.591372430497977, -34.505966763051752 ], [ -58.596624122521419, -34.505622260927836 ], [ -58.603702095075327, -34.505164947547946 ], [ -58.61432776684137, -34.504482841077852 ], [ -58.620840541284281, -34.504063733548008 ], [ -58.627734373294771, -34.503608203303912 ], [ -58.635067979070662, -34.503124917323902 ], [ -58.636651483043977, -34.503011692478587 ], [ -58.639473496551354, -34.502832887099068 ], [ -58.644606101119528, -34.50248905030481 ], [ -58.645430454655781, -34.502425921937913 ], [ -58.645968232947958, -34.502409750622988 ], [ -58.646443090631521, -34.502406746625638 ], [ -58.647698845869492, -34.502436825454687 ], [ -58.649521977671917, -34.502509750062359 ], [ -58.652227381638227, -34.502579781224163 ], [ -58.655663811616783, -34.50267933832172 ], [ -58.660106723830822, -34.502798371178187 ], [ -58.662965889459173, -34.50288584322734 ], [ -58.666361649662747, -34.502960755609458 ], [ -58.669650803807727, -34.503062691985477 ], [ -58.675422790419191, -34.503217264501217 ], [ -58.680874628585869, -34.503354218213786 ], [ -58.681545012140759, -34.503381249746923 ], [ -58.681923108718621, -34.50339279847946 ], [ -58.682261928169517, -34.503388936172882 ], [ -58.682596032920813, -34.503369390163591 ], [ -58.682942073864197, -34.503331749052762 ], [ -58.68330823882394, -34.503297496717522 ], [ -58.683686733645779, -34.503257504065132 ], [ -58.683957233478097, -34.503214471846562 ], [ -58.684368007254292, -34.503140923802157 ], [ -58.684802299179673, -34.503053659754457 ], [ -58.685254629335141, -34.502940391085929 ], [ -58.685557722735481, -34.502860813983553 ], [ -58.685815653017762, -34.502790017304662 ], [ -58.686307198552619, -34.502622259856629 ], [ -58.686940992282729, -34.502372033446733 ], [ -58.687746676880622, -34.502046570916377 ], [ -58.688147104686379, -34.501859508770671 ], [ -58.689281347258081, -34.501362562134076 ], [ -58.691230734294287, -34.500492679966101 ], [ -58.695389635600762, -34.498624503137592 ], [ -58.697082197335263, -34.497883372784713 ], [ -58.700068090928617, -34.496544299804803 ], [ -58.702658807817883, -34.495399318105846 ], [ -58.704137595741066, -34.494750088739551 ], [ -58.705281407537669, -34.494216083104611 ], [ -58.709390410143577, -34.492394313817549 ], [ -58.711475464816012, -34.491469855642357 ], [ -58.716971347656788, -34.489017804920522 ], [ -58.718273682384357, -34.48843800276574 ], [ -58.723662218537129, -34.486029028343992 ], [ -58.729078353302043, -34.483620847740099 ], [ -58.732893690460472, -34.481925414221116 ], [ -58.73490937125208, -34.481030005857768 ], [ -58.740612118565018, -34.47846789169396 ], [ -58.741467095889362, -34.47808221924813 ], [ -58.742669608680323, -34.477552921182017 ], [ -58.743878757936493, -34.477014099482297 ], [ -58.745322515531342, -34.476371235733659 ], [ -58.747332459473263, -34.475479558801162 ], [ -58.7489991661473, -34.474729714619642 ], [ -58.750778655468352, -34.473933593497748 ], [ -58.7535381041587, -34.472695500153343 ], [ -58.75678095819692, -34.471272968310792 ], [ -58.76034264315885, -34.469662068475877 ], [ -58.762604678460789, -34.468657517664127 ], [ -58.769897375089869, -34.465392872503102 ], [ -58.776588579565342, -34.462397646952383 ], [ -58.781963036099157, -34.46000303877296 ], [ -58.784661877462113, -34.458800660804457 ], [ -58.792316537854113, -34.455378061561753 ], [ -58.796519706424952, -34.453501983796713 ], [ -58.800224788364382, -34.451785052550782 ], [ -58.806939012150387, -34.448843499786392 ], [ -58.807259147243897, -34.44869919556362 ], [ -58.807456362020922, -34.448607500807917 ], [ -58.807658317747077, -34.448506660848523 ], [ -58.807863502301387, -34.448395274165833 ], [ -58.808125562456581, -34.448251391338957 ], [ -58.80837383659923, -34.448110143380411 ], [ -58.808726026154929, -34.447913130571607 ], [ -58.809361486068958, -34.447549520678209 ], [ -58.811296935586448, -34.446459434463762 ], [ -58.812045363562177, -34.446034796387593 ], [ -58.812456396627901, -34.445800313590603 ], [ -58.812768300307638, -34.445614590850091 ], [ -58.813249393451763, -34.445357128396992 ], [ -58.813584191006683, -34.445168304719822 ], [ -58.814929121952467, -34.444405734240163 ], [ -58.819120007199949, -34.442042862121212 ], [ -58.821742180493139, -34.440557748514877 ], [ -58.822149928086148, -34.440333188339167 ], [ -58.822620743829553, -34.440072153611268 ], [ -58.823082868282569, -34.439807081750999 ], [ -58.824533702105519, -34.438968873638082 ], [ -58.827942805263127, -34.437038078387772 ], [ -58.829055280529722, -34.436432104359739 ], [ -58.82955852882133, -34.436152279357678 ], [ -58.829948925857643, -34.43595082493448 ], [ -58.830313592152521, -34.435772067139553 ], [ -58.830725802384357, -34.435583607359597 ], [ -58.831222485783272, -34.435360089242309 ], [ -58.833870987836512, -34.434150608288547 ], [ -58.83453371145869, -34.433841543090942 ], [ -58.835794124319662, -34.433277890179014 ], [ -58.839849897787083, -34.43142148868732 ], [ -58.842782810339202, -34.430076357122623 ], [ -58.846045152219503, -34.428591037769323 ], [ -58.8505707365834, -34.426522801577647 ], [ -58.856952648266422, -34.423570084001383 ], [ -58.858259199835182, -34.422940129933671 ], [ -58.862091263803038, -34.421097771811191 ], [ -58.864426386944977, -34.419981869055967 ], [ -58.865261456621063, -34.419568531794503 ], [ -58.866930090728729, -34.418780041998623 ], [ -58.869035437783353, -34.41776783178944 ], [ -58.870952569291553, -34.41684558067108 ], [ -58.872755383870349, -34.415993639073967 ], [ -58.88504249318477, -34.410110466818537 ], [ -58.886753329994249, -34.409318593781009 ], [ -58.887613636504163, -34.408947097788094 ], [ -58.888708572062228, -34.408644035267557 ], [ -58.900777473766034, -34.405581776626285 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 195.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.954042000338006, -34.905779999747153 ], [ -57.954490000313228, -34.906182000299054 ], [ -57.955348000309925, -34.906976000042334 ], [ -57.955348000309925, -34.907125999765015 ], [ -57.95526299998744, -34.908821999735437 ], [ -57.955240999872217, -34.908972000357494 ], [ -57.9551769996188, -34.909959000007802 ], [ -57.954919000311577, -34.909980000076871 ], [ -57.95470500033548, -34.910087999661414 ], [ -57.954254000221908, -34.909679999732134 ], [ -57.953224000387252, -34.908714000150951 ], [ -57.952302000137138, -34.907835000085129 ], [ -57.951272000302538, -34.906847000388723 ], [ -57.950262999637687, -34.905903000023386 ], [ -57.949425999710058, -34.905237999933718 ], [ -57.94916900044899, -34.905151999565078 ], [ -57.949189999618739, -34.905066000095758 ], [ -57.949189999618739, -34.904980999773272 ], [ -57.949297000056447, -34.903157000195336 ], [ -57.94940499964099, -34.901546999694233 ], [ -57.94940499964099, -34.901396999971553 ], [ -57.94949100000963, -34.899766000300644 ], [ -57.949512000078698, -34.899530000209324 ], [ -57.949618999617087, -34.898028000192028 ], [ -57.949618999617087, -34.897877999569971 ], [ -57.94972700010095, -34.896290000083411 ], [ -57.94972700010095, -34.896140000360674 ], [ -57.949812000423435, -34.894701999697475 ], [ -57.949812000423435, -34.894638000343377 ], [ -57.949748000170018, -34.894508999790446 ], [ -57.949769000239144, -34.89433799999864 ], [ -57.94931900017167, -34.893930000069417 ], [ -57.950456000444035, -34.893093000141789 ], [ -57.951614999932247, -34.892235000145092 ], [ -57.95270900002032, -34.891419000286589 ], [ -57.953846000292629, -34.890561000289892 ], [ -57.9549410004268, -34.889745999578167 ], [ -57.955841999708468, -34.889059000272596 ], [ -57.956099999915011, -34.889059000272596 ], [ -57.956421000328874, -34.889274000294847 ], [ -57.956443000444096, -34.889424000017527 ], [ -57.956357000075457, -34.891012000403464 ], [ -57.956336000006331, -34.891162000126144 ], [ -57.95629299982204, -34.891740999847229 ], [ -57.956270999706817, -34.892341999683481 ], [ -57.956443000444096, -34.892363999798704 ], [ -57.956978999980834, -34.892405999936898 ], [ -57.957558999748017, -34.892471000236412 ], [ -57.95815900043749, -34.892577999774801 ], [ -57.958782000388965, -34.892728000396858 ], [ -57.95895300018077, -34.892770999681829 ], [ -57.960326999691233, -34.893286000048818 ], [ -57.961056000034318, -34.893671999862875 ], [ -57.96159299961721, -34.894036999607806 ], [ -57.961871999892821, -34.894251999630058 ], [ -57.962665999636158, -34.894853000365629 ], [ -57.962816000258158, -34.894980999973143 ], [ -57.963030000234255, -34.895174999926269 ], [ -57.963481000347826, -34.895581999809394 ], [ -57.963759999724175, -34.895861000085063 ], [ -57.964768000342929, -34.896784000381274 ], [ -57.965798000177529, -34.897727999847291 ], [ -57.966828000012129, -34.898651000143502 ], [ -57.96783699977766, -34.899573000393616 ], [ -57.968180000306745, -34.899873999885131 ], [ -57.968845000396414, -34.900474999721439 ], [ -57.9689529999809, -34.900582000159147 ], [ -57.969789999908528, -34.901310999602913 ], [ -57.969939999631265, -34.901483000340136 ], [ -57.970970000365185, -34.902426999806153 ], [ -57.971978000084619, -34.903350000102364 ], [ -57.973007999919218, -34.904273000398632 ], [ -57.973994999569527, -34.905173999680301 ], [ -57.97416700030675, -34.905366999587329 ], [ -57.974982000119155, -34.906118000045637 ], [ -57.975110999772767, -34.90620400041422 ], [ -57.975647000208824, -34.905881999954318 ], [ -57.975721000024066, -34.905838999769969 ], [ -57.976313000344646, -34.905496000140261 ], [ -57.9775570001554, -34.904593999913118 ], [ -57.979746000377588, -34.902942000173141 ], [ -57.980646999659257, -34.902298000152541 ], [ -57.981656000324108, -34.901525999625164 ], [ -57.982278000229485, -34.901054000341787 ], [ -57.982900000134862, -34.900603000228216 ], [ -57.982987999696377, -34.900536999882604 ], [ -57.984736000266139, -34.899219000256608 ], [ -57.986706000281629, -34.89773400012399 ], [ -57.986826999566347, -34.897642000377971 ], [ -57.987126999911084, -34.897556000009331 ], [ -57.987770999931683, -34.897406000286651 ], [ -57.989123000226243, -34.897105999941914 ], [ -57.989807000292785, -34.896977000288302 ], [ -57.990259999599289, -34.896890999919663 ], [ -57.991054000241888, -34.89671900008176 ], [ -57.991804999800877, -34.896569000359023 ], [ -57.992276999983517, -34.896312000198634 ], [ -57.992578000374351, -34.895711000362326 ], [ -57.992834999635477, -34.894788000066114 ], [ -57.993134999980214, -34.893671999862875 ], [ -57.99332899993334, -34.893199999680178 ], [ -57.993822000185105, -34.892384999867829 ], [ -57.994015000092134, -34.892235000145092 ], [ -57.995496000040305, -34.891140000010921 ], [ -57.996332999967933, -34.890518000105601 ], [ -57.996675999597642, -34.890260999945156 ], [ -57.99710499959599, -34.889939000384516 ], [ -57.997791999800882, -34.889445000086653 ], [ -57.998908000004178, -34.888608000159024 ], [ -58.000045000276486, -34.88777200027755 ], [ -58.001332000271532, -34.886805999796991 ], [ -58.002275999737549, -34.886076000307128 ], [ -58.00231899992184, -34.886034000168934 ], [ -58.002384000221411, -34.885990999984642 ], [ -58.004529000213154, -34.884360000313734 ], [ -58.005687999701365, -34.883480000201814 ], [ -58.006803999904605, -34.882643000274186 ], [ -58.007920000107902, -34.881785000277489 ], [ -58.008800000219821, -34.881120000187821 ], [ -58.009120999734307, -34.880990999634889 ], [ -58.00946500030949, -34.880861999981278 ], [ -58.009957999661935, -34.880733000327666 ], [ -58.010622999751604, -34.880497000236346 ], [ -58.012554999813347, -34.879509999686718 ], [ -58.016566999567317, -34.877751000408296 ], [ -58.02021499962251, -34.876163000022416 ], [ -58.022897000096464, -34.875003999634828 ], [ -58.024763999858692, -34.874188999822422 ], [ -58.026480999898183, -34.873438000263434 ], [ -58.027403000148297, -34.873030000334211 ], [ -58.028326000444508, -34.872622000404931 ], [ -58.030106999838154, -34.871849999877554 ], [ -58.033634999755407, -34.870302999583714 ], [ -58.033775999962415, -34.870241000321869 ], [ -58.037573999740232, -34.868460000028961 ], [ -58.038368000382889, -34.868095000283972 ], [ -58.038839999666209, -34.867880000261778 ], [ -58.039634000308808, -34.867473000378595 ], [ -58.0401709998917, -34.867215000172052 ], [ -58.041286000048842, -34.866678999735996 ], [ -58.042337999998665, -34.866164000268327 ], [ -58.043432000086682, -34.865626999786173 ], [ -58.044548000289922, -34.865091000249436 ], [ -58.04562100030887, -34.864553999767224 ], [ -58.046757999681915, -34.864018000230487 ], [ -58.047488000071098, -34.863825000323459 ], [ -58.047788000415835, -34.863782000139167 ], [ -58.048625000343463, -34.86371799988575 ], [ -58.049419000086743, -34.863674999701459 ], [ -58.049997999807829, -34.863652999586236 ], [ -58.05107099982672, -34.863481999794431 ], [ -58.051671999663029, -34.863331000025596 ], [ -58.052787999866268, -34.863051999749928 ], [ -58.053775000415897, -34.862773000373636 ], [ -58.054805000250497, -34.862537000282316 ], [ -58.055984999807833, -34.862236999937579 ], [ -58.05669300008185, -34.862087000214842 ], [ -58.057208000448838, -34.862000999846202 ], [ -58.058495999590662, -34.861936999592785 ], [ -58.059782999585707, -34.861872000192591 ], [ -58.060555000113141, -34.861829000008299 ], [ -58.062980000426649, -34.861721999570591 ], [ -58.063602000332025, -34.861658000216494 ], [ -58.064246000352568, -34.861486000378591 ], [ -58.064975999842488, -34.861186000033854 ], [ -58.065483999886624, -34.860941999573583 ], [ -58.065963000392117, -34.86071299980506 ], [ -58.067571999947802, -34.859854999808363 ], [ -58.068365999691082, -34.859425999810014 ], [ -58.069975000146087, -34.858567999813317 ], [ -58.070619000166687, -34.858203000068329 ], [ -58.070983999911618, -34.858010000161357 ], [ -58.072399999560275, -34.857043999680798 ], [ -58.073322999856543, -34.856464999959712 ], [ -58.074267000221823, -34.855992999777072 ], [ -58.07529700005648, -34.855499000378529 ], [ -58.075832999593217, -34.855220000102861 ], [ -58.076283999706789, -34.855006000126764 ], [ -58.077271000256417, -34.854511999828901 ], [ -58.078214999722434, -34.854039999646204 ], [ -58.078643999720782, -34.853825999670107 ], [ -58.079202000272062, -34.853610999647856 ], [ -58.079996000015342, -34.853374999556536 ], [ -58.081047999965165, -34.853096000180244 ], [ -58.082077999799822, -34.852839000019799 ], [ -58.083128999703547, -34.852580999813256 ], [ -58.084179999607272, -34.85232399965281 ], [ -58.085274999741387, -34.852045000276519 ], [ -58.086304999576043, -34.851787000069976 ], [ -58.086455000198043, -34.851743999885628 ], [ -58.08836500014462, -34.851271999702988 ], [ -58.0885149998673, -34.851229000418016 ], [ -58.089502000416928, -34.85097200025757 ], [ -58.090575000435877, -34.850714000051028 ], [ -58.091626000339602, -34.850456999890582 ], [ -58.092678000289425, -34.850177999614971 ], [ -58.093750000262276, -34.849899000238622 ], [ -58.094715999843459, -34.849619999963011 ], [ -58.095918000415338, -34.849147999780314 ], [ -58.096776000412035, -34.848804000104451 ], [ -58.097548000040149, -34.848503999759714 ], [ -58.099221999895349, -34.847710000016434 ], [ -58.101088999657577, -34.846958999558126 ], [ -58.103513999971085, -34.845971999907817 ], [ -58.104222000245102, -34.845735999816497 ], [ -58.105278000379371, -34.845542999909469 ], [ -58.11224699979914, -34.845350000002441 ], [ -58.11666700038171, -34.84520000027976 ], [ -58.118205000260502, -34.845147999680421 ], [ -58.124635000005185, -34.844931999612072 ], [ -58.129456000194239, -34.844770000235258 ], [ -58.134542000013255, -34.844599000443452 ], [ -58.139284000156465, -34.844448999821452 ], [ -58.143875999677618, -34.844298000052618 ], [ -58.145292000225595, -34.844320000167841 ], [ -58.146322000060195, -34.844469999890521 ], [ -58.147093999688309, -34.844556000259161 ], [ -58.148060000168812, -34.844577000328286 ], [ -58.152029999784645, -34.844254999868326 ], [ -58.154304000329319, -34.844061999961298 ], [ -58.156042000437935, -34.843912000238561 ], [ -58.157350999648884, -34.843782999685629 ], [ -58.157909000200164, -34.843676000147241 ], [ -58.159346999964043, -34.843182999895475 ], [ -58.15964700030878, -34.843075000310989 ], [ -58.16044100005206, -34.842839000219669 ], [ -58.163401999902305, -34.842044999577013 ], [ -58.164557000105447, -34.841677999739829 ], [ -58.16765099979375, -34.840693000181773 ], [ -58.169517999555978, -34.840113999561368 ], [ -58.170526000174732, -34.83981400011595 ], [ -58.171213000379623, -34.839705999632145 ], [ -58.171963999938612, -34.839642000278047 ], [ -58.17295099958892, -34.839621000208922 ], [ -58.17374500023152, -34.83966400039327 ], [ -58.179172999634204, -34.840328999583619 ], [ -58.18039700032125, -34.840436000021327 ], [ -58.181147999880238, -34.840522000389967 ], [ -58.1848170000045, -34.84093000031919 ], [ -58.18513899956514, -34.840971999558064 ], [ -58.186319000021797, -34.841123000226219 ], [ -58.187949999692705, -34.840971999558064 ], [ -58.188121000383831, -34.840971999558064 ], [ -58.188486000128762, -34.841057999926704 ], [ -58.188614999782374, -34.841250999833733 ], [ -58.188850999873694, -34.841422999671636 ], [ -58.188973000103829, -34.841442999694664 ], [ -58.189236999687751, -34.841486999925053 ], [ -58.18955900014771, -34.841401999602567 ], [ -58.189774000169905, -34.841250999833733 ], [ -58.189923999892642, -34.841080000041927 ], [ -58.18994499996171, -34.840986000203714 ], [ -58.189967000076933, -34.840887000134899 ], [ -58.189951000238409, -34.84073100013552 ], [ -58.18994499996171, -34.840672000112647 ], [ -58.189838000423322, -34.840500000274744 ], [ -58.189687999801322, -34.840349999652744 ], [ -58.189838000423322, -34.83981400011595 ], [ -58.190224000237379, -34.838911999888865 ], [ -58.190288999637573, -34.838633999659294 ], [ -58.190298000052621, -34.83841600039807 ], [ -58.190330999775767, -34.837624999893762 ], [ -58.190460000328699, -34.836895000403899 ], [ -58.190610000051436, -34.836487999621454 ], [ -58.191128999703551, -34.834730000389186 ], [ -58.19170500018555, -34.83277600021222 ], [ -58.191832999793064, -34.832312000398474 ], [ -58.191875999977356, -34.832153000260689 ], [ -58.191941000276927, -34.831830999800729 ], [ -58.192047999815316, -34.831316000333118 ], [ -58.192177000368247, -34.830715999643644 ], [ -58.19223700043716, -34.829957999761859 ], [ -58.192240999722344, -34.829899999785141 ], [ -58.192240999722344, -34.828978000434347 ], [ -58.192226999976015, -34.828765999651125 ], [ -58.192155000253024, -34.827711999609051 ], [ -58.19202699974619, -34.826874999681422 ], [ -58.19155499956355, -34.825436999917542 ], [ -58.191189999818619, -34.824643000174262 ], [ -58.191153999957066, -34.824575999782496 ], [ -58.190781999889339, -34.823870999646886 ], [ -58.190094999684447, -34.822776000412034 ], [ -58.18949900007874, -34.822060999815221 ], [ -58.189344000125459, -34.821875000231046 ], [ -58.188701000151013, -34.821166999957029 ], [ -58.188142999599734, -34.820609000305069 ], [ -58.185976000392088, -34.818784999827812 ], [ -58.185932000161642, -34.818748999966317 ], [ -58.184129999799609, -34.817261999741447 ], [ -58.181564000178412, -34.815138999864928 ], [ -58.179221000049097, -34.813201000425806 ], [ -58.176537000382211, -34.81097999962725 ], [ -58.175310999602914, -34.809965999631117 ], [ -58.172963000142317, -34.808035999661627 ], [ -58.170043000384112, -34.805636999647788 ], [ -58.167242999864527, -34.803335999656611 ], [ -58.165834999685444, -34.802193000006923 ], [ -58.165761999916299, -34.802133999984051 ], [ -58.164110000176322, -34.800675000151102 ], [ -58.163337999648945, -34.799874000084969 ], [ -58.162972999903957, -34.799494999694446 ], [ -58.162436000321122, -34.798914999927263 ], [ -58.161741999793435, -34.797975999792527 ], [ -58.1614069996333, -34.797521000393829 ], [ -58.160676000097283, -34.79631300044457 ], [ -58.159862000331032, -34.794967000426709 ], [ -58.158961000149986, -34.793545999648131 ], [ -58.157489999763641, -34.791226999726234 ], [ -58.157371999717952, -34.791040000095904 ], [ -58.156985999903952, -34.790418000190527 ], [ -58.156706999628284, -34.789946000007831 ], [ -58.156363999998575, -34.789409999571774 ], [ -58.155517999655899, -34.788000000199816 ], [ -58.15546299981753, -34.787907999554477 ], [ -58.154948000349918, -34.787113999811197 ], [ -58.154603999774736, -34.786620000412654 ], [ -58.153811000077553, -34.785181999749454 ], [ -58.153403000148273, -34.784389000052272 ], [ -58.153273999595342, -34.783722999916449 ], [ -58.153258999802972, -34.783482999640682 ], [ -58.153253000425593, -34.783380000286741 ], [ -58.153403000148273, -34.782649999897558 ], [ -58.153853000215747, -34.781857000200375 ], [ -58.15419699989161, -34.781341999833387 ], [ -58.154714000350793, -34.780896999996514 ], [ -58.15602100036881, -34.779775000415896 ], [ -58.157952000384455, -34.77840200005221 ], [ -58.158042000038222, -34.778334999660444 ], [ -58.161041999888369, -34.776106000291634 ], [ -58.162071999722968, -34.775398000017617 ], [ -58.163230000064402, -34.774776000112297 ], [ -58.163745000431391, -34.774432000436434 ], [ -58.164089000107253, -34.774153000160766 ], [ -58.164213000429584, -34.774035000115134 ], [ -58.16606300030719, -34.772265000329469 ], [ -58.16748999956377, -34.771181999849375 ], [ -58.169711000362327, -34.769497000386195 ], [ -58.171288000240963, -34.768304000229364 ], [ -58.174814000066021, -34.765637000447157 ], [ -58.178802999658672, -34.762618999766971 ], [ -58.183593000216774, -34.758994999919253 ], [ -58.187108000433852, -34.756336999652774 ], [ -58.187949999692705, -34.75569999995497 ], [ -58.190359000167689, -34.753877000423188 ], [ -58.191990999884695, -34.752642000128162 ], [ -58.192799000273624, -34.752029999784611 ], [ -58.194627000036007, -34.750654000181896 ], [ -58.196189000122217, -34.749476999863589 ], [ -58.198216000068328, -34.747938999984797 ], [ -58.202425999959871, -34.744743000089329 ], [ -58.205269999810582, -34.742586000443509 ], [ -58.205802000062192, -34.742180999753316 ], [ -58.206381999829375, -34.741708999570619 ], [ -58.206542000013258, -34.741569000309084 ], [ -58.208291999775952, -34.740035999761517 ], [ -58.208435000075156, -34.739913000384604 ], [ -58.209453000255735, -34.739039999696161 ], [ -58.209493000301677, -34.739005999926917 ], [ -58.210654999928238, -34.737977000138414 ], [ -58.213916000123277, -34.735089000057258 ], [ -58.217218000410355, -34.732165000114605 ], [ -58.217368000133035, -34.732032000276547 ], [ -58.219813999616349, -34.72982199998529 ], [ -58.220639999935997, -34.729093999688303 ], [ -58.221263999933626, -34.728543000359139 ], [ -58.224177000268298, -34.72597499974637 ], [ -58.224534999690434, -34.725658999563109 ], [ -58.225476999963519, -34.724812000073712 ], [ -58.226049000261128, -34.724297999752821 ], [ -58.227657999816813, -34.722851999620048 ], [ -58.229006999973024, -34.721640000385662 ], [ -58.229620000362672, -34.721088000111081 ], [ -58.230971999757969, -34.719865000369452 ], [ -58.231400999756318, -34.719521999840367 ], [ -58.231564000078492, -34.719395000279007 ], [ -58.232388000305946, -34.718753000350659 ], [ -58.232860999635363, -34.718384999568059 ], [ -58.233689000047264, -34.717929000123206 ], [ -58.234341000436757, -34.717568999709499 ], [ -58.235456999740677, -34.717033000172762 ], [ -58.236271999553082, -34.716710999712802 ], [ -58.237029000288089, -34.716492000405424 ], [ -58.237950999638883, -34.716225999829987 ], [ -58.238052999846047, -34.716196000245191 ], [ -58.239274000394744, -34.715931999761949 ], [ -58.240627999882236, -34.715637999693911 ], [ -58.241223000341165, -34.715512000178649 ], [ -58.241744000085475, -34.715401999602534 ], [ -58.242148999876406, -34.715303999579874 ], [ -58.242452000359492, -34.715229999764631 ], [ -58.24309400028784, -34.715009000365058 ], [ -58.243725999755043, -34.714790000158359 ], [ -58.244189999568789, -34.714629999974477 ], [ -58.245549000186145, -34.714096999676769 ], [ -58.246272000252588, -34.713814000115974 ], [ -58.247945000061691, -34.713192000210597 ], [ -58.248026000199729, -34.713162999772578 ], [ -58.249916000123278, -34.71248399993658 ], [ -58.251829000208147, -34.711796999731689 ], [ -58.252043000184244, -34.71170399993963 ], [ -58.253695999970375, -34.710981999919341 ], [ -58.254308000313927, -34.7106889998974 ], [ -58.255670000170312, -34.710037999554004 ], [ -58.256963000442056, -34.709381999879326 ], [ -58.259141000157001, -34.708279000275581 ], [ -58.260392000290551, -34.707644999816864 ], [ -58.260454999598494, -34.707613000139816 ], [ -58.261635000055151, -34.707118999841953 ], [ -58.262579000420487, -34.706776000212187 ], [ -58.262670000120352, -34.706747999820266 ], [ -58.263694999724407, -34.706432999683159 ], [ -58.264159999584251, -34.706316999729722 ], [ -58.265291999626015, -34.706034000168927 ], [ -58.265326000294635, -34.706024999753879 ], [ -58.266834999735408, -34.705691999685996 ], [ -58.267364999894767, -34.705574999686462 ], [ -58.268020000422666, -34.705396999571803 ], [ -58.268393999683326, -34.705296000310113 ], [ -58.26925299972612, -34.705017000034502 ], [ -58.269791000254429, -34.7048050001506 ], [ -58.269961000000137, -34.704737999758834 ], [ -58.270754999743417, -34.704350999898679 ], [ -58.270790999604912, -34.704329999829611 ], [ -58.271699000108754, -34.703794000292817 ], [ -58.272234999645491, -34.703428999648565 ], [ -58.272731000035606, -34.703077999649906 ], [ -58.273114999757411, -34.702805999697091 ], [ -58.27356699991708, -34.70242700020583 ], [ -58.273652000239565, -34.702355999629617 ], [ -58.274020000122846, -34.701961000299889 ], [ -58.27455300042061, -34.701390000048434 ], [ -58.274829999704707, -34.701058000026649 ], [ -58.275517999955696, -34.700231999707 ], [ -58.27558600039356, -34.700144000145428 ], [ -58.275825999770007, -34.699832000146671 ], [ -58.276590999974644, -34.698837000127412 ], [ -58.276897999742857, -34.698448000175006 ], [ -58.277556999555827, -34.697614000385784 ], [ -58.277726000154757, -34.697429999994483 ], [ -58.278308000014135, -34.696797999627961 ], [ -58.278451000313396, -34.696659000412524 ], [ -58.279273999595375, -34.695854000161944 ], [ -58.279722999616695, -34.695456999840644 ], [ -58.279831000100558, -34.695360999910179 ], [ -58.280690000143352, -34.694694999774356 ], [ -58.281038000003662, -34.694454000351811 ], [ -58.282529999559813, -34.693417000194358 ], [ -58.284614000335807, -34.691968999969333 ], [ -58.284767000196837, -34.691862999577722 ], [ -58.284993999873166, -34.691719000131684 ], [ -58.285946999754174, -34.691112000018734 ], [ -58.286153000260697, -34.690988999742501 ], [ -58.28753500014011, -34.690167999653397 ], [ -58.288481999744477, -34.689732000231572 ], [ -58.28912299962667, -34.689438000163534 ], [ -58.289721000223949, -34.689232999703108 ], [ -58.291440000355692, -34.688644000420254 ], [ -58.291506999848139, -34.688626999636256 ], [ -58.292856000004349, -34.6882799998221 ], [ -58.293275999587649, -34.68819400035278 ], [ -58.294776000412071, -34.687888999777499 ], [ -58.295281000317857, -34.687786000423557 ], [ -58.296009999761623, -34.687592999617209 ], [ -58.296311000152514, -34.68750099987119 ], [ -58.298006000076782, -34.686983000265229 ], [ -58.298275999937403, -34.686900000034939 ], [ -58.298896999796682, -34.68671000026626 ], [ -58.300217000414193, -34.686305999622164 ], [ -58.300709999766639, -34.686154999853329 ], [ -58.301387000409704, -34.685950000292223 ], [ -58.303391000194438, -34.685344000225371 ], [ -58.305635000254995, -34.68466500038943 ], [ -58.30652499992874, -34.684395999675587 ], [ -58.307790999854717, -34.683987999746364 ], [ -58.309567999963178, -34.683437999563978 ], [ -58.310827999612457, -34.683048999611572 ], [ -58.311954000276842, -34.682700999751319 ], [ -58.312553000020898, -34.682517000259338 ], [ -58.313842000108195, -34.682120999984136 ], [ -58.313908999600585, -34.682100999961108 ], [ -58.316347999660422, -34.681350000402176 ], [ -58.317468000048109, -34.681004999780896 ], [ -58.320776999758664, -34.680014999992238 ], [ -58.320836999827634, -34.679997000061462 ], [ -58.322488999567611, -34.679481999694474 ], [ -58.324055999884422, -34.678985000157581 ], [ -58.325665000339427, -34.678472999928942 ], [ -58.325908999900378, -34.678381000182981 ], [ -58.327252999826044, -34.677873000138788 ], [ -58.327982000169129, -34.677528999563663 ], [ -58.329656000024329, -34.676628000281937 ], [ -58.330189000322093, -34.676325999844948 ], [ -58.330600000389666, -34.67609199984588 ], [ -58.331930999715837, -34.675211999733961 ], [ -58.332094000038012, -34.675085000172601 ], [ -58.33356400037826, -34.673940000430605 ], [ -58.33467999968218, -34.673069999880568 ], [ -58.335620999909167, -34.672337000252298 ], [ -58.336565000274504, -34.671542999609699 ], [ -58.336924999788891, -34.671306000371601 ], [ -58.337445000386424, -34.670962999842516 ], [ -58.339315000287002, -34.669788999662558 ], [ -58.339869999800612, -34.66943999975615 ], [ -58.341199999979949, -34.668344999621979 ], [ -58.341515000117113, -34.66803100043029 ], [ -58.342359000367537, -34.667187000179865 ], [ -58.342952999880993, -34.666439999906004 ], [ -58.343023999557886, -34.666350000252294 ], [ -58.343946999854097, -34.664976999888609 ], [ -58.344505000405377, -34.664267999568494 ], [ -58.344534999990231, -34.664230999660845 ], [ -58.344891000219434, -34.663775000216049 ], [ -58.346070999776771, -34.662524000082499 ], [ -58.346306999868091, -34.662273000198752 ], [ -58.347959999654222, -34.660641999628524 ], [ -58.348518000205502, -34.660038999700021 ], [ -58.348775000365947, -34.659762000415924 ], [ -58.349354000086976, -34.659010999957616 ], [ -58.350255000268021, -34.657680999778279 ], [ -58.350277000383244, -34.657659999709153 ], [ -58.350598999943827, -34.657123000126319 ], [ -58.350713999851166, -34.656966000080786 ], [ -58.351177999664912, -34.656329000383039 ], [ -58.351715000147124, -34.655513999671314 ], [ -58.352224000237356, -34.654633999559394 ], [ -58.352423000421084, -34.654290999929685 ], [ -58.352937999888752, -34.653217999910737 ], [ -58.353387999956169, -34.652231000260429 ], [ -58.353424999863819, -34.652099999615245 ], [ -58.353580999863198, -34.651544000055537 ], [ -58.35360299997842, -34.651115000057189 ], [ -58.353496000440032, -34.650620999759269 ], [ -58.353260000348712, -34.650191999760921 ], [ -58.352337000052444, -34.648861999581584 ], [ -58.352210999637862, -34.648626000389584 ], [ -58.350809999781632, -34.645999999800097 ], [ -58.350620000012952, -34.645471999732933 ], [ -58.350512999575244, -34.645041999688488 ], [ -58.350449000221147, -34.64459199962107 ], [ -58.350449000221147, -34.64427000006043 ], [ -58.350449000221147, -34.643927000430665 ], [ -58.350533999644313, -34.643240000225774 ], [ -58.350878000219495, -34.642295999860437 ], [ -58.351285000102621, -34.641523000186282 ], [ -58.351491999755922, -34.641189000072245 ], [ -58.352314999937278, -34.63985000037718 ], [ -58.352514000120948, -34.639464999709901 ], [ -58.352958999957821, -34.638604999621009 ], [ -58.353130999795781, -34.638196999691729 ], [ -58.353250999933664, -34.637806999693225 ], [ -58.353301999587586, -34.637640000085867 ], [ -58.353431000140517, -34.636930999765809 ], [ -58.35345300025574, -34.636610000251267 ], [ -58.353538999725004, -34.636029999584764 ], [ -58.353540999817255, -34.635987000299792 ], [ -58.353599999840071, -34.634750999958612 ], [ -58.35360299997842, -34.634700000304747 ], [ -58.353566000070828, -34.633352000194634 ], [ -58.353559999794129, -34.63311199991881 ], [ -58.353600999886169, -34.632542999759607 ], [ -58.35360299997842, -34.632511000082559 ], [ -58.353715999793508, -34.632023000061338 ], [ -58.353731999632032, -34.631953000430599 ], [ -58.353882000254089, -34.631481000247902 ], [ -58.353938000138555, -34.631384000271339 ], [ -58.35448300009034, -34.630451000413302 ], [ -58.354544000205408, -34.630368000183012 ], [ -58.354889999973466, -34.629892999862022 ], [ -58.355297999902746, -34.629463999863674 ], [ -58.355610999947658, -34.629214000026025 ], [ -58.355941999923289, -34.628949000396005 ], [ -58.3560820000842, -34.628851000373345 ], [ -58.356848000334935, -34.628318000075581 ], [ -58.357143000449071, -34.628111999569057 ], [ -58.357497999732857, -34.627882999800534 ], [ -58.358109000030311, -34.627489999663737 ], [ -58.358552999821029, -34.627234000448709 ], [ -58.359194999749377, -34.626864999620011 ], [ -58.360083000230247, -34.626353000290692 ], [ -58.36055100022844, -34.626119000291567 ], [ -58.361328000087099, -34.625731000385315 ], [ -58.362057000430184, -34.625408999925355 ], [ -58.362587999736377, -34.625208999695531 ], [ -58.362743999735756, -34.625150999718812 ], [ -58.363044000080492, -34.625087000364715 ], [ -58.363881000008121, -34.625108000433841 ], [ -58.366477000113434, -34.625172999834035 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.369739000354514, -34.625280000271744 ], [ -58.371068999634588, -34.625343999625841 ], [ -58.372635999951399, -34.625452000109647 ], [ -58.373945000061667, -34.625537000432189 ], [ -58.375061000264907, -34.625645000016675 ], [ -58.376218999707021, -34.626266999922052 ], [ -58.377249000440997, -34.626824999574012 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.392312999944977, -34.626438999760012 ], [ -58.392549000036297, -34.625322999556715 ], [ -58.392719999828103, -34.623992000230601 ], [ -58.393578999870897, -34.624228000321921 ], [ -58.394390000398175, -34.624409999721649 ], [ -58.394822999681651, -34.624506999698212 ], [ -58.397119000341547, -34.624914999627492 ], [ -58.397225999879936, -34.624936999742715 ], [ -58.400787999566489, -34.625794999739412 ], [ -58.40156100014002, -34.625945000361412 ], [ -58.401776000162215, -34.625978000084615 ], [ -58.403813999716249, -34.626287999991177 ], [ -58.407397000371247, -34.626739000104749 ], [ -58.408498999928838, -34.626824999574012 ], [ -58.409264000133476, -34.626824999574012 ], [ -58.411453000355664, -34.626954000126943 ], [ -58.41396200004624, -34.627261999941311 ], [ -58.415465000109634, -34.627447000378709 ], [ -58.419026999796188, -34.627940999777252 ], [ -58.420537000182378, -34.628202000122144 ], [ -58.421259000202667, -34.628326999591309 ], [ -58.424605999866969, -34.628713000304685 ], [ -58.426955000272983, -34.629017999980647 ], [ -58.431043999980602, -34.629550000232257 ], [ -58.433254000271859, -34.629892999862022 ], [ -58.433596999901567, -34.629979000230605 ], [ -58.434794000242903, -34.630146999884118 ], [ -58.437416999794664, -34.630515999813497 ], [ -58.438575000136098, -34.630880000411651 ], [ -58.439240000225766, -34.631224000087514 ], [ -58.439437000317298, -34.631337999948698 ], [ -58.441900999731331, -34.632769000289102 ], [ -58.442716999589834, -34.633283999756713 ], [ -58.444040000345694, -34.634185999983856 ], [ -58.44548500043237, -34.635171999588067 ], [ -58.446064000153456, -34.635580000416667 ], [ -58.446642999874484, -34.635900999931152 ], [ -58.447436999617821, -34.636202000321987 ], [ -58.447908999800461, -34.636330999975598 ], [ -58.448938999635061, -34.636458999583112 ], [ -58.449052000349468, -34.636457000390237 ], [ -58.451471000386334, -34.636416000298141 ], [ -58.452200999876197, -34.636480999698335 ], [ -58.453102000057243, -34.636694999674432 ], [ -58.453466999802174, -34.636846000342587 ], [ -58.454222000444929, -34.637274000294838 ], [ -58.454753999797219, -34.637574999786352 ], [ -58.455783999631819, -34.638239999876077 ], [ -58.456171000391294, -34.63856200033598 ], [ -58.457434000178921, -34.639598000447336 ], [ -58.457478999556145, -34.639635000354929 ], [ -58.459947000053944, -34.641480000001934 ], [ -58.460514000120952, -34.641962999792554 ], [ -58.460805000050698, -34.642210000391174 ], [ -58.461191999910852, -34.642618000320397 ], [ -58.461664000093492, -34.643283000410122 ], [ -58.461943000369104, -34.643947999600471 ], [ -58.462347000113937, -34.645100999711303 ], [ -58.462372000367509, -34.645171000241419 ], [ -58.462650999743801, -34.645815000262019 ], [ -58.462864999719898, -34.646480000351687 ], [ -58.463079999742149, -34.646994999819356 ], [ -58.463487999671429, -34.647809999631761 ], [ -58.463701999647526, -34.648154000206887 ], [ -58.463879999762128, -34.648360999860188 ], [ -58.463959999854069, -34.648453999652304 ], [ -58.464239000129737, -34.648711999858847 ], [ -58.464518000405349, -34.648904999765875 ], [ -58.464989999688669, -34.649140999857195 ], [ -58.465697999962686, -34.649376999948572 ], [ -58.467199999979982, -34.649484000386281 ], [ -58.467628999978331, -34.649484000386281 ], [ -58.468484999882776, -34.649473999925135 ], [ -58.471320000217816, -34.649441000201932 ], [ -58.472499999775152, -34.649354999833349 ], [ -58.47457199999775, -34.649100999811253 ], [ -58.474946000157729, -34.649055000387932 ], [ -58.475654000431746, -34.648882999650652 ], [ -58.478078999845934, -34.648111000022595 ], [ -58.478958999957854, -34.647896000000344 ], [ -58.480610999697831, -34.64753200030151 ], [ -58.480939999581267, -34.647437000417199 ], [ -58.481511999878876, -34.647274000094967 ], [ -58.482692000335533, -34.646866000165744 ], [ -58.485610000001486, -34.64577200007767 ], [ -58.48711300006488, -34.645041999688488 ], [ -58.487372000317521, -34.64488000031173 ], [ -58.488141999853383, -34.644398999714042 ], [ -58.488851000173497, -34.643905000315442 ], [ -58.491039000349531, -34.642102999953465 ], [ -58.491360999910171, -34.641790999954651 ], [ -58.492454999998188, -34.640729000442946 ], [ -58.493335000110108, -34.639741999893317 ], [ -58.494972000057714, -34.637605000270526 ], [ -58.495158999688044, -34.637360999810255 ], [ -58.495502000217073, -34.637017000134392 ], [ -58.495910000146353, -34.636673999605364 ], [ -58.496318000075576, -34.636416000298141 ], [ -58.497047000418718, -34.636029999584764 ], [ -58.497584000001552, -34.635858999792958 ], [ -58.498056000184192, -34.635751000208472 ], [ -58.49863699999753, -34.635704999885775 ], [ -58.498870999996598, -34.635686999955055 ], [ -58.499879999762129, -34.635751000208472 ], [ -58.501767999593483, -34.636029999584764 ], [ -58.503571000001614, -34.636244999607015 ], [ -58.504142000253069, -34.636286999745209 ], [ -58.505007999719396, -34.636352000044724 ], [ -58.506360000013956, -34.636330999975598 ], [ -58.507775999662613, -34.636115999953404 ], [ -58.508966999727193, -34.635756999585794 ], [ -58.509771999977772, -34.635515000117095 ], [ -58.510801999812429, -34.635257999956707 ], [ -58.511789000362057, -34.635171999588067 ], [ -58.512517999805823, -34.635171999588067 ], [ -58.513547999640423, -34.635257999956707 ], [ -58.514599999590246, -34.635365000394415 ], [ -58.514685999958886, -34.63537800009459 ], [ -58.515929999769639, -34.635558000301444 ], [ -58.517174999626491, -34.635773000323638 ], [ -58.51820500036041, -34.636029999584764 ], [ -58.518933999804233, -34.636287999791307 ], [ -58.519390000148348, -34.636425999859966 ], [ -58.519921000353861, -34.636588000136044 ], [ -58.521100999911198, -34.636846000342587 ], [ -58.521530999955644, -34.636909999696684 ], [ -58.521981000023118, -34.636930999765809 ], [ -58.522453000205758, -34.636909999696684 ], [ -58.523203999764746, -34.636803000158295 ], [ -58.523526000224706, -34.636716999789655 ], [ -58.524191000314374, -34.636480999698335 ], [ -58.525286000448546, -34.635987000299792 ], [ -58.52656800021299, -34.63538100023294 ], [ -58.527153000210774, -34.635192999657193 ], [ -58.528011000207471, -34.63510800023397 ], [ -58.528353999837179, -34.63510800023397 ], [ -58.528697000366208, -34.635214999772359 ], [ -58.528975999742556, -34.635365000394415 ], [ -58.529298000202516, -34.635664999839832 ], [ -58.529405999787002, -34.636029999584764 ], [ -58.529426999856128, -34.636395000229015 ], [ -58.529448999971351, -34.637832999992895 ], [ -58.529383999671779, -34.638712000058717 ], [ -58.529362999602711, -34.639142000103163 ], [ -58.529307999764342, -34.639335000010192 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 194.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.949655656095111, -34.91478671133229 ], [ -57.954530397749828, -34.911199848585376 ], [ -57.954437606474492, -34.911017465733828 ], [ -57.954404009633421, -34.910950272051686 ], [ -57.954364013394049, -34.910846281829315 ], [ -57.954346415048718, -34.910694296119701 ], [ -57.954370412792343, -34.910564708304136 ], [ -57.954436006624917, -34.910396724098767 ], [ -57.954485601961736, -34.910281534929375 ], [ -57.954549595944734, -34.910209541698507 ], [ -57.954613589927732, -34.910150347264235 ], [ -57.954696782105621, -34.910081553732518 ], [ -57.954936759541845, -34.909972763961427 ], [ -57.955074346605286, -34.909924768474177 ], [ -57.955179936677226, -34.90991996892545 ], [ -57.955395916369838, -34.90988637208438 ], [ -57.95555590132733, -34.907086635328305 ], [ -57.95507754630443, -34.906763465714178 ], [ -57.954454404895003, -34.906179520619347 ], [ -57.955572699747876, -34.905352398389127 ], [ -57.956619001369852, -34.906307508585343 ], [ -57.959706711049392, -34.909123243837165 ], [ -57.964778234201823, -34.913746809108623 ], [ -57.975058867570141, -34.906173121221052 ], [ -57.98124708572584, -34.9118173905213 ], [ -57.994330655549348, -34.901920721050985 ], [ -57.994449044417891, -34.901725539402847 ], [ -57.99446824261279, -34.901565554445355 ], [ -57.994481041409387, -34.901472763170013 ], [ -57.994650625464331, -34.901354374301469 ], [ -57.994711419748171, -34.901283980920169 ], [ -57.994836208015016, -34.901277581521875 ], [ -57.994916200493762, -34.901277581521875 ], [ -57.995034589362305, -34.901293580017622 ], [ -57.995204173417243, -34.901399170089562 ], [ -57.995247369355766, -34.901485561966609 ], [ -57.995316162887484, -34.90167274436687 ], [ -57.995325761984937, -34.90177353489009 ], [ -57.995360958675583, -34.901872725563734 ], [ -57.995404154614107, -34.901981515334825 ], [ -57.995469748446681, -34.902064707512721 ], [ -57.995660130546092, -34.902235891417234 ], [ -58.000864441213224, -34.906883454432318 ], [ -58.001018026772414, -34.906953847813611 ], [ -58.001267603306097, -34.90692825022041 ], [ -58.001427588263589, -34.907190625550697 ], [ -58.001453185856789, -34.907363409304786 ], [ -58.001433987661891, -34.907510595465673 ], [ -58.005292824836545, -34.911017465733856 ], [ -58.068922042129437, -34.968874425760518 ], [ -58.069062828892022, -34.968938419743516 ], [ -58.069408396400206, -34.968951218540113 ], [ -58.069517186171296, -34.968970416735011 ], [ -58.069849954882876, -34.969079206506109 ], [ -58.069997141043764, -34.969277587853391 ], [ -58.069997141043764, -34.969527164387074 ], [ -58.070022738636965, -34.969667951149667 ], [ -58.070086732619963, -34.969847134302057 ], [ -58.113577043464034, -35.00947220857315 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 193.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.949748847332671, -34.914879902570021 ], [ -57.949030514873542, -34.915399853681862 ], [ -57.954137234716619, -34.920052216245672 ], [ -57.95455159575652, -34.919765843171767 ], [ -57.955052348673462, -34.919797840163262 ], [ -57.955183536338602, -34.919852235048808 ], [ -57.956895375383752, -34.921396089888589 ], [ -57.956986566809519, -34.921447285074983 ], [ -57.957293737927898, -34.921468083119457 ], [ -57.96657126561275, -34.921834448672101 ], [ -57.96688163643028, -34.921383291091978 ], [ -57.966958429209875, -34.921261702524284 ], [ -57.967457582277241, -34.921104917265943 ], [ -57.968366296835804, -34.921351294100475 ], [ -57.968609473971185, -34.921882444159344 ], [ -57.968612673670336, -34.922068026710029 ], [ -57.9683534980392, -34.922547981582504 ], [ -57.97323303924265, -34.926992363701572 ], [ -57.974423327326392, -34.927037159489657 ], [ -57.974408928680205, -34.928062663067166 ], [ -58.041397830080427, -34.989112922845301 ], [ -58.041628208419212, -34.989535283133073 ], [ -58.041666604809009, -34.98982325605656 ], [ -58.041666604809009, -34.990028036802144 ], [ -58.04158341263112, -34.990156024768133 ], [ -58.041474622860022, -34.990303210929028 ], [ -58.041333836097436, -34.990469595284814 ], [ -58.041129055351846, -34.990635979640608 ], [ -58.03550398424651, -34.994817986429389 ], [ -58.041599411126882, -35.000345466710677 ], [ -58.048232387464424, -34.995485123702132 ], [ -58.054513396895466, -35.001001405036384 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 192.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.274120761392702, -34.810723730356258 ], [ -58.270547102677718, -34.810586267184775 ], [ -58.269877402498508, -34.810851713102899 ], [ -58.267273654387921, -34.81070476993245 ], [ -58.258769616767282, -34.810448803783963 ], [ -58.258192289026589, -34.810581527071307 ], [ -58.238724797609954, -34.800550836332995 ], [ -58.232258726914054, -34.808969872691726 ], [ -58.227085870357314, -34.815624853586712 ], [ -58.226162145972197, -34.81704678835645 ], [ -58.225931214875899, -34.818051607461356 ], [ -58.225954307985539, -34.819227040671549 ], [ -58.226162145972197, -34.820876410606623 ], [ -58.226416170178076, -34.823587372195867 ], [ -58.225885028656634, -34.824440453540042 ], [ -58.225007490490761, -34.825805365312277 ], [ -58.207710751379196, -34.833122423269359 ], [ -58.190194627726136, -34.8405999363208 ], [ -58.189882870746175, -34.840912669217317 ], [ -58.189721218978782, -34.841377027992877 ], [ -58.18930554300546, -34.841632898035485 ], [ -58.188705122155127, -34.841500224779359 ], [ -58.188428004839594, -34.841073773579069 ], [ -58.187885316763321, -34.840884239003088 ], [ -58.187562013228536, -34.840912669217317 ], [ -58.186834580275246, -34.841149587287276 ], [ -58.185910855890107, -34.841007436527136 ], [ -58.174375847630778, -34.839765976121313 ], [ -58.172874795504939, -34.839652253621317 ], [ -58.171073532953933, -34.839652253621317 ], [ -58.169803411924377, -34.840069235353276 ], [ -58.168625663333344, -34.840372493467974 ], [ -58.166039235054967, -34.841320167875402 ], [ -58.163822296530661, -34.842097252747884 ], [ -58.162090313308546, -34.842495268987719 ], [ -58.160797099169343, -34.842741659028825 ], [ -58.158880371070218, -34.843082813252664 ], [ -58.158049019123595, -34.843670353323411 ], [ -58.156686525655523, -34.844466368664065 ], [ -58.155370218406723, -34.844674847600089 ], [ -58.154123190486793, -34.844674847600089 ], [ -58.153499676526827, -34.844693800204453 ], [ -58.124587103272219, -34.857845855008129 ], [ -58.112994362238844, -34.862962080591728 ], [ -58.097475792568659, -34.869233759956487 ], [ -58.088723504019548, -34.872909385955339 ], [ -58.062997779893671, -34.879464475986346 ], [ -58.037964849056621, -34.885223430043254 ], [ -57.992609981746703, -34.895868854818019 ], [ -57.991998014341533, -34.896522310156627 ], [ -57.9909010916342, -34.896825360143453 ], [ -57.989711796488351, -34.89701476581746 ], [ -57.988684153109887, -34.897213641305093 ], [ -57.987795068389204, -34.897270462784554 ], [ -57.987275473422571, -34.897270462784554 ], [ -57.98639793525669, -34.897412516311235 ], [ -57.985809060961166, -34.897696622627578 ], [ -57.98549730398117, -34.898387943892473 ], [ -57.985289465994533, -34.898851978190216 ], [ -57.962034704598871, -34.916000467914657 ], [ -57.960764583569308, -34.915811106029508 ], [ -57.955938123657013, -34.911398850437749 ], [ -57.956192147862922, -34.911133728815038 ], [ -57.956284520301438, -34.91088754368446 ], [ -57.956053589205133, -34.91039517120862 ], [ -57.9556148201222, -34.90994067091772 ], [ -57.955245330368143, -34.909921733350991 ], [ -57.955626366677016, -34.90534818308187 ], [ -57.954898933723733, -34.904761083645688 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 191.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.384629, -34.888757 ], [ -58.385919, -34.889844 ], [ -58.386851, -34.890689 ], [ -58.387827999999899, -34.891536 ], [ -58.3888, -34.892404 ], [ -58.389756, -34.893263 ], [ -58.389917, -34.893412 ], [ -58.390219, -34.89347 ], [ -58.390344, -34.893499 ], [ -58.390372, -34.894269 ], [ -58.390405, -34.895003 ], [ -58.390406, -34.895082 ], [ -58.390414, -34.895659 ], [ -58.390417, -34.895909 ], [ -58.390458, -34.896709 ], [ -58.390486, -34.897519 ], [ -58.390498, -34.897947 ], [ -58.390512, -34.898338 ], [ -58.390534, -34.898981 ], [ -58.390539, -34.899131 ], [ -58.390573, -34.899966 ], [ -58.390576, -34.900023 ], [ -58.390612, -34.900753 ], [ -58.390627, -34.901546 ], [ -58.390634, -34.901676 ], [ -58.390654, -34.902368 ], [ -58.390662, -34.902512 ], [ -58.390688, -34.903159 ], [ -58.390709, -34.903483 ], [ -58.390742, -34.904739 ], [ -58.390748, -34.904903 ], [ -58.390783, -34.905638 ], [ -58.390721, -34.907018 ], [ -58.390857, -34.908081 ], [ -58.390678, -34.908726 ], [ -58.390365, -34.909194 ], [ -58.390039, -34.909689 ], [ -58.38979, -34.910024 ], [ -58.389616, -34.910292 ], [ -58.389272, -34.91079 ], [ -58.388753, -34.911484 ], [ -58.388334, -34.912027 ], [ -58.387873, -34.912588 ], [ -58.387427, -34.913195 ], [ -58.387031, -34.91376 ], [ -58.386669, -34.91429 ], [ -58.386197, -34.914885 ], [ -58.385769, -34.91547 ], [ -58.385332, -34.91605 ], [ -58.385111, -34.916389 ], [ -58.384897, -34.916683 ], [ -58.384494, -34.917301 ], [ -58.383869, -34.918172 ], [ -58.383233, -34.919038 ], [ -58.382394, -34.920168 ], [ -58.381628, -34.921266 ], [ -58.38132, -34.921709 ], [ -58.380751, -34.92308 ], [ -58.380674, -34.923294 ], [ -58.380637, -34.923575 ], [ -58.380471, -34.925096 ], [ -58.380386, -34.926072 ], [ -58.380278, -34.926992 ], [ -58.380146, -34.928414 ], [ -58.38002, -34.929517 ], [ -58.379995, -34.929931 ], [ -58.37979, -34.931399 ], [ -58.379661, -34.932874 ], [ -58.37949, -34.934341 ], [ -58.379319, -34.935843 ], [ -58.379101, -34.93801 ], [ -58.378796, -34.940516 ], [ -58.378514, -34.942839 ], [ -58.378254, -34.944968 ], [ -58.378254, -34.94498 ], [ -58.378091, -34.946223 ], [ -58.377956, -34.947246 ], [ -58.377919, -34.947551 ], [ -58.377751, -34.948863 ], [ -58.377577, -34.950192 ], [ -58.377596, -34.951064 ], [ -58.37761, -34.95163 ], [ -58.377617, -34.952169 ], [ -58.377605, -34.952973 ], [ -58.377624, -34.95305 ], [ -58.37827, -34.955629 ], [ -58.378339, -34.956317 ], [ -58.378512, -34.957214 ], [ -58.378645, -34.957858 ], [ -58.378704, -34.958183 ], [ -58.378806, -34.958693 ], [ -58.37892, -34.959264 ], [ -58.378932, -34.959329 ], [ -58.379125, -34.960382 ], [ -58.379208, -34.960807 ], [ -58.379424, -34.961789 ], [ -58.379556, -34.962405 ], [ -58.379667, -34.962976 ], [ -58.379893, -34.963965 ], [ -58.379969, -34.964367 ], [ -58.380129, -34.965137 ], [ -58.380185, -34.965363 ], [ -58.380306, -34.965946 ], [ -58.380349, -34.966172 ], [ -58.380428, -34.966554 ], [ -58.380553, -34.967114 ], [ -58.38073, -34.967979 ], [ -58.38078, -34.968198 ], [ -58.381079, -34.969605 ], [ -58.381118999999899, -34.969765 ], [ -58.381377, -34.970999 ], [ -58.381659, -34.971342 ], [ -58.381642, -34.971713 ], [ -58.381618, -34.972443 ], [ -58.381601, -34.972914 ], [ -58.381564, -34.973923 ], [ -58.38156, -34.974014 ], [ -58.381466, -34.975269 ], [ -58.381383, -34.97635 ], [ -58.381308, -34.977585 ], [ -58.380512, -34.978691 ], [ -58.37994, -34.979475 ], [ -58.379657, -34.979836 ], [ -58.378455, -34.97975 ], [ -58.377753, -34.979699 ], [ -58.37694, -34.979627 ], [ -58.375595, -34.979516 ], [ -58.374214, -34.97941 ], [ -58.374015, -34.981263 ], [ -58.374335, -34.98143 ], [ -58.374823, -34.981687 ], [ -58.376146, -34.982355 ], [ -58.376835, -34.982705 ], [ -58.377328, -34.982961 ], [ -58.376801, -34.983673 ], [ -58.376721, -34.983772 ], [ -58.376137, -34.984551 ], [ -58.376801, -34.985126 ], [ -58.377759, -34.985929 ], [ -58.378523, -34.986567 ], [ -58.379252, -34.987185 ], [ -58.379336, -34.987258 ], [ -58.380165, -34.987949 ], [ -58.381065, -34.988713 ], [ -58.381988, -34.989488 ], [ -58.38287, -34.990225 ], [ -58.382977, -34.990318 ], [ -58.383858, -34.991054 ], [ -58.3839, -34.991092 ], [ -58.384554, -34.991646 ], [ -58.384899, -34.99193 ], [ -58.385253, -34.992232 ], [ -58.385382, -34.992336 ], [ -58.385917, -34.992797 ], [ -58.386153, -34.992989 ], [ -58.386659, -34.993415 ], [ -58.387388, -34.994021 ], [ -58.387465, -34.994087 ], [ -58.388388, -34.99487 ], [ -58.389117, -34.995476 ], [ -58.389318, -34.995652 ], [ -58.389706, -34.995975 ], [ -58.390052, -34.996278 ], [ -58.390536, -34.996632 ], [ -58.391984, -34.997042 ], [ -58.392667, -34.997469 ], [ -58.393258, -34.997646 ], [ -58.394431, -34.997969 ], [ -58.394696, -34.998048 ], [ -58.395223, -34.998182 ], [ -58.395672, -34.998311 ], [ -58.396128, -34.998313 ], [ -58.396805, -34.998308 ], [ -58.397061, -34.998808 ], [ -58.397455, -34.999562 ], [ -58.398162, -35.00095 ], [ -58.398226, -35.001049 ], [ -58.398267, -35.00114 ], [ -58.398698, -35.002009 ], [ -58.399399, -35.003389 ], [ -58.399964, -35.00452 ], [ -58.400447, -35.00548 ], [ -58.401444, -35.007447 ], [ -58.402368, -35.009306 ], [ -58.403328, -35.0112 ], [ -58.403613, -35.011791 ], [ -58.405677, -35.013503 ], [ -58.406574, -35.014043 ], [ -58.407988, -35.014877 ], [ -58.408529, -35.015182 ], [ -58.409232, -35.015595 ], [ -58.409634, -35.015819 ], [ -58.410588, -35.016367 ], [ -58.411449, -35.016854 ], [ -58.412735, -35.017618 ], [ -58.413973, -35.018328 ], [ -58.415199, -35.019057 ], [ -58.41646, -35.019802 ], [ -58.417651, -35.020512 ], [ -58.418919, -35.021238 ], [ -58.420192, -35.021987 ], [ -58.421429, -35.022713 ], [ -58.42265, -35.023442 ], [ -58.423946, -35.024168 ], [ -58.423205, -35.024992 ], [ -58.422509, -35.025769 ], [ -58.42184, -35.026513 ], [ -58.42118, -35.027233 ], [ -58.420511, -35.027977 ], [ -58.419795, -35.02878 ], [ -58.419366, -35.029243 ], [ -58.419056, -35.029583 ], [ -58.418603, -35.030116 ], [ -58.418425, -35.030332 ], [ -58.417793, -35.031097 ], [ -58.417157, -35.03187 ], [ -58.416824, -35.032273 ], [ -58.415866, -35.033414 ], [ -58.415142, -35.034223 ], [ -58.41451, -35.034929 ], [ -58.413897, -35.035702 ], [ -58.413231, -35.036494 ], [ -58.412496, -35.037347 ], [ -58.411841, -35.03812 ], [ -58.411193, -35.038892 ], [ -58.410504, -35.039699 ], [ -58.409803, -35.040527 ], [ -58.409224, -35.041218 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 190.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.168002149376221, -35.069784591708753 ], [ -58.169168351412452, -35.069170319211317 ], [ -58.169237630741328, -35.069061639749677 ], [ -58.168931647038768, -35.068754501358278 ], [ -58.168654529723227, -35.068461537507936 ], [ -58.168261946859538, -35.06823472606289 ], [ -58.165854490180806, -35.065909872411694 ], [ -58.145215023450518, -35.081487962049316 ], [ -58.14436057839427, -35.080977716872518 ], [ -58.142536222733632, -35.079257978143396 ], [ -58.137063155751733, -35.074552134122733 ], [ -58.13313732711493, -35.07099894758008 ], [ -58.127641167023398, -35.06733219927726 ], [ -58.124408131675445, -35.065064025081973 ], [ -58.118542481829856, -35.059582343913391 ], [ -58.113877673684954, -35.055461389526222 ], [ -58.110783196994753, -35.052361084923064 ], [ -58.100160366565753, -35.042586793366127 ], [ -58.096326910367466, -35.039088938752634 ], [ -58.093948320075754, -35.036952337671813 ], [ -58.088659997970886, -35.031903686616317 ], [ -58.070670465570473, -35.015734559584153 ], [ -58.056214178943186, -35.002494297191653 ], [ -58.05545210632544, -35.001974100276961 ], [ -58.051976593326387, -35.004523033557248 ], [ -58.04487546211567, -34.997769842021413 ], [ -58.048223963011765, -34.99526326356871 ], [ -58.042762442584689, -34.990391768889303 ], [ -58.042231301063218, -34.990164740707314 ], [ -58.041584693993656, -34.990089064506726 ], [ -58.04160778710326, -34.989275540931864 ], [ -57.980364860369079, -34.933406876516024 ], [ -57.974337558756098, -34.92814356991672 ], [ -57.974499210523497, -34.927007560159367 ], [ -57.973205996384316, -34.927026493784219 ], [ -57.968287164033498, -34.922529635181817 ], [ -57.967571277635017, -34.922747383486325 ], [ -57.96675147224321, -34.922539102511422 ], [ -57.966520541146942, -34.921942658613382 ], [ -57.966901577455801, -34.921213665739891 ], [ -57.961971198550145, -34.91684904049859 ], [ -57.960897368952438, -34.916877444450044 ], [ -57.960862729287989, -34.915959045040829 ], [ -57.956117095259387, -34.911120709428815 ], [ -57.955193370874262, -34.911366893860198 ], [ -57.954431298256523, -34.911253270368213 ], [ -57.954592950023923, -34.909984464025264 ], [ -57.949304627919041, -34.904946920011206 ], [ -57.94196101905726, -34.909832963449972 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 189.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.384629, -34.888757 ], [ -58.385919, -34.889844 ], [ -58.386851, -34.890689 ], [ -58.387827999999899, -34.891536 ], [ -58.3888, -34.892404 ], [ -58.389756, -34.893263 ], [ -58.389917, -34.893412 ], [ -58.390219, -34.89347 ], [ -58.390344, -34.893499 ], [ -58.390372, -34.894269 ], [ -58.390405, -34.895003 ], [ -58.390406, -34.895082 ], [ -58.390414, -34.895659 ], [ -58.390417, -34.895909 ], [ -58.390458, -34.896709 ], [ -58.390486, -34.897519 ], [ -58.390498, -34.897947 ], [ -58.390512, -34.898338 ], [ -58.390534, -34.898981 ], [ -58.390539, -34.899131 ], [ -58.390573, -34.899966 ], [ -58.390576, -34.900023 ], [ -58.390612, -34.900753 ], [ -58.390627, -34.901546 ], [ -58.390634, -34.901676 ], [ -58.390654, -34.902368 ], [ -58.390662, -34.902512 ], [ -58.390688, -34.903159 ], [ -58.390709, -34.903483 ], [ -58.390742, -34.904739 ], [ -58.390748, -34.904903 ], [ -58.390783, -34.905638 ], [ -58.390721, -34.907018 ], [ -58.390857, -34.908081 ], [ -58.390678, -34.908726 ], [ -58.390365, -34.909194 ], [ -58.390039, -34.909689 ], [ -58.38979, -34.910024 ], [ -58.389616, -34.910292 ], [ -58.389272, -34.91079 ], [ -58.388753, -34.911484 ], [ -58.388334, -34.912027 ], [ -58.387873, -34.912588 ], [ -58.387427, -34.913195 ], [ -58.387031, -34.91376 ], [ -58.386669, -34.91429 ], [ -58.386197, -34.914885 ], [ -58.385769, -34.91547 ], [ -58.385332, -34.91605 ], [ -58.385111, -34.916389 ], [ -58.384897, -34.916683 ], [ -58.384494, -34.917301 ], [ -58.383869, -34.918172 ], [ -58.383233, -34.919038 ], [ -58.382394, -34.920168 ], [ -58.381628, -34.921266 ], [ -58.38132, -34.921709 ], [ -58.380751, -34.92308 ], [ -58.380674, -34.923294 ], [ -58.380637, -34.923575 ], [ -58.380471, -34.925096 ], [ -58.380386, -34.926072 ], [ -58.380278, -34.926992 ], [ -58.380146, -34.928414 ], [ -58.38002, -34.929517 ], [ -58.379995, -34.929931 ], [ -58.37979, -34.931399 ], [ -58.379661, -34.932874 ], [ -58.37949, -34.934341 ], [ -58.379319, -34.935843 ], [ -58.379101, -34.93801 ], [ -58.378796, -34.940516 ], [ -58.378514, -34.942839 ], [ -58.378254, -34.944968 ], [ -58.378254, -34.94498 ], [ -58.378091, -34.946223 ], [ -58.377956, -34.947246 ], [ -58.377919, -34.947551 ], [ -58.377751, -34.948863 ], [ -58.377577, -34.950192 ], [ -58.377596, -34.951064 ], [ -58.37761, -34.95163 ], [ -58.377617, -34.952169 ], [ -58.377605, -34.952973 ], [ -58.377624, -34.95305 ], [ -58.37827, -34.955629 ], [ -58.378339, -34.956317 ], [ -58.378512, -34.957214 ], [ -58.378645, -34.957858 ], [ -58.378704, -34.958183 ], [ -58.378806, -34.958693 ], [ -58.37892, -34.959264 ], [ -58.378932, -34.959329 ], [ -58.379125, -34.960382 ], [ -58.379208, -34.960807 ], [ -58.379424, -34.961789 ], [ -58.379556, -34.962405 ], [ -58.379667, -34.962976 ], [ -58.379893, -34.963965 ], [ -58.379969, -34.964367 ], [ -58.380129, -34.965137 ], [ -58.380185, -34.965363 ], [ -58.380306, -34.965946 ], [ -58.380349, -34.966172 ], [ -58.380428, -34.966554 ], [ -58.380553, -34.967114 ], [ -58.38073, -34.967979 ], [ -58.38078, -34.968198 ], [ -58.381079, -34.969605 ], [ -58.381118999999899, -34.969765 ], [ -58.381377, -34.970999 ], [ -58.381659, -34.971342 ], [ -58.381642, -34.971713 ], [ -58.381618, -34.972443 ], [ -58.381601, -34.972914 ], [ -58.381564, -34.973923 ], [ -58.38156, -34.974014 ], [ -58.381466, -34.975269 ], [ -58.381383, -34.97635 ], [ -58.381308, -34.977585 ], [ -58.380512, -34.978691 ], [ -58.37994, -34.979475 ], [ -58.379657, -34.979836 ], [ -58.378455, -34.97975 ], [ -58.377753, -34.979699 ], [ -58.37694, -34.979627 ], [ -58.375595, -34.979516 ], [ -58.374214, -34.97941 ], [ -58.374015, -34.981263 ], [ -58.374335, -34.98143 ], [ -58.374823, -34.981687 ], [ -58.376146, -34.982355 ], [ -58.376835, -34.982705 ], [ -58.377328, -34.982961 ], [ -58.376801, -34.983673 ], [ -58.376721, -34.983772 ], [ -58.376137, -34.984551 ], [ -58.376801, -34.985126 ], [ -58.377759, -34.985929 ], [ -58.378523, -34.986567 ], [ -58.379252, -34.987185 ], [ -58.379336, -34.987258 ], [ -58.380165, -34.987949 ], [ -58.381065, -34.988713 ], [ -58.381988, -34.989488 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 188.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.640927842999929, -34.501890750999905 ], [ -58.641546639999945, -34.50223363899994 ], [ -58.641700544999935, -34.502220543999954 ], [ -58.641884116999904, -34.502204924999944 ], [ -58.642235762999917, -34.50172432699992 ], [ -58.642415445999916, -34.501478751999912 ], [ -58.643023808999942, -34.500648104999925 ], [ -58.643099642999914, -34.500544562999949 ], [ -58.642207528999904, -34.500001210999926 ], [ -58.641190433999952, -34.499426892999907 ], [ -58.641095480999923, -34.499373275999915 ], [ -58.640135555999905, -34.498835034999956 ], [ -58.639044810999906, -34.498236967999958 ], [ -58.637958977999915, -34.497646652999947 ], [ -58.636919106999926, -34.497090515999957 ], [ -58.636123097999928, -34.49666368499993 ], [ -58.635867771999926, -34.496526775999939 ], [ -58.636191040999904, -34.496109745999945 ], [ -58.636579665999932, -34.495608404999928 ], [ -58.637261518999935, -34.494735823999918 ], [ -58.637958491999939, -34.493848035999918 ], [ -58.638640388999931, -34.492979289999937 ], [ -58.639333811999904, -34.492073894999919 ], [ -58.639989604999926, -34.491222635999918 ], [ -58.640664218999916, -34.490344345999915 ], [ -58.641362067999921, -34.489469304999943 ], [ -58.641867118999926, -34.488826437999933 ], [ -58.642028972999924, -34.488620418999915 ], [ -58.642175611999903, -34.488699435999933 ], [ -58.642288415999928, -34.488760221999939 ], [ -58.642440453999939, -34.488558026999954 ], [ -58.643037039999911, -34.487764624999954 ], [ -58.643133835999947, -34.487635895999915 ], [ -58.643237976999899, -34.487746173999938 ], [ -58.643375474999914, -34.487816861999931 ], [ -58.643440261999899, -34.487850168999955 ], [ -58.644008658999951, -34.488142381999921 ], [ -58.644118533999915, -34.488068067999905 ], [ -58.644298847999949, -34.487946113999953 ], [ -58.644795909999914, -34.487944273999915 ], [ -58.646483471999943, -34.48884794199995 ], [ -58.647023306999927, -34.489116524999929 ], [ -58.647752859999912, -34.489505162999933 ], [ -58.649230971999941, -34.490278429999933 ], [ -58.6494920479999, -34.490415569999925 ], [ -58.649676220999936, -34.490511675999926 ], [ -58.650601571999914, -34.490994547999946 ], [ -58.650943268999924, -34.49117358399991 ], [ -58.6516269789999, -34.491554839999935 ], [ -58.65167548699992, -34.491612356999951 ], [ -58.651843944999939, -34.491812104999951 ], [ -58.652011523999931, -34.491593570999953 ], [ -58.65227245199992, -34.49125330399994 ], [ -58.65246598199991, -34.491000926999902 ], [ -58.653397090999931, -34.489801600999954 ], [ -58.654316852999955, -34.488625549999938 ], [ -58.655236664999904, -34.487437872999919 ], [ -58.655692755999951, -34.486859549999906 ], [ -58.656023354999945, -34.486450223999952 ], [ -58.656213445999924, -34.486214865999955 ], [ -58.6562514929999, -34.486167757999908 ], [ -58.656019717999925, -34.486038652999923 ], [ -58.654985077999925, -34.48546233299993 ], [ -58.654773321999926, -34.485344378999912 ], [ -58.655158070999903, -34.485018322999906 ], [ -58.655358322999916, -34.484848618999933 ], [ -58.656481224999936, -34.483901516999936 ], [ -58.657221918999937, -34.483281732999956 ], [ -58.65789008999991, -34.482719345999953 ], [ -58.658138275999931, -34.482508933999952 ], [ -58.65860405299992, -34.482122514999958 ], [ -58.659299804999932, -34.481533790999947 ], [ -58.660027957999944, -34.480919117999917 ], [ -58.66071457299995, -34.480331189999902 ], [ -58.662318597999899, -34.479004178999958 ], [ -58.662834333999911, -34.478587153999911 ], [ -58.663912970999945, -34.477723668999943 ], [ -58.66459619099993, -34.477177863999941 ], [ -58.664904422999939, -34.476931625999953 ], [ -58.665190372999916, -34.476873802999933 ], [ -58.664903967999919, -34.476713903999951 ], [ -58.664754176999907, -34.476630275999923 ], [ -58.663865522999913, -34.476165610999942 ], [ -58.663694240999916, -34.476040457999943 ], [ -58.663575346999949, -34.475983251999935 ], [ -58.662794143999918, -34.475568198999952 ], [ -58.662457152999934, -34.475389230999951 ], [ -58.662439607999943, -34.475377113999912 ], [ -58.662220877999914, -34.475226050999936 ], [ -58.662577746999943, -34.475133529999937 ], [ -58.662825189999921, -34.475069378999933 ], [ -58.663751524999952, -34.474821390999921 ], [ -58.665906292999921, -34.47424895499995 ], [ -58.666016421999927, -34.474212283999918 ], [ -58.666892980999933, -34.473937644999921 ], [ -58.667219075999924, -34.473715028999948 ], [ -58.668344823999917, -34.47325537699993 ], [ -58.669567087999951, -34.472815209999908 ], [ -58.669945457999916, -34.472678949999931 ], [ -58.670385365999948, -34.472081964999916 ], [ -58.67078018199993, -34.471546172999922 ], [ -58.672621680999953, -34.469243491999919 ], [ -58.674864782999919, -34.466438631999949 ], [ -58.675136565999935, -34.466098784999929 ], [ -58.675186272999952, -34.466035224999928 ], [ -58.675369262999936, -34.465801238999916 ], [ -58.676931965999927, -34.463752592999924 ], [ -58.677074431999927, -34.463565825999922 ], [ -58.677177428999926, -34.463432311999952 ], [ -58.677860259999932, -34.462554931999932 ], [ -58.678413390999935, -34.461853026999904 ], [ -58.678802436999945, -34.461360057999912 ], [ -58.678970336999953, -34.461147307999909 ], [ -58.679489135999916, -34.460479735999911 ], [ -58.680141448999905, -34.459655761999954 ], [ -58.680629729999907, -34.459033965999936 ], [ -58.681010230999902, -34.458547339999939 ], [ -58.681190490999938, -34.458316802999946 ], [ -58.681686400999922, -34.457679748999908 ], [ -58.68252181999992, -34.456638335999912 ], [ -58.682846068999936, -34.456176757999913 ], [ -58.683252345999904, -34.455677580999918 ], [ -58.683382844999926, -34.455517241999928 ], [ -58.683788684999911, -34.454996611999945 ], [ -58.683938528999931, -34.454804383999942 ], [ -58.683456716999899, -34.454542019999906 ], [ -58.682563781999932, -34.454055785999913 ], [ -58.681301116999919, -34.453380584999934 ], [ -58.679744719999917, -34.452587127999948 ], [ -58.679220380999936, -34.45229366399991 ], [ -58.678528308999944, -34.451906321999957 ], [ -58.678486137999926, -34.451879744999928 ], [ -58.677621452999915, -34.450739204999934 ], [ -58.676990275999913, -34.449901348999902 ], [ -58.676722153999947, -34.449545429999944 ], [ -58.676038705999929, -34.448641815999906 ], [ -58.675911262999932, -34.448473317999913 ], [ -58.675930334999919, -34.44845805999995 ], [ -58.676785331999952, -34.447938955999916 ], [ -58.676995480999949, -34.447811471999955 ], [ -58.677591219999954, -34.447450074999949 ], [ -58.677702206999925, -34.447392635999904 ], [ -58.678605428999902, -34.446940709999922 ], [ -58.679523956999901, -34.446477311999956 ], [ -58.679459516999941, -34.446424293999939 ], [ -58.679343781999933, -34.446329074999937 ], [ -58.678874115999918, -34.446321758999943 ], [ -58.678686701999936, -34.446318839999947 ], [ -58.678068503999953, -34.446309209999924 ], [ -58.676615721999951, -34.446443802999909 ], [ -58.676421968999932, -34.446461752999937 ], [ -58.676050612999916, -34.446554112999934 ], [ -58.674960556999906, -34.446803806999924 ], [ -58.672694227999955, -34.447363308999911 ], [ -58.672369388999925, -34.447447588999921 ], [ -58.672178294999924, -34.447493583999915 ], [ -58.671783532999939, -34.447568719999936 ], [ -58.671452007999903, -34.447631819999913 ], [ -58.671436666999909, -34.447620425999958 ], [ -58.670274841999912, -34.447907835999956 ], [ -58.669927064999911, -34.447995961999936 ], [ -58.66800593399995, -34.448469369999941 ], [ -58.667564712999933, -34.448559098999908 ], [ -58.667113051999934, -34.448650950999934 ], [ -58.667105458999913, -34.448654842999929 ], [ -58.665848001999905, -34.448969992999935 ], [ -58.665006790999939, -34.449174041999925 ], [ -58.664243083999907, -34.449360655999953 ], [ -58.663468034999937, -34.449539502999926 ], [ -58.662658959999931, -34.449733473999913 ], [ -58.661449241999946, -34.450028886999917 ], [ -58.661097199999915, -34.450114854999924 ], [ -58.659529093999936, -34.450524117999919 ], [ -58.656998312999917, -34.45118879599994 ], [ -58.656095950999941, -34.451426376999905 ], [ -58.655757364999943, -34.451515521999909 ], [ -58.654929286999902, -34.451749443999915 ], [ -58.654146622999917, -34.451968033999947 ], [ -58.653880255999923, -34.452058524999927 ], [ -58.653374443999951, -34.452200876999939 ], [ -58.652745087999904, -34.452391343999921 ], [ -58.652584374999947, -34.452420207999921 ], [ -58.651937492999934, -34.452600758999949 ], [ -58.65171155999991, -34.452695511999934 ], [ -58.6511411809999, -34.452871247999951 ], [ -58.650923003999935, -34.452931463999903 ], [ -58.650226331999932, -34.453135617999919 ], [ -58.64969293899992, -34.453271867999945 ], [ -58.649453192999943, -34.453333108999914 ], [ -58.649146921999943, -34.45343655399995 ], [ -58.648494937999942, -34.45361745799994 ], [ -58.64825632499992, -34.453713746999938 ], [ -58.647017398999935, -34.453673901999935 ], [ -58.64565585899993, -34.453676243999951 ], [ -58.644601002999934, -34.453643650999936 ], [ -58.644444373999931, -34.453638811999951 ], [ -58.643922896999925, -34.453631550999944 ], [ -58.642799477999915, -34.453609413999914 ], [ -58.64258095699995, -34.453601908999929 ], [ -58.642285738999931, -34.453594464999924 ], [ -58.642009727999948, -34.453583163999951 ], [ -58.64129595299994, -34.454075462999924 ], [ -58.641257442999915, -34.454125927999939 ], [ -58.640935155999955, -34.454548265999904 ], [ -58.640114208999933, -34.455633748999958 ], [ -58.63948051999995, -34.45649722099995 ], [ -58.63934338699994, -34.456684078999956 ], [ -58.639257098999906, -34.456758625999953 ], [ -58.638154954999948, -34.457720320999954 ], [ -58.637150382999948, -34.458587695999938 ], [ -58.63703899099994, -34.458683873999917 ], [ -58.635929854999915, -34.459640333999914 ], [ -58.635039557999903, -34.460424575999923 ], [ -58.634853631999931, -34.460588353999924 ], [ -58.634594879999952, -34.460405913999921 ], [ -58.634373861999904, -34.46028300699993 ], [ -58.634144371999923, -34.460166484999945 ], [ -58.633234627999911, -34.459704569999928 ], [ -58.631918621999944, -34.458996446999947 ], [ -58.631228179999937, -34.458691682999927 ], [ -58.630562354999938, -34.458315738999943 ], [ -58.630208155999924, -34.45813026299993 ], [ -58.629258713999945, -34.457605174999912 ], [ -58.628528303999929, -34.457213921999937 ], [ -58.627915927999936, -34.456889433999947 ], [ -58.627509944999929, -34.456664253999918 ], [ -58.626753759999929, -34.45621647999991 ], [ -58.625357171999951, -34.455448188999924 ], [ -58.624391278999951, -34.454909671999928 ], [ -58.622590975999913, -34.454574844999911 ], [ -58.622229477999952, -34.454498364999949 ], [ -58.622174494999911, -34.454486732999953 ], [ -58.620405154999901, -34.454112403999943 ], [ -58.618898047999949, -34.453780302999917 ], [ -58.618541148999952, -34.453705550999928 ], [ -58.617755330999955, -34.453540960999931 ], [ -58.617416689999914, -34.453466510999931 ], [ -58.616261395999913, -34.452933235999922 ], [ -58.615446207999923, -34.452562195999917 ], [ -58.614588333999905, -34.452160381999931 ], [ -58.613850536999905, -34.451831765999941 ], [ -58.613023400999907, -34.451433942999927 ], [ -58.612992470999927, -34.451418499999932 ], [ -58.612234530999899, -34.451082289999931 ], [ -58.61143751599991, -34.450726848999921 ], [ -58.610641623999925, -34.450375424999947 ], [ -58.609624176999944, -34.449925569999948 ], [ -58.608836253999925, -34.449571910999907 ], [ -58.608017721999943, -34.449206690999915 ], [ -58.607214485999918, -34.448849146999919 ], [ -58.606794145999913, -34.448661815999913 ], [ -58.606403601999943, -34.448487764999925 ], [ -58.605581253999901, -34.44811872799994 ], [ -58.604736327999944, -34.447742461999951 ], [ -58.603904723999904, -34.447372436999956 ], [ -58.60307311999992, -34.447006225999928 ], [ -58.602233886999954, -34.44663238499993 ], [ -58.601402282999913, -34.446262359999935 ], [ -58.600559234999935, -34.44589233399995 ], [ -58.599727630999951, -34.445522307999909 ], [ -58.598899840999934, -34.445152282999913 ], [ -58.597732703999952, -34.44463664299991 ], [ -58.597457885999916, -34.444515227999943 ], [ -58.597356156999922, -34.443937669999912 ], [ -58.597221374999947, -34.44317245499991 ], [ -58.597106933999953, -34.442230224999946 ], [ -58.59687228599995, -34.441539318999958 ], [ -58.59683227499994, -34.441421508999952 ], [ -58.595619201999909, -34.438934325999924 ], [ -58.595333098999902, -34.438354491999917 ], [ -58.595027923999908, -34.437740325999926 ], [ -58.5947418209999, -34.437141417999953 ], [ -58.594449436999923, -34.436552580999944 ], [ -58.594045071999915, -34.435724380999943 ], [ -58.593466452999905, -34.434549894999918 ], [ -58.593423235999921, -34.434462172999929 ], [ -58.592560925999919, -34.43181216499994 ], [ -58.592367662999948, -34.431218236999939 ], [ -58.592283270999928, -34.430958887999907 ], [ -58.592166731999953, -34.430933479999908 ], [ -58.592074061999938, -34.430913274999909 ], [ -58.592064703999938, -34.430922707999912 ], [ -58.591943674999925, -34.430992365999941 ], [ -58.591737099999932, -34.431019303999904 ], [ -58.591615533999914, -34.430964600999914 ], [ -58.591542333999939, -34.430896447999942 ], [ -58.591517169999918, -34.430820956999924 ], [ -58.591504470999951, -34.430782860999955 ], [ -58.591494374999911, -34.430659176999939 ], [ -58.591495358999907, -34.430553924999913 ], [ -58.591531974999953, -34.43050665599992 ], [ -58.591612697999949, -34.430278778999934 ], [ -58.591678362999914, -34.429707905999919 ], [ -58.591676702999905, -34.42967871299993 ], [ -58.591654471999902, -34.42928771399994 ], [ -58.591644338999913, -34.429109503999939 ], [ -58.591851594999923, -34.428995212999951 ], [ -58.591943607999951, -34.428944472999945 ], [ -58.591855642999917, -34.428650371999936 ], [ -58.591651260999924, -34.427962989999912 ], [ -58.591595578999943, -34.427775718999953 ], [ -58.591580282999928, -34.42772225199991 ], [ -58.591477137999902, -34.427233728999909 ], [ -58.591078891999928, -34.426506452999945 ], [ -58.590713115999904, -34.425765877999936 ], [ -58.590674615999944, -34.425734883999951 ], [ -58.590474362999942, -34.425549258999922 ], [ -58.590348135999932, -34.425354542999912 ], [ -58.589508369999919, -34.424059125999918 ], [ -58.589439489999904, -34.423986320999916 ], [ -58.58938218499992, -34.423894640999947 ], [ -58.588927825999917, -34.423081490999948 ], [ -58.588721986999929, -34.422601071999907 ], [ -58.58836733499993, -34.421823046999918 ], [ -58.588122954999903, -34.421391625999945 ], [ -58.588058041999943, -34.421277088999943 ], [ -58.587970800999926, -34.420984388999955 ], [ -58.58777951199994, -34.419898467999928 ], [ -58.587789028999907, -34.41955370699992 ], [ -58.587805253999932, -34.418965970999921 ], [ -58.587038755999913, -34.419094110999936 ], [ -58.586635652999917, -34.419161499999916 ], [ -58.586269134999952, -34.419302483999957 ], [ -58.586151053999913, -34.419400717999906 ], [ -58.584370179999951, -34.420486378999954 ], [ -58.583519782999929, -34.421004790999916 ], [ -58.582740320999903, -34.421507690999931 ], [ -58.582109071999923, -34.421914965999918 ], [ -58.581971482999904, -34.421940001999928 ], [ -58.581747891999953, -34.422096696999915 ], [ -58.581132924999906, -34.422527670999955 ], [ -58.580955675999917, -34.422638004999953 ], [ -58.580915572999913, -34.42266296899993 ], [ -58.580950245999929, -34.422709497999904 ], [ -58.580977246999907, -34.422752085999946 ], [ -58.581000421999931, -34.422794621999913 ], [ -58.581006247999937, -34.422821331999955 ], [ -58.581012178999913, -34.422848522999914 ], [ -58.581016225999917, -34.422890803999906 ], [ -58.581008854999936, -34.422944448999942 ], [ -58.580986198999938, -34.423001729999953 ], [ -58.580952047999915, -34.423055017999957 ], [ -58.580910202999917, -34.423100525999928 ], [ -58.580872124999928, -34.42313456699992 ], [ -58.580818704999899, -34.423160725999935 ], [ -58.580772893999949, -34.42317930899992 ], [ -58.580727064999905, -34.423194051999928 ], [ -58.580673542999932, -34.42320101599995 ], [ -58.580608523999899, -34.423203987999955 ], [ -58.580547270999944, -34.423195491999934 ], [ -58.580511480999917, -34.423188287999949 ], [ -58.580485997999915, -34.423183157999915 ], [ -58.580428489999917, -34.423159357999907 ], [ -58.580386285999907, -34.423135761999902 ], [ -58.580336369999941, -34.423100544999954 ], [ -58.580297911999935, -34.423061642999926 ], [ -58.579890049999904, -34.423331198999904 ], [ -58.579432492999899, -34.423633598999913 ], [ -58.57863565699995, -34.424152726999921 ], [ -58.578532799999948, -34.424235808999924 ], [ -58.577408077999905, -34.425149866999902 ], [ -58.57632900099992, -34.426052267999921 ], [ -58.575657807999903, -34.426587666999922 ], [ -58.574698621999914, -34.427352791999908 ], [ -58.573438759999931, -34.428393099999937 ], [ -58.571984698999927, -34.429602312999918 ], [ -58.571188382999935, -34.430354658999931 ], [ -58.570460814999933, -34.431022566999957 ], [ -58.569813107999948, -34.431632888999957 ], [ -58.568925298999943, -34.432477355999936 ], [ -58.568212784999901, -34.433152929999949 ], [ -58.567863852999949, -34.433435326999927 ], [ -58.567460480999955, -34.43376178199992 ], [ -58.566683345999934, -34.434479102999944 ], [ -58.566444789999935, -34.434614900999918 ], [ -58.566379318999907, -34.434652169999936 ], [ -58.566280269999936, -34.43470855399994 ], [ -58.566154619999907, -34.434780080999928 ], [ -58.56602543799994, -34.43485361799992 ], [ -58.565493570999934, -34.434470182999917 ], [ -58.565207650999923, -34.43426405699995 ], [ -58.565468507999924, -34.434084091999921 ], [ -58.565546684999902, -34.434030156999938 ], [ -58.565595450999922, -34.433996512999954 ], [ -58.565640606999921, -34.433965359999945 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 187.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.17487812276817, -34.87742435496888 ], [ -58.174531726123746, -34.878333712902446 ], [ -58.174185329479336, -34.879413562382119 ], [ -58.173492536190466, -34.881573218781519 ], [ -58.173284698203823, -34.883088733247483 ], [ -58.17291520844978, -34.884983087029994 ], [ -58.172568811805341, -34.886972111504342 ], [ -58.172614998024599, -34.889074742169981 ], [ -58.172407160037935, -34.890476466055112 ], [ -58.172407160037935, -34.891631923168227 ], [ -58.172545718695723, -34.893810199759642 ], [ -58.172384066928302, -34.894624670953995 ], [ -58.171206318337255, -34.89553383856299 ], [ -58.170421152609904, -34.895988418594094 ], [ -58.168111841647089, -34.897730952075541 ], [ -58.166241299767194, -34.899397688641315 ], [ -58.164763340750987, -34.900344682985612 ], [ -58.161368653635613, -34.903147722249805 ], [ -58.159359553097964, -34.905098429602162 ], [ -58.157211893902534, -34.907333163596483 ], [ -58.154117417212355, -34.910173839351302 ], [ -58.152039037345794, -34.912389498211532 ], [ -58.150422519671828, -34.913828697570935 ], [ -58.139868968571704, -34.924148532668362 ], [ -58.122225832815715, -34.935205411068445 ], [ -58.10698438046105, -34.944670732401057 ], [ -58.092851397368555, -34.953680703188844 ], [ -58.075092796064411, -34.965301345812072 ], [ -58.062691796194045, -34.954134961207551 ], [ -58.056872332567728, -34.958242096506147 ], [ -58.020639243560971, -34.924337875317455 ], [ -58.005859653398886, -34.934486001979685 ], [ -57.992096160060434, -34.94470859149267 ], [ -57.973991162111879, -34.928503303060872 ], [ -57.974453024304445, -34.92717796262572 ], [ -57.973252182603765, -34.926837157339193 ], [ -57.968102419156658, -34.922671645011192 ], [ -57.968679746897379, -34.922027865149971 ], [ -57.968541188239612, -34.921384080238369 ], [ -57.96812551226629, -34.920948575816766 ], [ -57.967363439648565, -34.920986445858219 ], [ -57.966624460140466, -34.921346210380406 ], [ -57.961959651995564, -34.916991060157592 ], [ -57.962236769311097, -34.915741278725363 ], [ -57.960804996514149, -34.915779151169573 ], [ -57.955793791724815, -34.911575203187105 ], [ -57.955851524498861, -34.911158584004809 ], [ -57.956128641814409, -34.910618869647891 ], [ -57.956036269375893, -34.910107558036877 ], [ -57.969303260857338, -34.900392032416192 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 186.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.194764999904805, -34.042403999744749 ], [ -59.195065000249542, -34.043454999648475 ], [ -59.195386999810125, -34.044399000013811 ], [ -59.195709000270085, -34.045428999848411 ], [ -59.196030999830725, -34.046395000328971 ], [ -59.196310000106394, -34.047338999794988 ], [ -59.196609999551811, -34.048347000413685 ], [ -59.196910999942645, -34.049312999994925 ], [ -59.197190000218313, -34.050321999760456 ], [ -59.197747999870273, -34.052059999869073 ], [ -59.197940999777302, -34.052768000143033 ], [ -59.198451999959786, -34.05442800025196 ], [ -59.199262999587745, -34.05706500044937 ], [ -59.200180999653355, -34.060048000414838 ], [ -59.201784999877816, -34.065259999749173 ], [ -59.202061000015078, -34.066156999745715 ], [ -59.201845999992884, -34.068474999621515 ], [ -59.201738999555118, -34.069226000079823 ], [ -59.201995999715564, -34.070170000445103 ], [ -59.202490000013427, -34.071608000208983 ], [ -59.203280999618414, -34.074287999691364 ], [ -59.204098999569112, -34.07705799972689 ], [ -59.204163999868683, -34.077187000279821 ], [ -59.204206000006877, -34.077423000371141 ], [ -59.204184999937752, -34.077637000347238 ], [ -59.204206000006877, -34.077743999885627 ], [ -59.204271000306392, -34.077830000254266 ], [ -59.204399999960003, -34.077981000023101 ], [ -59.204549999682683, -34.078410000021449 ], [ -59.204785999774003, -34.079439999856049 ], [ -59.205235999841477, -34.080941999873346 ], [ -59.205322000210117, -34.081177999964666 ], [ -59.205279000025769, -34.081414000055986 ], [ -59.205108000233963, -34.081650000147363 ], [ -59.203669999570764, -34.082143000399128 ], [ -59.203514999617482, -34.082198000237497 ], [ -59.199056999980542, -34.08377400006998 ], [ -59.196694999874296, -34.084544999651996 ], [ -59.196030999830725, -34.084760999720345 ], [ -59.19186800030792, -34.086262999737585 ], [ -59.188179000160687, -34.087539000124707 ], [ -59.180527999867252, -34.090184999837845 ], [ -59.175302999933479, -34.091992000430423 ], [ -59.17378400003156, -34.092537000382208 ], [ -59.166032999623212, -34.095318000025657 ], [ -59.165238999879875, -34.095318000025657 ], [ -59.163929999769607, -34.095190000418143 ], [ -59.16315800014155, -34.09508199993428 ], [ -59.16251400012095, -34.095125000118628 ], [ -59.16204199993831, -34.095231999657017 ], [ -59.161999999800116, -34.095252999726085 ], [ -59.16163400000903, -34.095425999610143 ], [ -59.160754999943265, -34.096326999791188 ], [ -59.159810999577928, -34.097314000340816 ], [ -59.159102000157134, -34.097570999601885 ], [ -59.157294000417721, -34.098212000383455 ], [ -59.149592999617198, -34.100939000234632 ], [ -59.142235000245023, -34.103544999901771 ], [ -59.140862999927492, -34.104029999784643 ], [ -59.134976000042343, -34.10610500014559 ], [ -59.1330100002113, -34.10679799972786 ], [ -59.128080000391662, -34.108524000182399 ], [ -59.121633999909136, -34.110780999943131 ], [ -59.119771000331355, -34.111433000332681 ], [ -59.118954999573532, -34.111496999686722 ], [ -59.117474999671458, -34.111325999894916 ], [ -59.116343999675792, -34.111307999964197 ], [ -59.115800999816258, -34.11145400040175 ], [ -59.11528600034859, -34.111669000424001 ], [ -59.114684999613019, -34.112119999638253 ], [ -59.114341999983253, -34.11248400023635 ], [ -59.113643000124341, -34.113308999610581 ], [ -59.113505000055682, -34.113471999932813 ], [ -59.113355000332945, -34.113600000439646 ], [ -59.112989999688693, -34.11377200027755 ], [ -59.112581999759414, -34.113965000184578 ], [ -59.109535000439905, -34.114973999950109 ], [ -59.108405999637114, -34.115370000225312 ], [ -59.103523000186271, -34.117087000264803 ], [ -59.10245400035177, -34.117462999617715 ], [ -59.09509399998808, -34.119995000368931 ], [ -59.089081999734447, -34.122578999920847 ], [ -59.086060999815231, -34.12387799956997 ], [ -59.085437999863757, -34.124007000122901 ], [ -59.084194000053003, -34.124007000122901 ], [ -59.08304400008052, -34.123966000030805 ], [ -59.0823480003599, -34.12405000030725 ], [ -59.080545999997867, -34.123149000126205 ], [ -59.080473000228722, -34.123111000172457 ], [ -59.076597999597936, -34.121068000387879 ], [ -59.074966999927085, -34.120079999792097 ], [ -59.073122000280023, -34.119243999910623 ], [ -59.070052999945972, -34.117785000077674 ], [ -59.069452000109663, -34.117505999802006 ], [ -59.068379000090715, -34.116991000334338 ], [ -59.064732000081676, -34.115295000363915 ], [ -59.06382999985459, -34.114845000296498 ], [ -59.062756999835642, -34.114350999998635 ], [ -59.062371000021585, -34.114180000206773 ], [ -59.062006000276654, -34.113986000253647 ], [ -59.061298000002637, -34.113621999655493 ], [ -59.058959000057769, -34.11241999998299 ], [ -59.057778999601112, -34.11177599996239 ], [ -59.055933999954107, -34.110768000242956 ], [ -59.055246999749215, -34.110360000313733 ], [ -59.053573999940113, -34.109351999694979 ], [ -59.052737000012485, -34.108880000411659 ], [ -59.050762999812548, -34.107698999908848 ], [ -59.049110000026417, -34.106776999658791 ], [ -59.048401999752457, -34.10638999979858 ], [ -59.048123000376108, -34.1062400000759 ], [ -59.047630000124343, -34.105982999915454 ], [ -59.046856999550869, -34.105574999986231 ], [ -59.04610599999188, -34.105167000056952 ], [ -59.045376999648795, -34.104781000242951 ], [ -59.044669000274098, -34.104373000313672 ], [ -59.043961, -34.104008999715518 ], [ -59.043145000141578, -34.103579999717169 ], [ -59.042436999867618, -34.103192999857015 ], [ -59.04233000032923, -34.103149999672723 ], [ -59.041643000124338, -34.102785999973889 ], [ -59.040934999850322, -34.102399000113735 ], [ -59.040290999829722, -34.102098999768998 ], [ -59.040163000222265, -34.102013000299678 ], [ -59.039519000201665, -34.10166999977065 ], [ -59.039368999579608, -34.101605000370455 ], [ -59.038253000275688, -34.101004999680924 ], [ -59.037201000325865, -34.100403999844673 ], [ -59.037093999888157, -34.100339000444478 ], [ -59.036300000144877, -34.09991000044613 ], [ -59.035850000077403, -34.09967400035481 ], [ -59.035442000148123, -34.099460000378656 ], [ -59.03527000031022, -34.099374000010073 ], [ -59.035140999757289, -34.099308999710502 ], [ -59.034820000242803, -34.099738999755004 ], [ -59.033810999577952, -34.099202000172113 ], [ -59.032910000296226, -34.098729999989473 ], [ -59.031987, -34.098236999737708 ], [ -59.031042999634678, -34.097743000339165 ], [ -59.030120000237787, -34.097250000087399 ], [ -59.029219000056742, -34.096776999858605 ], [ -59.02829599976053, -34.09628399960684 ], [ -59.027374000409736, -34.095790000208297 ], [ -59.026772999674165, -34.096583999951577 ], [ -59.026215000022205, -34.097377999694913 ], [ -59.025614000185897, -34.098151000268388 ], [ -59.025034999565548, -34.098901999827376 ], [ -59.024412999660171, -34.09967400035481 ], [ -59.023832999892988, -34.10046800009809 ], [ -59.023275000241028, -34.101240999772301 ], [ -59.022674999551555, -34.102013000299678 ], [ -59.022094999784372, -34.102763999858666 ], [ -59.02149399994812, -34.103557999601946 ], [ -59.022417000244332, -34.104029999784643 ], [ -59.02331800042532, -34.104545000151575 ], [ -59.022695999620623, -34.105338999894911 ], [ -59.022352999990915, -34.105854000261843 ], [ -59.021901999877343, -34.106604999820831 ], [ -59.021193999603383, -34.10767799983978 ], [ -59.021064999949772, -34.108085999769003 ], [ -59.020978999581132, -34.108579000020768 ], [ -59.020828999858395, -34.109459000132688 ], [ -59.020807999789326, -34.109587999786299 ], [ -59.020679000135715, -34.110382000428956 ], [ -59.020514999767386, -34.11127000001045 ], [ -59.020464000113463, -34.11153999987107 ], [ -59.020293000321658, -34.11241999998299 ], [ -59.020271000206435, -34.112527000420698 ], [ -59.020206999953018, -34.113428999748521 ], [ -59.020228000022144, -34.114286999745218 ], [ -59.020206999953018, -34.114479999652247 ], [ -59.020184999837852, -34.115510000386166 ], [ -59.020184999837852, -34.115745999578166 ], [ -59.020142999699658, -34.116603999574863 ], [ -59.020078000299407, -34.11707599975756 ], [ -59.019970999861698, -34.117505999802006 ], [ -59.019649000301058, -34.11834199968348 ], [ -59.019262999587738, -34.118964999634954 ], [ -59.019198000187544, -34.119093000141788 ], [ -59.018319000121721, -34.12065999955928 ], [ -59.017975000445858, -34.121088999557628 ], [ -59.01754600044751, -34.121303999579879 ], [ -59.017180999803259, -34.121303999579879 ], [ -59.017010000011453, -34.121388999902365 ], [ -59.016881000357841, -34.121517999555977 ], [ -59.016860000288716, -34.121690000293256 ], [ -59.016944999711939, -34.121883000200228 ], [ -59.017096000380093, -34.122055000038188 ], [ -59.017159999734133, -34.122355000382925 ], [ -59.017117000449161, -34.122654999828342 ], [ -59.01698799989623, -34.122999000403524 ], [ -59.016882999550774, -34.123192000310496 ], [ -59.016581000013105, -34.123749999962513 ], [ -59.016452000359493, -34.123942999869485 ], [ -59.016007999669398, -34.124688000051094 ], [ -59.015442999694642, -34.12563799979381 ], [ -59.014885000042682, -34.126452999606215 ], [ -59.014814000365789, -34.126580000066895 ], [ -59.014372999814043, -34.127369999625728 ], [ -59.01376999988554, -34.128448999921375 ], [ -59.013300999841249, -34.129267999918227 ], [ -59.012981000372804, -34.129825999570187 ], [ -59.012178000214476, -34.131229999564766 ], [ -59.011903000123311, -34.131711000162511 ], [ -59.011173999780226, -34.132946999604314 ], [ -59.010603999574869, -34.133913000084817 ], [ -59.010179999807121, -34.134631999966757 ], [ -59.009765999601143, -34.135335000010173 ], [ -59.009220999649358, -34.136260000398636 ], [ -59.009097000226348, -34.136478999706014 ], [ -59.009026999696232, -34.136603000028401 ], [ -59.008555000412912, -34.137461000025098 ], [ -59.008482999790544, -34.137586000393583 ], [ -59.008319000321592, -34.137868999954321 ], [ -59.008212999929981, -34.138052000299524 ], [ -59.007932999608215, -34.138534000044046 ], [ -59.007823999977575, -34.138727999997172 ], [ -59.007739999701187, -34.138876999673755 ], [ -59.007611000047575, -34.139134999880298 ], [ -59.007358000071633, -34.139446999879112 ], [ -59.006774000119947, -34.140164999714898 ], [ -59.006581000212975, -34.140378999691052 ], [ -59.006414999752394, -34.140757000035478 ], [ -59.006345000121598, -34.140916000173206 ], [ -59.006195000398918, -34.141430999640875 ], [ -59.006171000191443, -34.141484000286368 ], [ -59.005851999869833, -34.142182000099183 ], [ -59.005505000055678, -34.142787000119938 ], [ -59.004728000197019, -34.14414099960743 ], [ -59.004011000407274, -34.14539199974098 ], [ -59.003544999602013, -34.146203000268201 ], [ -59.002589999628754, -34.147867999708353 ], [ -59.001795999885474, -34.149027000095941 ], [ -59.000894999704428, -34.149649000001318 ], [ -59.0003159999834, -34.15010000011489 ], [ -59.00014400014544, -34.150293000021918 ], [ -58.999886999984994, -34.150572000297529 ], [ -58.9990279999422, -34.151409000225158 ], [ -58.998469000244143, -34.151841000361856 ], [ -58.998083999576863, -34.152137999668923 ], [ -58.99622700027578, -34.15338499961797 ], [ -58.995209000095258, -34.154068999684569 ], [ -58.99436900002928, -34.154544000005558 ], [ -58.992958999758002, -34.155341999933285 ], [ -58.991362999902492, -34.156245000206525 ], [ -58.990466999952048, -34.156752000204619 ], [ -58.988834000188945, -34.157647000108909 ], [ -58.98780600044654, -34.158211000037568 ], [ -58.987355000332968, -34.158425000013722 ], [ -58.986516000313145, -34.158828999758498 ], [ -58.986239000129729, -34.158961999596556 ], [ -58.98460000008987, -34.159790000008456 ], [ -58.983455000347931, -34.160367999683388 ], [ -58.982641999728457, -34.160777999704862 ], [ -58.98194800010009, -34.161128999703521 ], [ -58.981396999871606, -34.161324999748899 ], [ -58.980513999621337, -34.161637999793811 ], [ -58.980317000429181, -34.161708000323927 ], [ -58.979609000155165, -34.162073000068858 ], [ -58.979479999602233, -34.16211600025315 ], [ -58.979180000156816, -34.162138000368373 ], [ -58.978900999881205, -34.162222999791538 ], [ -58.978449999767633, -34.162394999629498 ], [ -58.978192999607188, -34.16243799981379 ], [ -58.977398999863908, -34.162458999882915 ], [ -58.97673399977424, -34.162458999882915 ], [ -58.97649799968292, -34.162458999882915 ], [ -58.975917999915737, -34.162458999882915 ], [ -58.975660999755291, -34.162458999882915 ], [ -58.974759999574303, -34.162458999882915 ], [ -58.97456599962112, -34.162458999882915 ], [ -58.9739439997158, -34.162480999998081 ], [ -58.973085999719046, -34.162458999882915 ], [ -58.972913999881143, -34.162458999882915 ], [ -58.972335000160115, -34.162458999882915 ], [ -58.971519000301555, -34.162458999882915 ], [ -58.971241000072041, -34.162458999882915 ], [ -58.970360999960121, -34.162480999998081 ], [ -58.970447000328761, -34.163446000432543 ], [ -58.970531999751927, -34.164412000013726 ], [ -58.969395000378938, -34.164476000267143 ], [ -58.968279000175698, -34.164561999736463 ], [ -58.967141999903333, -34.164627000035978 ], [ -58.966025999700094, -34.164712000358463 ], [ -58.964931999612077, -34.164754999643492 ], [ -58.9638160003081, -34.164841000012075 ], [ -58.962635999851443, -34.164927000380715 ], [ -58.961541999763426, -34.164990999734812 ], [ -58.960425999560186, -34.165056000034326 ], [ -58.959289000187141, -34.165120000287743 ], [ -58.959180999703335, -34.165120000287743 ], [ -58.958066000445513, -34.165205999757063 ], [ -58.958172999983901, -34.166106999938052 ], [ -58.958259000352541, -34.167073000418611 ], [ -58.958343999775707, -34.168016999884571 ], [ -58.959438999909878, -34.167931000415308 ], [ -58.959525000278518, -34.168896999996491 ], [ -58.959609999701684, -34.169819000246605 ], [ -58.959609999701684, -34.169926999831148 ], [ -58.95980399965481, -34.171751000308348 ], [ -58.959911000092518, -34.172694999774365 ], [ -58.960017999630963, -34.173639000139701 ], [ -58.960082999930478, -34.174562000435913 ], [ -58.960190000368186, -34.175505999901929 ], [ -58.960190000368186, -34.175613000339638 ], [ -58.960296999906575, -34.176513999621363 ], [ -58.960383000275215, -34.177480000101866 ], [ -58.960468999744478, -34.178381000282911 ], [ -58.960532999997895, -34.179152999910968 ], [ -58.960598000297409, -34.179346999864094 ], [ -58.960640000435603, -34.179796999931568 ], [ -58.960598000297409, -34.180055000138111 ], [ -58.960468999744478, -34.18039799976782 ], [ -58.960253999722283, -34.180763000412071 ], [ -58.960091000299371, -34.180925999834983 ], [ -58.959975000345935, -34.18104199978842 ], [ -58.959525000278518, -34.181255999764517 ], [ -58.959030999980598, -34.181321000064031 ], [ -58.958371000121531, -34.181350999648885 ], [ -58.957636000401067, -34.181385000317448 ], [ -58.955684000316296, -34.181642999624671 ], [ -58.954976000042336, -34.181684999762865 ], [ -58.953859999839096, -34.181771000131505 ], [ -58.953411999863874, -34.181840999762301 ], [ -58.953172999634205, -34.181878999716048 ], [ -58.952229000168188, -34.182135999876436 ], [ -58.951197000241336, -34.18255200017461 ], [ -58.950791000404308, -34.182714999597522 ], [ -58.950190999714835, -34.183059000172705 ], [ -58.949676000247166, -34.183401999802413 ], [ -58.94918600013375, -34.183807999639441 ], [ -58.948924999788858, -34.18402399970779 ], [ -58.948494999744412, -34.184431999637013 ], [ -58.948022999561715, -34.184968000073127 ], [ -58.947784000231366, -34.185298000002661 ], [ -58.946361000259913, -34.187252000179626 ], [ -58.945556000009333, -34.188358999967818 ], [ -58.945159999734187, -34.18891899971203 ], [ -58.945040999642401, -34.189088000310903 ], [ -58.944396999621802, -34.189989999638726 ], [ -58.944010999807745, -34.190505000005714 ], [ -58.943894999854308, -34.190663000097345 ], [ -58.943667000131882, -34.190977000188354 ], [ -58.942637000297282, -34.192457000090428 ], [ -58.942543999605846, -34.192575000136117 ], [ -58.942380000136836, -34.192778999651068 ], [ -58.941301999887344, -34.194260999645394 ], [ -58.940147999730357, -34.195847999985176 ], [ -58.939885000192589, -34.196216999914554 ], [ -58.938603999574866, -34.198014000046044 ], [ -58.938388999552672, -34.198315000436878 ], [ -58.937681000177975, -34.199367000386701 ], [ -58.937465000109626, -34.199659000362544 ], [ -58.936389999998482, -34.201117000149395 ], [ -58.934847999935187, -34.203207000302768 ], [ -58.934311000352352, -34.203948000299931 ], [ -58.932521999690493, -34.206415999898411 ], [ -58.930707999674382, -34.208917000119413 ], [ -58.930148999976325, -34.209687999701373 ], [ -58.928872000442425, -34.211548000040125 ], [ -58.928174999776388, -34.212563000082355 ], [ -58.927686999755167, -34.213250000287246 ], [ -58.925856999900589, -34.215827999562464 ], [ -58.925707000177852, -34.216039000299588 ], [ -58.924846000042805, -34.217238999879896 ], [ -58.923090000003469, -34.219687000354725 ], [ -58.922819000096752, -34.220043999730763 ], [ -58.92188800033091, -34.221274999841341 ], [ -58.920777000358214, -34.222857999996677 ], [ -58.919205999856956, -34.225096999826633 ], [ -58.919162999672665, -34.225158999987798 ], [ -58.918132999838008, -34.226188999822455 ], [ -58.917853999562396, -34.226489000167192 ], [ -58.917522999586708, -34.226792999797055 ], [ -58.917339000094728, -34.226961000349831 ], [ -58.917252999726088, -34.227090000003443 ], [ -58.917016999634768, -34.227369000279111 ], [ -58.916910000096379, -34.227540000070917 ], [ -58.916695000074128, -34.228055000437848 ], [ -58.91658799963642, -34.228140999907168 ], [ -58.916502000167156, -34.228163000022391 ], [ -58.91643799991374, -34.228163000022391 ], [ -58.916222999891488, -34.228206000206683 ], [ -58.916158999638071, -34.22826999956078 ], [ -58.916051000053585, -34.228720999674351 ], [ -58.915499999825101, -34.229421999625515 ], [ -58.915106999688248, -34.229922000200133 ], [ -58.914324999598989, -34.230999000403528 ], [ -58.913657000270291, -34.231917999615973 ], [ -58.911978000184547, -34.234228000022142 ], [ -58.910244000260377, -34.236614000335805 ], [ -58.909914000330787, -34.237067999688406 ], [ -58.908540999967158, -34.239208000348867 ], [ -58.90826199969149, -34.239642999724595 ], [ -58.908005000430364, -34.240222000345 ], [ -58.907811999624016, -34.240757999881737 ], [ -58.907718999831957, -34.241341999833367 ], [ -58.907682999970405, -34.24157399974024 ], [ -58.907639999786113, -34.242883999896662 ], [ -58.907575000385918, -34.244849999727649 ], [ -58.907485999878929, -34.247579999717175 ], [ -58.907446999879085, -34.248762000266083 ], [ -58.90723199985689, -34.249512999825015 ], [ -58.906837999673883, -34.250553000120817 ], [ -58.906394999929262, -34.251723000116328 ], [ -58.905944999861788, -34.252709999766637 ], [ -58.905879999562273, -34.252902999673665 ], [ -58.905988000046136, -34.253310999602888 ], [ -58.905879999562273, -34.253568999809431 ], [ -58.905764999654991, -34.25387100024642 ], [ -58.905708999770468, -34.254018999876905 ], [ -58.905238999680023, -34.255065000449349 ], [ -58.904373000213752, -34.256990000188296 ], [ -58.903798999823948, -34.25826799976835 ], [ -58.903241000171988, -34.259361999856367 ], [ -58.903149999572804, -34.25955999999394 ], [ -58.90264000033568, -34.260670999966635 ], [ -58.901879000315546, -34.262324999798864 ], [ -58.901125999765043, -34.263963999838666 ], [ -58.900477000413218, -34.265376000202195 ], [ -58.899786000023823, -34.266877000173395 ], [ -58.898994000372795, -34.268599999590265 ], [ -58.898390000398138, -34.269914999977232 ], [ -58.898029999984487, -34.270698000112588 ], [ -58.897430000194333, -34.272001999992256 ], [ -58.896877999919695, -34.273202999618718 ], [ -58.896536000336084, -34.273947999800328 ], [ -58.896139000014784, -34.274812000073723 ], [ -58.895692000085717, -34.275747000024012 ], [ -58.895034000318844, -34.277125999765019 ], [ -58.894786999720225, -34.277644000270357 ], [ -58.894680000181836, -34.277922999646648 ], [ -58.894508000343876, -34.278351999644997 ], [ -58.894372000367468, -34.27864100038181 ], [ -58.89363499965549, -34.280200000329728 ], [ -58.893414000255859, -34.280670000420116 ], [ -58.892984000211413, -34.28159199977091 ], [ -58.892898999888871, -34.28176399960887 ], [ -58.892662999797551, -34.282300000044927 ], [ -58.892100999961144, -34.283567000017001 ], [ -58.891740000400659, -34.284381999829407 ], [ -58.891436999917573, -34.284925999735037 ], [ -58.891311000402311, -34.285154000356783 ], [ -58.891202999918448, -34.285390000448103 ], [ -58.890729999689711, -34.286213999776237 ], [ -58.890709999666683, -34.286248999591635 ], [ -58.889934999900277, -34.287326999841127 ], [ -58.888607999859289, -34.289173000433607 ], [ -58.88695700016541, -34.291471000286379 ], [ -58.88554499980188, -34.293436000071324 ], [ -58.884696000220174, -34.294617999720856 ], [ -58.883610999647885, -34.296127000060949 ], [ -58.88309199999577, -34.296849000081238 ], [ -58.882470000090393, -34.297793000446575 ], [ -58.882187999676376, -34.29825200002972 ], [ -58.881822999931444, -34.298845000396398 ], [ -58.881440000255793, -34.299467000301775 ], [ -58.88002399970776, -34.301333000017905 ], [ -58.879021000218927, -34.302654999828349 ], [ -58.876547000343749, -34.305914999977233 ], [ -58.873967000076959, -34.309315000286972 ], [ -58.872236000291139, -34.311596000255179 ], [ -58.870451999859881, -34.313948999946319 ], [ -58.870304000229396, -34.3141439999456 ], [ -58.869274000394739, -34.315474000124937 ], [ -58.869021000418797, -34.315795999685577 ], [ -58.868802000212099, -34.316074999961245 ], [ -58.867965000284471, -34.316976000142233 ], [ -58.867624999893792, -34.317254000371804 ], [ -58.867257000010511, -34.317554999863319 ], [ -58.866014000245855, -34.318417000044462 ], [ -58.865647000408728, -34.318671000066558 ], [ -58.86489599995042, -34.319078999995781 ], [ -58.864262000390966, -34.319342999579703 ], [ -58.864124000322306, -34.319400999556422 ], [ -58.863223000141318, -34.31976600020073 ], [ -58.861779000100739, -34.320279999622244 ], [ -58.858880000411659, -34.321312000448415 ], [ -58.856211999683978, -34.322262000191131 ], [ -58.855690999939668, -34.322447999775306 ], [ -58.854770999781749, -34.322793000396587 ], [ -58.853631000270411, -34.32322000030274 ], [ -58.85187700032327, -34.32385299981604 ], [ -58.848682999620678, -34.32500299978858 ], [ -58.846522999836509, -34.325781999739434 ], [ -58.846485999928916, -34.325795000338928 ], [ -58.843910999892671, -34.326825000173585 ], [ -58.842953999827216, -34.327199000333565 ], [ -58.840455999744563, -34.328176999568825 ], [ -58.837754000146958, -34.329173999680279 ], [ -58.836442999944438, -34.329658000416316 ], [ -58.835370999971644, -34.330065000299498 ], [ -58.830013000199756, -34.332502000267027 ], [ -58.827775000415897, -34.333520000447606 ], [ -58.827088000211006, -34.333842000008246 ], [ -58.825945999708097, -34.334358000421332 ], [ -58.823491999855889, -34.335468000347873 ], [ -58.823054000341813, -34.335665999586183 ], [ -58.82135000000244, -34.336523000436102 ], [ -58.819599000193648, -34.3374039996948 ], [ -58.81887099989666, -34.337826000269672 ], [ -58.818119000291574, -34.338261999691497 ], [ -58.817442999694663, -34.338732999828039 ], [ -58.8167019996975, -34.339249000241125 ], [ -58.815861999631522, -34.339953000330638 ], [ -58.815780000346706, -34.340021999915336 ], [ -58.814831999796922, -34.340993999773218 ], [ -58.812540000220793, -34.343348000409833 ], [ -58.812484000336326, -34.343407999579483 ], [ -58.811853000015901, -34.344098999968821 ], [ -58.810587000089924, -34.345392000240565 ], [ -58.809922000000256, -34.346073000168758 ], [ -58.809149000326045, -34.346866999912095 ], [ -58.808859999589288, -34.347151000418307 ], [ -58.807968999869388, -34.348025000253529 ], [ -58.807808999685562, -34.348171999837859 ], [ -58.807218000310399, -34.3487119995591 ], [ -58.806604999920751, -34.349225999879934 ], [ -58.80544300029419, -34.350199999830068 ], [ -58.804429000298057, -34.351051000403288 ], [ -58.803926999631301, -34.351460000378665 ], [ -58.803269999910526, -34.351994999869305 ], [ -58.802401000305906, -34.352703000143322 ], [ -58.801273000448589, -34.353624000347281 ], [ -58.80105999961927, -34.353797000231339 ], [ -58.800200999576418, -34.35456999990555 ], [ -58.799996000015369, -34.354785999973899 ], [ -58.798635000205081, -34.356221999645527 ], [ -58.79850599965215, -34.356367000036983 ], [ -58.798098999768968, -34.356823000381098 ], [ -58.797711999908813, -34.357252000379447 ], [ -58.796961000349825, -34.357981999869367 ], [ -58.796359999614253, -34.358475000121132 ], [ -58.796096000030332, -34.358677999589986 ], [ -58.795716999639808, -34.358969000418995 ], [ -58.794514999967248, -34.359719999977983 ], [ -58.794365000244511, -34.3597840002314 ], [ -58.793900000384667, -34.360016000138273 ], [ -58.790972000257568, -34.361478000109571 ], [ -58.79010900003027, -34.361909000200171 ], [ -58.787464000363286, -34.36322999996446 ], [ -58.785860000138882, -34.364031000030593 ], [ -58.783604000424248, -34.365156999795659 ], [ -58.782215000222038, -34.365851000323346 ], [ -58.779035000165095, -34.367437999763808 ], [ -58.778980000326726, -34.36746600015573 ], [ -58.777820999939138, -34.36802399980769 ], [ -58.777507999894226, -34.368188000176019 ], [ -58.77691999975815, -34.368495999990387 ], [ -58.775997000361258, -34.36890399991961 ], [ -58.775596999901609, -34.369056999780696 ], [ -58.774259000252641, -34.369569000009278 ], [ -58.773821999885342, -34.369676000447043 ], [ -58.772582000259092, -34.369980000076907 ], [ -58.771984999707911, -34.370126999661238 ], [ -58.771572000447406, -34.370221000398828 ], [ -58.771513000424591, -34.370234000099003 ], [ -58.771040000195796, -34.370319999568267 ], [ -58.770403999644827, -34.370484999982693 ], [ -58.769279999971957, -34.370775999912439 ], [ -58.765914000330838, -34.371646999609311 ], [ -58.764410000221289, -34.37203599956166 ], [ -58.763797999877738, -34.372270999606883 ], [ -58.76197999967718, -34.372968000272976 ], [ -58.759257000010507, -34.374011999853849 ], [ -58.75696400038828, -34.374889999873574 ], [ -58.756521999790436, -34.375102999803573 ], [ -58.756384999767874, -34.375169000149185 ], [ -58.755249000440983, -34.375919999708174 ], [ -58.755183000095315, -34.375962999892465 ], [ -58.754325000098618, -34.376693000281705 ], [ -58.754134000283841, -34.376927000280773 ], [ -58.752720999874214, -34.378666999582322 ], [ -58.752651000243418, -34.378752999950962 ], [ -58.752394000082973, -34.37909599958067 ], [ -58.751856999600818, -34.379782999785562 ], [ -58.75119200041047, -34.380597999597967 ], [ -58.751062999857538, -34.38077000033519 ], [ -58.750982999765597, -34.380876999873578 ], [ -58.75054800038987, -34.381455999594664 ], [ -58.749883000300201, -34.382335999706584 ], [ -58.749582999955464, -34.382701000350835 ], [ -58.749000000049932, -34.383437000117397 ], [ -58.748360000213779, -34.384245999653103 ], [ -58.74800900021512, -34.384695999720577 ], [ -58.746626000289666, -34.386471999782941 ], [ -58.746170999991591, -34.387056999780668 ], [ -58.745030999580933, -34.388598999843907 ], [ -58.744566999767187, -34.389227000025983 ], [ -58.743471999633016, -34.390707999974154 ], [ -58.742400999706319, -34.392157000245334 ], [ -58.741485999779002, -34.393394999779389 ], [ -58.741428999848438, -34.393472999779078 ], [ -58.740828000012129, -34.393966000030844 ], [ -58.740283000060344, -34.394482999590707 ], [ -58.739991000084558, -34.394759999774124 ], [ -58.73971199980889, -34.395188999772472 ], [ -58.739583000155278, -34.395297000256335 ], [ -58.73939000024825, -34.39561799977082 ], [ -58.739176000272153, -34.39594000023078 ], [ -58.738725000158581, -34.396883999696797 ], [ -58.73851000013633, -34.397159999834059 ], [ -58.738339000344524, -34.39737799999466 ], [ -58.736173000283713, -34.400144999891779 ], [ -58.735785000377405, -34.400640000235796 ], [ -58.735012999850028, -34.401541000416785 ], [ -58.734599999690204, -34.402101000160997 ], [ -58.733746999924051, -34.403257000410179 ], [ -58.73349099980976, -34.403586000293615 ], [ -58.732609999651743, -34.404716000243184 ], [ -58.732001000345861, -34.4055920001706 ], [ -58.731730000439143, -34.405982000169104 ], [ -58.730463999613846, -34.407591999770943 ], [ -58.729970000215303, -34.408235999791486 ], [ -58.729862999777595, -34.40836400029832 ], [ -58.729685999709091, -34.408593000066844 ], [ -58.729348000309926, -34.409029000387989 ], [ -58.727974999946241, -34.410616999874605 ], [ -58.72761000020131, -34.411067999988177 ], [ -58.726525999675118, -34.412382000328989 ], [ -58.724970999911648, -34.414264999929742 ], [ -58.72383100040031, -34.415739999601271 ], [ -58.722395999875459, -34.417596999801674 ], [ -58.721687999601443, -34.418513999821187 ], [ -58.721343999925637, -34.418899999635244 ], [ -58.720945000411405, -34.41941299990998 ], [ -58.720593000366648, -34.419866000115746 ], [ -58.719600999586419, -34.421129999949471 ], [ -58.719499000278574, -34.421259999649237 ], [ -58.718591999820887, -34.422453999852166 ], [ -58.717867999708403, -34.423405999687077 ], [ -58.717396000425026, -34.424027999592454 ], [ -58.714993000226741, -34.427096999926562 ], [ -58.714799000273615, -34.427400000409648 ], [ -58.714349000206141, -34.428104999645996 ], [ -58.714026999746181, -34.428748999666539 ], [ -58.713855999954376, -34.429177999664887 ], [ -58.713727000300764, -34.429543000309195 ], [ -58.713597999747833, -34.430078999845932 ], [ -58.713539999771115, -34.430405999637117 ], [ -58.713448000025153, -34.430915999773504 ], [ -58.713319000371541, -34.431474000324783 ], [ -58.713211999933833, -34.431967999723383 ], [ -58.713187999726358, -34.432074000114994 ], [ -58.713105000395387, -34.432439999906023 ], [ -58.712932999658165, -34.432868999904372 ], [ -58.712763999958611, -34.433191000364332 ], [ -58.712717999635913, -34.433276999833652 ], [ -58.712310999752788, -34.433770000085417 ], [ -58.712053000445565, -34.434049000361028 ], [ -58.711657000170362, -34.434427999852289 ], [ -58.711581000262925, -34.43449999957528 ], [ -58.710766999597297, -34.435206999803142 ], [ -58.709048000364874, -34.436701000350865 ], [ -58.708469999790623, -34.437203000118302 ], [ -58.707847999885246, -34.437589999978456 ], [ -58.707411000417267, -34.437957999861737 ], [ -58.707032000026743, -34.43827600013725 ], [ -58.706818000050646, -34.438491000159502 ], [ -58.706559999844103, -34.438727000250822 ], [ -58.706437999613968, -34.43889399985818 ], [ -58.706151999914823, -34.439284999902782 ], [ -58.705937999938726, -34.439520999994102 ], [ -58.70589699984663, -34.439562000086198 ], [ -58.705745000031698, -34.439734999970256 ], [ -58.705616000378086, -34.43980000026977 ], [ -58.705293999918126, -34.440207000152895 ], [ -58.705206000356611, -34.440377999944701 ], [ -58.704993999573389, -34.440786999920078 ], [ -58.704543000359138, -34.441473000078872 ], [ -58.70433199962207, -34.44174399998559 ], [ -58.703526000224713, -34.442776999958539 ], [ -58.702544999951726, -34.444035000414885 ], [ -58.70129800000268, -34.445634000408745 ], [ -58.701046000072779, -34.445958000061637 ], [ -58.700143999845693, -34.44715999973414 ], [ -58.699994000122956, -34.447348000309944 ], [ -58.699362999802531, -34.448137999868777 ], [ -58.698205000360417, -34.449589000232152 ], [ -58.697761999716477, -34.450141999653511 ], [ -58.697480000201836, -34.450503000113315 ], [ -58.696573999790189, -34.451663999693778 ], [ -58.695730000439141, -34.452744000035523 ], [ -58.694953999727261, -34.453738000008627 ], [ -58.693907000007982, -34.455078999795944 ], [ -58.693210000241265, -34.455970999561941 ], [ -58.692409000175189, -34.456997000111414 ], [ -58.692098000222472, -34.457394999579549 ], [ -58.691787000269812, -34.457769999785626 ], [ -58.691070999626902, -34.458635000105119 ], [ -58.69095999990401, -34.458767999943177 ], [ -58.69024100002207, -34.459697999662922 ], [ -58.68944400014044, -34.460729999589773 ], [ -58.688713999751258, -34.461668999724509 ], [ -58.687644999916756, -34.463053999742272 ], [ -58.686900999781301, -34.464018000130579 ], [ -58.686861999781399, -34.464067999738347 ], [ -58.686065999945924, -34.465015000242033 ], [ -58.685199999580277, -34.466045000076633 ], [ -58.685166999857131, -34.466085000122632 ], [ -58.684373000113851, -34.466900999981135 ], [ -58.683449999817583, -34.467737999908707 ], [ -58.683321000163971, -34.467842000208122 ], [ -58.682678000189526, -34.468359999814083 ], [ -58.682629999774633, -34.468389000252103 ], [ -58.681460999825219, -34.469110000226294 ], [ -58.681390000148326, -34.469153999557363 ], [ -58.681282999710618, -34.469283000110352 ], [ -58.68015799999165, -34.469882999900506 ], [ -58.678810999927691, -34.470601999782446 ], [ -58.678750999858721, -34.470634000358814 ], [ -58.67782799956251, -34.471021000218968 ], [ -58.676688000051115, -34.471429000148191 ], [ -58.676390999844728, -34.47153599968658 ], [ -58.675378999940847, -34.47185500000819 ], [ -58.675168000103099, -34.471922000399957 ], [ -58.673998000107588, -34.47225200032949 ], [ -58.672858999743028, -34.472572999844033 ], [ -58.671136000326101, -34.473054000441721 ], [ -58.670360999660375, -34.473273999795197 ], [ -58.668877999619951, -34.473694000277874 ], [ -58.667635999901449, -34.47404600032263 ], [ -58.666754999743375, -34.474220000252785 ], [ -58.665791000254444, -34.474411000067562 ], [ -58.66462500044338, -34.474560999790242 ], [ -58.664289000237147, -34.47460399997459 ], [ -58.663708999570645, -34.474775999812493 ], [ -58.662186000383542, -34.475204999810842 ], [ -58.662077999899736, -34.475247999995133 ], [ -58.660361999906343, -34.47572000017783 ], [ -58.659761000070034, -34.47586999990051 ], [ -58.659717999885743, -34.475935000200082 ], [ -58.659145000441356, -34.476140999807228 ], [ -58.658644999866794, -34.476321000014082 ], [ -58.658280000121863, -34.476491999805887 ], [ -58.657560000193826, -34.476621000358818 ], [ -58.657078999596138, -34.476706999828139 ], [ -58.654996999811658, -34.477265000379418 ], [ -58.654914999627465, -34.477291999825866 ], [ -58.653560000093876, -34.477736999662739 ], [ -58.65325699961079, -34.477854999708427 ], [ -58.652679999981956, -34.478080000191824 ], [ -58.652112999914948, -34.478221000398833 ], [ -58.650873000288698, -34.478529000213143 ], [ -58.649740000200836, -34.478809999681687 ], [ -58.649251000133518, -34.478928999773473 ], [ -58.647737999608978, -34.479297999702908 ], [ -58.646757000235311, -34.479536999932577 ], [ -58.645610000401177, -34.479817000254343 ], [ -58.644546999944055, -34.480075999607664 ], [ -58.644134999830328, -34.480168000252945 ], [ -58.642468000297924, -34.480542000412925 ], [ -58.642251000183478, -34.480590999974652 ], [ -58.640631000120493, -34.480919999858088 ], [ -58.639270000310205, -34.48119599999535 ], [ -58.637940000130868, -34.481464999809873 ], [ -58.636649999997474, -34.481727000200863 ], [ -58.635438999909866, -34.481972999854008 ], [ -58.634741000097051, -34.482114000061017 ], [ -58.634070999776782, -34.482243999760726 ], [ -58.632461000174999, -34.482554999713443 ], [ -58.631071999972789, -34.482822000334977 ], [ -58.629771000231415, -34.483046999919054 ], [ -58.628118999592118, -34.483331999572101 ], [ -58.627467000101944, -34.483445000286508 ], [ -58.62704300033414, -34.483507000447673 ], [ -58.625524999579, -34.483728999893401 ], [ -58.624300999791274, -34.4839080000541 ], [ -58.623219000256597, -34.484067000191885 ], [ -58.622893999658345, -34.484111999569109 ], [ -58.621442000148136, -34.484311999798933 ], [ -58.620313000244721, -34.484467999798312 ], [ -58.61823999997597, -34.484754000396777 ], [ -58.617871000046591, -34.484799999820098 ], [ -58.616865999566187, -34.48492600023468 ], [ -58.614742999689668, -34.485246999749222 ], [ -58.61469400012794, -34.485254000072018 ], [ -58.614291999576096, -34.485312000048737 ], [ -58.611566999817171, -34.485697999862737 ], [ -58.609300999641391, -34.486019000276599 ], [ -58.608842000058189, -34.486083999676794 ], [ -58.608005000130618, -34.486170000045433 ], [ -58.607795000338967, -34.486191000114502 ], [ -58.606878000319398, -34.486284999952716 ], [ -58.605639999886023, -34.486412000413452 ], [ -58.605280000371692, -34.486449000321045 ], [ -58.604528999913384, -34.486491999606073 ], [ -58.604191999660998, -34.486491999606073 ], [ -58.603820999639368, -34.486491999606073 ], [ -58.601387999856286, -34.486585000297509 ], [ -58.600451999859843, -34.48662000011285 ], [ -58.599582000209125, -34.486690999789744 ], [ -58.59777499961649, -34.486838000273451 ], [ -58.595966999877078, -34.486984999857839 ], [ -58.595103999649837, -34.48704599997285 ], [ -58.59319399970326, -34.48718099990316 ], [ -58.592620000212776, -34.487220999949159 ], [ -58.591653999732273, -34.48734999960277 ], [ -58.590385999714101, -34.4875139999711 ], [ -58.588671999812902, -34.48773600031609 ], [ -58.587938000138536, -34.487785999923915 ], [ -58.585473999825183, -34.487951000338342 ], [ -58.585102999803553, -34.487978999830943 ], [ -58.583971999807886, -34.488064000153429 ], [ -58.581741000346824, -34.488231999806885 ], [ -58.57901300044955, -34.488438000313408 ], [ -58.576716999789653, -34.488609000105214 ], [ -58.576075999907403, -34.488658999713039 ], [ -58.575051000303404, -34.488783000035369 ], [ -58.573951999984786, -34.488915999873427 ], [ -58.572170999691821, -34.489238000333387 ], [ -58.572127000360751, -34.489247999895213 ], [ -58.571033000272678, -34.48949599964061 ], [ -58.57074699967427, -34.489571000401327 ], [ -58.568804000004548, -34.490082999730589 ], [ -58.568673000258741, -34.490118000445307 ], [ -58.566914000080999, -34.490697000166392 ], [ -58.566649999597757, -34.490798000327402 ], [ -58.565264000433217, -34.491326000394565 ], [ -58.565110999672868, -34.491384000371283 ], [ -58.563471999633009, -34.492004000184409 ], [ -58.562385999913943, -34.492414000205883 ], [ -58.561844000100507, -34.492599999790116 ], [ -58.561635000354954, -34.492671000366329 ], [ -58.561013000449577, -34.492907999604427 ], [ -58.560277999829793, -34.493161999626523 ], [ -58.559897000246337, -34.493294000317803 ], [ -58.558590000228264, -34.493673999855162 ], [ -58.558051999700012, -34.49382999985454 ], [ -58.557815999608636, -34.49382999985454 ], [ -58.556613999936133, -34.493659000062735 ], [ -58.556425000213551, -34.493725000408404 ], [ -58.556184999937784, -34.493808999785472 ], [ -58.555455000447864, -34.494494999944266 ], [ -58.555324999848835, -34.494547999690383 ], [ -58.555240999572447, -34.494581000312849 ], [ -58.554554000266876, -34.494666999782169 ], [ -58.554276000037305, -34.494785999873955 ], [ -58.554103000153304, -34.494859999689197 ], [ -58.553586999740219, -34.49530500042539 ], [ -58.553009000065288, -34.495804000054534 ], [ -58.552880000411676, -34.496019000076728 ], [ -58.552365000044688, -34.496920000257774 ], [ -58.552005999677078, -34.497231000210434 ], [ -58.550991999681003, -34.497885999838957 ], [ -58.550256999960538, -34.498285000252508 ], [ -58.550005000030694, -34.49842200027507 ], [ -58.548203999714758, -34.49919299985703 ], [ -58.547258000156546, -34.499601999832407 ], [ -58.546540000320704, -34.499943000269184 ], [ -58.546400000159849, -34.50000999976163 ], [ -58.544983999611873, -34.500761000219939 ], [ -58.544208999845409, -34.501164999964715 ], [ -58.543502999663644, -34.50153399989415 ], [ -58.542984000011529, -34.501827999962188 ], [ -58.542859999689199, -34.501897999592984 ], [ -58.542623999597879, -34.502091000399332 ], [ -58.542173000383627, -34.502306000421527 ], [ -58.541861000384813, -34.502456000144264 ], [ -58.540524999928778, -34.503097000026514 ], [ -58.539447999725382, -34.503614999632475 ], [ -58.538536999982512, -34.504049999907522 ], [ -58.537966999777154, -34.504322999906492 ], [ -58.536570000105371, -34.505002999788587 ], [ -58.535211000387335, -34.50565800031643 ], [ -58.533201000325846, -34.506634000358758 ], [ -58.532517000259304, -34.506962000196097 ], [ -58.531147000033968, -34.507619999962969 ], [ -58.529791999601059, -34.508271000306365 ], [ -58.529551000178458, -34.508390000398151 ], [ -58.528550999928655, -34.508882999750597 ], [ -58.528268000367859, -34.509021999865354 ], [ -58.52667999998198, -34.509810000231255 ], [ -58.525542999709614, -34.510374000159914 ], [ -58.524976999688761, -34.510718999881874 ], [ -58.523784000431249, -34.511447000178862 ], [ -58.523211000087542, -34.511841000361812 ], [ -58.523097000226358, -34.511919000361559 ], [ -58.521937999838769, -34.512734000173907 ], [ -58.521582999655664, -34.513009000265129 ], [ -58.520593999913103, -34.513772000377458 ], [ -58.519770999731804, -34.514408000029107 ], [ -58.519156000149223, -34.514913999981047 ], [ -58.519042000288039, -34.515008999865415 ], [ -58.518425999760041, -34.515501000071026 ], [ -58.518398000267439, -34.515524000232404 ], [ -58.517526999671247, -34.516365000344422 ], [ -58.517132000341519, -34.516746999974032 ], [ -58.516702000297016, -34.517139000064731 ], [ -58.516401999952279, -34.5174120000637 ], [ -58.515903000323192, -34.517899000038767 ], [ -58.515069999680691, -34.518710999712823 ], [ -58.514164000168421, -34.51959500000919 ], [ -58.513805999846966, -34.519943999915597 ], [ -58.513571999847898, -34.52018700032977 ], [ -58.512821000288909, -34.520963000142274 ], [ -58.512583000105337, -34.521209999841574 ], [ -58.512219999553281, -34.521632999563224 ], [ -58.511423999717749, -34.522562000136134 ], [ -58.510618000320392, -34.523680000431625 ], [ -58.510018999677072, -34.524516000313099 ], [ -58.509127999957173, -34.525759000077755 ], [ -58.508862000281056, -34.526126999961036 ], [ -58.508434000328805, -34.526717000189365 ], [ -58.507634000308826, -34.527821999885361 ], [ -58.507153999757236, -34.528483999836681 ], [ -58.506937999688887, -34.528777999904719 ], [ -58.506436999967548, -34.529459999879066 ], [ -58.50584399960087, -34.530267000221841 ], [ -58.505608999555648, -34.530586999690229 ], [ -58.505452000409434, -34.530824999873801 ], [ -58.50504999985759, -34.5314350001251 ], [ -58.504363999698796, -34.532475000420902 ], [ -58.504060000068932, -34.532910999842727 ], [ -58.503560000393691, -34.533625000393386 ], [ -58.503163000072334, -34.534191999561074 ], [ -58.502919999658218, -34.534535000090159 ], [ -58.502449000420995, -34.53519900013373 ], [ -58.502271000306393, -34.53545000001742 ], [ -58.501695999870435, -34.536260999645378 ], [ -58.501232000056689, -34.536917000219319 ], [ -58.501146999734203, -34.537038000403356 ], [ -58.499922999946477, -34.538783999981547 ], [ -58.499219999903005, -34.539652999586224 ], [ -58.499107000087918, -34.539792999747078 ], [ -58.498543000159316, -34.540377999744862 ], [ -58.497679999932018, -34.541274999741404 ], [ -58.497434000278872, -34.541530999855695 ], [ -58.496948000349903, -34.542127000360722 ], [ -58.496423999567867, -34.542771000381322 ], [ -58.496404000444215, -34.542796999781672 ], [ -58.495932000261575, -34.54346199987134 ], [ -58.495693000031906, -34.543899000238639 ], [ -58.495545000401421, -34.544170000145357 ], [ -58.495245000056684, -34.544642000327997 ], [ -58.494944999711947, -34.545071000326345 ], [ -58.494921000403792, -34.545096999726695 ], [ -58.494623000151307, -34.545436000071277 ], [ -58.494300999691347, -34.545715000346945 ], [ -58.494176000222183, -34.545795000438886 ], [ -58.493829000408027, -34.546014999792362 ], [ -58.493337000202359, -34.546138000068595 ], [ -58.493142000203079, -34.546186999630265 ], [ -58.492605999767022, -34.546165000414419 ], [ -58.492327000390731, -34.546123000276225 ], [ -58.492091000299411, -34.546057999976654 ], [ -58.491426000209685, -34.545821999885334 ], [ -58.491211000187491, -34.545800999816265 ], [ -58.490975000096114, -34.545693000231722 ], [ -58.49073399977425, -34.545582999655664 ], [ -58.489678999686021, -34.545101999957296 ], [ -58.488250000337189, -34.544449000420968 ], [ -58.488117999645908, -34.544387000259803 ], [ -58.48711300006488, -34.543911999938814 ], [ -58.486261000344825, -34.543537999778835 ], [ -58.486040000045932, -34.543439999756117 ], [ -58.485483999586847, -34.54320000037967 ], [ -58.483315000287007, -34.54226000019878 ], [ -58.482820999989144, -34.542049000361033 ], [ -58.482713999551379, -34.542003000038392 ], [ -58.480639000089752, -34.541103999949598 ], [ -58.479988999792454, -34.540822999581735 ], [ -58.479891999815891, -34.540777000158414 ], [ -58.479172999933951, -34.540435999721581 ], [ -58.476856000104306, -34.539256000164244 ], [ -58.475865000269494, -34.538814999612498 ], [ -58.474989000342077, -34.538419000236615 ], [ -58.473150000072394, -34.53769800026248 ], [ -58.472800000119889, -34.537561000239918 ], [ -58.470778999551158, -34.536687000404697 ], [ -58.469473999625336, -34.536122999576719 ], [ -58.468726000204697, -34.53578300008536 ], [ -58.468530000159319, -34.53569399957837 ], [ -58.46706600009577, -34.535129999649712 ], [ -58.466469999590743, -34.534899999835091 ], [ -58.46566200010119, -34.534645999812994 ], [ -58.465312000148629, -34.534535000090159 ], [ -58.464817999850766, -34.534427999652394 ], [ -58.464067000291777, -34.534321000114005 ], [ -58.463771000131487, -34.534321000114005 ], [ -58.463380000086886, -34.534321000114005 ], [ -58.462781000342829, -34.534414999952219 ], [ -58.462565000274481, -34.534449999767617 ], [ -58.462136000276132, -34.53457800027445 ], [ -58.461707000277784, -34.534771000181479 ], [ -58.461418000440347, -34.534984000111479 ], [ -58.460891000419281, -34.53537200001773 ], [ -58.460540000420622, -34.535724000062487 ], [ -58.459474999871304, -34.536787999666387 ], [ -58.458809999781636, -34.537410999617919 ], [ -58.458772999873986, -34.537439000009783 ], [ -58.458059000222647, -34.537990000238267 ], [ -58.457243000364144, -34.53848399963681 ], [ -58.456514000021059, -34.538853999612343 ], [ -58.455977000438168, -34.539126999611312 ], [ -58.455312000348499, -34.539405999886924 ], [ -58.454296000260172, -34.539772999724107 ], [ -58.452094000337809, -34.540393000436552 ], [ -58.451886999785188, -34.540473999675328 ], [ -58.451600000039946, -34.540586000343581 ], [ -58.45102100031886, -34.540907999904221 ], [ -58.450425999859988, -34.541231000410278 ], [ -58.449240000025952, -34.54187400038478 ], [ -58.448514999867314, -34.542299000198682 ], [ -58.44627900017565, -34.543611999594077 ], [ -58.445876999623806, -34.543837000077474 ], [ -58.443590000278277, -34.545115999703569 ], [ -58.442481000397834, -34.545736000416071 ], [ -58.44191899966205, -34.546047000368731 ], [ -58.440849999827606, -34.546637999743837 ], [ -58.439666000085822, -34.547301999787408 ], [ -58.438210000391166, -34.54811799964591 ], [ -58.436935000050198, -34.548818999597131 ], [ -58.436258000306452, -34.549190999664859 ], [ -58.433905999762032, -34.550460999775282 ], [ -58.433468000247956, -34.550607000212835 ], [ -58.432996000065316, -34.550692999682155 ], [ -58.432009000415007, -34.550928999773475 ], [ -58.431709000070271, -34.550971999957767 ], [ -58.431407999679379, -34.550993000026892 ], [ -58.430313999591363, -34.550885999589184 ], [ -58.430014000145945, -34.550843000304155 ], [ -58.429541999963305, -34.550822000235087 ], [ -58.429005000380414, -34.550950999888698 ], [ -58.428830000404162, -34.551051000003611 ], [ -58.428104000199426, -34.551466000255687 ], [ -58.427267000271797, -34.551829999954464 ], [ -58.426018000230499, -34.55230500027551 ], [ -58.425744000185432, -34.552409999721647 ], [ -58.424391999890815, -34.552838999719995 ], [ -58.423296999756701, -34.553161000179955 ], [ -58.423136999572819, -34.5532000001798 ], [ -58.419893000161778, -34.554005999577157 ], [ -58.417331999871863, -34.554641000082029 ], [ -58.41667700024334, -34.554825999620164 ], [ -58.416494999944234, -34.554877000173349 ], [ -58.414992999926938, -34.555391999641017 ], [ -58.41395399967729, -34.555928000077074 ], [ -58.412869000004321, -34.556486999775188 ], [ -58.412332999568207, -34.556830000304217 ], [ -58.411977000238323, -34.557067000441691 ], [ -58.411689000446984, -34.557259000302565 ], [ -58.410014999692464, -34.558525000228542 ], [ -58.409071000226447, -34.559383000225239 ], [ -58.408844999696953, -34.559615000132112 ], [ -58.40821300022975, -34.560263000337159 ], [ -58.407741000047054, -34.560777999804827 ], [ -58.407311000002608, -34.561249999987467 ], [ -58.406260000098882, -34.562409000374998 ], [ -58.40539199964104, -34.563539000324567 ], [ -58.405122999826517, -34.563890000323227 ], [ -58.404372000267585, -34.564919000111729 ], [ -58.4033849997179, -34.566207000152872 ], [ -58.402740999697357, -34.567021999965277 ], [ -58.402011000207438, -34.567858999892906 ], [ -58.401604000324312, -34.568266999822129 ], [ -58.401023999657809, -34.568716999889602 ], [ -58.400974000050041, -34.568750999658846 ], [ -58.400252000029752, -34.569232000256591 ], [ -58.398963999988553, -34.570025999999871 ], [ -58.398448999621621, -34.570390999744802 ], [ -58.396030999630909, -34.571784000131458 ], [ -58.395617000324251, -34.57202200031503 ], [ -58.394886999935068, -34.572278999576099 ], [ -58.394265000029691, -34.572300999691322 ], [ -58.393814999962217, -34.572278999576099 ], [ -58.393084999573034, -34.572278999576099 ], [ -58.392891999666006, -34.572300999691322 ], [ -58.392440999552434, -34.57249399959835 ], [ -58.39118199994931, -34.573202999918465 ], [ -58.387485000332447, -34.57528399965679 ], [ -58.385789000362024, -34.576271000206475 ], [ -58.385360000363676, -34.576678000089601 ], [ -58.385339000294607, -34.577150000272241 ], [ -58.385404999740899, -34.577428999648589 ], [ -58.385445999832996, -34.577601000385812 ], [ -58.385402999648647, -34.577900999831229 ], [ -58.385273999995036, -34.578051999600063 ], [ -58.385060000018939, -34.57811599985348 ], [ -58.384608999905367, -34.578180000106897 ], [ -58.384115999653602, -34.578180000106897 ], [ -58.383429000348031, -34.578245000406412 ], [ -58.383042999634711, -34.578373000013869 ], [ -58.382677999889722, -34.578544999851829 ], [ -58.381343000379104, -34.57931800042536 ], [ -58.380232000406465, -34.579961000399805 ], [ -58.379996000315145, -34.580090000053417 ], [ -58.379781000292894, -34.580154000306834 ], [ -58.376327000190884, -34.57994000033068 ], [ -58.376068999984341, -34.580003999684777 ], [ -58.376039000399487, -34.580020000422621 ], [ -58.375039000149684, -34.580562000236057 ], [ -58.374309999806599, -34.581013000349628 ], [ -58.373922999946444, -34.581249000440948 ], [ -58.373490999809746, -34.581493000001899 ], [ -58.373429999694679, -34.581527999817297 ], [ -58.373516000063319, -34.582364999744925 ], [ -58.373493999948096, -34.582644000020537 ], [ -58.373407999579456, -34.582836999927565 ], [ -58.373108000134039, -34.583759000177679 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.372507000297787, -34.58603399986913 ], [ -58.373622999601707, -34.585368999779462 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.376605999567175, -34.585454000102004 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 185.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.352358000121569, -34.771814000215898 ], [ -58.353066000395586, -34.770848999781492 ], [ -58.353731999632032, -34.769989999738641 ], [ -58.3543969997217, -34.769110999672876 ], [ -58.353410000071392, -34.768617000274276 ], [ -58.353988999792477, -34.76788799993119 ], [ -58.354610999697854, -34.767051000003619 ], [ -58.355212000433426, -34.766235000145116 ], [ -58.355834000338803, -34.765420000332711 ], [ -58.356478000359402, -34.764583000405082 ], [ -58.356992999827014, -34.763896000200191 ], [ -58.357315000286974, -34.763231000110522 ], [ -58.357829999754642, -34.762201000275923 ], [ -58.357122000379945, -34.761857999746837 ], [ -58.355792000200609, -34.761428999748489 ], [ -58.35448300009034, -34.76099999975014 ], [ -58.35495500027298, -34.760355999729541 ], [ -58.355405000340454, -34.759777000008512 ], [ -58.356155999899443, -34.758768000242981 ], [ -58.356414000105985, -34.758896999896592 ], [ -58.356928999573654, -34.758188999622575 ], [ -58.357378999641071, -34.757565999671101 ], [ -58.357808999685574, -34.757009000065239 ], [ -58.358258999752991, -34.756365000044696 ], [ -58.359374999956231, -34.755269999910524 ], [ -58.359953999677316, -34.754519000351536 ], [ -58.360447999975179, -34.753811000077576 ], [ -58.36137100027139, -34.752588000335891 ], [ -58.362186000083796, -34.751557999601971 ], [ -58.363000999896201, -34.750506999698246 ], [ -58.363773999570355, -34.749454999748423 ], [ -58.364375000305984, -34.748683000120309 ], [ -58.364954000027012, -34.747889000377029 ], [ -58.365532999748098, -34.747094999734429 ], [ -58.3661130004146, -34.746323000106315 ], [ -58.366735000319977, -34.745550000432104 ], [ -58.367121000134034, -34.745163999718784 ], [ -58.367506999948034, -34.744864000273367 ], [ -58.367936999992537, -34.744519999698184 ], [ -58.368365999990885, -34.744177000068476 ], [ -58.368772999874011, -34.74383400043871 ], [ -58.369202999918457, -34.743489999863584 ], [ -58.369588999732514, -34.743168000302944 ], [ -58.370017999730862, -34.742845999842984 ], [ -58.370446999729211, -34.742503000213219 ], [ -58.369609999801582, -34.741773999870134 ], [ -58.368838000173525, -34.741086999665242 ], [ -58.369696000170222, -34.740421999575574 ], [ -58.370533000097851, -34.739777999554974 ], [ -58.371391000094548, -34.739113000364625 ], [ -58.372377999744856, -34.738361999906317 ], [ -58.373301000041067, -34.737653999632357 ], [ -58.374202000222112, -34.73694600025766 ], [ -58.375103000403101, -34.736259000052769 ], [ -58.376047999915215, -34.735507999594461 ], [ -58.376970000165329, -34.734778000104598 ], [ -58.377892999562221, -34.734178000314444 ], [ -58.379222999741614, -34.733298000202524 ], [ -58.381004000034523, -34.732138999814936 ], [ -58.382099000168694, -34.733168999649592 ], [ -58.382506000051819, -34.732890000273244 ], [ -58.38366500043935, -34.732074999561519 ], [ -58.382807000442654, -34.731301999887364 ], [ -58.383450999563934, -34.73085199981989 ], [ -58.384415999998339, -34.730164999614999 ], [ -58.385081000088064, -34.729693000331679 ], [ -58.386239999576276, -34.728898999689022 ], [ -58.387741999593572, -34.727825999670131 ], [ -58.388708000074075, -34.727160999580406 ], [ -58.389672999609218, -34.726474000274834 ], [ -58.39008100043776, -34.726861000134988 ], [ -58.390059000322594, -34.725616000278137 ], [ -58.390231000160497, -34.725401000255886 ], [ -58.39096099965036, -34.724392999637189 ], [ -58.391689999993446, -34.723383999871658 ], [ -58.392075999807503, -34.722890999619892 ], [ -58.392162000176143, -34.722826000219698 ], [ -58.392290999829754, -34.722761999966281 ], [ -58.392836999827637, -34.722727000150883 ], [ -58.393942999569731, -34.722655000427892 ], [ -58.394371999568079, -34.722697999712864 ], [ -58.394607999659399, -34.722805000150572 ], [ -58.394737000212331, -34.723277000333269 ], [ -58.394973000303708, -34.723534999640492 ], [ -58.396131999791919, -34.723362999802532 ], [ -58.39585300041557, -34.722117999945681 ], [ -58.395723999862639, -34.721431999786944 ], [ -58.394672999958914, -34.720830999950635 ], [ -58.394414999752371, -34.720852000019761 ], [ -58.394157999591982, -34.719651000393299 ], [ -58.393879000215634, -34.718405999637127 ], [ -58.393621000009091, -34.717118999642082 ], [ -58.393407000032994, -34.716131999991774 ], [ -58.393341999733479, -34.715852999716105 ], [ -58.393064000403228, -34.714564999674963 ], [ -58.392912999735131, -34.713836000231197 ], [ -58.392698999758977, -34.712912999934929 ], [ -58.392676999643754, -34.71280600039654 ], [ -58.392591000174491, -34.712377000398192 ], [ -58.392440999552434, -34.711647000009009 ], [ -58.392184000291365, -34.710509999736644 ], [ -58.391991000384337, -34.709587000339752 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.392828000311908, -34.708085000322455 ], [ -58.393042000288062, -34.708085000322455 ], [ -58.393922000399982, -34.708021000069039 ], [ -58.394371999568079, -34.707977999884747 ], [ -58.394973000303708, -34.707912999585233 ], [ -58.395702999793571, -34.707870000300204 ], [ -58.395723999862639, -34.706668999774479 ], [ -58.395767000046988, -34.705746000377587 ], [ -58.395810000231279, -34.704802000012251 ], [ -58.395874999631474, -34.703557000155399 ], [ -58.395916999769668, -34.702485000182548 ], [ -58.395938999884891, -34.701433000232726 ], [ -58.39729100017945, -34.701455000347948 ], [ -58.399265000379444, -34.701539999771114 ], [ -58.400681000028101, -34.701561999886337 ], [ -58.401389000302061, -34.701582999955463 ], [ -58.402398000067592, -34.700768000143057 ], [ -58.40291300043458, -34.700360000213777 ], [ -58.403277000133414, -34.700037999753818 ], [ -58.404157000245334, -34.699309000310052 ], [ -58.403233999949123, -34.698492999552229 ], [ -58.402311999699009, -34.697699999855047 ], [ -58.401368000232992, -34.696883999996544 ], [ -58.400444999936781, -34.696112000368487 ], [ -58.399543999755736, -34.695295999610664 ], [ -58.398600000289719, -34.694480999798259 ], [ -58.399479000355541, -34.693773000423562 ], [ -58.400380999683364, -34.693043000034379 ], [ -58.401281999864352, -34.692313999691294 ], [ -58.402183000045397, -34.691563000132305 ], [ -58.40314899962658, -34.690789999558774 ], [ -58.403106000341609, -34.690726000204677 ], [ -58.40267700034326, -34.690254000022037 ], [ -58.402139999861049, -34.689759999724174 ], [ -58.401110000026449, -34.688922999796546 ], [ -58.401066999842101, -34.688879999612254 ], [ -58.400102000307015, -34.688086999915072 ], [ -58.399993999823209, -34.688021999615557 ], [ -58.399286000448512, -34.687442999894472 ], [ -58.398534999990204, -34.68684200005822 ], [ -58.397698000062633, -34.686154999853329 ], [ -58.398321000014107, -34.685725999854981 ], [ -58.398856999550844, -34.685340000040924 ], [ -58.399243000264221, -34.685081999834381 ], [ -58.399458000286415, -34.684888999927352 ], [ -58.400015999938432, -34.684395999675587 ], [ -58.400745000281518, -34.683623000001433 ], [ -58.401452999656158, -34.682851000373319 ], [ -58.402161999976272, -34.68209999991501 ], [ -58.402870000250289, -34.681284000056507 ], [ -58.403513000224734, -34.680554999713422 ], [ -58.404263999783723, -34.679696999716725 ], [ -58.404372000267585, -34.679589000132182 ], [ -58.404608000358905, -34.679375000156085 ], [ -58.405336999802671, -34.678816999604805 ], [ -58.406110000376202, -34.678215999768554 ], [ -58.406925000188551, -34.677571999747954 ], [ -58.407718999931888, -34.676970999911646 ], [ -58.408061999561596, -34.676477999659937 ], [ -58.408297999652916, -34.676199000283589 ], [ -58.408340999837208, -34.676156000099297 ], [ -58.409028000042156, -34.67544799982528 ], [ -58.409715000247047, -34.674654000082 ], [ -58.410358000221493, -34.673923999692761 ], [ -58.410679999782133, -34.673581000063052 ], [ -58.411066999642287, -34.673173000133829 ], [ -58.411882000354012, -34.672573000343675 ], [ -58.412676000097292, -34.671992999677173 ], [ -58.413534000093989, -34.671370999771796 ], [ -58.414349999952492, -34.670769999935487 ], [ -58.415142999649674, -34.670191000214459 ], [ -58.416001999692469, -34.669569000309082 ], [ -58.416838999620097, -34.668967999573454 ], [ -58.417161000080057, -34.668623999897648 ], [ -58.417203000218251, -34.668366999737202 ], [ -58.417288999687571, -34.667701999647534 ], [ -58.417331999871863, -34.667380000086894 ], [ -58.417461000424794, -34.666435999721557 ], [ -58.417461000424794, -34.666307000067945 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416583000405126, -34.6589859997041 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416367000336777, -34.65180200026208 ], [ -58.416237999783846, -34.651759000077732 ], [ -58.415294000317829, -34.651759000077732 ], [ -58.414477999560006, -34.65163000042412 ], [ -58.414178000114589, -34.651693999778217 ], [ -58.414284999652978, -34.651780000146857 ], [ -58.415421999925343, -34.652059000422469 ], [ -58.4161310002454, -34.652165999960914 ], [ -58.416280999968137, -34.652144999891789 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 184.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.36969700021632, -34.59734499987178 ], [ -58.369729999939523, -34.597205999757023 ], [ -58.369543000309193, -34.597187999826303 ], [ -58.369372999664165, -34.597268999964342 ], [ -58.369286000148747, -34.597537999778808 ], [ -58.369031000080554, -34.598329000283115 ], [ -58.368987999896262, -34.598371999568087 ], [ -58.368987999896262, -34.598401000006106 ], [ -58.368987999896262, -34.598501000121018 ], [ -58.369128000057117, -34.599159999933988 ], [ -58.369137999618943, -34.599209000395035 ], [ -58.369095000333971, -34.599315999933424 ], [ -58.369482000194125, -34.599359000117715 ], [ -58.370661999751462, -34.599465999656104 ], [ -58.370812000373462, -34.599487999771327 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.371391000094548, -34.599530999955618 ], [ -58.37267900013569, -34.599638000393384 ], [ -58.374094999784347, -34.599810000231287 ], [ -58.375360999710324, -34.599894999654452 ], [ -58.376799000373524, -34.599981000023092 ], [ -58.378192999906958, -34.600109999676704 ], [ -58.37965299978606, -34.600152999860995 ], [ -58.381154999803357, -34.600173999930121 ], [ -58.381670000170345, -34.600196000045344 ], [ -58.381990999684831, -34.600239000229635 ], [ -58.382420999729334, -34.600260000298704 ], [ -58.383922999746574, -34.600410000021441 ], [ -58.385339000294607, -34.600475000320955 ], [ -58.386733999874139, -34.600625000043692 ], [ -58.388085000122601, -34.600689000297109 ], [ -58.389587000139898, -34.600731999582081 ], [ -58.389995000069177, -34.600731999582081 ], [ -58.391024999903777, -34.600731999582081 ], [ -58.391432999833057, -34.600774999766372 ], [ -58.392785000127617, -34.600817999950721 ], [ -58.394200999776274, -34.600840000065887 ], [ -58.395659999609279, -34.600925000388429 ], [ -58.397098000272479, -34.601010999857692 ], [ -58.398621000358844, -34.601076000157263 ], [ -58.399800999916181, -34.601140000410624 ], [ -58.400960000303712, -34.601182999695652 ], [ -58.402375999952369, -34.601076000157263 ], [ -58.403427999902249, -34.601010999857692 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.405638000193505, -34.600817999950721 ], [ -58.406645999912939, -34.600731999582081 ], [ -58.407590000278276, -34.600625000043692 ], [ -58.407183000395094, -34.599617000324258 ], [ -58.40868500041239, -34.599530999955618 ], [ -58.410594000312813, -34.599402000302007 ], [ -58.412118000445332, -34.599272999749076 ], [ -58.413556000209212, -34.599187000279812 ], [ -58.414906999558355, -34.599423000371132 ], [ -58.414928999673577, -34.599574000139967 ], [ -58.415142999649674, -34.600753999697304 ], [ -58.415315000386897, -34.601784000431223 ], [ -58.415465000109634, -34.602621000358852 ], [ -58.415658000016663, -34.603800999916189 ], [ -58.416774000219903, -34.60360800000916 ], [ -58.418040000145822, -34.603457000240326 ], [ -58.419521000094051, -34.603328999733492 ], [ -58.420979999926999, -34.603179000010812 ], [ -58.422568000312936, -34.603007000172852 ], [ -58.424155999799495, -34.602856999550852 ], [ -58.425657999816792, -34.602705999782017 ], [ -58.427116999649797, -34.602578000174503 ], [ -58.428596999551871, -34.602427000405726 ], [ -58.430163999868682, -34.602233999599378 ], [ -58.431065000049671, -34.602149000176155 ], [ -58.431901999977299, -34.602105999991863 ], [ -58.432181000252911, -34.602083999876641 ], [ -58.43361900001679, -34.601569000408972 ], [ -58.434841999758419, -34.601160999580429 ], [ -58.435335000010184, -34.601483000040389 ], [ -58.436472000282549, -34.602213000429572 ], [ -58.437760000323692, -34.603071000426269 ], [ -58.438854000411766, -34.603735999616617 ], [ -58.439026000249669, -34.60384400010048 ], [ -58.440033999969103, -34.604509000190149 ], [ -58.441042999734634, -34.605174000279874 ], [ -58.440292000175646, -34.605903999769737 ], [ -58.440120000337686, -34.605860999585445 ], [ -58.440120000337686, -34.606462000321017 ], [ -58.440120000337686, -34.607062000111171 ], [ -58.440120000337686, -34.607728000246993 ], [ -58.440120000337686, -34.608800000219787 ], [ -58.441429000447954, -34.608800000219787 ], [ -58.441622000354982, -34.608371000221439 ], [ -58.442438000213485, -34.608220999599382 ], [ -58.443359999564279, -34.608564000128467 ], [ -58.444390000298256, -34.608928999873399 ], [ -58.444541000067034, -34.60897200005769 ], [ -58.44524900034105, -34.609272000402427 ], [ -58.445635000155107, -34.609401000056039 ], [ -58.446170999691844, -34.60961600007829 ], [ -58.446578999621067, -34.609765999801027 ], [ -58.448038000353392, -34.610345000421376 ], [ -58.449174999726438, -34.610795999635627 ], [ -58.450269999860552, -34.611224999633976 ], [ -58.451600000039946, -34.611762000116187 ], [ -58.452952000334506, -34.612297999652924 ], [ -58.453509999986466, -34.612533999744244 ], [ -58.454154000007065, -34.612791999950787 ], [ -58.453423999617826, -34.613778999601095 ], [ -58.452716000243186, -34.614766000150723 ], [ -58.452051000153517, -34.61570999961674 ], [ -58.453230999710854, -34.615667000331769 ], [ -58.453960000053939, -34.615667000331769 ], [ -58.454710999612928, -34.615667000331769 ], [ -58.455098000372402, -34.615688000400837 ], [ -58.456171000391294, -34.615730999685866 ], [ -58.457285999649116, -34.615817000054449 ], [ -58.458488000220996, -34.615881000307866 ], [ -58.459775000216041, -34.616246000052797 ], [ -58.460999000003824, -34.616631999866854 ], [ -58.462264999929744, -34.617018999727009 ], [ -58.463251999580052, -34.617319000071745 ], [ -58.462565000274481, -34.618263000437082 ], [ -58.462435999721549, -34.618435000274985 ], [ -58.461791999701006, -34.619335999556711 ], [ -58.461685000162561, -34.619486000178711 ], [ -58.461020000072892, -34.620408999575602 ], [ -58.460419000236641, -34.621288999687522 ], [ -58.459624999594041, -34.622447000029013 ], [ -58.460183000145321, -34.622640999982139 ], [ -58.461191999910852, -34.623004999680973 ], [ -58.462221999745452, -34.623349000256098 ], [ -58.463272999649178, -34.623712999954932 ], [ -58.464366999737194, -34.624099999815087 ], [ -58.464668000128086, -34.624186000183727 ], [ -58.466126999961034, -34.624658000366367 ], [ -58.467522000439942, -34.625087000364715 ], [ -58.468873999835182, -34.625516000363064 ], [ -58.470268000267936, -34.625945000361412 ], [ -58.471577000378204, -34.626353000290692 ], [ -58.473164999864821, -34.626845999643137 ], [ -58.474345000321478, -34.627168000103097 ], [ -58.475460999625398, -34.627447000378709 ], [ -58.476597999897763, -34.627725999755057 ], [ -58.477627999732363, -34.6279839999616 ], [ -58.478743999935602, -34.628241000121989 ], [ -58.479816999954551, -34.628520000397657 ], [ -58.480889999973499, -34.628798999773949 ], [ -58.482326999691225, -34.629142000303034 ], [ -58.483701000101007, -34.629485999978897 ], [ -58.484944999911761, -34.629807000392702 ], [ -58.486167999653446, -34.630107999884217 ], [ -58.486898000042629, -34.630343999975594 ], [ -58.487712999855034, -34.629678999885869 ], [ -58.488077999599966, -34.629399999610257 ], [ -58.488228000221966, -34.629270999956645 ], [ -58.489323000356137, -34.628434000029017 ], [ -58.490266999822154, -34.627682999570709 ], [ -58.491124999818851, -34.626997000311292 ], [ -58.491898000392382, -34.627532999848029 ], [ -58.493055999834496, -34.628305000375406 ], [ -58.493678999785971, -34.628735000419908 ], [ -58.494321999760416, -34.629164000418257 ], [ -58.494430000244279, -34.62924999988752 ], [ -58.494859000242627, -34.629529000163188 ], [ -58.495696000170256, -34.630107999884217 ], [ -58.496210999637867, -34.630430000344177 ], [ -58.497455000347941, -34.630859000342525 ], [ -58.499343000179294, -34.631460000178834 ], [ -58.50000900031506, -34.631738999555125 ], [ -58.500973999850146, -34.632167999553474 ], [ -58.502369000329054, -34.632769000289102 ], [ -58.503571000001614, -34.633283999756713 ], [ -58.504621999905339, -34.63375599993941 ], [ -58.504965000434368, -34.633884000446244 ], [ -58.505608999555648, -34.634098999569119 ], [ -58.505931000015607, -34.634206000006827 ], [ -58.506724999758887, -34.634355999729564 ], [ -58.508419999683213, -34.634635000005176 ], [ -58.509299999795132, -34.634700000304747 ], [ -58.510265000229538, -34.634763999658787 ], [ -58.511102000157166, -34.634613999936107 ], [ -58.511445999832972, -34.63446400021337 ], [ -58.512689999643726, -34.633926999731216 ], [ -58.513892000215606, -34.63343400037877 ], [ -58.514578000374399, -34.633240999572422 ], [ -58.515158000141525, -34.633132999987936 ], [ -58.516059000322571, -34.633068999734519 ], [ -58.516787999766336, -34.633089999803587 ], [ -58.518053999692313, -34.63319800028745 ], [ -58.518461999621536, -34.633240999572422 ], [ -58.519105999642136, -34.633391000194479 ], [ -58.519319999618233, -34.633455000447896 ], [ -58.519792999847027, -34.633648000354867 ], [ -58.520093000191764, -34.633799000123702 ], [ -58.520522000190113, -34.633799000123702 ], [ -58.521315999933393, -34.63384200030805 ], [ -58.521574000139935, -34.633820000192827 ], [ -58.522967999673426, -34.634141999753467 ], [ -58.523225999879969, -34.63422800012205 ], [ -58.524233999599346, -34.63446400021337 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 183.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.534448000274949, -34.628863000027366 ], [ -58.533955000023184, -34.628434000029017 ], [ -58.532946000257652, -34.629206999703229 ], [ -58.532816999704721, -34.629292000025714 ], [ -58.532066000145733, -34.630194000252857 ], [ -58.531980999823247, -34.630795000089165 ], [ -58.531895000353927, -34.631696000270153 ], [ -58.531808999985344, -34.632596999551822 ], [ -58.531743999685773, -34.633240999572422 ], [ -58.531680000331733, -34.634162999822536 ], [ -58.531336999802647, -34.634334999660439 ], [ -58.531208000149036, -34.634442000098204 ], [ -58.531078999596104, -34.634613999936107 ], [ -58.530735999966396, -34.634657000120399 ], [ -58.529985000407407, -34.634721000373816 ], [ -58.529491000109545, -34.634806999843136 ], [ -58.528655000228014, -34.634828999958359 ], [ -58.528225000183568, -34.634828999958359 ], [ -58.526873999935106, -34.634700000304747 ], [ -58.526873999935106, -34.634700000304747 ], [ -58.527002000441939, -34.63399200003073 ], [ -58.525715000446894, -34.633884000446244 ], [ -58.524898999689071, -34.63384200030805 ], [ -58.524233999599346, -34.63446400021337 ], [ -58.523225999879969, -34.63422800012205 ], [ -58.522967999673426, -34.634141999753467 ], [ -58.521574000139935, -34.633820000192827 ], [ -58.520994000372752, -34.633584000101507 ], [ -58.520758000281432, -34.633219000356519 ], [ -58.520522000190113, -34.63296200019613 ], [ -58.520371999568113, -34.632853999712268 ], [ -58.520332000421433, -34.632814999712423 ], [ -58.520286000098793, -34.632769000289102 ], [ -58.519299000448484, -34.631674000154931 ], [ -58.518268999714508, -34.630536999882622 ], [ -58.517561000339867, -34.630001000345828 ], [ -58.517388999602588, -34.629979000230605 ], [ -58.516445000136628, -34.629442999794549 ], [ -58.517195999695616, -34.628819999843074 ], [ -58.517518000155519, -34.628434000029017 ], [ -58.517926000084799, -34.628005000030669 ], [ -58.518655000427884, -34.627274999641486 ], [ -58.518848000334913, -34.627147000033972 ], [ -58.519492000355513, -34.626631999666984 ], [ -58.520157000445181, -34.626117000199372 ], [ -58.521423000371158, -34.625150999718812 ], [ -58.522003000138284, -34.624700999651395 ], [ -58.522946999604301, -34.623971000161475 ], [ -58.523290000133386, -34.623691999885864 ], [ -58.523611999693969, -34.623863999723767 ], [ -58.524127000060957, -34.624120999884212 ], [ -58.524148000130083, -34.623906999908058 ], [ -58.525071000426294, -34.623198999634099 ], [ -58.525479000355517, -34.622877000073458 ], [ -58.526594999659494, -34.622018000030607 ], [ -58.527539000024774, -34.621309999756647 ], [ -58.528655000228014, -34.620429999644728 ], [ -58.529855999854476, -34.619508000293933 ], [ -58.530284999852825, -34.619142999649682 ], [ -58.530414000405756, -34.619036000111294 ], [ -58.530649999597756, -34.618992999926945 ], [ -58.530843000404104, -34.618992999926945 ], [ -58.53095099998859, -34.618970999811722 ], [ -58.531143999895619, -34.618864000273334 ], [ -58.531272000402453, -34.618692000435431 ], [ -58.531293999618356, -34.618155999999374 ], [ -58.531314999687424, -34.618048999561609 ], [ -58.531100999711327, -34.617876999723705 ], [ -58.530993000126841, -34.617834000438734 ], [ -58.530671999712979, -34.617813000369608 ], [ -58.530520999944144, -34.617791000254442 ], [ -58.530435999621659, -34.617813000369608 ], [ -58.530350000152339, -34.617834000438734 ], [ -58.530284999852825, -34.617855999654637 ], [ -58.530091999945796, -34.617855999654637 ], [ -58.529706000131739, -34.617534000093997 ], [ -58.529298000202516, -34.617211999634037 ], [ -58.528782999835528, -34.61682599981998 ], [ -58.528310999652888, -34.616461000075049 ], [ -58.527839000369511, -34.616096000330117 ], [ -58.527367000186871, -34.615730999685866 ], [ -58.526830999750814, -34.615280999618392 ], [ -58.526337000352271, -34.614850999573946 ], [ -58.525821999985283, -34.614486999875112 ], [ -58.525414000056003, -34.61418600038354 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.524491999805889, -34.613563999578901 ], [ -58.524019999623249, -34.613285000202552 ], [ -58.523505000155581, -34.613005999926884 ], [ -58.521937999838769, -34.612041000391798 ], [ -58.520392999637181, -34.611139000164655 ], [ -58.519428000102096, -34.610538000328404 ], [ -58.518247999645439, -34.609830000054387 ], [ -58.518075999807479, -34.609722999616679 ], [ -58.516809999881559, -34.608928999873399 ], [ -58.515543999955582, -34.608157000245342 ], [ -58.514278000029663, -34.607362999602685 ], [ -58.513590999824714, -34.606933999604337 ], [ -58.512989999988463, -34.606589999928531 ], [ -58.512797000081434, -34.606440000205794 ], [ -58.511724000062486, -34.605796000185194 ], [ -58.511230999810778, -34.605516999909582 ], [ -58.510458000136566, -34.605023999657817 ], [ -58.509192000210589, -34.604229999914537 ], [ -58.508334000213893, -34.603715000446869 ], [ -58.509021000418784, -34.602920999804269 ], [ -58.509622000255092, -34.602255999714544 ], [ -58.509706999678258, -34.60217000024528 ], [ -58.510372999814024, -34.601461999971264 ], [ -58.511230999810778, -34.601998000407377 ], [ -58.511789000362057, -34.602342000083183 ], [ -58.512218000360406, -34.602342000083183 ], [ -58.512840000265783, -34.602363000152309 ], [ -58.513118999642074, -34.602083999876641 ], [ -58.510136999722704, -34.600239000229635 ], [ -58.509299999795132, -34.599723999862647 ], [ -58.508827999612436, -34.599423000371132 ], [ -58.507519000401487, -34.598628999728533 ], [ -58.506210000291219, -34.597813999916127 ], [ -58.504879000065785, -34.596999000103722 ], [ -58.503548999886391, -34.59616200017615 ], [ -58.502196999591831, -34.595346000317591 ], [ -58.501810999777774, -34.595110000226271 ], [ -58.502690999889694, -34.594788999812465 ], [ -58.502904999865791, -34.594703000343145 ], [ -58.503227000325751, -34.594552999721088 ], [ -58.503592000070682, -34.594445000136602 ], [ -58.504021000069031, -34.594274000344797 ], [ -58.505137000272327, -34.593866000415517 ], [ -58.504127999607476, -34.593222000394974 ], [ -58.503484999632974, -34.593929999769614 ], [ -58.502154000306803, -34.593114999957265 ], [ -58.500824000127466, -34.592299000098706 ], [ -58.499493999948072, -34.591484000286357 ], [ -58.498228000022152, -34.590711999758923 ], [ -58.497111999818912, -34.590003000338129 ], [ -58.495932000261575, -34.589273999995044 ], [ -58.495351999595073, -34.588931000365335 ], [ -58.494793999943113, -34.588586999790152 ], [ -58.494236000291153, -34.588223000091318 ], [ -58.493678999785971, -34.587879000415512 ], [ -58.492541000366828, -34.587171000141495 ], [ -58.491961999746422, -34.586806000396564 ], [ -58.491426000209685, -34.586462999867479 ], [ -58.490867999658406, -34.586098000122547 ], [ -58.490287999891223, -34.585754999593519 ], [ -58.489559000447457, -34.585283000310199 ], [ -58.488829000058274, -34.584832000196627 ], [ -58.489579999617263, -34.584231000360319 ], [ -58.489902000077223, -34.583931000015582 ], [ -58.488894000357789, -34.583373000363622 ], [ -58.488464000313343, -34.583137000272302 ], [ -58.48782100033884, -34.582771999628051 ], [ -58.486748000319892, -34.582149999722674 ], [ -58.485889000277098, -34.581656000324131 ], [ -58.484944999911761, -34.581119999888017 ], [ -58.483958000261453, -34.580562000236057 ], [ -58.482949999642756, -34.579982999615709 ], [ -58.481940999877224, -34.579424999963749 ], [ -58.481296999856625, -34.579039000149692 ], [ -58.480117000299288, -34.578395000129092 ], [ -58.479002000142145, -34.579123999572857 ], [ -58.477220999849237, -34.579532000401457 ], [ -58.475481999694466, -34.57994000033068 ], [ -58.475010000411146, -34.580475999867474 ], [ -58.474710000066409, -34.5808200004426 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474001999792392, -34.581614000185937 ], [ -58.473593999863169, -34.581763999908617 ], [ -58.472070999776804, -34.582236000091314 ], [ -58.470869000104244, -34.582621999905314 ], [ -58.469559999993976, -34.583050999903662 ], [ -58.468530000159319, -34.583394999579525 ], [ -58.467392999887011, -34.583759000177679 ], [ -58.467113999611342, -34.583844999646999 ], [ -58.466276999683771, -34.58412399992261 ], [ -58.464882000104183, -34.584575000036182 ], [ -58.463508999740498, -34.585047000218822 ], [ -58.462049999907549, -34.585110999572919 ], [ -58.462006999723201, -34.58397400019993 ], [ -58.461964000438229, -34.582901000180982 ], [ -58.461900000184812, -34.581807000092908 ], [ -58.460547999890252, -34.581850000277257 ], [ -58.459453999802236, -34.581850000277257 ], [ -58.458401999852356, -34.581850000277257 ], [ -58.456706999928087, -34.582149999722674 ], [ -58.455376999748694, -34.582557999651897 ], [ -58.454025000353454, -34.582944000365273 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.451749999762626, -34.58380200036197 ], [ -58.452350999598934, -34.584811000127502 ], [ -58.452973000403631, -34.58588400014645 ], [ -58.453124000172409, -34.586098000122547 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.45102100031886, -34.588673000158792 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.447609000355044, -34.591699000308552 ], [ -58.446793999643319, -34.590991000034592 ], [ -58.446642999874484, -34.590819000196632 ], [ -58.446343000429067, -34.589810000431157 ], [ -58.445999999900039, -34.588652000089667 ], [ -58.445699000408524, -34.587643000324135 ], [ -58.445420000132856, -34.586634999705439 ], [ -58.445119999788119, -34.585604999870782 ], [ -58.444798000227479, -34.584552999920959 ], [ -58.444412000413422, -34.583179999557274 ], [ -58.443768000392879, -34.582279000275605 ], [ -58.443424999863794, -34.581763999908617 ], [ -58.442329999729679, -34.582578999721022 ], [ -58.441256999710731, -34.583373000363622 ], [ -58.440227999922229, -34.584146000037833 ], [ -58.439175999972406, -34.584938999735016 ], [ -58.43812500006868, -34.585712000308547 ], [ -58.437180999703344, -34.58491799966589 ], [ -58.436321999660493, -34.584146000037833 ], [ -58.435400000309698, -34.583352000294553 ], [ -58.434648999851447, -34.582686000158731 ], [ -58.433490000363179, -34.581656000324131 ], [ -58.432567000066967, -34.580862999727628 ], [ -58.431966000230659, -34.580326000144737 ], [ -58.430936000396059, -34.579424999963749 ], [ -58.429927999777306, -34.578566999967052 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.391861999831406, -34.591762999662649 ], [ -58.392806000196686, -34.592642999774569 ], [ -58.393084999573034, -34.593823000231225 ], [ -58.393192000010743, -34.594853000065882 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.389974, -34.595776000362093 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.379953000130797, -34.595195999695591 ], [ -58.3784510001135, -34.595068000088077 ], [ -58.377742999839541, -34.595024999903785 ], [ -58.377593000116804, -34.594745999628117 ], [ -58.377506999748221, -34.594660000158854 ], [ -58.376970000165329, -34.594530999605922 ], [ -58.375639999985992, -34.592943000119305 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371691999586062, -34.588480000251764 ], [ -58.371541999863382, -34.588523000436055 ], [ -58.371326999841131, -34.589037999903724 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.370833000442587, -34.589831999647004 ], [ -58.370661999751462, -34.589961000199935 ], [ -58.370489999913502, -34.589961000199935 ], [ -58.370340000190822, -34.589939000084769 ], [ -58.370232999753114, -34.589831999647004 ], [ -58.369246000102805, -34.588629999974501 ], [ -58.369180999803234, -34.588543999605861 ], [ -58.368107999784343, -34.587235000394912 ], [ -58.367936999992537, -34.586978000234467 ], [ -58.367421999625549, -34.58635600032909 ], [ -58.367206999603297, -34.586098000122547 ], [ -58.366627999882269, -34.585389999848587 ], [ -58.368730999735817, -34.584167000106902 ], [ -58.369052000149622, -34.583995000268999 ], [ -58.370210999637891, -34.58333000017933 ], [ -58.370950999588899, -34.582915999973352 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 182.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.374054999738405, -34.585754999593519 ], [ -58.375082000334032, -34.585153999757267 ], [ -58.375167999803296, -34.58509000040317 ], [ -58.375188999872421, -34.58500400003453 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.374909999596753, -34.583394999579525 ], [ -58.373129000203164, -34.584295999760513 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.371808000438818, -34.58490299987352 ], [ -58.371777999954702, -34.58491799966589 ], [ -58.371691999586062, -34.585047000218822 ], [ -58.371712999655188, -34.585153999757267 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.37220699995305, -34.586141000306895 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371606000116799, -34.587643000324135 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371391000094548, -34.589273999995044 ], [ -58.371777999954702, -34.589230999810752 ], [ -58.372014000046022, -34.589273999995044 ], [ -58.372271000206467, -34.589402999648655 ], [ -58.372464000113496, -34.589595999555684 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.373472999879027, -34.590819000196632 ], [ -58.373580000316736, -34.590991000034592 ], [ -58.37355900024761, -34.591076000357077 ], [ -58.372958000411359, -34.591354999733426 ], [ -58.372785999674079, -34.591441000102009 ], [ -58.372635999951399, -34.59156999975562 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373922999946444, -34.593758999977808 ], [ -58.374395000129084, -34.594552999721088 ], [ -58.374716999689724, -34.595089000157202 ], [ -58.375018000080615, -34.595603999624814 ], [ -58.375360999710324, -34.59599000033819 ], [ -58.375533000447547, -34.596096999876579 ], [ -58.375832999892964, -34.596205000360442 ], [ -58.376025999799992, -34.596183000245219 ], [ -58.376520000097912, -34.596011999554094 ], [ -58.376970000165329, -34.595711000062579 ], [ -58.377742999839541, -34.595024999903785 ], [ -58.3784510001135, -34.595068000088077 ], [ -58.379953000130797, -34.595195999695591 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.389974, -34.595776000362093 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.394650999843748, -34.595797000431162 ], [ -58.396088999607628, -34.595689999993454 ], [ -58.396110999722794, -34.597299000448459 ], [ -58.395895999700599, -34.598715000097116 ], [ -58.397334000363799, -34.598586999590339 ], [ -58.399007000172901, -34.59830800021399 ], [ -58.400681000028101, -34.598050000007447 ], [ -58.402096999676758, -34.597770999731836 ], [ -58.40347100008654, -34.597556999755682 ], [ -58.405187000079934, -34.597256000264167 ], [ -58.406518000305425, -34.596999000103722 ], [ -58.406968000372899, -34.596806000196693 ], [ -58.407074999911288, -34.596806000196693 ], [ -58.407590000278276, -34.596976999988499 ], [ -58.408878000319419, -34.59695599991943 ], [ -58.410229999714659, -34.596933999804207 ], [ -58.411752999801081, -34.59686999955079 ], [ -58.412997999657932, -34.596827000265819 ], [ -58.414242000368006, -34.596763000012402 ], [ -58.415530000409149, -34.596697999712887 ], [ -58.416989000242154, -34.59663400035879 ], [ -58.418727000350771, -34.59654799999015 ], [ -58.419971000161468, -34.596483999736733 ], [ -58.421516000363113, -34.596419000336539 ], [ -58.423169000149187, -34.596355000083122 ], [ -58.424220000052912, -34.59622600042951 ], [ -58.424798999773998, -34.595561000339842 ], [ -58.425357000325278, -34.594853000065882 ], [ -58.426258999653044, -34.594209000045282 ], [ -58.427224000087506, -34.593543999955614 ], [ -58.428061000015077, -34.592965000234528 ], [ -58.429177000218317, -34.593693999678294 ], [ -58.430078000399362, -34.594315999583671 ], [ -58.431214999772408, -34.595024999903785 ], [ -58.432309999906522, -34.595711000062579 ], [ -58.433360999810247, -34.59639800026747 ], [ -58.434454999898264, -34.597084999573042 ], [ -58.435527999917213, -34.597770999731836 ], [ -58.436600999936161, -34.598457999936727 ], [ -58.437609999701692, -34.59910199995727 ], [ -58.438746999974001, -34.599873999585384 ], [ -58.43994899964656, -34.600603999974567 ], [ -58.441106999987994, -34.601290000133361 ], [ -58.442351999844902, -34.602062999807572 ], [ -58.442544999751874, -34.60217000024528 ], [ -58.443402999748571, -34.602835000334949 ], [ -58.444347000113908, -34.603479000355549 ], [ -58.445355999879439, -34.60416599966112 ], [ -58.446300000244776, -34.604808999635566 ], [ -58.447115000057181, -34.605324000002554 ], [ -58.446493000151804, -34.606139999861057 ], [ -58.44580699999301, -34.607018999926879 ], [ -58.445569999855593, -34.607298000202491 ], [ -58.44524900034105, -34.607770000385187 ], [ -58.44501300024973, -34.608070999876702 ], [ -58.444819000296604, -34.608306999968022 ], [ -58.444390000298256, -34.608928999873399 ], [ -58.444541000067034, -34.60897200005769 ], [ -58.44524900034105, -34.609272000402427 ], [ -58.445635000155107, -34.609401000056039 ], [ -58.446170999691844, -34.60961600007829 ], [ -58.446578999621067, -34.609765999801027 ], [ -58.448038000353392, -34.610345000421376 ], [ -58.449174999726438, -34.610795999635627 ], [ -58.450269999860552, -34.611224999633976 ], [ -58.451600000039946, -34.611762000116187 ], [ -58.452952000334506, -34.612297999652924 ], [ -58.453509999986466, -34.612533999744244 ], [ -58.454154000007065, -34.612791999950787 ], [ -58.453423999617826, -34.613778999601095 ], [ -58.452716000243186, -34.614766000150723 ], [ -58.452051000153517, -34.61570999961674 ], [ -58.453230999710854, -34.615667000331769 ], [ -58.453960000053939, -34.615667000331769 ], [ -58.454710999612928, -34.615667000331769 ], [ -58.455098000372402, -34.615688000400837 ], [ -58.456171000391294, -34.615730999685866 ], [ -58.457285999649116, -34.615817000054449 ], [ -58.458488000220996, -34.615881000307866 ], [ -58.459775000216041, -34.616246000052797 ], [ -58.460999000003824, -34.616631999866854 ], [ -58.462264999929744, -34.617018999727009 ], [ -58.463251999580052, -34.617319000071745 ], [ -58.463894999554554, -34.617598000347414 ], [ -58.464817999850766, -34.618027000345762 ], [ -58.465784000331325, -34.618413000159762 ], [ -58.467113999611342, -34.618970999811722 ], [ -58.467800999816234, -34.619272000202614 ], [ -58.468380000436639, -34.619465000109642 ], [ -58.469796000085296, -34.61989400010799 ], [ -58.471148000379856, -34.620323000106339 ], [ -58.472542999959444, -34.620752000104687 ], [ -58.473916000323129, -34.621181000103036 ], [ -58.474753000250701, -34.621439000309579 ], [ -58.475568000063106, -34.621695999570704 ], [ -58.475739999901009, -34.621288999687522 ], [ -58.475481999694466, -34.62116000003391 ], [ -58.476340999737317, -34.620152000314533 ], [ -58.477070000080403, -34.619163999718751 ], [ -58.478336000006379, -34.619829999854574 ], [ -58.479002000142145, -34.620173000383602 ], [ -58.479172999933951, -34.620345000221562 ], [ -58.479452000209619, -34.620666999782145 ], [ -58.480846999789151, -34.622083000330178 ], [ -58.481876999623807, -34.62292000025775 ], [ -58.482649000151184, -34.623498999978835 ], [ -58.483421999825396, -34.624120999884212 ], [ -58.484752000004733, -34.624679000435492 ], [ -58.485953999677292, -34.625150999718812 ], [ -58.486597999697892, -34.625365999741064 ], [ -58.487283999856686, -34.625622999901509 ], [ -58.487863999623869, -34.625815999808481 ], [ -58.488486000428509, -34.626030999830732 ], [ -58.489881000008097, -34.624957999811784 ], [ -58.49043799961396, -34.624528999813435 ], [ -58.490996000165239, -34.624077999699864 ], [ -58.491489999563782, -34.623648999701516 ], [ -58.492025999999839, -34.623219999703167 ], [ -58.492262000091216, -34.623412999610196 ], [ -58.492477000113411, -34.623585000347418 ], [ -58.492670000020439, -34.623778000254447 ], [ -58.492928000226982, -34.623971000161475 ], [ -58.493164000318302, -34.624164000068504 ], [ -58.493378000294456, -34.624335999906407 ], [ -58.49359300031665, -34.624506999698212 ], [ -58.493892999762068, -34.624764999904755 ], [ -58.494215000222027, -34.624528999813435 ], [ -58.494965999781016, -34.623927999977184 ], [ -58.495502000217073, -34.623498999978835 ], [ -58.496038999799964, -34.623069999980487 ], [ -58.497111999818912, -34.622210999937636 ], [ -58.497670000370192, -34.621781999939287 ], [ -58.497841000161998, -34.621632000216607 ], [ -58.498205999906929, -34.621352999940939 ], [ -58.499278999925878, -34.620494999944242 ], [ -58.500308999760477, -34.619679000085739 ], [ -58.501318000425329, -34.618886000388557 ], [ -58.502196999591831, -34.618199000183665 ], [ -58.502432999683151, -34.618006000276637 ], [ -58.503312999795071, -34.617082999980425 ], [ -58.503807000092934, -34.617341000186968 ], [ -58.504428999998311, -34.617661999701454 ], [ -58.505137000272327, -34.618006000276637 ], [ -58.505694999924287, -34.618305999722054 ], [ -58.506938999734984, -34.618927999627431 ], [ -58.507905000215544, -34.619486000178711 ], [ -58.508827999612436, -34.619979999577254 ], [ -58.510114999607481, -34.621116999849619 ], [ -58.511015999788526, -34.62189000042315 ], [ -58.511510000086389, -34.622319000421498 ], [ -58.512131999991766, -34.622877000073458 ], [ -58.512753999897143, -34.623412999610196 ], [ -58.513720000377702, -34.624292999722115 ], [ -58.514663999843663, -34.625172999834035 ], [ -58.515158000141525, -34.625622999901509 ], [ -58.515693999678319, -34.626095000084149 ], [ -58.516467000251794, -34.62678200028904 ], [ -58.517474999971228, -34.627619000216669 ], [ -58.516981999719462, -34.628005000030669 ], [ -58.517518000155519, -34.628434000029017 ], [ -58.518848000334913, -34.628798999773949 ], [ -58.520114000260889, -34.629055999934394 ], [ -58.521294999864324, -34.629292000025714 ], [ -58.522517999605952, -34.629550000232257 ], [ -58.523719000131734, -34.629828999608605 ], [ -58.524319999967986, -34.629936000046314 ], [ -58.524877999619946, -34.630043999630857 ], [ -58.525414000056003, -34.630172000137634 ], [ -58.525971999707963, -34.630279999722177 ], [ -58.526509000190174, -34.630408000229011 ], [ -58.526101000260894, -34.631845999992834 ], [ -58.525821999985283, -34.632896999896559 ], [ -58.525715000446894, -34.633884000446244 ], [ -58.525585999893963, -34.634570999751816 ], [ -58.525500000424643, -34.635515000117095 ], [ -58.525436000171226, -34.636094999884278 ], [ -58.525306999618294, -34.637145999788004 ], [ -58.525200000079906, -34.638196999691729 ], [ -58.525844000100506, -34.638218999806952 ], [ -58.526509000190174, -34.638283000060369 ], [ -58.527174000279842, -34.638348000359883 ], [ -58.527818000300442, -34.638369000429009 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 181.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.531142, -34.57438 ], [ -58.53176, -34.574751 ], [ -58.53178, -34.574767 ], [ -58.532588, -34.575431 ], [ -58.532722, -34.575546 ], [ -58.531726, -34.576444 ], [ -58.532404, -34.577018 ], [ -58.532627, -34.57721 ], [ -58.533154, -34.577653 ], [ -58.533933, -34.578306 ], [ -58.534729, -34.57898 ], [ -58.535767, -34.578106 ], [ -58.536833, -34.577228 ], [ -58.537901, -34.576376 ], [ -58.538971, -34.575503 ], [ -58.539978, -34.574673 ], [ -58.54106, -34.573799 ], [ -58.542078, -34.572958 ], [ -58.543178, -34.572069 ], [ -58.543466, -34.572305 ], [ -58.544014, -34.572773 ], [ -58.544747, -34.573406 ], [ -58.545491, -34.574047 ], [ -58.546261, -34.574706 ], [ -58.547078, -34.575359 ], [ -58.547681, -34.575866 ], [ -58.54786, -34.576045 ], [ -58.547998, -34.576147 ], [ -58.548683, -34.576714 ], [ -58.549457, -34.577366 ], [ -58.550335, -34.5781 ], [ -58.551423, -34.577218 ], [ -58.552452, -34.576411 ], [ -58.55314, -34.57592 ], [ -58.553875, -34.576571 ], [ -58.554635, -34.577186 ], [ -58.555322, -34.577753 ], [ -58.555905, -34.577218 ], [ -58.556748, -34.577921 ], [ -58.557591, -34.578613 ], [ -58.558332, -34.579259 ], [ -58.559098, -34.57993 ], [ -58.559841, -34.580565 ], [ -58.560316, -34.580982 ], [ -58.560702, -34.581289 ], [ -58.560702, -34.581315 ], [ -58.561539, -34.582021 ], [ -58.562359999999899, -34.582745 ], [ -58.561644, -34.583296 ], [ -58.560931, -34.583897 ], [ -58.560102, -34.584518 ], [ -58.55908, -34.585456 ], [ -58.560159, -34.586361 ], [ -58.561124, -34.587151 ], [ -58.562044, -34.587914 ], [ -58.562941, -34.588658 ], [ -58.564035, -34.587799 ], [ -58.565157, -34.586923 ], [ -58.566208, -34.586096 ], [ -58.566546, -34.585827 ], [ -58.566951, -34.58553 ], [ -58.567917, -34.584754 ], [ -58.568693, -34.584126 ], [ -58.568755, -34.584077 ], [ -58.569513, -34.583475 ], [ -58.570662, -34.584532 ], [ -58.571398, -34.58529 ], [ -58.57167, -34.586477 ], [ -58.571934, -34.587624 ], [ -58.572186, -34.588813 ], [ -58.573811, -34.587531 ], [ -58.574763, -34.586787 ], [ -58.575543, -34.586157 ], [ -58.576353, -34.585493 ], [ -58.576934, -34.585033 ], [ -58.577544, -34.584564 ], [ -58.578146, -34.584084 ], [ -58.578752, -34.583613 ], [ -58.579376, -34.583162 ], [ -58.579964, -34.582688 ], [ -58.58055, -34.582207 ], [ -58.581234, -34.581738 ], [ -58.581704, -34.581355 ], [ -58.582546, -34.580652 ], [ -58.583381, -34.57999 ], [ -58.584255, -34.5793 ], [ -58.585159, -34.578596 ], [ -58.585907, -34.579291 ], [ -58.585978, -34.579335 ], [ -58.58602, -34.579292 ], [ -58.586564, -34.578871 ], [ -58.587137, -34.578431 ], [ -58.587727, -34.577973 ], [ -58.588297, -34.577501 ], [ -58.589182, -34.576795 ], [ -58.590078, -34.576153 ], [ -58.590904, -34.5755 ], [ -58.591766, -34.574836 ], [ -58.592635, -34.574171 ], [ -58.593449, -34.573584 ], [ -58.594344, -34.572886 ], [ -58.594856, -34.572973 ], [ -58.595104, -34.573196 ], [ -58.595465, -34.573524 ], [ -58.59553, -34.573576 ], [ -58.595682, -34.573712 ], [ -58.595919, -34.573931 ], [ -58.596092, -34.574085 ], [ -58.596276, -34.574257 ], [ -58.596419, -34.574402 ], [ -58.596531, -34.574532 ], [ -58.596658, -34.574683 ], [ -58.596773, -34.574829 ], [ -58.596891, -34.574976 ], [ -58.597031, -34.575146 ], [ -58.5981, -34.574312 ], [ -58.598986, -34.573663 ], [ -58.599146, -34.573545 ], [ -58.599858, -34.573011 ], [ -58.600147, -34.572796 ], [ -58.600732, -34.572351 ], [ -58.601433, -34.571831 ], [ -58.601565, -34.571709 ], [ -58.602021, -34.571374 ], [ -58.602472, -34.571044 ], [ -58.602667, -34.570896 ], [ -58.603307, -34.570402 ], [ -58.603715, -34.570088 ], [ -58.604191, -34.569717 ], [ -58.605053, -34.569093 ], [ -58.605618, -34.568674 ], [ -58.605915, -34.568448 ], [ -58.606778, -34.567746 ], [ -58.607596, -34.56711 ], [ -58.608516, -34.566447 ], [ -58.609414999999899, -34.565821 ], [ -58.610261, -34.565186 ], [ -58.610722, -34.56483 ], [ -58.611134, -34.564527 ], [ -58.611786, -34.564029 ], [ -58.611976, -34.563881 ], [ -58.612797, -34.564614 ], [ -58.613614, -34.565351 ], [ -58.614255, -34.565919 ], [ -58.614812, -34.566397 ], [ -58.61484, -34.5665 ], [ -58.614867, -34.566579 ], [ -58.615515, -34.567204 ], [ -58.616188, -34.567823 ], [ -58.616862, -34.568431 ], [ -58.617681, -34.569136 ], [ -58.616896, -34.569715 ], [ -58.61711, -34.569682 ], [ -58.618199, -34.570586 ], [ -58.619258, -34.571414 ], [ -58.619297, -34.571445 ], [ -58.619838, -34.570928 ], [ -58.620371, -34.570404 ], [ -58.620902, -34.569893 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 180.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.450334000113969, -34.558245999952874 ], [ -58.449153999657312, -34.55895400022689 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.450162000276066, -34.559555000063142 ], [ -58.450162000276066, -34.559661999601531 ], [ -58.450269999860552, -34.55974799997017 ], [ -58.450398000367386, -34.559683999716754 ], [ -58.450398000367386, -34.559619000316559 ], [ -58.451964999784877, -34.559254999718405 ], [ -58.452072000222586, -34.559318999971822 ], [ -58.452952000334506, -34.55983400033881 ], [ -58.453832000446425, -34.560369999875547 ], [ -58.454753999797219, -34.560907000357759 ], [ -58.455698000162556, -34.561442999894496 ], [ -58.456085000022711, -34.561701000101039 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453874999731397, -34.566978999780986 ], [ -58.454775999912442, -34.56751600026314 ], [ -58.455677000093431, -34.568030999730809 ], [ -58.456578000274476, -34.568567000166865 ], [ -58.45743700031727, -34.569103999749757 ], [ -58.457736999762687, -34.569768999839425 ], [ -58.457866000315619, -34.570048000115094 ], [ -58.457929999669716, -34.570197999837774 ], [ -58.458230000014453, -34.570862999927442 ], [ -58.458809999781636, -34.572001000245905 ], [ -58.459153000310664, -34.57257999996699 ], [ -58.459518000055596, -34.57322399998759 ], [ -58.459839999616236, -34.574231999706967 ], [ -58.459839999616236, -34.574703999889664 ], [ -58.459839999616236, -34.574983000165275 ], [ -58.459860999685361, -34.575605000070652 ], [ -58.459903999869653, -34.576849999927504 ], [ -58.460226000329612, -34.578287999691383 ], [ -58.459689999893556, -34.578308999760509 ], [ -58.458509000290064, -34.5783519999448 ], [ -58.458016000038356, -34.578395000129092 ], [ -58.45735099994863, -34.578544999851829 ], [ -58.457222000295019, -34.57858800003612 ], [ -58.455977000438168, -34.578888000380857 ], [ -58.454862000281025, -34.579209999941497 ], [ -58.453531000055591, -34.579661000055069 ], [ -58.453037999803826, -34.579832999892972 ], [ -58.452115000406877, -34.58011200016864 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.449990999584941, -34.580862999727628 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.451214000225889, -34.582901000180982 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.452779999597283, -34.588265000229512 ], [ -58.451450000317209, -34.588737000412209 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.449540000370689, -34.593457999586974 ], [ -58.450592000320512, -34.594358999767962 ], [ -58.451706999578334, -34.595195999695591 ], [ -58.451407000132917, -34.595474999971202 ], [ -58.450978000134569, -34.595839999716191 ], [ -58.450204999561038, -34.596570000105373 ], [ -58.449432999932981, -34.597235000195042 ], [ -58.448380999983101, -34.596461999621567 ], [ -58.447309000010307, -34.595689999993454 ], [ -58.44627900017565, -34.594917000319242 ], [ -58.445505999602176, -34.595582000408967 ], [ -58.445469999740681, -34.595617000224365 ], [ -58.444668999674548, -34.596376000152247 ], [ -58.443682000024239, -34.597235000195042 ], [ -58.442737999658902, -34.598093000191739 ], [ -58.441772000077719, -34.598951000188492 ], [ -58.440806999643257, -34.599810000231287 ], [ -58.43994899964656, -34.600603999974567 ], [ -58.439304999626017, -34.601290000133361 ], [ -58.438510999882681, -34.60217000024528 ], [ -58.437760000323692, -34.603071000426269 ], [ -58.436986999750218, -34.603865000169606 ], [ -58.436623000051384, -34.60431600028312 ], [ -58.435357000125407, -34.60431600028312 ], [ -58.434756000289156, -34.604444999936732 ], [ -58.434154999553527, -34.604681000028108 ], [ -58.433811999923819, -34.60487399993508 ], [ -58.433254000271859, -34.605324000002554 ], [ -58.43306100036483, -34.605582000209097 ], [ -58.432909999696676, -34.605818000300417 ], [ -58.432673999605356, -34.606419000136725 ], [ -58.432653000435607, -34.606869000204142 ], [ -58.432673999605356, -34.607105000295462 ], [ -58.432759999973996, -34.607405999787034 ], [ -58.433018000180539, -34.607834999785382 ], [ -58.433211000087567, -34.608048999761479 ], [ -58.433596999901567, -34.608393000336662 ], [ -58.434175999622653, -34.608757000035496 ], [ -58.434713000104807, -34.608757000035496 ], [ -58.436128999753521, -34.608757000035496 ], [ -58.435699999755116, -34.610281000167959 ], [ -58.435335000010184, -34.611482999840518 ], [ -58.434713000104807, -34.612748999766495 ], [ -58.434433999829196, -34.613370999671872 ], [ -58.433982999715624, -34.614271999852861 ], [ -58.433811999923819, -34.61467999978214 ], [ -58.433725999555179, -34.614850999573946 ], [ -58.433403999994539, -34.615537999778837 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.428791000404317, -34.617169000349065 ], [ -58.428555000312997, -34.618284999652985 ], [ -58.42831900022162, -34.619400999856225 ], [ -58.428061000015077, -34.620666999782145 ], [ -58.427953999577369, -34.621309999756647 ], [ -58.427803999854689, -34.622061000214956 ], [ -58.427482000294049, -34.623585000347418 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.427052000249546, -34.625731000385315 ], [ -58.426987999996186, -34.626030999830732 ], [ -58.426751999904809, -34.626997000311292 ], [ -58.426451999560072, -34.628326999591309 ], [ -58.426216000368072, -34.629378000394354 ], [ -58.425980000276752, -34.630430000344177 ], [ -58.425744000185432, -34.631481000247902 ], [ -58.425529000163181, -34.632361000359822 ], [ -58.425185999634152, -34.633690999639896 ], [ -58.424864000073512, -34.634828999958359 ], [ -58.424671000166484, -34.635600999586416 ], [ -58.424520000397649, -34.636202000321987 ], [ -58.424348999706524, -34.636737999858781 ], [ -58.424198999983844, -34.637145999788004 ], [ -58.424006000076815, -34.637982999715632 ], [ -58.423768999939341, -34.639142000103163 ], [ -58.423490999709827, -34.64017199993782 ], [ -58.422310000106393, -34.639977999984694 ], [ -58.420915999673582, -34.639720999824249 ], [ -58.419542000163119, -34.639484999732929 ], [ -58.418554999613491, -34.639312999894969 ], [ -58.417095999780543, -34.639098999918872 ], [ -58.416088000061109, -34.638906000011843 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.414563999928589, -34.638668999874426 ], [ -58.413190999564961, -34.638411999713981 ], [ -58.411624000147469, -34.638133000337632 ], [ -58.411195000149121, -34.638069000084215 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.407547000093928, -34.637446000132741 ], [ -58.405616000078282, -34.637102999603712 ], [ -58.405252000379448, -34.637039000249615 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.402976999788677, -34.636631000320392 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.394787999866253, -34.635094999634475 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391174999626514, -34.632853999712268 ], [ -58.391368000432806, -34.631696000270153 ], [ -58.390660000158846, -34.631545999648097 ], [ -58.389029999634715, -34.631416999994485 ], [ -58.387805999846989, -34.631309999556777 ], [ -58.386733999874139, -34.631201999972291 ], [ -58.385532000201636, -34.631095000433902 ], [ -58.384115999653602, -34.630987999996137 ], [ -58.384202000022242, -34.629828999608605 ], [ -58.384266000275659, -34.629099000118742 ], [ -58.384329999629756, -34.628154999753406 ], [ -58.384329999629756, -34.627532999848029 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.377357000025484, -34.629550000232257 ], [ -58.377699999655192, -34.629979000230605 ], [ -58.378, -34.630172000137634 ], [ -58.378128999653597, -34.630300999791245 ], [ -58.378407999929209, -34.630515999813497 ], [ -58.3784510001135, -34.630729999789594 ], [ -58.378343999675792, -34.631115999603651 ], [ -58.378258000206529, -34.631416999994485 ], [ -58.377763999908609, -34.632511000082559 ], [ -58.377442000347969, -34.633391000194479 ], [ -58.377142000003232, -34.634721000373816 ], [ -58.376777000258301, -34.636202000321987 ], [ -58.376284000006535, -34.638003999784701 ], [ -58.375832999892964, -34.639462999617706 ], [ -58.375789999708672, -34.639828000261957 ], [ -58.375919000261604, -34.640257000260306 ], [ -58.375962000445895, -34.64064400012046 ], [ -58.375919000261604, -34.641352000394477 ], [ -58.375822000285041, -34.641988000046126 ], [ -58.375768999639604, -34.642339000044785 ], [ -58.375661000055061, -34.643389999948511 ], [ -58.375625000193565, -34.643583999901637 ], [ -58.375533000447547, -34.644077000153402 ], [ -58.375103000403101, -34.645793000146796 ], [ -58.375091999895858, -34.645822999731593 ], [ -58.374395000129084, -34.647638999839955 ], [ -58.373395999925435, -34.649408999625564 ], [ -58.373086000018873, -34.649955999669601 ], [ -58.37244300004437, -34.651436999617772 ], [ -58.372056000184216, -34.652530999705846 ], [ -58.372004999630974, -34.652651999889827 ], [ -58.371991999930799, -34.652681000327846 ], [ -58.371262999587714, -34.655042000387937 ], [ -58.371005000280491, -34.655836000131274 ], [ -58.370918999911851, -34.656006999923079 ], [ -58.370533000097851, -34.656479000105719 ], [ -58.370168000352919, -34.656737000312262 ], [ -58.369781999639542, -34.657123000126319 ], [ -58.369718000285445, -34.657444999686959 ], [ -58.369739000354514, -34.65772399996257 ], [ -58.369954000376765, -34.658003000238239 ], [ -58.370383000375114, -34.658260000398684 ], [ -58.370771000281422, -34.658429000098238 ], [ -58.371027000395713, -34.658538999774976 ], [ -58.372120999584411, -34.659139999611227 ], [ -58.373043999880622, -34.65939799981777 ], [ -58.373472999879027, -34.659526000324604 ], [ -58.373665999785999, -34.659633999909147 ], [ -58.374351999944793, -34.660363000252232 ], [ -58.374631000220461, -34.660727999997164 ], [ -58.374738999804947, -34.660835000434872 ], [ -58.375039000149684, -34.661070999626872 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 179.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.641955, -34.502158 ], [ -58.642531, -34.501391 ], [ -58.643247, -34.500506 ], [ -58.642214, -34.499927 ], [ -58.641158, -34.499361 ], [ -58.640109, -34.498809 ], [ -58.639025, -34.498228 ], [ -58.637942, -34.497668 ], [ -58.636909, -34.497111 ], [ -58.635868, -34.496527 ], [ -58.634822, -34.495983 ], [ -58.633744, -34.495392 ], [ -58.633036, -34.496294 ], [ -58.633024, -34.496301 ], [ -58.632382, -34.497157 ], [ -58.631675, -34.498043 ], [ -58.631079, -34.498773 ], [ -58.630992, -34.49888 ], [ -58.630523, -34.499559 ], [ -58.629918, -34.500292 ], [ -58.629184, -34.499906 ], [ -58.628915, -34.499748 ], [ -58.628513, -34.499535 ], [ -58.627905, -34.499212 ], [ -58.627839, -34.499296 ], [ -58.626827, -34.500436 ], [ -58.626752, -34.500511 ], [ -58.625846, -34.501677 ], [ -58.624882, -34.502921 ], [ -58.62436, -34.503584 ], [ -58.623347, -34.503648 ], [ -58.622917, -34.503671 ], [ -58.622092, -34.50373 ], [ -58.621519, -34.503775 ], [ -58.619842, -34.503883 ], [ -58.619655, -34.503631 ], [ -58.61915, -34.502827 ], [ -58.618735999999899, -34.502209 ], [ -58.618481, -34.501858 ], [ -58.618265, -34.501557 ], [ -58.618068, -34.501201 ], [ -58.617826, -34.500807 ], [ -58.617617, -34.500501 ], [ -58.617462, -34.500268 ], [ -58.617267, -34.499974 ], [ -58.617048, -34.499609 ], [ -58.616693, -34.499115 ], [ -58.616682, -34.499104 ], [ -58.615994, -34.498401 ], [ -58.614951, -34.498406 ], [ -58.614972, -34.499068 ], [ -58.614985, -34.500496 ], [ -58.614982, -34.500503 ], [ -58.614828, -34.500542 ], [ -58.614622, -34.500507 ], [ -58.614072, -34.500192 ], [ -58.613712, -34.499845 ], [ -58.613639, -34.499655 ], [ -58.613852, -34.498934 ], [ -58.614287, -34.498483 ], [ -58.614919, -34.497863 ], [ -58.61517, -34.497243 ], [ -58.615202, -34.497173 ], [ -58.615936, -34.495934 ], [ -58.616364, -34.494598 ], [ -58.616398, -34.494507 ], [ -58.616743, -34.493494 ], [ -58.616863, -34.493127 ], [ -58.617048, -34.492469 ], [ -58.617429, -34.491169 ], [ -58.617447, -34.49113 ], [ -58.617912, -34.490018 ], [ -58.618478, -34.488861 ], [ -58.618539, -34.488777 ], [ -58.61936, -34.487633 ], [ -58.618279, -34.487104 ], [ -58.617095, -34.486575 ], [ -58.616065, -34.486062 ], [ -58.615822, -34.485926 ], [ -58.615457, -34.485728 ], [ -58.615063, -34.485781 ], [ -58.614625, -34.48584 ], [ -58.614185, -34.487136 ], [ -58.613972, -34.487778 ], [ -58.613755, -34.488431 ], [ -58.613546, -34.489067 ], [ -58.613327, -34.489711 ], [ -58.613103, -34.490388 ], [ -58.612905, -34.49104 ], [ -58.612699, -34.49169 ], [ -58.612511, -34.492297 ], [ -58.612445, -34.492379 ], [ -58.612367, -34.492466 ], [ -58.612201, -34.493014 ], [ -58.611992, -34.49369 ], [ -58.611794, -34.494343 ], [ -58.611587, -34.494988 ], [ -58.611367, -34.495681 ], [ -58.611142, -34.496336 ], [ -58.610917, -34.496999 ], [ -58.610695, -34.497658 ], [ -58.610457, -34.49834 ], [ -58.610255, -34.499046 ], [ -58.610087, -34.499611 ], [ -58.610016, -34.499714 ], [ -58.609952, -34.499802 ], [ -58.60978, -34.500393 ], [ -58.609537, -34.501113 ], [ -58.610893, -34.501422 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 178.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.500305778007302, -34.735619415457066 ], [ -58.47214155138289, -34.773118071476993 ], [ -58.472624366696451, -34.777141532423336 ], [ -58.487591641416849, -34.784142354469978 ], [ -58.49354636361744, -34.776658717109775 ], [ -58.494270586587781, -34.777382940080123 ], [ -58.478257212021333, -34.798626813876815 ], [ -58.480027534837724, -34.801604174977115 ], [ -58.470451697785421, -34.814157373129703 ], [ -58.458622722603174, -34.808202650929118 ], [ -58.458059438070684, -34.809570627650871 ], [ -58.470129820909719, -34.815283942194682 ], [ -58.465864952306589, -34.819468341578883 ], [ -58.408248991554942, -34.78897050760559 ], [ -58.40680054561426, -34.782211093215729 ], [ -58.397224708561957, -34.777222001642265 ], [ -58.398512216064802, -34.763220357548988 ], [ -58.401248169508314, -34.763059419111137 ], [ -58.397627054656603, -34.742781175941559 ], [ -58.398834092940497, -34.742298360627998 ], [ -58.391833270893855, -34.708179411803002 ], [ -58.392074678550635, -34.698201228656067 ], [ -58.404869284360011, -34.687418353319863 ], [ -58.404305999827521, -34.679612839083958 ], [ -58.400845823413668, -34.677118293297227 ], [ -58.417744359388315, -34.664726033582483 ], [ -58.416778728761194, -34.657805680754777 ], [ -58.416376382666563, -34.646620459323934 ], [ -58.414284182974463, -34.641148552436903 ], [ -58.415290048211048, -34.631371542337284 ], [ -58.417020136417968, -34.613587844954452 ], [ -58.41802600165456, -34.61109329916772 ], [ -58.407001718661576, -34.609966730102741 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 177.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.358001999592545, -34.633926999731216 ], [ -58.358494999844311, -34.633089999803587 ], [ -58.358967000027008, -34.632274999991239 ], [ -58.35946100032487, -34.631460000178834 ], [ -58.360040000045899, -34.631031000180485 ], [ -58.361455999694613, -34.630107999884217 ], [ -58.362443000244241, -34.629442999794549 ], [ -58.363172999734104, -34.628949000396005 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.368022000315023, -34.627124999918749 ], [ -58.368150999968634, -34.627147000033972 ], [ -58.368473000428594, -34.627468999594612 ], [ -58.369439000009777, -34.628305000375406 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.371670000370159, -34.630515999813497 ], [ -58.371948999746508, -34.630795000089165 ], [ -58.37267900013569, -34.631545999648097 ], [ -58.373493999948096, -34.632424999713919 ], [ -58.374417000244307, -34.633369000079256 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377357000025484, -34.629550000232257 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.379856000154234, -34.627141999803428 ], [ -58.382205999707082, -34.62718199984937 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.38439499992927, -34.624700999651395 ], [ -58.385789000362024, -34.624742999789589 ], [ -58.387183999941612, -34.624829000158172 ], [ -58.387183999941612, -34.624014000345824 ], [ -58.387183999941612, -34.623778000254447 ], [ -58.387183999941612, -34.623306000071807 ], [ -58.387162999872487, -34.622447000029013 ], [ -58.387206000056835, -34.62124600040255 ], [ -58.387312999595224, -34.619937000292282 ], [ -58.387420000032932, -34.618777999904751 ], [ -58.387463000217224, -34.617876999723705 ], [ -58.387485000332447, -34.616697000166369 ], [ -58.387463000217224, -34.615537999778837 ], [ -58.387506000401572, -34.614636999597792 ], [ -58.387506000401572, -34.613500000224803 ], [ -58.387506000401572, -34.612427000205855 ], [ -58.388944000165452, -34.612490999559952 ], [ -58.390359999814109, -34.612576999928535 ], [ -58.39175500029296, -34.612684000366301 ], [ -58.393278000379382, -34.612769999835564 ], [ -58.394716000143262, -34.612877000273272 ], [ -58.396152999860988, -34.612962999742592 ], [ -58.397418999786964, -34.613049000111232 ], [ -58.398856999550844, -34.613113000364649 ], [ -58.400229999914529, -34.613177999764844 ], [ -58.401452999656158, -34.613242000018261 ], [ -58.40314899962658, -34.613328000386844 ], [ -58.403256000064289, -34.612276999583798 ], [ -58.403277000133414, -34.611095999980364 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.403405999787026, -34.608714999897302 ], [ -58.40347100008654, -34.607534000293811 ], [ -58.404758000081586, -34.607598999694062 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.407697999862762, -34.607834999785382 ], [ -58.409114000410739, -34.607899000038799 ], [ -58.410443999690813, -34.607921000153965 ], [ -58.411839000169664, -34.607877999969674 ], [ -58.411839000169664, -34.607770000385187 ], [ -58.411344999871801, -34.606546999744182 ], [ -58.412417999890749, -34.606397000021502 ], [ -58.413640999632378, -34.606096999676765 ], [ -58.414928999673577, -34.605839000369542 ], [ -58.416022999761594, -34.605645999563194 ], [ -58.417052999596194, -34.605473999725291 ], [ -58.418361999706462, -34.605259999749137 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.42119499994925, -34.60487399993508 ], [ -58.422804000404255, -34.604681000028108 ], [ -58.424348999706524, -34.604487000074926 ], [ -58.424155999799495, -34.602856999550852 ], [ -58.423940999777301, -34.601590999624875 ], [ -58.423768999939341, -34.600410000021441 ], [ -58.423576000032313, -34.599123000026395 ], [ -58.423405000240507, -34.597770999731836 ], [ -58.423576000032313, -34.597642000078224 ], [ -58.424820999889221, -34.597126999711236 ], [ -58.426216000368072, -34.59654799999015 ], [ -58.427052000249546, -34.596183000245219 ], [ -58.428104000199426, -34.595540000270773 ], [ -58.429177000218317, -34.594874000134951 ], [ -58.430078000399362, -34.594315999583671 ], [ -58.431236999887574, -34.593565000024682 ], [ -58.432353000090814, -34.592813999566374 ], [ -58.433468000247956, -34.592085000122609 ], [ -58.434369999575779, -34.591463000217232 ], [ -58.435335000010184, -34.590840000265757 ], [ -58.436215000122104, -34.590260999645352 ], [ -58.437138000418372, -34.589616999624809 ], [ -58.438059999769109, -34.588952000434404 ], [ -58.438146000137749, -34.588909000250112 ], [ -58.438446999629264, -34.588758999628112 ], [ -58.439412000063726, -34.588114999607512 ], [ -58.440162999622714, -34.587600000139844 ], [ -58.441408000378885, -34.586785000327438 ], [ -58.442459000282611, -34.586098000122547 ], [ -58.443511000232434, -34.58541199996381 ], [ -58.444626000389576, -34.584661000404822 ], [ -58.444798000227479, -34.584552999920959 ], [ -58.446449999967456, -34.583781000292902 ], [ -58.447630000424112, -34.583265999925914 ], [ -58.448875000281021, -34.582750999558925 ], [ -58.449818999746981, -34.582385999813994 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.45102100031886, -34.581956999815645 ], [ -58.451728999693557, -34.581698999609102 ], [ -58.451535999786529, -34.581399000163685 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.450570000205289, -34.579853999962097 ], [ -58.449990999584941, -34.57890999959676 ], [ -58.449410999817758, -34.577966000130743 ], [ -58.448896000350089, -34.576999999650241 ], [ -58.450054999838358, -34.576420999929155 ], [ -58.450978000134569, -34.575991999930807 ], [ -58.452673000058837, -34.57528399965679 ], [ -58.454175000076134, -34.574467999798287 ], [ -58.455098000372402, -34.573975000445898 ], [ -58.455956000369099, -34.573524000332327 ], [ -58.456878999765991, -34.57305200014963 ], [ -58.457929999669716, -34.572473000428602 ], [ -58.458809999781636, -34.572001000245905 ], [ -58.458230000014453, -34.570862999927442 ], [ -58.457929999669716, -34.570197999837774 ], [ -58.457866000315619, -34.570048000115094 ], [ -58.457736999762687, -34.569768999839425 ], [ -58.45743700031727, -34.569103999749757 ], [ -58.456578000274476, -34.568567000166865 ], [ -58.455677000093431, -34.568030999730809 ], [ -58.454775999912442, -34.56751600026314 ], [ -58.453874999731397, -34.566978999780986 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476607000312754, -34.537457999986657 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.482242000268059, -34.526660000258744 ], [ -58.482649000151184, -34.525908999800436 ], [ -58.482734999620504, -34.52573800000863 ], [ -58.483143000449047, -34.52502999973467 ], [ -58.483272000102659, -34.524814999712419 ], [ -58.483765000354424, -34.52391400043075 ], [ -58.482734999620504, -34.52342000013283 ], [ -58.481704999785848, -34.522926999881122 ], [ -58.480631999766956, -34.522432999583202 ], [ -58.479667000231814, -34.521961000299882 ], [ -58.478637000397214, -34.521468000048117 ], [ -58.477564000378266, -34.520952999681128 ], [ -58.477370999571917, -34.520888000280934 ], [ -58.476448000175026, -34.520416000098294 ], [ -58.475331999971786, -34.519879999662237 ], [ -58.474581000412797, -34.519601000285888 ], [ -58.475095999880466, -34.518549000336066 ], [ -58.475783000085357, -34.516833000342672 ], [ -58.475932999808037, -34.516554000067003 ], [ -58.476512000428443, -34.515073000118832 ], [ -58.477092000195626, -34.513742999939439 ], [ -58.477349000356014, -34.513206000356604 ], [ -58.478035999661643, -34.51155399971725 ], [ -58.478208000398865, -34.51108200043393 ], [ -58.478787000119894, -34.509837999723857 ], [ -58.479387999956202, -34.508313999591337 ], [ -58.479860000138842, -34.507134000034057 ], [ -58.480117000299288, -34.506490000013457 ], [ -58.480139000414511, -34.50642599976004 ], [ -58.480460999975151, -34.505718000385343 ], [ -58.481103999949596, -34.504086999815172 ], [ -58.48140500034043, -34.503336000256184 ], [ -58.481576000132236, -34.502928000326904 ], [ -58.48172699990107, -34.502562999682652 ], [ -58.482456000244156, -34.501426000309607 ], [ -58.482992999827047, -34.500546000197687 ], [ -58.483551000378327, -34.499645000016699 ], [ -58.484065999845996, -34.498764999904779 ], [ -58.484130000099412, -34.498594000112973 ], [ -58.484173000283704, -34.498229000368042 ], [ -58.484236999637801, -34.497606999563345 ], [ -58.484344000075509, -34.496619999913037 ], [ -58.484451999659996, -34.495847000238825 ], [ -58.484559000097761, -34.494989000242128 ], [ -58.484559000097761, -34.494688999897392 ], [ -58.484559000097761, -34.494258999852946 ], [ -58.484538000028635, -34.493979999577277 ], [ -58.484515999913413, -34.493508000293957 ], [ -58.484472999729121, -34.493229000018289 ], [ -58.484451999659996, -34.492713999651301 ], [ -58.484451999659996, -34.492520999744272 ], [ -58.484430000444149, -34.49177000018534 ], [ -58.484623000351121, -34.490912000188587 ], [ -58.484708999820441, -34.490568999659558 ], [ -58.484880999658344, -34.489882000353987 ], [ -58.485246000302652, -34.488809000335038 ], [ -58.485524999678944, -34.487758000431313 ], [ -58.485803999954612, -34.487050000157353 ], [ -58.48655500041292, -34.486276999583822 ], [ -58.486833999789212, -34.485998000207474 ], [ -58.487433999579366, -34.485461999771417 ], [ -58.487628000431812, -34.485289999933514 ], [ -58.488250000337189, -34.484711000212428 ], [ -58.489065000149594, -34.483895000353925 ], [ -58.489815999708583, -34.48325200037948 ], [ -58.490459999729183, -34.482671999712977 ], [ -58.490910999842754, -34.48213600017624 ], [ -58.491510999632908, -34.481514000270863 ], [ -58.492477000113411, -34.48046200032104 ], [ -58.493099000018788, -34.479797000231315 ], [ -58.493614000385776, -34.479153000210772 ], [ -58.494965999781016, -34.478467000051978 ], [ -58.496703999889633, -34.477564999824835 ], [ -58.497304999725941, -34.477243000264195 ], [ -58.497948999746484, -34.476942999919459 ], [ -58.498678000089569, -34.476470999736819 ], [ -58.499150000272266, -34.476171000291401 ], [ -58.499493999948072, -34.47595600026915 ], [ -58.500351999944826, -34.475419999833093 ], [ -58.501296000310106, -34.474796999881619 ], [ -58.501918000215483, -34.474389999998436 ], [ -58.50309799977282, -34.473639000439448 ], [ -58.503784999977711, -34.473188000325933 ], [ -58.504385999814019, -34.472801999612557 ], [ -58.505029999834562, -34.472372999614208 ], [ -58.505672999809065, -34.471879000215665 ], [ -58.506596000105276, -34.471235000195065 ], [ -58.507389999848556, -34.47050599985198 ], [ -58.508377000398184, -34.469603999624837 ], [ -58.508763000212241, -34.468810999927655 ], [ -58.509106999888104, -34.468101999607541 ], [ -58.509235000394938, -34.467501999817387 ], [ -58.509793000046898, -34.466987000349718 ], [ -58.510329999629732, -34.466814999612495 ], [ -58.510866000065789, -34.466642999774592 ], [ -58.510437000067441, -34.46529200042545 ], [ -58.510695000273984, -34.465183999941587 ], [ -58.510866000065789, -34.465034000218907 ], [ -58.510350999698858, -34.464369000129182 ], [ -58.509728999793481, -34.463660999855222 ], [ -58.508827999612436, -34.462631000020565 ], [ -58.508527000120921, -34.462287000344759 ], [ -58.507990999684864, -34.461922999746605 ], [ -58.507368999779487, -34.461492999702159 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 176.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.662126, -34.475206 ], [ -58.662183, -34.47519 ], [ -58.663444, -34.475873 ], [ -58.664678, -34.476531 ], [ -58.665069, -34.476739 ], [ -58.666837, -34.477689 ], [ -58.667403, -34.477834 ], [ -58.669137, -34.478058 ], [ -58.669294, -34.478076 ], [ -58.670083, -34.478169 ], [ -58.670938, -34.478264 ], [ -58.671219, -34.478299 ], [ -58.671772, -34.478367 ], [ -58.672009, -34.478403 ], [ -58.672584, -34.47848 ], [ -58.673339, -34.478606 ], [ -58.674008999999899, -34.478732 ], [ -58.674576, -34.479107 ], [ -58.675143, -34.479429 ], [ -58.675481, -34.479571 ], [ -58.676342, -34.480023 ], [ -58.677449, -34.480601 ], [ -58.678712, -34.481287 ], [ -58.680657, -34.482345 ], [ -58.681024, -34.482521 ], [ -58.681247, -34.482626 ], [ -58.68274, -34.48334 ], [ -58.683866, -34.483895 ], [ -58.685157, -34.484477 ], [ -58.686569, -34.485116 ], [ -58.687281, -34.485433 ], [ -58.687996, -34.485771 ], [ -58.689572, -34.486437 ], [ -58.690151, -34.486701 ], [ -58.691186, -34.487087 ], [ -58.691521, -34.487321 ], [ -58.692236, -34.487654 ], [ -58.693294, -34.48811 ], [ -58.694036, -34.48842 ], [ -58.696692, -34.489532 ], [ -58.696708, -34.489539 ], [ -58.698953, -34.490521 ], [ -58.698976, -34.490521 ], [ -58.700155, -34.490865 ], [ -58.701175, -34.491229 ], [ -58.702151999999899, -34.491786 ], [ -58.703269, -34.492745 ], [ -58.704052, -34.493429 ], [ -58.704846, -34.494148 ], [ -58.705612, -34.494894 ], [ -58.706638, -34.495839 ], [ -58.706806, -34.495983 ], [ -58.70681, -34.495991 ], [ -58.707505, -34.496615 ], [ -58.708539, -34.497681 ], [ -58.709356, -34.498416 ], [ -58.710496, -34.499516 ], [ -58.710599, -34.49962 ], [ -58.712046, -34.500904 ], [ -58.712394, -34.501193 ], [ -58.712938, -34.501728 ], [ -58.713861, -34.502554 ], [ -58.713888, -34.50257 ], [ -58.71468, -34.50292 ], [ -58.715221, -34.503196 ], [ -58.715271, -34.503219 ], [ -58.715436, -34.503298 ], [ -58.715466, -34.503309 ], [ -58.716244, -34.503655 ], [ -58.716646, -34.503852 ], [ -58.71701, -34.504056 ], [ -58.717025, -34.504067 ], [ -58.718032, -34.504512 ], [ -58.71807, -34.504531 ], [ -58.718366, -34.504659 ], [ -58.71842, -34.504682 ], [ -58.719461, -34.505153 ], [ -58.719484, -34.50516 ], [ -58.719683, -34.505255 ], [ -58.719725, -34.505273 ], [ -58.720553, -34.505658 ], [ -58.72135, -34.506043 ], [ -58.722146, -34.506377 ], [ -58.722828, -34.506686 ], [ -58.722878, -34.506709 ], [ -58.723003, -34.506772 ], [ -58.723026, -34.50678 ], [ -58.723634, -34.507032 ], [ -58.72446, -34.507369 ], [ -58.725243, -34.507711 ], [ -58.726262, -34.50813 ], [ -58.727338, -34.508591 ], [ -58.7274, -34.508621 ], [ -58.728525, -34.509107 ], [ -58.729698, -34.509622 ], [ -58.730504, -34.509933 ], [ -58.731204, -34.51018 ], [ -58.731929, -34.510437 ], [ -58.732205, -34.510531 ], [ -58.733227, -34.510885 ], [ -58.734004, -34.511179 ], [ -58.734356, -34.511324 ], [ -58.734965, -34.511573 ], [ -58.735677, -34.511866 ], [ -58.735925, -34.511969 ], [ -58.736936, -34.512355 ], [ -58.738452, -34.512957 ], [ -58.739454, -34.513385 ], [ -58.740078, -34.513636 ], [ -58.740488, -34.513781 ], [ -58.741403, -34.514174 ], [ -58.742628, -34.514675 ], [ -58.743427, -34.515045 ], [ -58.743929, -34.515274 ], [ -58.744633, -34.515579 ], [ -58.745363, -34.515892 ], [ -58.745842, -34.516102 ], [ -58.746504, -34.516393 ], [ -58.74702, -34.516648 ], [ -58.747594, -34.516934 ], [ -58.748057, -34.517148 ], [ -58.748733999999899, -34.517457 ], [ -58.749021, -34.517587 ], [ -58.749875, -34.517988 ], [ -58.750307, -34.51819 ], [ -58.75103, -34.518518 ], [ -58.751205, -34.518618 ], [ -58.751576, -34.518897 ], [ -58.754007, -34.519904 ], [ -58.754359, -34.519999 ], [ -58.754979, -34.520244 ], [ -58.756028999999899, -34.520725 ], [ -58.756235, -34.520802 ], [ -58.75741, -34.521304 ], [ -58.758602, -34.521815 ], [ -58.759869, -34.522348 ], [ -58.760652, -34.522658 ], [ -58.760984, -34.522792 ], [ -58.761431, -34.523003 ], [ -58.761728, -34.523195 ], [ -58.7621, -34.523432 ], [ -58.762461, -34.523651 ], [ -58.762757, -34.523839 ], [ -58.76313, -34.524046 ], [ -58.763866, -34.524475 ], [ -58.764141, -34.52464 ], [ -58.764828, -34.524873 ], [ -58.765909, -34.52531 ], [ -58.766088, -34.525379 ], [ -58.766745, -34.525604 ], [ -58.767483, -34.52584 ], [ -58.767841, -34.52595 ], [ -58.768303, -34.526113 ], [ -58.768936, -34.526377 ], [ -58.769039, -34.526415 ], [ -58.769244, -34.526483 ], [ -58.770071, -34.526795 ], [ -58.770882, -34.527088 ], [ -58.771782, -34.527423 ], [ -58.7721, -34.52756 ], [ -58.772939, -34.527922 ], [ -58.773102, -34.527982 ], [ -58.774877, -34.52863 ], [ -58.774911, -34.52863 ], [ -58.776326, -34.529216 ], [ -58.777084, -34.529566 ], [ -58.777832, -34.529906 ], [ -58.778559, -34.530187 ], [ -58.779269, -34.530479 ], [ -58.780164, -34.530808 ], [ -58.780755, -34.531027 ], [ -58.781441, -34.53133 ], [ -58.782157, -34.531595 ], [ -58.783312, -34.532106 ], [ -58.783442, -34.532163 ], [ -58.784448, -34.532576 ], [ -58.78465, -34.532655 ], [ -58.785192, -34.532845 ], [ -58.785981, -34.533194 ], [ -58.786833, -34.533586 ], [ -58.787586, -34.533939 ], [ -58.788431, -34.534326 ], [ -58.789326, -34.534749 ], [ -58.790125, -34.535129 ], [ -58.790814, -34.535474 ], [ -58.79151, -34.535819 ], [ -58.792146, -34.536172 ], [ -58.792847, -34.536628 ], [ -58.793457, -34.536992 ], [ -58.794157, -34.537426 ], [ -58.794774, -34.537785 ], [ -58.793935, -34.538635 ], [ -58.793321, -34.539263 ], [ -58.792672, -34.539918 ], [ -58.79208, -34.540536 ], [ -58.791261, -34.541378 ], [ -58.791056, -34.541587 ], [ -58.790552, -34.542114 ], [ -58.79004, -34.542639 ], [ -58.788696, -34.544022 ], [ -58.787312, -34.545446 ], [ -58.783443, -34.549443 ], [ -58.779383, -34.553628 ], [ -58.775997, -34.55713 ], [ -58.775432, -34.556621 ], [ -58.774879, -34.556077 ], [ -58.774275, -34.555496 ], [ -58.773695, -34.554944 ], [ -58.773069, -34.554355 ], [ -58.772611, -34.553891 ], [ -58.772592, -34.553887 ], [ -58.772004, -34.553355 ], [ -58.771993, -34.553343 ], [ -58.771467, -34.552846 ], [ -58.77144, -34.552819 ], [ -58.770851, -34.55231 ], [ -58.770836, -34.552298 ], [ -58.770272, -34.551789 ], [ -58.770256, -34.551774 ], [ -58.769696, -34.551253 ], [ -58.769126, -34.550748 ], [ -58.768905, -34.550509 ], [ -58.768234, -34.549912 ], [ -58.767219, -34.550651 ], [ -58.766216, -34.551385 ], [ -58.765338, -34.552029 ], [ -58.764501, -34.55263 ], [ -58.763623, -34.553267 ], [ -58.762808, -34.553877 ], [ -58.761941, -34.554517 ], [ -58.761104, -34.555168 ], [ -58.759172, -34.556568 ], [ -58.758475, -34.557086 ], [ -58.757782, -34.557593 ], [ -58.757234, -34.558002 ], [ -58.756361, -34.558642 ], [ -58.754892, -34.559731 ], [ -58.75347, -34.560813 ], [ -58.752692, -34.561355 ], [ -58.75197, -34.561897 ], [ -58.751596, -34.562155 ], [ -58.751, -34.562606 ], [ -58.750194, -34.563197 ], [ -58.749622, -34.56361 ], [ -58.748701, -34.564291 ], [ -58.7478, -34.564947 ], [ -58.746059, -34.566224 ], [ -58.745963, -34.566296 ], [ -58.745119, -34.566937 ], [ -58.744184, -34.567611 ], [ -58.743627, -34.568016 ], [ -58.74266, -34.568728 ], [ -58.742657, -34.568709 ], [ -58.741719, -34.56791 ], [ -58.740783, -34.567099 ], [ -58.740771, -34.567092 ], [ -58.7398, -34.566288 ], [ -58.738809, -34.565482 ], [ -58.737602, -34.564487 ], [ -58.736809, -34.563875 ], [ -58.736181, -34.563381 ], [ -58.735541, -34.562884 ], [ -58.734781, -34.5623 ], [ -58.734061, -34.561761 ], [ -58.733358, -34.561242 ], [ -58.732697, -34.560745 ], [ -58.732506, -34.560612 ], [ -58.732014, -34.560238 ], [ -58.731403, -34.559787 ], [ -58.731377, -34.559764 ], [ -58.73054, -34.559122 ], [ -58.72858, -34.55761 ], [ -58.728052, -34.557201 ], [ -58.727606, -34.556854 ], [ -58.727526, -34.556778 ], [ -58.727018, -34.556293 ], [ -58.726493, -34.555795 ], [ -58.725964, -34.555259 ], [ -58.725485, -34.554776 ], [ -58.725347, -34.55464 ], [ -58.72491, -34.554203 ], [ -58.724232, -34.553554 ], [ -58.723125, -34.55262 ], [ -58.721806, -34.551239 ], [ -58.721001, -34.550485 ], [ -58.720219, -34.549757 ], [ -58.71941, -34.548991 ], [ -58.718441, -34.548106 ], [ -58.717402, -34.54716 ], [ -58.71639, -34.546164 ], [ -58.71541, -34.545237 ], [ -58.714401, -34.544244 ], [ -58.714041, -34.54392 ], [ -58.713612, -34.543527 ], [ -58.712972, -34.542936 ], [ -58.712121, -34.542179 ], [ -58.71132, -34.541448 ], [ -58.710588, -34.540765 ], [ -58.709534, -34.539784 ], [ -58.708664, -34.538986 ], [ -58.707904, -34.538284 ], [ -58.707148, -34.53759 ], [ -58.705988, -34.536536 ], [ -58.704830999999899, -34.535462 ], [ -58.704327, -34.534987 ], [ -58.703356, -34.534062 ], [ -58.702451, -34.533209 ], [ -58.702202, -34.532972 ], [ -58.701511, -34.532673 ], [ -58.701336, -34.532784 ], [ -58.697736, -34.529446 ], [ -58.697565, -34.529285 ], [ -58.69677, -34.528524 ], [ -58.69672, -34.528478 ], [ -58.694554, -34.526447 ], [ -58.693988, -34.526145 ], [ -58.693633, -34.52608 ], [ -58.693199, -34.526133 ], [ -58.692729, -34.526554 ], [ -58.691493, -34.527627 ], [ -58.689339, -34.529533 ], [ -58.689255, -34.529606 ], [ -58.688595, -34.530179 ], [ -58.687957, -34.529701 ], [ -58.687683, -34.529498 ], [ -58.686961, -34.528989 ], [ -58.685215, -34.527708 ], [ -58.684069, -34.52692 ], [ -58.682865, -34.526063 ], [ -58.681823, -34.525329 ], [ -58.68088, -34.524667 ], [ -58.680055, -34.524078 ], [ -58.677995, -34.522671 ], [ -58.676826, -34.521826 ], [ -58.674241, -34.52018 ], [ -58.673173, -34.51949 ], [ -58.672172, -34.518841 ], [ -58.671246, -34.518197 ], [ -58.670371, -34.517633 ], [ -58.669591, -34.517077 ], [ -58.668717, -34.516517 ], [ -58.6679, -34.515934 ], [ -58.667038, -34.515458 ], [ -58.667, -34.515435 ], [ -58.666315, -34.514994 ], [ -58.665582, -34.51451 ], [ -58.664867, -34.514039 ], [ -58.664126, -34.513529 ], [ -58.663384, -34.513022 ], [ -58.66289, -34.512697 ], [ -58.662563, -34.512432 ], [ -58.66156, -34.511784 ], [ -58.660989, -34.5114 ], [ -58.660887, -34.511331 ], [ -58.658837, -34.509931 ], [ -58.657416, -34.508992 ], [ -58.657043, -34.508753 ], [ -58.65583, -34.507925 ], [ -58.65415, -34.506775 ], [ -58.652436, -34.505597 ], [ -58.652401, -34.505578 ], [ -58.651797, -34.505145 ], [ -58.651211, -34.504734 ], [ -58.650618, -34.50432 ], [ -58.649975, -34.503875 ], [ -58.649332999999899, -34.50343 ], [ -58.648424, -34.502825 ], [ -58.648144, -34.502824 ], [ -58.645141, -34.502791 ], [ -58.644032, -34.502832 ], [ -58.643963, -34.502344 ], [ -58.643922, -34.502049 ], [ -58.643754, -34.500763 ], [ -58.643247, -34.500506 ], [ -58.642214, -34.499927 ], [ -58.641158, -34.499361 ], [ -58.640109, -34.498809 ], [ -58.639025, -34.498228 ], [ -58.637942, -34.497668 ], [ -58.636909, -34.497111 ], [ -58.635868, -34.496527 ], [ -58.634822, -34.495983 ], [ -58.633744, -34.495392 ], [ -58.632739, -34.494843 ], [ -58.631756, -34.494291 ], [ -58.630786, -34.493805 ], [ -58.630516, -34.493643 ], [ -58.629817, -34.493269 ], [ -58.62882, -34.492722 ], [ -58.628081, -34.492321 ], [ -58.627867, -34.492198 ], [ -58.626837, -34.491646 ], [ -58.625896, -34.491147 ], [ -58.62561, -34.490985 ], [ -58.624857, -34.49059 ], [ -58.623881, -34.490061 ], [ -58.622916, -34.489548 ], [ -58.622114, -34.489128 ], [ -58.621929, -34.489012 ], [ -58.62141, -34.488757 ], [ -58.620608, -34.488294 ], [ -58.61936, -34.487633 ], [ -58.618279, -34.487104 ], [ -58.617095, -34.486575 ], [ -58.616065, -34.486062 ], [ -58.615822, -34.485926 ], [ -58.615457, -34.485728 ], [ -58.615238, -34.48571 ], [ -58.614406, -34.485258 ], [ -58.614114, -34.485109 ], [ -58.61401, -34.48505 ], [ -58.613842, -34.484905 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 174.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.574679234356047, -34.535999136364119 ], [ -58.575644642223857, -34.535223112472977 ], [ -58.57675265396972, -34.534335566795953 ], [ -58.577683886182818, -34.533542686623143 ], [ -58.578365413590006, -34.532941538646249 ], [ -58.578952807237712, -34.532408355902717 ], [ -58.579200624948783, -34.532149787259662 ], [ -58.579640339969821, -34.531686289817202 ], [ -58.580036825511499, -34.531254807269733 ], [ -58.580444771770772, -34.53075996480127 ], [ -58.580775651650313, -34.530326286699832 ], [ -58.581024496330848, -34.529998804237152 ], [ -58.581297184320732, -34.529605101022419 ], [ -58.581629178792532, -34.529115093930443 ], [ -58.581917588028453, -34.528641383146002 ], [ -58.582229206413757, -34.528082117447347 ], [ -58.58245154282195, -34.527621684880181 ], [ -58.582680023945137, -34.527168409666167 ], [ -58.582889620824098, -34.526672631817689 ], [ -58.583071116185863, -34.526256106859172 ], [ -58.583384936277518, -34.525559013763633 ], [ -58.583617672378217, -34.525037975343402 ], [ -58.5838322607447, -34.524475011498772 ], [ -58.584040849603262, -34.523975850088107 ], [ -58.584212642884467, -34.523570403066799 ], [ -58.584441873264083, -34.523061725987517 ], [ -58.58472865167893, -34.522408139254082 ], [ -58.585078058597283, -34.521587732370698 ], [ -58.5856238819037, -34.52037062668763 ], [ -58.586400654226182, -34.518585136930632 ], [ -58.586817151309091, -34.517645511853956 ], [ -58.587380799639163, -34.516243445123898 ], [ -58.588052371064343, -34.514776280623273 ], [ -58.588773127714241, -34.51312942018005 ], [ -58.589329508976761, -34.511856646128933 ], [ -58.589910762372917, -34.510522780814632 ], [ -58.590500392459788, -34.509202908408767 ], [ -58.590928324442693, -34.508179833270752 ], [ -58.591244117835423, -34.507430044541969 ], [ -58.59151064441923, -34.506859482806952 ], [ -58.591721835823073, -34.506349757779027 ], [ -58.592213069047958, -34.505205911601131 ], [ -58.592609091523073, -34.504327067580597 ], [ -58.592823371547581, -34.503852990817997 ], [ -58.593004087686772, -34.503388599618049 ], [ -58.594071893909323, -34.500942191176406 ], [ -58.594712997324933, -34.499455356510332 ], [ -58.594946926531193, -34.498885506601027 ], [ -58.595107322071982, -34.498423297809879 ], [ -58.595277063963287, -34.497862520054021 ], [ -58.595384675860878, -34.497381477243103 ], [ -58.59547485680767, -34.496813518527233 ], [ -58.595653602217432, -34.495856719902001 ], [ -58.595880038958377, -34.494695975028293 ], [ -58.59620969528163, -34.492984273812503 ], [ -58.596729159936807, -34.490268135964371 ], [ -58.596872357800493, -34.489763409413918 ], [ -58.597065415280397, -34.48909244335394 ], [ -58.597331796255403, -34.48831944921703 ], [ -58.597534101584948, -34.487801260830949 ], [ -58.597763911783758, -34.487234152388538 ], [ -58.59808326773441, -34.486615874859233 ], [ -58.5982673234872, -34.486244124253879 ], [ -58.598537814574591, -34.485723529392551 ], [ -58.598937315762797, -34.485085039803991 ], [ -58.599307718265003, -34.484523357403617 ], [ -58.599743941459309, -34.483970020999493 ], [ -58.600241656352097, -34.483274765488879 ], [ -58.600901021008909, -34.482415856060683 ], [ -58.601708778616569, -34.481318876905704 ], [ -58.60298788288285, -34.479584787990888 ], [ -58.603764793689493, -34.478490677402171 ], [ -58.605493289241757, -34.476151279004313 ], [ -58.606437515380733, -34.474783096782808 ], [ -58.606937630213743, -34.474032150510837 ], [ -58.607425114509212, -34.473283341625617 ], [ -58.608009769033103, -34.472329831098421 ], [ -58.608577297349314, -34.471401407133172 ], [ -58.609211158842818, -34.470385130757514 ], [ -58.60999982548185, -34.46912537166677 ], [ -58.610802722362557, -34.46782170099398 ], [ -58.612804104098451, -34.464592054485543 ], [ -58.614325419659622, -34.462111027037977 ], [ -58.615722106555957, -34.459901473128653 ], [ -58.616280777922753, -34.459124968574429 ], [ -58.61685964157914, -34.458422734970718 ], [ -58.61746353637497, -34.457820829552666 ], [ -58.618132996508614, -34.457211884073203 ], [ -58.618849439625407, -34.456658528626612 ], [ -58.61961408961195, -34.456156671052923 ], [ -58.620595905027521, -34.455522268337958 ], [ -58.621750199835319, -34.454776126732362 ], [ -58.623981900651557, -34.45331289827147 ], [ -58.62729509091524, -34.451148218548553 ], [ -58.63269494256464, -34.447644750506583 ], [ -58.63660673758055, -34.445083075694377 ], [ -58.64006385834282, -34.442872612247911 ], [ -58.656536969706274, -34.432206248012257 ], [ -58.657776016117843, -34.43135791715676 ], [ -58.658667264254568, -34.430719729194507 ], [ -58.659398062484712, -34.430096067228618 ], [ -58.660127738918497, -34.429450180592589 ], [ -58.660898746403021, -34.428784730990351 ], [ -58.662291273734809, -34.427535601391057 ], [ -58.663896736856131, -34.426107877944538 ], [ -58.666389743377252, -34.42387992823263 ], [ -58.670908216594441, -34.419878397960112 ], [ -58.675023888993643, -34.416245125808601 ], [ -58.676772965234854, -34.414670145662889 ], [ -58.677883327942872, -34.413772982418742 ], [ -58.678692309192272, -34.413192679949852 ], [ -58.679554983943348, -34.412591069753169 ], [ -58.681752267246473, -34.411157876257867 ], [ -58.68536740313948, -34.408767474047472 ], [ -58.689278109873101, -34.406470163569537 ], [ -58.692321886809822, -34.404853838005693 ], [ -58.713742740733608, -34.393294965448703 ], [ -58.714713521161329, -34.392750844576447 ], [ -58.715575601288911, -34.392264601357283 ], [ -58.716314266083707, -34.391886672165448 ], [ -58.717177941440767, -34.391461252856011 ], [ -58.718143890166523, -34.391023204706052 ], [ -58.719055510439212, -34.390638958425463 ], [ -58.720079262162862, -34.390189873607113 ], [ -58.722586201375229, -34.389090426037093 ], [ -58.724493274228671, -34.388255622177262 ], [ -58.725575078582857, -34.387786452265971 ], [ -58.72651701718182, -34.387359031463632 ], [ -58.727316277947793, -34.386988134089499 ], [ -58.729265600751553, -34.386138548868892 ], [ -58.731592650140392, -34.385110355277213 ], [ -58.73367094039304, -34.38417744250922 ], [ -58.736693460268711, -34.382832679415841 ], [ -58.740654112356687, -34.381099229011006 ], [ -58.742942613727372, -34.380085145632428 ], [ -58.74501993234545, -34.379173232837552 ], [ -58.75339627872043, -34.375724383493072 ], [ -58.757341192413847, -34.374174627392811 ], [ -58.760413108150523, -34.37297971863903 ], [ -58.76268892443008, -34.372109171202219 ], [ -58.763685173629732, -34.371675168245787 ], [ -58.764589137606123, -34.371231893989197 ], [ -58.765373511765148, -34.370803884677848 ], [ -58.766091264076699, -34.370372275882318 ], [ -58.766658558269732, -34.369952282522227 ], [ -58.767633188241241, -34.369268435234872 ], [ -58.76892764156436, -34.368328450653948 ], [ -58.771916441003683, -34.366200627409611 ], [ -58.774208376479727, -34.364557269292419 ], [ -58.775816939781379, -34.363404656869612 ], [ -58.777277913998169, -34.362348310333843 ], [ -58.780648941823912, -34.359961191620407 ], [ -58.78428327481064, -34.357346198458323 ], [ -58.78694204399212, -34.355454135258832 ], [ -58.788394378939643, -34.354416508347533 ], [ -58.789626584171778, -34.353564426410067 ], [ -58.790450895967687, -34.352933920280947 ], [ -58.791236675523621, -34.352370924834872 ], [ -58.793282367395179, -34.350893256334821 ], [ -58.794550371619842, -34.349986870895577 ], [ -58.795117640393848, -34.34959161173991 ], [ -58.795778741975468, -34.349130972154342 ], [ -58.802443331693489, -34.344391421978273 ], [ -58.805776570969421, -34.342008225382557 ], [ -58.809038605101271, -34.339682018814067 ], [ -58.811288019032617, -34.338070452737377 ], [ -58.815882312390187, -34.334796274654799 ], [ -58.819316159821128, -34.332337279251931 ], [ -58.82416493738954, -34.328871350483389 ], [ -58.825758710234354, -34.327729596805341 ], [ -58.838673617844542, -34.318509524524274 ], [ -58.843958553057973, -34.314726724794781 ], [ -58.84462707255409, -34.314247108050139 ], [ -58.845425130391988, -34.313753847437553 ], [ -58.846365437424623, -34.313228792286857 ], [ -58.847944521092607, -34.312336123679842 ], [ -58.85117267698908, -34.310531956015367 ], [ -58.871557293995792, -34.299163320602702 ], [ -58.87965096827466, -34.294666377696821 ], [ -58.881050042587667, -34.293825970448538 ], [ -58.882866592790393, -34.292657771425532 ], [ -58.883671773316557, -34.292147263076899 ], [ -58.884667895510212, -34.291410260744676 ], [ -58.885624995124509, -34.290595914973302 ], [ -58.886765509520039, -34.28946693734035 ], [ -58.887589401066542, -34.288452961642847 ], [ -58.888167009729642, -34.287570190339181 ], [ -58.888808916555753, -34.286442321440433 ], [ -58.88933296877741, -34.285279661671851 ], [ -58.889708299958677, -34.284164896592209 ], [ -58.889854969986708, -34.283435190530923 ], [ -58.89000980942717, -34.28239013576512 ], [ -58.890074788675989, -34.281307336084652 ], [ -58.890362859954472, -34.277393977806852 ], [ -58.891826878253553, -34.258685451764421 ], [ -58.891895286150458, -34.25766731559407 ], [ -58.891982068482307, -34.256894886756257 ], [ -58.892094416294682, -34.256073413525392 ], [ -58.892232717025202, -34.255298521431207 ], [ -58.892426321739151, -34.254499030431667 ], [ -58.892657929025603, -34.253618845252731 ], [ -58.893032451299518, -34.25229321856181 ], [ -58.893769391046192, -34.249731592514927 ], [ -58.893972314314489, -34.248924147030152 ], [ -58.894092489737297, -34.248199638774913 ], [ -58.89420119423508, -34.247345606418278 ], [ -58.894284139345409, -34.246282730221992 ], [ -58.89430280211554, -34.243354754733467 ], [ -58.894428336992213, -34.232502743142113 ], [ -58.8944326085768, -34.23162043589479 ], [ -58.894466939278118, -34.230728485842917 ], [ -58.894505281956938, -34.229988187788692 ], [ -58.894600546515349, -34.229232538673926 ], [ -58.894775599038852, -34.228349286689372 ], [ -58.894948427224342, -34.227612259106358 ], [ -58.895164222138618, -34.226797804360373 ], [ -58.89547049721088, -34.225790439173608 ], [ -58.89609633055332, -34.22378432437084 ], [ -58.89706188597043, -34.22045905444056 ], [ -58.897619961224592, -34.218677067076413 ], [ -58.898089889687277, -34.217479951723142 ], [ -58.89860294302369, -34.216335708905461 ], [ -58.899181885199027, -34.215080668391053 ], [ -58.900093569100122, -34.213125038498291 ], [ -58.900753197118227, -34.211827636568408 ], [ -58.90120722381149, -34.211075330114049 ], [ -58.901759016249557, -34.21025142720962 ], [ -58.902570310924041, -34.209232011486733 ], [ -58.903302208196578, -34.208376852065342 ], [ -58.904059944323649, -34.207625752245349 ], [ -58.90593487012255, -34.205693834720229 ], [ -58.90659831960258, -34.204921718082922 ], [ -58.907294415178448, -34.204007307587553 ], [ -58.907753682657997, -34.203314638329807 ], [ -58.908358279303691, -34.202272687449167 ], [ -58.908762319010201, -34.201513197413028 ], [ -58.909314856498767, -34.200323233867707 ], [ -58.909933434331514, -34.198899859198683 ], [ -58.910448123703183, -34.19798960150441 ], [ -58.911171607317492, -34.197039045450147 ], [ -58.911900164570369, -34.196300579557651 ], [ -58.91273220114212, -34.195591287478493 ], [ -58.913529410279352, -34.195053805740997 ], [ -58.914368034048621, -34.194581180070038 ], [ -58.915009957573197, -34.1942753456701 ], [ -58.915842470786629, -34.193951523512069 ], [ -58.916878240773762, -34.19360250287518 ], [ -58.919271341342551, -34.192775232364149 ], [ -58.920244103247917, -34.192424805531758 ], [ -58.92117538563506, -34.192020902581874 ], [ -58.92186374680459, -34.191719935593262 ], [ -58.925243549121433, -34.190096818795553 ], [ -58.925854757551548, -34.189782252334354 ], [ -58.926838031659422, -34.189215163541519 ], [ -58.927641501308948, -34.18865741144009 ], [ -58.928248148814873, -34.188169256171527 ], [ -58.929010433793692, -34.187469064164183 ], [ -58.929606119008568, -34.186837407944942 ], [ -58.93030474087368, -34.185924753008642 ], [ -58.931023915205742, -34.184857001005881 ], [ -58.932750345386182, -34.182100200834491 ], [ -58.935097663439443, -34.178449393101701 ], [ -58.935788399370303, -34.177360944815092 ], [ -58.936249960036797, -34.176674244351062 ], [ -58.936798254679751, -34.175965142088572 ], [ -58.937394358371122, -34.175307114346253 ], [ -58.937957950645249, -34.174765433950093 ], [ -58.938758157270868, -34.174070022140477 ], [ -58.941176359385331, -34.172154131247062 ], [ -58.945772032331682, -34.168546198356253 ], [ -58.94672241032989, -34.167722821590772 ], [ -58.947484563205101, -34.166995068882123 ], [ -58.94809779893739, -34.166362317398153 ], [ -58.948744754511083, -34.165584471450323 ], [ -58.949329026886993, -34.16473615263844 ], [ -58.950137232067583, -34.163366102911993 ], [ -58.952176181826047, -34.160131697282182 ], [ -58.952870099067681, -34.159060129373387 ], [ -58.953152002393672, -34.158602949514012 ], [ -58.953497774020043, -34.15820118301427 ], [ -58.95395836709762, -34.157790262763733 ], [ -58.954440551808759, -34.157458134589142 ], [ -58.954960598826972, -34.157211234493303 ], [ -58.955574605792002, -34.157056436873852 ], [ -58.956273318995152, -34.156927178777018 ], [ -58.957502532681517, -34.156826056150408 ], [ -58.96255700204631, -34.156474602770423 ], [ -58.963287241138161, -34.15644784623121 ], [ -58.963815534350978, -34.15648757387293 ], [ -58.964193187508101, -34.156545966819763 ], [ -58.964737087991757, -34.156680978768449 ], [ -58.97814345913536, -34.160502746406273 ], [ -58.978656449232581, -34.160640594296382 ], [ -58.979182511750892, -34.160758846134662 ], [ -58.979724841923712, -34.160864550625668 ], [ -58.980327861527499, -34.160924705831953 ], [ -58.980930424567859, -34.160939835183747 ], [ -58.981542875841299, -34.160926455867049 ], [ -58.982113049389959, -34.160890802751943 ], [ -58.982609694066113, -34.16082507495603 ], [ -58.98329833874584, -34.16072742311357 ], [ -58.984331624057099, -34.16047980050341 ], [ -58.985085351017283, -34.160237747323769 ], [ -58.986001355197203, -34.159856018546918 ], [ -58.987126883440631, -34.159286152975902 ], [ -58.989265149130837, -34.158080712660393 ], [ -59.002390736022747, -34.150818189200017 ], [ -59.007259670401581, -34.148151737906353 ], [ -59.01136052689516, -34.145912987151398 ], [ -59.020546394611131, -34.140895770676167 ], [ -59.021382031552143, -34.140394495811549 ], [ -59.022305653479002, -34.139749981406702 ], [ -59.02309983044767, -34.139129288280593 ], [ -59.024093776713393, -34.138278902091848 ], [ -59.024904377770959, -34.137559487894528 ], [ -59.025834979504751, -34.1367007850344 ], [ -59.029367903709989, -34.133399739266821 ], [ -59.034448439927672, -34.128797899157853 ], [ -59.035316634150959, -34.128006392384293 ], [ -59.036295423770802, -34.127127359526497 ], [ -59.037065515132909, -34.126347963984472 ], [ -59.037799396844832, -34.125451851541413 ], [ -59.038343283083229, -34.124558709286212 ], [ -59.038567816059391, -34.124037220500078 ], [ -59.038881475084281, -34.123242188080148 ], [ -59.039080778264257, -34.122442495362357 ], [ -59.039181583738433, -34.121980854244541 ], [ -59.039245579330242, -34.121187915385939 ], [ -59.039245825301983, -34.120483995097693 ], [ -59.039180646033422, -34.119878281009527 ], [ -59.039038308159903, -34.119181190525723 ], [ -59.038859574367812, -34.118533270942237 ], [ -59.03859183033299, -34.117775771064252 ], [ -59.037839381355518, -34.115716758811708 ], [ -59.03573184962481, -34.109767187479193 ], [ -59.034903544872492, -34.107465392037632 ], [ -59.03469373683447, -34.106742464620147 ], [ -59.034540676567943, -34.106020228751092 ], [ -59.034484176205972, -34.105473245592989 ], [ -59.034460732656861, -34.105142804446437 ], [ -59.034481087517477, -34.104501689467277 ], [ -59.034519824598313, -34.103915796035579 ], [ -59.03463647751289, -34.103285020791837 ], [ -59.034838426326139, -34.102551002024818 ], [ -59.035087119596419, -34.101893172823161 ], [ -59.035328016799809, -34.101381862021213 ], [ -59.035581466817078, -34.100903846481103 ], [ -59.035954190839938, -34.10034125035002 ], [ -59.03654578445002, -34.099610174873952 ], [ -59.039070023159759, -34.096250907771157 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 171.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.378361999606568, -34.628844000050492 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389479999702189, -34.626739000104749 ], [ -58.39119699974168, -34.627039000449486 ], [ -58.391239999926029, -34.6263100001064 ], [ -58.391325000248514, -34.625237000087452 ], [ -58.391432999833057, -34.623992000230601 ], [ -58.391453999902126, -34.623498999978835 ], [ -58.391497000086417, -34.622726000304624 ], [ -58.391562000385989, -34.621545999847967 ], [ -58.391625999740029, -34.620215999668631 ], [ -58.391668999924377, -34.619100000364654 ], [ -58.391689999993446, -34.618112999815025 ], [ -58.391689999993446, -34.616911000142522 ], [ -58.391646999809154, -34.61570999961674 ], [ -58.391689999993446, -34.614936999942529 ], [ -58.391712000108669, -34.613821999785443 ], [ -58.39175500029296, -34.612684000366301 ], [ -58.391818999647057, -34.611503999909644 ], [ -58.391839999716183, -34.610345000421376 ], [ -58.391497000086417, -34.610281000167959 ], [ -58.391111000272417, -34.61026000009889 ], [ -58.390424000067526, -34.610237999983667 ], [ -58.389050999703841, -34.610109000330056 ], [ -58.387548999686544, -34.610022999961416 ], [ -58.387420000032932, -34.609958999707999 ], [ -58.387270000310252, -34.609765999801027 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.388252999776057, -34.609102999803554 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.394865999865942, -34.609401000056039 ], [ -58.396282000413919, -34.609508999640582 ], [ -58.397569999555799, -34.60961600007829 ], [ -58.399114999757387, -34.609722999616679 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.401818000300409, -34.609895000353958 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.404586000243683, -34.610066000145764 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.411731999731956, -34.610560000443627 ], [ -58.413105000095641, -34.610645999912947 ], [ -58.4144570003902, -34.610753000350655 ], [ -58.415765999601149, -34.610859999889044 ], [ -58.417288999687571, -34.610925000188558 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.419929000023274, -34.60970200044693 ], [ -58.420056999630788, -34.608520999944176 ], [ -58.419971000161468, -34.607255000018199 ], [ -58.419929000023274, -34.606676000297114 ], [ -58.419885999838982, -34.606011000207445 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.419649999747662, -34.604358999568149 ], [ -58.419521000094051, -34.603328999733492 ], [ -58.419328000187022, -34.602040999692349 ], [ -58.419177999564965, -34.600840000065887 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.42222499978385, -34.600560999790275 ], [ -58.423768999939341, -34.600410000021441 ], [ -58.425314000140929, -34.600260000298704 ], [ -58.426751999904809, -34.600109999676704 ], [ -58.428210999737814, -34.599981000023092 ], [ -58.429734999870334, -34.599831000300355 ], [ -58.430184999937751, -34.599767000046995 ], [ -58.431043999980602, -34.600774999766372 ], [ -58.431108000233962, -34.600861000135012 ], [ -58.431865000069649, -34.601725999555185 ], [ -58.432545999997842, -34.601054000042041 ], [ -58.433296999556831, -34.600173999930121 ], [ -58.434069000084264, -34.599338000048647 ], [ -58.435142000103156, -34.600024000207384 ], [ -58.436600999936161, -34.598457999936727 ], [ -58.43836100016, -34.596591000174499 ], [ -58.440012999899977, -34.594809999881534 ], [ -58.440849999827606, -34.593951999884837 ], [ -58.441729999939525, -34.59300800041882 ], [ -58.442631000120514, -34.592041999938317 ], [ -58.443296000210182, -34.591269000264106 ], [ -58.443574999586531, -34.590991000034592 ], [ -58.444154000206879, -34.590433000382632 ], [ -58.445076999603828, -34.589595999555684 ], [ -58.445999999900039, -34.588652000089667 ], [ -58.448123999822712, -34.587793000046872 ], [ -58.449153999657312, -34.587364000048524 ], [ -58.450226999676261, -34.586935000050175 ], [ -58.45181500006214, -34.586334000213867 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.454966999727219, -34.586917000119399 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.454616999774657, -34.586181000352838 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.451214000225889, -34.582901000180982 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.449990999584941, -34.580862999727628 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.452115000406877, -34.58011200016864 ], [ -58.453037999803826, -34.579832999892972 ], [ -58.453531000055591, -34.579661000055069 ], [ -58.454862000281025, -34.579209999941497 ], [ -58.455977000438168, -34.578888000380857 ], [ -58.457222000295019, -34.57858800003612 ], [ -58.45735099994863, -34.578544999851829 ], [ -58.458016000038356, -34.578395000129092 ], [ -58.458509000290064, -34.5783519999448 ], [ -58.459689999893556, -34.578308999760509 ], [ -58.460226000329612, -34.578287999691383 ], [ -58.460568999959321, -34.578287999691383 ], [ -58.461813999816172, -34.578265999576161 ], [ -58.463230000364206, -34.578373000013869 ], [ -58.464689000197154, -34.578694999574509 ], [ -58.466062999707617, -34.579017000034469 ], [ -58.466683999566897, -34.57914599968808 ], [ -58.467177999864759, -34.579039000149692 ], [ -58.468337000252347, -34.578803000058372 ], [ -58.468636999697765, -34.578737999758857 ], [ -58.469473999625336, -34.578544999851829 ], [ -58.470353999737256, -34.578373000013869 ], [ -58.470869000104244, -34.578265999576161 ], [ -58.471298000102593, -34.578180000106897 ], [ -58.472157000145387, -34.577987000199869 ], [ -58.473550999678878, -34.577643999670784 ], [ -58.473786999770198, -34.577601000385812 ], [ -58.475590000178329, -34.577172000387463 ], [ -58.476576999828637, -34.576464000113447 ], [ -58.477434999825334, -34.575841000161972 ], [ -58.478035999661643, -34.575391000094555 ], [ -58.478700999751311, -34.574918999911858 ], [ -58.479730999585911, -34.57416800035287 ], [ -58.480674999951248, -34.573503000263202 ], [ -58.481641000431807, -34.57272999968967 ], [ -58.48252099964435, -34.572085999669127 ], [ -58.484236999637801, -34.573073000218756 ], [ -58.485482000393972, -34.573802999708619 ], [ -58.486382999675641, -34.574318000075607 ], [ -58.487327000040978, -34.574833000442595 ], [ -58.488335999806509, -34.575412000163624 ], [ -58.488785999873926, -34.575670000370167 ], [ -58.489858999892874, -34.576313000344669 ], [ -58.490931999911822, -34.576936000296143 ], [ -58.492004999930771, -34.577579000270589 ], [ -58.493055999834496, -34.578180000106897 ], [ -58.494536999782667, -34.579039000149692 ], [ -58.495180999803267, -34.579424999963749 ], [ -58.495351999595073, -34.579446000032817 ], [ -58.495524000332296, -34.579446000032817 ], [ -58.495866999962061, -34.579682000124137 ], [ -58.496983000165301, -34.580369000329085 ], [ -58.498141999653512, -34.581098999818948 ], [ -58.499278999925878, -34.581763999908617 ], [ -58.500395000129117, -34.582450000067411 ], [ -58.501188999872397, -34.581614000185937 ], [ -58.5018319998469, -34.5808200004426 ], [ -58.502991000234431, -34.581548999886365 ], [ -58.504170999791768, -34.582236000091314 ], [ -58.505265999925939, -34.582922000250051 ], [ -58.505866999762191, -34.58333000017933 ], [ -58.506509999736636, -34.583715999993387 ], [ -58.507196999941527, -34.584146000037833 ], [ -58.507840999962127, -34.584552999920959 ], [ -58.508506000051796, -34.584960999850239 ], [ -58.509171000141521, -34.585368999779462 ], [ -58.509900999631384, -34.585818999846936 ], [ -58.510501000320858, -34.586183999591867 ], [ -58.511831999647029, -34.586999000303592 ], [ -58.512753999897143, -34.587579000070775 ], [ -58.513183999941589, -34.587836000231164 ], [ -58.513849000031314, -34.588244000160444 ], [ -58.514514000120982, -34.588652000089667 ], [ -58.51528599974904, -34.589124000272363 ], [ -58.516037000207348, -34.589595999555684 ], [ -58.516681000227948, -34.590003000338129 ], [ -58.517947000153868, -34.589638999739975 ], [ -58.518268999714508, -34.589553000270712 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 170.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.642643, -34.652532 ], [ -58.642679, -34.652736 ], [ -58.642988, -34.653905 ], [ -58.643396, -34.655083 ], [ -58.643681, -34.656291 ], [ -58.643978, -34.657476 ], [ -58.644581, -34.657356 ], [ -58.645953, -34.656996 ], [ -58.646608, -34.65696 ], [ -58.646939, -34.656899 ], [ -58.648055, -34.656569 ], [ -58.650313, -34.656213 ], [ -58.652053, -34.655895 ], [ -58.652621, -34.655792 ], [ -58.652987, -34.655714 ], [ -58.655104, -34.65632 ], [ -58.655876, -34.65656 ], [ -58.656244999999899, -34.656674 ], [ -58.658524, -34.657386 ], [ -58.659589, -34.657765 ], [ -58.660411, -34.65799 ], [ -58.661458, -34.65831 ], [ -58.662859, -34.658748 ], [ -58.664271, -34.659246 ], [ -58.665677, -34.659679 ], [ -58.665761, -34.659741 ], [ -58.667003, -34.660183 ], [ -58.667109, -34.660167 ], [ -58.666765, -34.661014 ], [ -58.665288, -34.660538 ], [ -58.663866, -34.660089 ], [ -58.66346, -34.660959 ], [ -58.66308, -34.661876 ], [ -58.66266, -34.66272 ], [ -58.662231, -34.663604 ], [ -58.662002, -34.664204 ], [ -58.662053, -34.664406 ], [ -58.662365, -34.665741 ], [ -58.662563, -34.666544 ], [ -58.662825, -34.667563 ], [ -58.663105, -34.668643 ], [ -58.663177, -34.6689 ], [ -58.663367, -34.66955 ], [ -58.663519, -34.670082 ], [ -58.663626, -34.670477 ], [ -58.663884, -34.671463 ], [ -58.664161, -34.672618 ], [ -58.664535, -34.674332 ], [ -58.664649, -34.674816 ], [ -58.664728, -34.675154 ], [ -58.665167, -34.676914 ], [ -58.665189, -34.67703 ], [ -58.665234, -34.677195 ], [ -58.665497, -34.678149 ], [ -58.665714, -34.679086 ], [ -58.66573, -34.679144 ], [ -58.665838, -34.679575 ], [ -58.666064, -34.68052 ], [ -58.666182, -34.680994 ], [ -58.666283, -34.68139 ], [ -58.666385, -34.681793 ], [ -58.666403, -34.681884 ], [ -58.666535, -34.682399 ], [ -58.66518, -34.682665 ], [ -58.664104, -34.682874 ], [ -58.662976, -34.683091 ], [ -58.661826, -34.68332 ], [ -58.662, -34.683991 ], [ -58.662155, -34.684664 ], [ -58.662303, -34.685329 ], [ -58.662496, -34.685999 ], [ -58.662657, -34.686674 ], [ -58.66281, -34.687362 ], [ -58.663048, -34.688156 ], [ -58.663212, -34.688928 ], [ -58.663288, -34.689175 ], [ -58.663346, -34.689512 ], [ -58.663748, -34.69096 ], [ -58.663967, -34.691671 ], [ -58.664261, -34.69261 ], [ -58.664586, -34.69367 ], [ -58.664884, -34.694624 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 169.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.526408, -34.639138 ], [ -58.527074, -34.63919 ], [ -58.527601, -34.639247 ], [ -58.527719, -34.639247 ], [ -58.527834, -34.63926 ], [ -58.528797, -34.639344 ], [ -58.52886, -34.639305 ], [ -58.528967, -34.639283 ], [ -58.529281, -34.639318 ], [ -58.529437, -34.639346 ], [ -58.529539, -34.639356 ], [ -58.529699, -34.639375 ], [ -58.529878, -34.639431 ], [ -58.530144, -34.639449 ], [ -58.531104, -34.639471 ], [ -58.53219, -34.639557 ], [ -58.5333, -34.63964 ], [ -58.534985, -34.639771 ], [ -58.535833, -34.639824 ], [ -58.537258, -34.639947 ], [ -58.538622, -34.640041 ], [ -58.539207, -34.640114 ], [ -58.540009, -34.640141 ], [ -58.54141, -34.640184 ], [ -58.542854, -34.64021 ], [ -58.543511, -34.640208 ], [ -58.544079, -34.64019 ], [ -58.544715, -34.640168 ], [ -58.545142, -34.640156 ], [ -58.546276, -34.64013 ], [ -58.548863, -34.640062 ], [ -58.54945, -34.640044 ], [ -58.551081, -34.639988 ], [ -58.552669, -34.639942 ], [ -58.553205, -34.639953 ], [ -58.554241, -34.639973 ], [ -58.555957, -34.639909 ], [ -58.557236, -34.639889 ], [ -58.558691, -34.63989 ], [ -58.560129, -34.640048 ], [ -58.560987, -34.64013 ], [ -58.561598, -34.640219 ], [ -58.563082, -34.640459 ], [ -58.564255, -34.640663 ], [ -58.565736, -34.640903 ], [ -58.567301, -34.641127 ], [ -58.568685, -34.641368 ], [ -58.570215, -34.641588 ], [ -58.571667, -34.641814 ], [ -58.573175, -34.642066 ], [ -58.574609, -34.642276 ], [ -58.57607, -34.642483 ], [ -58.5775, -34.642689 ], [ -58.578972, -34.642924 ], [ -58.580393, -34.643123 ], [ -58.581865, -34.64337 ], [ -58.581972, -34.64345 ], [ -58.583318, -34.643668 ], [ -58.584113, -34.64378 ], [ -58.585014, -34.643918 ], [ -58.585295, -34.643971 ], [ -58.586066, -34.644075 ], [ -58.587156, -34.644206 ], [ -58.588235, -34.644345 ], [ -58.589342, -34.644484 ], [ -58.590255, -34.644601 ], [ -58.590675, -34.64548 ], [ -58.590836, -34.645752 ], [ -58.591007, -34.645789 ], [ -58.591743, -34.645875 ], [ -58.592549, -34.645974 ], [ -58.593211, -34.646052 ], [ -58.593992, -34.646137 ], [ -58.594711, -34.646227 ], [ -58.59701, -34.646497 ], [ -58.598607999999899, -34.646695 ], [ -58.600016, -34.646859 ], [ -58.600687, -34.646937 ], [ -58.601939, -34.647087 ], [ -58.603353, -34.647259 ], [ -58.6044, -34.647371 ], [ -58.60568, -34.64752 ], [ -58.607003, -34.647684 ], [ -58.607931, -34.647797 ], [ -58.609462, -34.648198 ], [ -58.610214, -34.648366 ], [ -58.610504, -34.648435 ], [ -58.610993, -34.648554 ], [ -58.611221, -34.648607 ], [ -58.612072, -34.648803 ], [ -58.612497, -34.64892 ], [ -58.613997, -34.649285 ], [ -58.614039, -34.649289 ], [ -58.615008, -34.6493 ], [ -58.616176, -34.649302 ], [ -58.61735, -34.649283 ], [ -58.618501, -34.649258 ], [ -58.619143, -34.649255 ], [ -58.619815, -34.649251 ], [ -58.621112, -34.649217 ], [ -58.622636, -34.649193 ], [ -58.622667, -34.650408 ], [ -58.622677, -34.650851 ], [ -58.622695, -34.651649 ], [ -58.62272, -34.65291 ], [ -58.622737, -34.653838 ], [ -58.622757, -34.654752 ], [ -58.622776, -34.655876 ], [ -58.622797, -34.65657 ], [ -58.622796, -34.657137 ], [ -58.622793, -34.658381 ], [ -58.622828, -34.659364 ], [ -58.622837, -34.660485 ], [ -58.624481, -34.660515 ], [ -58.625329, -34.660519 ], [ -58.625497, -34.66052 ], [ -58.626638, -34.660535 ], [ -58.627772, -34.66052 ], [ -58.628903, -34.660521 ], [ -58.629447, -34.660466 ], [ -58.629512, -34.660454 ], [ -58.630047, -34.660297 ], [ -58.630894, -34.660093 ], [ -58.632257, -34.659798 ], [ -58.633246, -34.659572 ], [ -58.634331, -34.659355 ], [ -58.634577, -34.659306 ], [ -58.635151, -34.659183 ], [ -58.635807, -34.659058 ], [ -58.636499999999899, -34.658929 ], [ -58.637529, -34.658756 ], [ -58.638513, -34.658542 ], [ -58.638478, -34.658391 ], [ -58.637517, -34.657618 ], [ -58.637216, -34.657363 ], [ -58.636031, -34.656369 ], [ -58.635941, -34.656007 ], [ -58.635868, -34.655747 ], [ -58.635784, -34.655446 ], [ -58.635675, -34.655114 ], [ -58.636283, -34.653785 ], [ -58.636416, -34.653476 ], [ -58.636857, -34.652398 ], [ -58.637546, -34.652281 ], [ -58.637953, -34.652213 ], [ -58.638991, -34.652044 ], [ -58.640475, -34.651787 ], [ -58.640718, -34.651916 ], [ -58.642643, -34.652532 ], [ -58.642679, -34.652736 ], [ -58.642988, -34.653905 ], [ -58.643396, -34.655083 ], [ -58.643681, -34.656291 ], [ -58.643978, -34.657476 ], [ -58.644581, -34.657356 ], [ -58.645953, -34.656996 ], [ -58.646608, -34.65696 ], [ -58.646939, -34.656899 ], [ -58.648055, -34.656569 ], [ -58.650313, -34.656213 ], [ -58.652053, -34.655895 ], [ -58.652621, -34.655792 ], [ -58.652987, -34.655714 ], [ -58.655104, -34.65632 ], [ -58.655876, -34.65656 ], [ -58.656244999999899, -34.656674 ], [ -58.658524, -34.657386 ], [ -58.659589, -34.657765 ], [ -58.660411, -34.65799 ], [ -58.661458, -34.65831 ], [ -58.662859, -34.658748 ], [ -58.664271, -34.659246 ], [ -58.665677, -34.659679 ], [ -58.665761, -34.659741 ], [ -58.667003, -34.660183 ], [ -58.667109, -34.660167 ], [ -58.668596, -34.66056 ], [ -58.669994, -34.661028 ], [ -58.670941, -34.661321 ], [ -58.671398, -34.661432 ], [ -58.671029, -34.662337 ], [ -58.67064, -34.663192 ], [ -58.670235, -34.664081 ], [ -58.669831, -34.664974 ], [ -58.669427, -34.665847 ], [ -58.6705, -34.666214 ], [ -58.670579, -34.666258 ], [ -58.671477, -34.667009 ], [ -58.672184, -34.667596 ], [ -58.673346, -34.668649 ], [ -58.674422, -34.66942 ], [ -58.675259, -34.670142 ], [ -58.676105, -34.67084 ], [ -58.675244, -34.671551 ], [ -58.674383, -34.672263 ], [ -58.673498, -34.672991 ], [ -58.672495, -34.673819 ], [ -58.671743, -34.674439 ], [ -58.671045, -34.675019 ], [ -58.67026, -34.675657 ], [ -58.66963, -34.676185 ], [ -58.668913, -34.676774 ], [ -58.668042, -34.677501 ], [ -58.668902, -34.678171 ], [ -58.66992, -34.678967 ], [ -58.670914, -34.679758 ], [ -58.671929, -34.68055 ], [ -58.672877, -34.681327 ], [ -58.674275, -34.681444 ], [ -58.675401, -34.681555 ], [ -58.675664, -34.681578 ], [ -58.676954, -34.681706 ], [ -58.678035, -34.681826 ], [ -58.679245, -34.681942 ], [ -58.680204, -34.682035 ], [ -58.68052, -34.682115 ], [ -58.681116, -34.682667 ], [ -58.681319, -34.682861 ], [ -58.681715, -34.683215 ], [ -58.682334, -34.683786 ], [ -58.682494, -34.683966 ], [ -58.682948, -34.684354 ], [ -58.683503, -34.684865 ], [ -58.683983, -34.685226 ], [ -58.684579, -34.685755 ], [ -58.684743, -34.685923 ], [ -58.685232, -34.686342 ], [ -58.685587, -34.686739 ], [ -58.685835, -34.686941 ], [ -58.686393, -34.687516 ], [ -58.686844, -34.687927 ], [ -58.68759, -34.68869 ], [ -58.688309, -34.689365 ], [ -58.688932, -34.689955 ], [ -58.689605, -34.690591 ], [ -58.690281, -34.691235 ], [ -58.690988, -34.691895 ], [ -58.691609, -34.6926 ], [ -58.691793, -34.692763 ], [ -58.69258, -34.693095 ], [ -58.694023999999899, -34.69476 ], [ -58.694544, -34.695354 ], [ -58.695133, -34.695888 ], [ -58.695518, -34.696253 ], [ -58.694379, -34.697088 ], [ -58.693316, -34.697867 ], [ -58.692276, -34.698633 ], [ -58.691344, -34.697768 ], [ -58.690634, -34.697102 ], [ -58.689919, -34.696438 ], [ -58.688864, -34.697207 ], [ -58.687802, -34.697985 ], [ -58.686738, -34.698763 ], [ -58.68592, -34.69936 ], [ -58.685098, -34.699966 ], [ -58.684497, -34.7004 ], [ -58.684355, -34.700426 ], [ -58.683275, -34.701227 ], [ -58.682558, -34.701744 ], [ -58.681745, -34.70234 ], [ -58.680968, -34.702917 ], [ -58.680238, -34.70346 ], [ -58.680223, -34.703467 ], [ -58.679435, -34.704025 ], [ -58.67878, -34.704484 ], [ -58.678757, -34.704503 ], [ -58.678003, -34.705015 ], [ -58.677226, -34.705535 ], [ -58.67643, -34.70607 ], [ -58.675662, -34.706582 ], [ -58.675353, -34.7068 ], [ -58.674493, -34.706449 ], [ -58.673698, -34.706143 ], [ -58.672567, -34.705693 ], [ -58.671496, -34.705262 ], [ -58.670636, -34.705022 ], [ -58.669554, -34.704538 ], [ -58.668613, -34.704122 ], [ -58.667749999999899, -34.703796 ], [ -58.666909, -34.703476 ], [ -58.666007, -34.703144 ], [ -58.664629, -34.704184 ], [ -58.66448, -34.704298 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 168.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.543890000423119, -34.612125999815021 ], [ -58.543246000402576, -34.612663000297175 ], [ -58.543974999846341, -34.613242000018261 ], [ -58.54519799958797, -34.614250999783792 ], [ -58.545627999632416, -34.61395000029222 ], [ -58.546056999630764, -34.613714000200901 ], [ -58.546785999973906, -34.612684000366301 ], [ -58.547494000247866, -34.611740000000964 ], [ -58.548051999899826, -34.610925000188558 ], [ -58.548803000358134, -34.609916000423027 ], [ -58.549940999777277, -34.609401000056039 ], [ -58.551121000233934, -34.608864999619982 ], [ -58.552321999860339, -34.608328000037147 ], [ -58.553481000247928, -34.607791999601034 ], [ -58.554660999805265, -34.607255000018199 ], [ -58.555820000192796, -34.606739999651211 ], [ -58.557257999956676, -34.606117999745834 ], [ -58.558824000227389, -34.606032000276571 ], [ -58.559509000340029, -34.606003999884649 ], [ -58.560389999598783, -34.605968000023154 ], [ -58.562043000284177, -34.605903999769737 ], [ -58.562043000284177, -34.605903999769737 ], [ -58.562043000284177, -34.605775000116125 ], [ -58.561981000123012, -34.604715999843449 ], [ -58.561956999915594, -34.60431600028312 ], [ -58.561892999662177, -34.603349999802617 ], [ -58.561850000377149, -34.602298999898892 ], [ -58.561764000008566, -34.601246999949069 ], [ -58.561720999824217, -34.600196000045344 ], [ -58.561656000424023, -34.599187000279812 ], [ -58.561592000170606, -34.598435999821504 ], [ -58.561548999986314, -34.597685000262516 ], [ -58.559918000315406, -34.59774999966271 ], [ -58.558352000044749, -34.597813999916127 ], [ -58.556742999589744, -34.597878000169544 ], [ -58.555669999570796, -34.597942999569739 ], [ -58.555348000010156, -34.59798599975403 ], [ -58.553867000061985, -34.59822199984535 ], [ -58.552387000159911, -34.598435999821504 ], [ -58.550928000326905, -34.598671999912824 ], [ -58.549426000309609, -34.598886999935075 ], [ -58.547987999646409, -34.59910199995727 ], [ -58.547881000108021, -34.599123000026395 ], [ -58.548008999715535, -34.598973000303658 ], [ -58.546679000435461, -34.598050000007447 ], [ -58.545971000161501, -34.59878000039663 ], [ -58.545262999887484, -34.599487999771327 ], [ -58.544254000121953, -34.600538999675052 ], [ -58.543266999572324, -34.601590999624875 ], [ -58.542323000106308, -34.602556000059337 ], [ -58.541614999832348, -34.603221000149006 ], [ -58.540800000019942, -34.602684999712949 ], [ -58.539940999977148, -34.602127000060989 ], [ -58.539082999980451, -34.601548000339903 ], [ -58.538268000168046, -34.601010999857692 ], [ -58.537431000240417, -34.600432000136664 ], [ -58.536572000197623, -34.599873999585384 ], [ -58.535714000200926, -34.599294999864298 ], [ -58.534856000204229, -34.598737000212338 ], [ -58.534019000276601, -34.598157000445156 ], [ -58.533139000164681, -34.597599999939973 ], [ -58.532474000075013, -34.59830800021399 ], [ -58.531616000078316, -34.599187000279812 ], [ -58.530885999689076, -34.599959999953967 ], [ -58.530091999945796, -34.600774999766372 ], [ -58.529298000202516, -34.601590999624875 ], [ -58.528440000205819, -34.6024060003366 ], [ -58.527625000393414, -34.601912000038737 ], [ -58.527280999818231, -34.601698000062584 ], [ -58.526745000281494, -34.601355000432875 ], [ -58.526037000007477, -34.600925000388429 ], [ -58.525371999917809, -34.600517999605927 ], [ -58.524792000150626, -34.600152999860995 ], [ -58.524170000245249, -34.599767000046995 ], [ -58.523955000223054, -34.599574000139967 ], [ -58.523890999969638, -34.599359000117715 ], [ -58.523762000316026, -34.59910199995727 ], [ -58.523610999647872, -34.598745999728067 ], [ -58.523548000339929, -34.59822199984535 ], [ -58.523375999602649, -34.597963999638807 ], [ -58.523333000317677, -34.597857000100419 ], [ -58.522967999673426, -34.597621000009099 ], [ -58.522625000043661, -34.59751399957139 ], [ -58.522196000045312, -34.59751399957139 ], [ -58.521788000116089, -34.597471000286419 ], [ -58.521294999864324, -34.597471000286419 ], [ -58.520864999819821, -34.597449000171196 ], [ -58.520822999681627, -34.597556999755682 ], [ -58.520886999935044, -34.597685000262516 ], [ -58.520951000188461, -34.597792999847002 ], [ -58.520414999752404, -34.598392999637156 ], [ -58.520157000445181, -34.598650999843699 ], [ -58.519534999640484, -34.599338000048647 ], [ -58.518869999550816, -34.600088999607578 ], [ -58.516809999881559, -34.598822999681659 ], [ -58.515972999953931, -34.598908000004144 ], [ -58.515693999678319, -34.599251999680007 ], [ -58.514384999568051, -34.600689000297109 ], [ -58.513118999642074, -34.602083999876641 ], [ -58.510136999722704, -34.600239000229635 ], [ -58.507519000401487, -34.598628999728533 ], [ -58.504879000065785, -34.596999000103722 ], [ -58.503548999886391, -34.59616200017615 ], [ -58.502196999591831, -34.595346000317591 ], [ -58.501810999777774, -34.595110000226271 ], [ -58.500716999689757, -34.595497000086425 ], [ -58.499558000201489, -34.595926000084773 ], [ -58.498420999929181, -34.596376000152247 ], [ -58.497198000187495, -34.596806000196693 ], [ -58.496790000258272, -34.596848000334887 ], [ -58.496703999889633, -34.596827000265819 ], [ -58.494816000058336, -34.59695599991943 ], [ -58.492970000365176, -34.597063000357139 ], [ -58.491211000187491, -34.59719200001075 ], [ -58.490223999637806, -34.597256000264167 ], [ -58.489601999732486, -34.597299000448459 ], [ -58.488571999897829, -34.597362999802556 ], [ -58.487799000223617, -34.597405999986847 ], [ -58.487155000203074, -34.597449000171196 ], [ -58.486683000020378, -34.597471000286419 ], [ -58.486490000113349, -34.597492000355487 ], [ -58.486146999584321, -34.59751399957139 ], [ -58.485181000003081, -34.597599999939973 ], [ -58.484859000442498, -34.597621000009099 ], [ -58.483399999710173, -34.59774999966271 ], [ -58.483228999918367, -34.597770999731836 ], [ -58.482605999966893, -34.59798599975403 ], [ -58.482133999784196, -34.59822199984535 ], [ -58.480803999604859, -34.598822999681659 ], [ -58.480460999975151, -34.598973000303658 ], [ -58.479752999701134, -34.599251999680007 ], [ -58.478830000304242, -34.599680999678355 ], [ -58.476662000151123, -34.600148999676549 ], [ -58.472538999774997, -34.601040000295711 ], [ -58.472371000121541, -34.601076000157263 ], [ -58.47224199956861, -34.601097000226332 ], [ -58.471277000033467, -34.601312000248583 ], [ -58.470353999737256, -34.601526000224681 ], [ -58.468938000088599, -34.601847999785321 ], [ -58.467349999702662, -34.602233999599378 ], [ -58.466020000422645, -34.602556000059337 ], [ -58.465805000400394, -34.602621000358852 ], [ -58.464947000403697, -34.602835000334949 ], [ -58.464366999737194, -34.602985000057686 ], [ -58.462907999904246, -34.603349999802617 ], [ -58.462157000345258, -34.603542999709646 ], [ -58.461492000255589, -34.603715000446869 ], [ -58.460118999891904, -34.604058000076577 ], [ -58.458939000334567, -34.604358999568149 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.456578000274476, -34.604959000257622 ], [ -58.455805999747042, -34.605174000279874 ], [ -58.454989999888539, -34.605389000302068 ], [ -58.454025000353454, -34.605645999563194 ], [ -58.453015999688603, -34.605881999654514 ], [ -58.452007999969169, -34.606160999930182 ], [ -58.45102100031886, -34.606419000136725 ], [ -58.450742000043249, -34.606483000390085 ], [ -58.450633999559386, -34.606503999559891 ], [ -58.449174999726438, -34.606804999950725 ], [ -58.447007999619473, -34.607405999787034 ], [ -58.446536000336096, -34.607534000293811 ], [ -58.44627900017565, -34.607598999694062 ], [ -58.445892000315496, -34.607426999856102 ], [ -58.445720999624371, -34.607341000386839 ], [ -58.445569999855593, -34.607298000202491 ], [ -58.445270000410176, -34.607190999764782 ], [ -58.444197000391227, -34.60691200038849 ], [ -58.443060000118862, -34.606633000112822 ], [ -58.441664999639954, -34.606268000367891 ], [ -58.440292000175646, -34.605903999769737 ], [ -58.440120000337686, -34.605860999585445 ], [ -58.439304999626017, -34.605603000278222 ], [ -58.438575000136098, -34.605259999749137 ], [ -58.438446999629264, -34.605367000186845 ], [ -58.438404000344292, -34.605452999656166 ], [ -58.438425000413417, -34.605603000278222 ], [ -58.438488999767458, -34.605731999931834 ], [ -58.438531999951806, -34.605946999954028 ], [ -58.438531999951806, -34.606589999928531 ], [ -58.438382000229069, -34.606804999950725 ], [ -58.437802999608721, -34.60770600013177 ], [ -58.437587999586469, -34.60794200022309 ], [ -58.437008999865384, -34.608456999690759 ], [ -58.436837000027481, -34.608520999944176 ], [ -58.436666000235675, -34.60858600024369 ], [ -58.436171999937812, -34.608649999597787 ], [ -58.435786000123755, -34.608649999597787 ], [ -58.435571000101561, -34.608649999597787 ], [ -58.434777000358224, -34.608607000312759 ], [ -58.434520000197836, -34.608564000128467 ], [ -58.434369999575779, -34.60849999987505 ], [ -58.434048000015139, -34.608371000221439 ], [ -58.433532999648151, -34.608027999692411 ], [ -58.433317999625956, -34.607834999785382 ], [ -58.433211000087567, -34.608048999761479 ], [ -58.432353000090814, -34.607770000385187 ], [ -58.431580000416659, -34.607448999971325 ], [ -58.430613999936099, -34.607062000111171 ], [ -58.429155000103151, -34.607147999580491 ], [ -58.427675000201077, -34.607255000018199 ], [ -58.427031000180477, -34.607255000018199 ], [ -58.42617300018378, -34.607255000018199 ], [ -58.424627999982192, -34.607255000018199 ], [ -58.424692000235609, -34.608607000312759 ], [ -58.424562999682621, -34.610088000260987 ], [ -58.424471999982757, -34.611168999749509 ], [ -58.424412999959941, -34.611267999818267 ], [ -58.424242000168135, -34.611547000093935 ], [ -58.423598000147535, -34.612597999997661 ], [ -58.422417999690879, -34.612061999561604 ], [ -58.421085000272512, -34.61149999972514 ], [ -58.421044000180416, -34.611482999840518 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.417288999687571, -34.610925000188558 ], [ -58.415765999601149, -34.610859999889044 ], [ -58.4144570003902, -34.610753000350655 ], [ -58.413105000095641, -34.610645999912947 ], [ -58.411731999731956, -34.610560000443627 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.404586000243683, -34.610066000145764 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.401818000300409, -34.609895000353958 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.399114999757387, -34.609722999616679 ], [ -58.397569999555799, -34.60961600007829 ], [ -58.396282000413919, -34.609508999640582 ], [ -58.394865999865942, -34.609401000056039 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.388256999960561, -34.609100999711302 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.386260999645401, -34.60937999998697 ], [ -58.384844999996687, -34.609272000402427 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.381969999615762, -34.609078999596136 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.380681999574563, -34.608994000172913 ], [ -58.379179999557266, -34.608885999689107 ], [ -58.377786000023832, -34.60882200033501 ], [ -58.376391000444301, -34.60873599996637 ], [ -58.374931999711976, -34.608629000427982 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370038999799988, -34.605302999933429 ], [ -58.369845999892959, -34.605302999933429 ], [ -58.368944999711914, -34.605216999564846 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 166.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.356178000014665, -34.637253000225712 ], [ -58.356799999920042, -34.637704000339284 ], [ -58.357100000264779, -34.637876000177243 ], [ -58.357228999918391, -34.637960999600409 ], [ -58.357400999756294, -34.637767999693381 ], [ -58.357916000123282, -34.636867000411712 ], [ -58.358388000305922, -34.636115999953404 ], [ -58.358880999658368, -34.635301000140998 ], [ -58.359396000025356, -34.634507000397718 ], [ -58.360876999973527, -34.635086000118747 ], [ -58.362271999553116, -34.635664999839832 ], [ -58.362957999711853, -34.635944000115444 ], [ -58.363644999916744, -34.636223000391112 ], [ -58.364696999866624, -34.636652000389461 ], [ -58.365146999934041, -34.636824000227364 ], [ -58.365598000047612, -34.636867000411712 ], [ -58.366627999882269, -34.636996000065324 ], [ -58.368044000430245, -34.637166999857129 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.370661999751462, -34.629184999588006 ], [ -58.370769000189171, -34.628091000399309 ], [ -58.370962000096199, -34.626609999551818 ], [ -58.372570999651884, -34.626739000104749 ], [ -58.373858999693027, -34.626760000173817 ], [ -58.374566999967044, -34.626803000358109 ], [ -58.375575999732575, -34.627296999756709 ], [ -58.376584000351272, -34.627876000377057 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.378687000204877, -34.630493999698274 ], [ -58.379051999949809, -34.631224000087514 ], [ -58.379179999557266, -34.631416999994485 ], [ -58.379545000201574, -34.632125000268502 ], [ -58.379309000110254, -34.63287599982749 ], [ -58.380189000222117, -34.633068999734519 ], [ -58.381240000125842, -34.633068999734519 ], [ -58.381283000310191, -34.632339000244599 ], [ -58.381347999710385, -34.630880000411651 ], [ -58.382613999636305, -34.631738999555125 ], [ -58.383000000349682, -34.631995999715571 ], [ -58.383214000325836, -34.632297000106405 ], [ -58.383278999726031, -34.632511000082559 ], [ -58.383386000163739, -34.632832999643199 ], [ -58.383686999655254, -34.633283999756713 ], [ -58.383750999908671, -34.63343400037877 ], [ -58.385595999555676, -34.635858999792958 ], [ -58.386475999667596, -34.637017000134392 ], [ -58.387892000215572, -34.637296000410061 ], [ -58.388878999865938, -34.637531999602061 ], [ -58.39008100043776, -34.637810999877672 ], [ -58.389974, -34.639098999918872 ], [ -58.389866000415566, -34.640214000076014 ], [ -58.38984500034644, -34.640600999936169 ], [ -58.389758999977801, -34.641781000392825 ], [ -58.389672999609218, -34.642874999581522 ], [ -58.389566000070829, -34.644098000222471 ], [ -58.389458999633064, -34.645407000332739 ], [ -58.389416000348092, -34.646072000422464 ], [ -58.389351000048578, -34.646801999912327 ], [ -58.389243999610869, -34.648260999745276 ], [ -58.389114999957258, -34.649699000408475 ], [ -58.389008000418869, -34.65115800024148 ], [ -58.390660000158846, -34.6512439997108 ], [ -58.391389999648709, -34.651286999895092 ], [ -58.392226999576337, -34.651330000079383 ], [ -58.393299999595285, -34.6513940003328 ], [ -58.393836000031342, -34.651415000401926 ], [ -58.394287000144914, -34.651457999686897 ], [ -58.394822999681651, -34.65147999980212 ], [ -58.395402000302056, -34.65147999980212 ], [ -58.396668000227976, -34.651415000401926 ], [ -58.397698000062633, -34.651330000079383 ], [ -58.399328999733484, -34.65092200015016 ], [ -58.400552000374489, -34.651050999803772 ], [ -58.400873999935129, -34.651092999941966 ], [ -58.401346000117769, -34.65107199987284 ], [ -58.404608000358905, -34.650471000036589 ], [ -58.403964000338306, -34.652165999960914 ], [ -58.403598999694054, -34.653282000164154 ], [ -58.403277000133414, -34.654419000436462 ], [ -58.404758000081586, -34.654890999719839 ], [ -58.405143999895643, -34.653775999562697 ], [ -58.405529999709699, -34.652638000143554 ], [ -58.406088000260979, -34.650965000334452 ], [ -58.406239000029814, -34.6507500003122 ], [ -58.406838999819968, -34.651221999595577 ], [ -58.407418999587094, -34.651693999778217 ], [ -58.408791999950779, -34.652723999612874 ], [ -58.408941999673516, -34.652809999981457 ], [ -58.409199999880059, -34.653025000003709 ], [ -58.410207999599436, -34.653775999562697 ], [ -58.411260000448635, -34.654162000276074 ], [ -58.412976000442029, -34.654806000296617 ], [ -58.414178000114589, -34.655428000201994 ], [ -58.415058000226509, -34.655942999669662 ], [ -58.416408999575651, -34.656629999874554 ], [ -58.416388000405846, -34.655685000362439 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416324000152429, -34.654162000276074 ], [ -58.416302000037206, -34.653325000348445 ], [ -58.416280999968137, -34.652144999891789 ], [ -58.4161310002454, -34.652165999960914 ], [ -58.415421999925343, -34.652059000422469 ], [ -58.414284999652978, -34.651780000146857 ], [ -58.414178000114589, -34.651693999778217 ], [ -58.413989000392007, -34.651651999640023 ], [ -58.412697000166361, -34.651050999803772 ], [ -58.413061999911349, -34.650300000244783 ], [ -58.413254999818321, -34.649613000039892 ], [ -58.414692999582201, -34.649677000293309 ], [ -58.416237999783846, -34.649677000293309 ], [ -58.417675000400891, -34.649741999693504 ], [ -58.418427000005977, -34.649784999877795 ], [ -58.419392000440439, -34.649827000015989 ], [ -58.419929000023274, -34.649849000131212 ], [ -58.421044000180416, -34.649913000384629 ], [ -58.422481999944296, -34.649998999853892 ], [ -58.424070000330232, -34.650020999969115 ], [ -58.424671000166484, -34.650064000153463 ], [ -58.425272000002735, -34.650064000153463 ], [ -58.426580000066906, -34.650106000291657 ], [ -58.428533000197774, -34.650213999876144 ], [ -58.429821000238917, -34.650213999876144 ], [ -58.430421000029071, -34.649827000015989 ], [ -58.430613999936099, -34.649719999578281 ], [ -58.431323000256214, -34.650300000244783 ], [ -58.432181000252911, -34.651028999688549 ], [ -58.43306100036483, -34.65180200026208 ], [ -58.433768999739527, -34.652337999798817 ], [ -58.434520000197836, -34.652938999635069 ], [ -58.435185000287504, -34.653454000002057 ], [ -58.436128999753521, -34.654204999561045 ], [ -58.437244999956761, -34.654591000274422 ], [ -58.437673999955109, -34.654869999650714 ], [ -58.438446999629264, -34.655471000386342 ], [ -58.439518999602114, -34.654633999559394 ], [ -58.440464000013549, -34.653839999816114 ], [ -58.441643999570886, -34.652959999704194 ], [ -58.446300000244776, -34.656758000381387 ], [ -58.448017000284267, -34.658152999960919 ], [ -58.449025000003701, -34.658989999888547 ], [ -58.449883000000398, -34.659677000093438 ], [ -58.452523000336157, -34.657552000124667 ], [ -58.453680999778271, -34.656650999943622 ], [ -58.454883000350151, -34.655706999578342 ], [ -58.456899999835059, -34.654098000022657 ], [ -58.456856999650768, -34.654011999654017 ], [ -58.456986000203699, -34.653926000184697 ], [ -58.457092999742088, -34.653969000369045 ], [ -58.459259999849053, -34.652209000145206 ], [ -58.458316000383093, -34.651372000217577 ], [ -58.457372000017756, -34.65051400022088 ], [ -58.459474999871304, -34.650363999598881 ], [ -58.462006999723201, -34.650128000406824 ], [ -58.462157000345258, -34.649998999853892 ], [ -58.462607999559509, -34.649569999855544 ], [ -58.46273700011244, -34.649463000317155 ], [ -58.463616000178206, -34.648776000112264 ], [ -58.464838999919891, -34.647788999562636 ], [ -58.465439999756143, -34.647338000348384 ], [ -58.465934000054006, -34.646930999565939 ], [ -58.466427000305771, -34.646543999705784 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.468186999630291, -34.647553000370635 ], [ -58.468422999721611, -34.647918000115567 ], [ -58.468766000250696, -34.648368000183041 ], [ -58.469280999718308, -34.649118999742029 ], [ -58.469667000431684, -34.649526999671252 ], [ -58.46986100038481, -34.649719999578281 ], [ -58.470075000360964, -34.649913000384629 ], [ -58.470825999919896, -34.650599999690201 ], [ -58.472048999661581, -34.65171599989344 ], [ -58.472564000028513, -34.652231000260429 ], [ -58.473251000233461, -34.65283200009668 ], [ -58.473680000231809, -34.653217999910737 ], [ -58.474088000161032, -34.653582999655669 ], [ -58.474710000066409, -34.654162000276074 ], [ -58.475204000364272, -34.654613000389588 ], [ -58.475524999878814, -34.654890999719839 ], [ -58.476554999713414, -34.655836000131274 ], [ -58.477005999826986, -34.656243000014399 ], [ -58.477499000078751, -34.656715000197039 ], [ -58.477950000192322, -34.657102000057193 ], [ -58.478186000283642, -34.657316000033347 ], [ -58.478808000189019, -34.657831000400279 ], [ -58.479624000047522, -34.656199999830108 ], [ -58.480417999790802, -34.654784000181394 ], [ -58.480783000435054, -34.654162000276074 ], [ -58.480976000342082, -34.653796999631766 ], [ -58.481039999696179, -34.653667999978154 ], [ -58.481147000133888, -34.653497000186348 ], [ -58.481940999877224, -34.652122999776566 ], [ -58.482478000359379, -34.651179000310549 ], [ -58.482692000335533, -34.650814999712395 ], [ -58.483442999894464, -34.649484000386281 ], [ -58.484043999730773, -34.648390000298207 ], [ -58.484065999845996, -34.648154000206887 ], [ -58.484173000283704, -34.646695000373938 ], [ -58.484602000282052, -34.64529999989503 ], [ -58.484730999935664, -34.644870999896682 ], [ -58.484988000096109, -34.644055000038179 ], [ -58.485181000003081, -34.643368999879385 ], [ -58.485373999910109, -34.642724999858785 ], [ -58.485825000023681, -34.641309000210128 ], [ -58.485931999562069, -34.640923000396128 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.486490000113349, -34.639098999918872 ], [ -58.486683000020378, -34.638411999713981 ], [ -58.486875999927406, -34.637832999992895 ], [ -58.487863999623869, -34.63809000015334 ], [ -58.488807999989149, -34.63832600024466 ], [ -58.489280000171846, -34.638432999783049 ], [ -58.490287999891223, -34.638668999874426 ], [ -58.490910999842754, -34.638819999643204 ], [ -58.491683000370131, -34.638927000080969 ], [ -58.491855000208034, -34.63809000015334 ], [ -58.491898000392382, -34.637682000224061 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.498013, -34.637210000041421 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.530005999577156, -34.63961400028586 ], [ -58.529963000292184, -34.64017199993782 ], [ -58.529942000223116, -34.640600999936169 ], [ -58.529877999969699, -34.641781000392825 ], [ -58.530435999621659, -34.641866999862089 ], [ -58.53095099998859, -34.641931000115505 ], [ -58.53095099998859, -34.642724999858785 ], [ -58.532194999799344, -34.643884000246373 ], [ -58.533418000440349, -34.64497800033439 ], [ -58.534597999997686, -34.64609399963831 ], [ -58.535820999739315, -34.64720999984155 ], [ -58.535070000180326, -34.647768000392887 ], [ -58.534318999722018, -34.648324999998692 ], [ -58.533418000440349, -34.649012000203584 ], [ -58.532538000328429, -34.649656000224184 ], [ -58.531572999893967, -34.650363999598881 ], [ -58.532045000076664, -34.650814999712395 ], [ -58.532474000075013, -34.651201000425772 ], [ -58.532989000442001, -34.651650999593926 ], [ -58.533653999632349, -34.65218800007608 ], [ -58.534276000437046, -34.652638000143554 ], [ -58.534813000019881, -34.653068000188 ], [ -58.535328000386869, -34.653454000002057 ], [ -58.535820999739315, -34.653839999816114 ], [ -58.536379000290594, -34.654247999745337 ], [ -58.536915999873429, -34.654613000389588 ], [ -58.537452000309543, -34.654999000203645 ], [ -58.538009999961503, -34.655385000017702 ], [ -58.538567999613463, -34.655814000016051 ], [ -58.539640999632411, -34.656564999575039 ], [ -58.540692000435456, -34.65740200040193 ], [ -58.541744000385279, -34.658196000145267 ], [ -58.542665999736073, -34.65916199972645 ], [ -58.543611000147507, -34.660170000345204 ], [ -58.54416799975337, -34.660684999812872 ], [ -58.544726000304649, -34.661179000110735 ], [ -58.545283999956609, -34.661672000362501 ], [ -58.545841999608569, -34.662143999645821 ], [ -58.546422000275072, -34.662659000012809 ], [ -58.546957999811809, -34.663153000310672 ], [ -58.547516000363089, -34.663645999663117 ], [ -58.548095000084118, -34.66413999996098 ], [ -58.548631999667009, -34.664633000212746 ], [ -58.549211000287414, -34.665147999680414 ], [ -58.549855000307957, -34.665728000346917 ], [ -58.550048000214986, -34.665878000069597 ], [ -58.550412999959917, -34.666328000137071 ], [ -58.550885000142614, -34.666951000088545 ], [ -58.551034999865294, -34.667143999995574 ], [ -58.551678999885894, -34.667336999902602 ], [ -58.552644000320299, -34.667616000178214 ], [ -58.553587999786316, -34.667873000338659 ], [ -58.554660999805265, -34.668387999806328 ], [ -58.555669999570796, -34.668925000288482 ], [ -58.556377999844756, -34.669290000033413 ], [ -58.556721000373841, -34.669460999825219 ], [ -58.557042999934481, -34.669632999663179 ], [ -58.557708000024149, -34.669976000192207 ], [ -58.558781000043098, -34.669139000264579 ], [ -58.559897000246337, -34.668303000383105 ], [ -58.560626999736201, -34.668859999988968 ], [ -58.561227000425674, -34.669417999640928 ], [ -58.561399000263634, -34.669653999732247 ], [ -58.561828000261983, -34.670040999592402 ], [ -58.562557999751846, -34.67070599968207 ], [ -58.563352000394445, -34.671413999956087 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 164.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.516273000298668, -34.639184000241357 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.530241999668533, -34.639378000194483 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.532216999914567, -34.639571000101512 ], [ -58.533311000002584, -34.639635000354929 ], [ -58.535092000295549, -34.639741999893317 ], [ -58.535842999854538, -34.639828000261957 ], [ -58.537280999618417, -34.639913999731277 ], [ -58.538610999797754, -34.640021000168986 ], [ -58.539984000161439, -34.640128999753472 ], [ -58.541399999810096, -34.64017199993782 ], [ -58.542880999758268, -34.640149999822597 ], [ -58.543502999663644, -34.640128999753472 ], [ -58.544083000330147, -34.640106999638306 ], [ -58.544726000304649, -34.640106999638306 ], [ -58.545134000233872, -34.640106999638306 ], [ -58.546228000321889, -34.64008599956918 ], [ -58.548954000126969, -34.640043000284209 ], [ -58.549489999663706, -34.640021000168986 ], [ -58.551099000118711, -34.64000000009986 ], [ -58.552644000320299, -34.639956999915569 ], [ -58.553224000087482, -34.639956999915569 ], [ -58.554253999922139, -34.639934999800346 ], [ -58.556035000215047, -34.639913999731277 ], [ -58.557065000049647, -34.639913999731277 ], [ -58.557235999841453, -34.639913999731277 ], [ -58.558202000322012, -34.639892999662152 ], [ -58.558673999605332, -34.639913999731277 ], [ -58.560133000337657, -34.640043000284209 ], [ -58.560970000265286, -34.640128999753472 ], [ -58.561592000170606, -34.640214000076014 ], [ -58.562665000189554, -34.640364999844849 ], [ -58.563266000025862, -34.640450000167334 ], [ -58.563502000117182, -34.64055799975182 ], [ -58.564339000044754, -34.640687000304752 ], [ -58.565518999602091, -34.64088000021178 ], [ -58.565905000315468, -34.640858000096557 ], [ -58.566055000038205, -34.640858000096557 ], [ -58.566291000129524, -34.640923000396128 ], [ -58.567214000425736, -34.641094000187934 ], [ -58.567343000079347, -34.6411160003031 ], [ -58.568716000443032, -34.641330000279254 ], [ -58.570260999745301, -34.641587999586477 ], [ -58.571741999693472, -34.641823999677797 ], [ -58.573179000310574, -34.642080999838242 ], [ -58.574594999959231, -34.642295999860437 ], [ -58.576119000091751, -34.642531999951814 ], [ -58.577513999671282, -34.642724999858785 ], [ -58.578993999573356, -34.642960999950162 ], [ -58.580453000305681, -34.643197000041482 ], [ -58.581891000069561, -34.643412000063734 ], [ -58.583328999833441, -34.643648000155054 ], [ -58.584122999576721, -34.643754999693442 ], [ -58.585088000011126, -34.643905000315442 ], [ -58.586117999845783, -34.644055000038179 ], [ -58.587190999864731, -34.644183999691791 ], [ -58.588307000067971, -34.644356000429013 ], [ -58.589357999971696, -34.64450600015175 ], [ -58.590088000360879, -34.644570000405167 ], [ -58.590217000014491, -34.644634999805362 ], [ -58.590323999552879, -34.64474200024307 ], [ -58.590474000174936, -34.64497800033439 ], [ -58.590689000197187, -34.645492999802059 ], [ -58.590816999804645, -34.645751000008602 ], [ -58.590925000288507, -34.645793000146796 ], [ -58.591762000216079, -34.645878999616116 ], [ -58.592512999775067, -34.645964999984699 ], [ -58.593198999933861, -34.646051000353339 ], [ -58.593950000392169, -34.646114999707436 ], [ -58.594744000135449, -34.646223000191242 ], [ -58.597018999826957, -34.646480000351687 ], [ -58.598628000281963, -34.646695000373938 ], [ -58.600000999746328, -34.646888000280967 ], [ -58.600709000020288, -34.64697399975023 ], [ -58.601953999877139, -34.647102000257064 ], [ -58.603391999641019, -34.647274000094967 ], [ -58.604464999659967, -34.647402999748579 ], [ -58.605645000116624, -34.647553000370635 ], [ -58.606954000226892, -34.647703000093315 ], [ -58.607875999577686, -34.647831999746927 ], [ -58.609463999963566, -34.648175000276012 ], [ -58.610215000421874, -34.648347000113915 ], [ -58.610430000444126, -34.648390000298207 ], [ -58.610988000096086, -34.648561000090012 ], [ -58.611245000256531, -34.648626000389584 ], [ -58.612017999930686, -34.648798000227487 ], [ -58.612467999998159, -34.648904999765875 ], [ -58.613992000130679, -34.649290999579932 ], [ -58.615021999965279, -34.649290999579932 ], [ -58.616138000168519, -34.649270000410127 ], [ -58.617317999725856, -34.649248000294961 ], [ -58.618519000251638, -34.649248000294961 ], [ -58.619828000361906, -34.649227000225835 ], [ -58.621094000287826, -34.649205000110612 ], [ -58.622681999774443, -34.649184000041544 ], [ -58.622724999958734, -34.650406999783172 ], [ -58.622724999958734, -34.650878999965812 ], [ -58.622724999958734, -34.65163000042412 ], [ -58.622768000143026, -34.652896000350097 ], [ -58.622768000143026, -34.653818999746989 ], [ -58.622789000212151, -34.654740999997102 ], [ -58.622768000143026, -34.655879000315565 ], [ -58.622768000143026, -34.656586999690262 ], [ -58.622768000143026, -34.657123000126319 ], [ -58.622789000212151, -34.658389000052239 ], [ -58.622832000396443, -34.659375999702604 ], [ -58.622832000396443, -34.660448999721496 ], [ -58.624398999813934, -34.660469999790621 ], [ -58.625471999832882, -34.660491999905844 ], [ -58.626652000289539, -34.660512999974912 ], [ -58.627767999593459, -34.660491999905844 ], [ -58.628882999750601, -34.660512999974912 ], [ -58.629269999610756, -34.660535000090135 ], [ -58.629463000417104, -34.660469999790621 ], [ -58.630042000138133, -34.660276999883592 ], [ -58.630900000134829, -34.660062999907495 ], [ -58.632231000360321, -34.659762000415924 ], [ -58.633261000194977, -34.659590999724799 ], [ -58.634355000282994, -34.659375999702604 ], [ -58.634741000097051, -34.659312000348507 ], [ -58.635149000026274, -34.659225999979867 ], [ -58.635879000415514, -34.659076000257187 ], [ -58.636479000205668, -34.658946999704256 ], [ -58.637509000040268, -34.658731999682004 ], [ -58.637788000315936, -34.658689000397032 ], [ -58.638538999874925, -34.65851799970585 ], [ -58.638453000405605, -34.658345999867947 ], [ -58.637509000040268, -34.65757400023989 ], [ -58.637166000410559, -34.657294999964222 ], [ -58.636007000022971, -34.656329000383039 ], [ -58.635920999654388, -34.656029000038302 ], [ -58.635857000300291, -34.655727999647411 ], [ -58.635793000046874, -34.655471000386342 ], [ -58.635664000393263, -34.655127999857257 ], [ -58.636308000413862, -34.653754000346794 ], [ -58.636479000205668, -34.653410999817766 ], [ -58.636822999881474, -34.65250999963672 ], [ -58.636822999881474, -34.652380999983109 ], [ -58.637552000224616, -34.652252000329497 ], [ -58.637938000038616, -34.65218800007608 ], [ -58.639011000057565, -34.651995000169052 ], [ -58.640363000352124, -34.651780000146857 ], [ -58.640684999912764, -34.651886999685246 ], [ -58.640771000281404, -34.651908999800469 ], [ -58.641546000047811, -34.652170000145361 ], [ -58.64261599992841, -34.652530999705846 ], [ -58.642702000297049, -34.652788999912389 ], [ -58.642959999604273, -34.653883000000405 ], [ -58.643259999949009, -34.655042000387937 ], [ -58.643582000408969, -34.656265000129622 ], [ -58.643903999969609, -34.657444999686959 ], [ -58.644461999621569, -34.657316000033347 ], [ -58.645834999985198, -34.657058999872902 ], [ -58.646500000074923, -34.65693000021929 ], [ -58.646951000188494, -34.656865999965873 ], [ -58.648024000207386, -34.656672000012748 ], [ -58.648194999999191, -34.656629999874554 ], [ -58.650276999783671, -34.656221999945274 ], [ -58.652593999613373, -34.655814000016051 ], [ -58.653065999796013, -34.655727999647411 ], [ -58.653280999818264, -34.655727999647411 ], [ -58.655105000295464, -34.656308000313913 ], [ -58.655727000200841, -34.656501000220942 ], [ -58.656178000314412, -34.656650999943622 ], [ -58.658323000306154, -34.65733800014857 ], [ -58.659418000440326, -34.657659999709153 ], [ -58.660382999975411, -34.65796000005389 ], [ -58.661412999810068, -34.65828199961453 ], [ -58.662829000358045, -34.658710999612879 ], [ -58.664267000121924, -34.65916199972645 ], [ -58.665190000418136, -34.659441000002118 ], [ -58.665383000325164, -34.659590999724799 ], [ -58.66563999958629, -34.659719000231632 ], [ -58.666256000114288, -34.65990699990806 ], [ -58.667121000433781, -34.660170000345204 ], [ -58.667849999877546, -34.660298999998815 ], [ -58.668580000266786, -34.660535000090135 ], [ -58.669009000265135, -34.660663999743747 ], [ -58.670039000099734, -34.661007000272775 ], [ -58.6714119995641, -34.661436000271124 ], [ -58.671004999680974, -34.662316000383044 ], [ -58.670639999935986, -34.663195999595644 ], [ -58.670232000006763, -34.664074999661466 ], [ -58.669825000123637, -34.66493399970426 ], [ -58.669438000263483, -34.665812999770083 ], [ -58.670511000282374, -34.666220999699306 ], [ -58.669631000170455, -34.666907999904254 ], [ -58.668729999989466, -34.667594000062991 ], [ -58.668580000266786, -34.667722999716602 ], [ -58.667764999555061, -34.668344999621979 ], [ -58.665039999796136, -34.670490999659876 ], [ -58.664975000395884, -34.670533999844167 ], [ -58.663794999939228, -34.671478000209504 ], [ -58.664117000399187, -34.672636999697716 ], [ -58.664331000375341, -34.673452000409441 ], [ -58.664546000397536, -34.674374999806332 ], [ -58.664652999935981, -34.674803999804681 ], [ -58.664696000120273, -34.674869000104252 ], [ -58.666263000437084, -34.676112999914949 ], [ -58.667121000433781, -34.676778000004674 ], [ -58.667828999808478, -34.6773579997718 ], [ -58.668043999830672, -34.677508000393857 ], [ -58.668858999643078, -34.678172999584206 ], [ -58.669889000376998, -34.678988000295931 ], [ -58.670897000096431, -34.679760999970142 ], [ -58.671884999792837, -34.680554999713422 ], [ -58.672163000022408, -34.680768999689519 ], [ -58.67244200029802, -34.681026999896062 ], [ -58.672914999627494, -34.681327000240799 ], [ -58.673279000225648, -34.68139199964105 ], [ -58.674331000175471, -34.681478000009633 ], [ -58.675317999825779, -34.681585000447342 ], [ -58.675661000354864, -34.681605999617148 ], [ -58.676990999634882, -34.681735000170079 ], [ -58.678000000299733, -34.681820999639399 ], [ -58.679201999972292, -34.681928000077107 ], [ -58.680511000082561, -34.68209999991501 ], [ -58.680596000405046, -34.682143000099359 ], [ -58.681132999987938, -34.68265799956697 ], [ -58.681346999964035, -34.682829000258096 ], [ -58.681733999824189, -34.68321600011825 ], [ -58.682333999614343, -34.68377399977021 ], [ -58.682527999567469, -34.683944999562016 ], [ -58.682935000349971, -34.684331000275392 ], [ -58.683493000001931, -34.684867999858284 ], [ -58.683944000115446, -34.685275999787507 ], [ -58.684501999767463, -34.685812000223564 ], [ -58.684694999674434, -34.686005000130592 ], [ -58.685123999672783, -34.686413000059872 ], [ -58.685489000317091, -34.686777999804804 ], [ -58.68574599957816, -34.686991999780901 ], [ -58.686304000129439, -34.687529000263112 ], [ -58.686347000313788, -34.687572000447403 ], [ -58.686818999597108, -34.688001000445752 ], [ -58.687570000055416, -34.688708999820449 ], [ -58.688278000329433, -34.689373999910117 ], [ -58.688922000349976, -34.689974999746426 ], [ -58.689629999724673, -34.690660999905162 ], [ -58.690273999745273, -34.691261999741471 ], [ -58.691003000088358, -34.691948999946362 ], [ -58.691239000179678, -34.692162999922459 ], [ -58.691497000386221, -34.692421000129002 ], [ -58.691796999831638, -34.692720999574419 ], [ -58.692334000313849, -34.693235999941407 ], [ -58.693685999709089, -34.69452399998255 ], [ -58.694393999983049, -34.695189000072276 ], [ -58.694521999590563, -34.695317999725887 ], [ -58.695059000072774, -34.695810999977596 ], [ -58.695423999817706, -34.696154999653459 ], [ -58.694350999798758, -34.696970000365184 ], [ -58.693277999779809, -34.697807000292812 ], [ -58.692247999945209, -34.698557999851744 ], [ -58.691303999579873, -34.697677999739881 ], [ -58.69057400009001, -34.697012999650156 ], [ -58.689822999631701, -34.696390999744779 ], [ -58.688771999727976, -34.697099000018795 ], [ -58.687741999893319, -34.697870999646852 ], [ -58.686668999874428, -34.698687000404675 ], [ -58.685875000131091, -34.699309000310052 ], [ -58.685081000387811, -34.69991000014636 ], [ -58.684437000367211, -34.700360000213777 ], [ -58.68439400018292, -34.700317000029486 ], [ -58.683235999841486, -34.70117600007228 ], [ -58.682506000351566, -34.701711999609074 ], [ -58.681690999639898, -34.702313000344645 ], [ -58.680896999896561, -34.702914000180897 ], [ -58.680188999622601, -34.703449999717691 ], [ -58.679394999879321, -34.704050999553942 ], [ -58.678729999789596, -34.704479999552291 ], [ -58.677957000115441, -34.704994999919279 ], [ -58.677163000372104, -34.705532000401433 ], [ -58.676368999729505, -34.706089000007296 ], [ -58.675618000170516, -34.706604000374284 ], [ -58.675295999710556, -34.70679800032741 ], [ -58.674480999898208, -34.70647599986745 ], [ -58.673643999970579, -34.706111000122519 ], [ -58.67252799976734, -34.70568200012417 ], [ -58.671476999863614, -34.705253000125822 ], [ -58.670661000005111, -34.704930999665862 ], [ -58.669502999663678, -34.704479999552291 ], [ -58.668729999989466, -34.704157999991651 ], [ -58.668602000381952, -34.704114999807359 ], [ -58.667764999555061, -34.703772000177651 ], [ -58.666821000089044, -34.703407000432662 ], [ -58.66596200004625, -34.703063999903634 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 163.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.725227, -34.665112 ], [ -58.726536, -34.664979 ], [ -58.727287, -34.664846 ], [ -58.728406, -34.664724 ], [ -58.728486, -34.665166 ], [ -58.727394, -34.665326 ], [ -58.727428, -34.665479 ], [ -58.726887, -34.666572 ], [ -58.726316, -34.66773 ], [ -58.725756, -34.668869 ], [ -58.725748, -34.668881 ], [ -58.72523, -34.670016 ], [ -58.724692, -34.671167 ], [ -58.724166, -34.672302 ], [ -58.723758, -34.673114 ], [ -58.722419, -34.673715 ], [ -58.721065, -34.67426 ], [ -58.71973, -34.674793 ], [ -58.719219, -34.675006 ], [ -58.717868, -34.675543 ], [ -58.716515999999899, -34.676087 ], [ -58.71649, -34.676095 ], [ -58.715131, -34.676637 ], [ -58.715134, -34.676644 ], [ -58.715811, -34.677788 ], [ -58.716472, -34.678897 ], [ -58.716956, -34.679721 ], [ -58.715374, -34.680342 ], [ -58.715328, -34.680358 ], [ -58.713994, -34.68088 ], [ -58.713084, -34.681231 ], [ -58.71204, -34.681635 ], [ -58.711577, -34.681735 ], [ -58.711061, -34.681944 ], [ -58.70988, -34.682429 ], [ -58.708851, -34.682837 ], [ -58.708410999999899, -34.682128 ], [ -58.708289, -34.681251 ], [ -58.707858, -34.680508 ], [ -58.70741, -34.679734 ], [ -58.70704, -34.679822 ], [ -58.706217, -34.680169 ], [ -58.705395, -34.680512 ], [ -58.70465, -34.680832 ], [ -58.703751, -34.681214 ], [ -58.703304, -34.681401 ], [ -58.702914, -34.681565 ], [ -58.702558, -34.681698 ], [ -58.702023, -34.681919 ], [ -58.701317, -34.682203 ], [ -58.701197, -34.682251 ], [ -58.700241, -34.68264 ], [ -58.699579, -34.682873 ], [ -58.698941, -34.683166 ], [ -58.6979, -34.683582 ], [ -58.697277, -34.683838 ], [ -58.696398, -34.684192 ], [ -58.695407, -34.684589 ], [ -58.694952, -34.684738 ], [ -58.694528, -34.68494 ], [ -58.693663999999899, -34.685283 ], [ -58.692799, -34.685623 ], [ -58.69197, -34.685951 ], [ -58.690754, -34.686431 ], [ -58.689606, -34.686881 ], [ -58.6889, -34.687114 ], [ -58.688526, -34.68729 ], [ -58.688129, -34.687439 ], [ -58.686843, -34.687923 ], [ -58.687588, -34.688686 ], [ -58.688306, -34.68936 ], [ -58.688928, -34.689951 ], [ -58.6896, -34.690587 ], [ -58.690276, -34.691231 ], [ -58.690982, -34.691891 ], [ -58.691527, -34.692508 ], [ -58.691605, -34.692596 ], [ -58.691788, -34.692759 ], [ -58.692576, -34.693091 ], [ -58.69402, -34.694757 ], [ -58.69454, -34.695351 ], [ -58.695129, -34.695885 ], [ -58.695515, -34.696251 ], [ -58.696402, -34.697086 ], [ -58.696509, -34.697166 ], [ -58.697094, -34.697711 ], [ -58.697785, -34.698378 ], [ -58.697881, -34.698427 ], [ -58.698538, -34.69903 ], [ -58.698615, -34.699152 ], [ -58.699517, -34.699952 ], [ -58.700041, -34.700478 ], [ -58.700664, -34.701046 ], [ -58.700721, -34.701092 ], [ -58.701878, -34.702121 ], [ -58.702858, -34.702986 ], [ -58.703907, -34.703932 ], [ -58.704914, -34.704812 ], [ -58.705966, -34.705746 ], [ -58.706771, -34.706463 ], [ -58.707267, -34.70689 ], [ -58.707515, -34.707114 ], [ -58.708285, -34.70777 ], [ -58.708541, -34.708029 ], [ -58.709006, -34.708429 ], [ -58.709074, -34.708494 ], [ -58.710039, -34.709337 ], [ -58.710432, -34.709687 ], [ -58.711061, -34.710221 ], [ -58.711115, -34.710282 ], [ -58.712122, -34.711174 ], [ -58.713113, -34.712058 ], [ -58.713983, -34.712825 ], [ -58.71465, -34.713377 ], [ -58.714742, -34.713492 ], [ -58.714857, -34.713589 ], [ -58.714858, -34.713589 ], [ -58.715768, -34.714357 ], [ -58.716324, -34.714871 ], [ -58.716633, -34.715077 ], [ -58.716965, -34.715478 ], [ -58.71729, -34.715672 ], [ -58.717694, -34.716042 ], [ -58.718045, -34.716332 ], [ -58.71835, -34.716614 ], [ -58.719075, -34.71724 ], [ -58.71922, -34.71732 ], [ -58.719789, -34.717831 ], [ -58.720429, -34.7184 ], [ -58.721578, -34.719372 ], [ -58.721039, -34.720342 ], [ -58.720337, -34.720908 ], [ -58.71934, -34.721718 ], [ -58.71821, -34.722627 ], [ -58.714754, -34.725451 ], [ -58.714018, -34.726047 ], [ -58.713349, -34.726593 ], [ -58.712654, -34.727166 ], [ -58.711948, -34.727732 ], [ -58.711307, -34.728259 ], [ -58.711272, -34.728289 ], [ -58.711284, -34.728297 ], [ -58.712012, -34.728904 ], [ -58.712669, -34.72946 ], [ -58.712672, -34.729464 ], [ -58.714061, -34.73065 ], [ -58.713332, -34.731235 ], [ -58.71269, -34.731751 ], [ -58.712671, -34.731766 ], [ -58.711302, -34.730591 ], [ -58.710611, -34.731142 ], [ -58.709897, -34.731726 ], [ -58.709153, -34.731101 ], [ -58.708496, -34.730544 ], [ -58.709168, -34.729986 ], [ -58.708496, -34.730544 ], [ -58.70771, -34.731163 ], [ -58.706947, -34.731797 ], [ -58.70684, -34.731889 ], [ -58.706372, -34.732274 ], [ -58.705964, -34.732588 ], [ -58.705667, -34.732836 ], [ -58.705096, -34.733272 ], [ -58.704974, -34.733375 ], [ -58.704246, -34.733959 ], [ -58.704185, -34.734009 ], [ -58.700775, -34.736775 ], [ -58.700033, -34.737371 ], [ -58.699343, -34.737944 ], [ -58.697282, -34.739602 ], [ -58.696581, -34.740172 ], [ -58.695891, -34.740733 ], [ -58.695217, -34.741283 ], [ -58.694558, -34.741818 ], [ -58.693785, -34.742426 ], [ -58.693004, -34.743037 ], [ -58.692375, -34.743538 ], [ -58.691674, -34.744103 ], [ -58.690253, -34.745219 ], [ -58.688862, -34.744013 ], [ -58.687498, -34.742838 ], [ -58.686107, -34.741633 ], [ -58.685413, -34.74103 ], [ -58.684746, -34.740451 ], [ -58.684023, -34.741027 ], [ -58.683336, -34.741574 ], [ -58.684023, -34.741027 ], [ -58.684746, -34.740451 ], [ -58.685413, -34.74103 ], [ -58.686107, -34.741633 ], [ -58.687498, -34.742838 ], [ -58.688862, -34.744013 ], [ -58.690253, -34.745219 ], [ -58.68671, -34.748006 ], [ -58.686056, -34.748539 ], [ -58.685413, -34.749058 ], [ -58.6847, -34.749622 ], [ -58.684015, -34.750175 ], [ -58.683311, -34.750746 ], [ -58.682564, -34.751345 ], [ -58.681879, -34.751898 ], [ -58.681152, -34.752485 ], [ -58.680436, -34.753045 ], [ -58.679747, -34.753613 ], [ -58.678563, -34.754573 ], [ -58.677381, -34.755534 ], [ -58.676741, -34.756052 ], [ -58.675998, -34.75662 ], [ -58.675612, -34.756909 ], [ -58.675259, -34.757203 ], [ -58.674979, -34.75739 ], [ -58.674505, -34.757771 ], [ -58.674395, -34.757851 ], [ -58.673816, -34.758304 ], [ -58.673206, -34.758777 ], [ -58.67316, -34.758834 ], [ -58.672596, -34.759242 ], [ -58.672001, -34.75971 ], [ -58.671501, -34.760099 ], [ -58.671091, -34.760366 ], [ -58.670696, -34.760591 ], [ -58.670377, -34.760697 ], [ -58.669148, -34.760907 ], [ -58.668136, -34.760922 ], [ -58.667264, -34.760881 ], [ -58.667023, -34.760869 ], [ -58.667, -34.760868 ], [ -58.666463, -34.760811 ], [ -58.665731, -34.760777 ], [ -58.664753, -34.760746 ], [ -58.664524, -34.760746 ], [ -58.663911, -34.760727 ], [ -58.662974, -34.760719 ], [ -58.662517, -34.760715 ], [ -58.662083, -34.760707 ], [ -58.661221, -34.760627 ], [ -58.661152999999899, -34.760646 ], [ -58.660651, -34.760726 ], [ -58.66091, -34.761298 ], [ -58.661963, -34.761706 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 162.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.725225586999954, -34.665115506999939 ], [ -58.725227, -34.665112 ], [ -58.726536, -34.664979 ], [ -58.727287, -34.664846 ], [ -58.728406, -34.664724 ], [ -58.728486, -34.665166 ], [ -58.727394, -34.665326 ], [ -58.727428, -34.665479 ], [ -58.726887, -34.666572 ], [ -58.726316, -34.66773 ], [ -58.725756, -34.668869 ], [ -58.725748, -34.668881 ], [ -58.72523, -34.670016 ], [ -58.724692, -34.671167 ], [ -58.724166, -34.672302 ], [ -58.723758, -34.673114 ], [ -58.722419, -34.673715 ], [ -58.721065, -34.67426 ], [ -58.721738, -34.675396 ], [ -58.721189, -34.67562 ], [ -58.720426, -34.675917 ], [ -58.719884, -34.676138 ], [ -58.719219, -34.675006 ], [ -58.717868, -34.675543 ], [ -58.716515999999899, -34.676087 ], [ -58.71649, -34.676095 ], [ -58.715131, -34.676637 ], [ -58.713919, -34.677121 ], [ -58.712657, -34.677625 ], [ -58.711708, -34.678002 ], [ -58.711468, -34.678098 ], [ -58.710959, -34.678315 ], [ -58.710106, -34.678632 ], [ -58.710053, -34.678662 ], [ -58.708737, -34.6792 ], [ -58.707533, -34.679699 ], [ -58.70741, -34.679734 ], [ -58.70704, -34.679822 ], [ -58.706217, -34.680169 ], [ -58.705395, -34.680512 ], [ -58.70465, -34.680832 ], [ -58.703751, -34.681214 ], [ -58.703304, -34.681401 ], [ -58.702914, -34.681565 ], [ -58.702558, -34.681698 ], [ -58.702023, -34.681919 ], [ -58.701317, -34.682203 ], [ -58.701197, -34.682251 ], [ -58.700241, -34.68264 ], [ -58.699579, -34.682873 ], [ -58.698941, -34.683166 ], [ -58.6979, -34.683582 ], [ -58.697277, -34.683838 ], [ -58.696398, -34.684192 ], [ -58.695407, -34.684589 ], [ -58.694952, -34.684738 ], [ -58.694528, -34.68494 ], [ -58.693663999999899, -34.685283 ], [ -58.692799, -34.685623 ], [ -58.69197, -34.685951 ], [ -58.690754, -34.686431 ], [ -58.689606, -34.686881 ], [ -58.6889, -34.687114 ], [ -58.688526, -34.68729 ], [ -58.688129, -34.687439 ], [ -58.686843, -34.687923 ], [ -58.687588, -34.688686 ], [ -58.688306, -34.68936 ], [ -58.688928, -34.689951 ], [ -58.6896, -34.690587 ], [ -58.690276, -34.691231 ], [ -58.690982, -34.691891 ], [ -58.691527, -34.692508 ], [ -58.691605, -34.692596 ], [ -58.691788, -34.692759 ], [ -58.692576, -34.693091 ], [ -58.69402, -34.694757 ], [ -58.69454, -34.695351 ], [ -58.695129, -34.695885 ], [ -58.695515, -34.696251 ], [ -58.696402, -34.697086 ], [ -58.696509, -34.697166 ], [ -58.697094, -34.697711 ], [ -58.697785, -34.698378 ], [ -58.697881, -34.698427 ], [ -58.698538, -34.69903 ], [ -58.698615, -34.699152 ], [ -58.699517, -34.699952 ], [ -58.700041, -34.700478 ], [ -58.700664, -34.701046 ], [ -58.700721, -34.701092 ], [ -58.701878, -34.702121 ], [ -58.702858, -34.702986 ], [ -58.703907, -34.703932 ], [ -58.704914, -34.704812 ], [ -58.705966, -34.705746 ], [ -58.706771, -34.706463 ], [ -58.707267, -34.70689 ], [ -58.707515, -34.707114 ], [ -58.708285, -34.70777 ], [ -58.708541, -34.708029 ], [ -58.709006, -34.708429 ], [ -58.709074, -34.708494 ], [ -58.710039, -34.709337 ], [ -58.710432, -34.709687 ], [ -58.711061, -34.710221 ], [ -58.711115, -34.710282 ], [ -58.712122, -34.711174 ], [ -58.713113, -34.712058 ], [ -58.713983, -34.712825 ], [ -58.71465, -34.713377 ], [ -58.714742, -34.713492 ], [ -58.714857, -34.713589 ], [ -58.714858, -34.713589 ], [ -58.715768, -34.714357 ], [ -58.716324, -34.714871 ], [ -58.716633, -34.715077 ], [ -58.716965, -34.715478 ], [ -58.71729, -34.715672 ], [ -58.717694, -34.716042 ], [ -58.718045, -34.716332 ], [ -58.71835, -34.716614 ], [ -58.719075, -34.71724 ], [ -58.71922, -34.71732 ], [ -58.719789, -34.717831 ], [ -58.720429, -34.7184 ], [ -58.721578, -34.719372 ], [ -58.721039, -34.720342 ], [ -58.720337, -34.720908 ], [ -58.71934, -34.721718 ], [ -58.71821, -34.722627 ], [ -58.714754, -34.725451 ], [ -58.714018, -34.726047 ], [ -58.713349, -34.726593 ], [ -58.712654, -34.727166 ], [ -58.711948, -34.727732 ], [ -58.711307, -34.728259 ], [ -58.711272, -34.728289 ], [ -58.709168, -34.729986 ], [ -58.708496, -34.730544 ], [ -58.70771, -34.731163 ], [ -58.706947, -34.731797 ], [ -58.70684, -34.731889 ], [ -58.706372, -34.732274 ], [ -58.705964, -34.732588 ], [ -58.705667, -34.732836 ], [ -58.705096, -34.733272 ], [ -58.704974, -34.733375 ], [ -58.704246, -34.733959 ], [ -58.704185, -34.734009 ], [ -58.700775, -34.736775 ], [ -58.700033, -34.737371 ], [ -58.699343, -34.737944 ], [ -58.697282, -34.739602 ], [ -58.696581, -34.740172 ], [ -58.695891, -34.740733 ], [ -58.695217, -34.741283 ], [ -58.694558, -34.741818 ], [ -58.693785, -34.742426 ], [ -58.69452, -34.743067 ], [ -58.695172, -34.743635 ], [ -58.6959, -34.744261 ], [ -58.696563, -34.74484 ], [ -58.697253, -34.745428 ], [ -58.698011, -34.746114 ], [ -58.699215, -34.7474 ], [ -58.699962, -34.748018 ], [ -58.700755, -34.748666 ], [ -58.701555, -34.749368 ], [ -58.702333, -34.750043 ], [ -58.703137, -34.750757 ], [ -58.703948, -34.751462 ], [ -58.704691, -34.752115 ], [ -58.705953, -34.753263 ], [ -58.706345, -34.752973 ], [ -58.707085, -34.753617 ], [ -58.70779, -34.754235 ], [ -58.707687, -34.754334 ], [ -58.70912, -34.755536 ], [ -58.709851, -34.756158 ], [ -58.710507, -34.756711 ], [ -58.711917, -34.757897 ], [ -58.712713, -34.75861 ], [ -58.713357, -34.759102 ], [ -58.714055, -34.759709 ], [ -58.714756, -34.760277 ], [ -58.716174, -34.761444 ], [ -58.717561, -34.762631 ], [ -58.718944, -34.763794 ], [ -58.720774, -34.765293 ], [ -58.720811, -34.765324 ], [ -58.721889, -34.764506 ], [ -58.721873, -34.764494 ], [ -58.721889, -34.764506 ], [ -58.721969, -34.764575 ], [ -58.722832, -34.765318 ], [ -58.723367, -34.765768 ], [ -58.72308, -34.766074 ], [ -58.723042, -34.766311 ], [ -58.722572, -34.766719 ], [ -58.722468, -34.76828 ], [ -58.722383, -34.769504 ], [ -58.722219, -34.769512 ], [ -58.722116, -34.769542 ], [ -58.722031999999899, -34.7696 ], [ -58.721905, -34.769867 ], [ -58.721905, -34.769962 ], [ -58.721955, -34.770008 ], [ -58.722035, -34.770096 ], [ -58.721768, -34.770386 ], [ -58.721653, -34.77069 ], [ -58.721584, -34.770925 ], [ -58.721543, -34.771123 ], [ -58.721512, -34.771628 ], [ -58.721668, -34.772232 ], [ -58.721958, -34.772868 ], [ -58.722767, -34.773544 ], [ -58.725183999999899, -34.775607 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 161.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.949209012299782, -34.901513068628255 ], [ -57.949126959958903, -34.905099928100924 ], [ -57.952573158275783, -34.902650079637567 ], [ -57.955620816651255, -34.90546330275339 ], [ -57.955562207836344, -34.909683137427116 ], [ -57.955784921333013, -34.909999625027645 ], [ -57.956042800118631, -34.910152007946422 ], [ -57.956054521881612, -34.91055054788783 ], [ -57.956089687170561, -34.910867035488359 ], [ -57.956089687170561, -34.911148357799938 ], [ -57.955960747777752, -34.911335906007665 ], [ -57.955702868992134, -34.911453123637486 ], [ -57.955351216102656, -34.911546897741346 ], [ -57.954929232635287, -34.911558619504333 ], [ -57.954483805641949, -34.911300740718715 ], [ -57.935682097817896, -34.925554404505533 ], [ -57.934843991764637, -34.925161725445619 ], [ -57.934111381578226, -34.925642317727906 ], [ -57.929147214955108, -34.920912586364437 ], [ -57.927986760419827, -34.92090086460145 ], [ -57.9274006722707, -34.920326498215303 ], [ -57.928010203945796, -34.919740410066176 ], [ -57.919963213658249, -34.912414308202067 ], [ -57.89919224965309, -34.928068722665301 ], [ -57.89919224965309, -34.9283383232139 ], [ -57.899168806127122, -34.92863136728846 ], [ -57.898981257919402, -34.928900967837059 ], [ -57.898641326792905, -34.929053350755837 ], [ -57.898254508614485, -34.929053350755837 ], [ -57.898066960406759, -34.929029907229868 ], [ -57.895851547203051, -34.930506849365678 ], [ -57.894011230414783, -34.931280485722525 ], [ -57.89103390261721, -34.932241670287098 ], [ -57.888478558287005, -34.932616766702544 ], [ -57.886356919187172, -34.932886367251143 ], [ -57.885301960518738, -34.933109080747812 ], [ -57.883942236012757, -34.933308350718512 ], [ -57.881644770468171, -34.934328144097996 ], [ -57.871646106644029, -34.937856394755762 ], [ -57.864448944172722, -34.937786064177864 ], [ -57.861823269264619, -34.937704011836985 ], [ -57.843326327278092, -34.947855058579911 ], [ -57.817116465249029, -34.958310871160371 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 159.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.097032416608833, -35.199783139296251 ], [ -59.093667913833116, -35.201940136474569 ], [ -59.093652432992123, -35.201857571989272 ], [ -59.093208648883667, -35.202141387407472 ], [ -59.090938125538081, -35.202110425725486 ], [ -59.089626124263951, -35.202058822922176 ], [ -59.089689337698005, -35.201042247696989 ], [ -59.090045397040832, -35.187422977833705 ], [ -59.090151182787608, -35.18198146222479 ], [ -59.093314434630436, -35.18211562951339 ], [ -59.093262831827133, -35.184829936967432 ], [ -59.095164395129082, -35.184860898649418 ], [ -59.095102471765109, -35.187502962178826 ], [ -59.096204191615769, -35.187495221758333 ], [ -59.096395121988003, -35.179259414350248 ], [ -59.096418343249482, -35.178358945432507 ], [ -59.092824207999037, -35.178299602208725 ], [ -59.092862910101516, -35.177352690768018 ], [ -59.094281987192531, -35.177393973010666 ], [ -59.095395317673926, -35.177403003501247 ], [ -59.095297272347644, -35.179281345541689 ], [ -59.095182456110273, -35.184849288018711 ], [ -59.095169555409456, -35.186638615223437 ], [ -59.095119242676233, -35.188420202007677 ], [ -59.092718422252304, -35.188396980746177 ], [ -59.091410291188403, -35.188369889274441 ], [ -59.091042621214847, -35.202057532852095 ], [ -59.093171236851333, -35.202091074674243 ], [ -59.093651142922106, -35.201807259256043 ], [ -59.093679524463923, -35.201115781691705 ], [ -59.094745122352251, -35.201115781691705 ], [ -59.096930501072393, -35.199730246422867 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 158.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.544726000304649, -34.532454000351777 ], [ -58.544061000214924, -34.533055000188085 ], [ -58.543481999594576, -34.533569999655697 ], [ -58.542859999689199, -34.534085000022685 ], [ -58.542022999761571, -34.533419999933017 ], [ -58.541185999833999, -34.532753999797194 ], [ -58.540456000344079, -34.53215400000704 ], [ -58.538395999775503, -34.532067999638457 ], [ -58.536615000381914, -34.530909000150189 ], [ -58.536464999759914, -34.530179999807103 ], [ -58.536379000290594, -34.529535999786503 ], [ -58.536358000221469, -34.52945000031724 ], [ -58.536293999968109, -34.529214000225863 ], [ -58.536186000383566, -34.528742000043223 ], [ -58.536056999830635, -34.528011999654041 ], [ -58.534663000297201, -34.528204999561012 ], [ -58.534490999559921, -34.527476000117247 ], [ -58.533524999978738, -34.526724999658938 ], [ -58.532602999728624, -34.526102999753618 ], [ -58.531659000262607, -34.525416000448047 ], [ -58.532194999799344, -34.524901000081059 ], [ -58.532689000097264, -34.524363999598847 ], [ -58.533375000256001, -34.523720999624402 ], [ -58.534137000322289, -34.522981999719491 ], [ -58.532903000073361, -34.522111000022562 ], [ -58.531937999638956, -34.521402999748602 ], [ -58.531143999895619, -34.520910000396157 ], [ -58.529426999856128, -34.519815000261985 ], [ -58.528891000319391, -34.52028799959146 ], [ -58.527818000300442, -34.519794000192917 ], [ -58.526766000350619, -34.519299999895054 ], [ -58.525371999917809, -34.518677999989677 ], [ -58.524083999876666, -34.518077000153369 ], [ -58.523784000431249, -34.517948999646592 ], [ -58.523097000226358, -34.517627000085952 ], [ -58.522130999745798, -34.51717599997238 ], [ -58.521166000210712, -34.51670399978974 ], [ -58.520199999730153, -34.516295999860461 ], [ -58.519513999571359, -34.515996000415043 ], [ -58.518547999990176, -34.515545000301472 ], [ -58.517325000248547, -34.515008999865415 ], [ -58.516703000343171, -34.515866999862112 ], [ -58.516101999607542, -34.51670399978974 ], [ -58.515780000046902, -34.517390999994632 ], [ -58.515565000024708, -34.517670000270243 ], [ -58.51504999965772, -34.51814199955362 ], [ -58.514578000374399, -34.518507000197872 ], [ -58.513998999753994, -34.51820599980698 ], [ -58.513656000124286, -34.518077000153369 ], [ -58.513012000103686, -34.517712999555215 ], [ -58.512110999922641, -34.517325999695061 ], [ -58.511102000157166, -34.516875999627644 ], [ -58.510136999722704, -34.516425000413392 ], [ -58.509150000072395, -34.515975000345918 ], [ -58.508204999660961, -34.515567000416695 ], [ -58.507240000125876, -34.515138000418347 ], [ -58.507884000146476, -34.514215000122135 ], [ -58.50848399993663, -34.513291999825867 ], [ -58.509084999772881, -34.51243399982917 ], [ -58.508120000237795, -34.512004999830822 ], [ -58.507132999688167, -34.511575999832473 ], [ -58.506210000291219, -34.51116799990325 ], [ -58.505265999925939, -34.510695999720554 ], [ -58.504257000160408, -34.510244999606982 ], [ -58.503269999610779, -34.509858999792982 ], [ -58.502305000075637, -34.509386999610285 ], [ -58.501359999664203, -34.508957999611937 ], [ -58.500373000013894, -34.508507000397685 ], [ -58.499450999763781, -34.50809999961524 ], [ -58.498485000182598, -34.507606000216697 ], [ -58.497476999563844, -34.507198000287417 ], [ -58.496575000236021, -34.506769000289069 ], [ -58.495545000401421, -34.506319000221652 ], [ -58.494601000036084, -34.505889000177149 ], [ -58.493656999670748, -34.5054600001788 ], [ -58.493206999603331, -34.506361000359846 ], [ -58.492692000135662, -34.507326999941029 ], [ -58.492218999906868, -34.508271000306365 ], [ -58.491789999908519, -34.509021999865354 ], [ -58.491597000001491, -34.509407999679411 ], [ -58.491339999841102, -34.509837999723857 ], [ -58.490888999727531, -34.51061000025129 ], [ -58.490374000259862, -34.511425000063639 ], [ -58.489881000008097, -34.51228400010649 ], [ -58.489386999710234, -34.513185000287478 ], [ -58.488894000357789, -34.51419400005301 ], [ -58.488829000058274, -34.514279000375495 ], [ -58.488679000335537, -34.514623000051358 ], [ -58.488077999599966, -34.515932000161627 ], [ -58.4873490001562, -34.517198000087603 ], [ -58.486711999559077, -34.518348000060087 ], [ -58.486683000020378, -34.518398999714009 ], [ -58.486319000321544, -34.519042999734609 ], [ -58.486061000115001, -34.519558000101597 ], [ -58.485931999562069, -34.519751000008625 ], [ -58.485288999587624, -34.520910000396157 ], [ -58.484752000004733, -34.522089999953494 ], [ -58.484733000027916, -34.522126999861086 ], [ -58.484301999937315, -34.522970000065413 ], [ -58.483765000354424, -34.52391400043075 ], [ -58.483272000102659, -34.524814999712419 ], [ -58.483143000449047, -34.52502999973467 ], [ -58.482734999620504, -34.52573800000863 ], [ -58.482649000151184, -34.525908999800436 ], [ -58.482242000268059, -34.526660000258744 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.4743670004367, -34.541680999578432 ], [ -58.473938000438352, -34.542453000105809 ], [ -58.473529999609752, -34.543290000033437 ], [ -58.473873000138781, -34.543396999571826 ], [ -58.474816999604798, -34.54369799996266 ], [ -58.475717999785843, -34.54402000042262 ], [ -58.476726999551374, -34.54434199998326 ], [ -58.47773800030842, -34.54467199991285 ], [ -58.478700999751311, -34.545007000072928 ], [ -58.479688000300939, -34.545349999702694 ], [ -58.480546000297636, -34.545628999978305 ], [ -58.479966999677231, -34.546401999652517 ], [ -58.479387999956202, -34.547153000110825 ], [ -58.478808000189019, -34.547924999738882 ], [ -58.478208000398865, -34.548719000381539 ], [ -58.477606999663237, -34.549469999940527 ], [ -58.477241999918306, -34.549942000123167 ], [ -58.477005999826986, -34.550263999683807 ], [ -58.476448000175026, -34.550993000026892 ], [ -58.475868999554621, -34.551743999585881 ], [ -58.475095999880466, -34.552774000319801 ], [ -58.474258999952838, -34.553911999738943 ], [ -58.473659000162684, -34.554663000197252 ], [ -58.473143999795695, -34.555370999571949 ], [ -58.474066000045809, -34.555863999823714 ], [ -58.472779000050764, -34.556808000188994 ], [ -58.471855999754553, -34.557537999678914 ], [ -58.470954999573507, -34.558395999675611 ], [ -58.472027999592456, -34.558976000342113 ], [ -58.472650000397152, -34.559297999902753 ], [ -58.472949999842569, -34.559468999694559 ], [ -58.473572999794044, -34.559770000085393 ], [ -58.472692999682124, -34.560734999620479 ], [ -58.472086999615271, -34.561462999917467 ], [ -58.472048999661581, -34.56150800019401 ], [ -58.471211999733953, -34.562472999729096 ], [ -58.470504000359313, -34.563288999587598 ], [ -58.469603000178267, -34.564319000321575 ], [ -58.468959000157668, -34.565069999880564 ], [ -58.468165000414388, -34.565971000061552 ], [ -58.467370999771788, -34.566894000357763 ], [ -58.466555999959382, -34.567858999892906 ], [ -58.465741000146977, -34.568782000189117 ], [ -58.464925000288474, -34.569746999724202 ], [ -58.464152999761097, -34.570626999836122 ], [ -58.463165000064635, -34.571787000269808 ], [ -58.461728000346909, -34.573394999779396 ], [ -58.461535000439881, -34.573481000147979 ], [ -58.46052599977503, -34.57393200026155 ], [ -58.459839999616236, -34.574231999706967 ], [ -58.459839999616236, -34.574703999889664 ], [ -58.459839999616236, -34.574983000165275 ], [ -58.459860999685361, -34.575605000070652 ], [ -58.459903999869653, -34.576849999927504 ], [ -58.460226000329612, -34.578287999691383 ], [ -58.459689999893556, -34.578308999760509 ], [ -58.458509000290064, -34.5783519999448 ], [ -58.458016000038356, -34.578395000129092 ], [ -58.45735099994863, -34.578544999851829 ], [ -58.457222000295019, -34.57858800003612 ], [ -58.455977000438168, -34.578888000380857 ], [ -58.454862000281025, -34.579209999941497 ], [ -58.453531000055591, -34.579661000055069 ], [ -58.453037999803826, -34.579832999892972 ], [ -58.452115000406877, -34.58011200016864 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.449990999584941, -34.580862999727628 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.451214000225889, -34.582901000180982 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.452221999945323, -34.587150000072427 ], [ -58.45181500006214, -34.586334000213867 ], [ -58.450226999676261, -34.586935000050175 ], [ -58.449153999657312, -34.587364000048524 ], [ -58.448123999822712, -34.587793000046872 ], [ -58.447072999918987, -34.588223000091318 ], [ -58.445999999900039, -34.588652000089667 ], [ -58.445076999603828, -34.589595999555684 ], [ -58.444154000206879, -34.590433000382632 ], [ -58.443574999586531, -34.590991000034592 ], [ -58.443296000210182, -34.591269000264106 ], [ -58.442631000120514, -34.592041999938317 ], [ -58.441729999939525, -34.59300800041882 ], [ -58.440849999827606, -34.593951999884837 ], [ -58.440012999899977, -34.594809999881534 ], [ -58.439198000087572, -34.595689999993454 ], [ -58.43836100016, -34.596591000174499 ], [ -58.437481000048081, -34.597534999640459 ], [ -58.436600999936161, -34.598457999936727 ], [ -58.435935999846492, -34.599187000279812 ], [ -58.435142000103156, -34.600024000207384 ], [ -58.434069000084264, -34.599338000048647 ], [ -58.433296999556831, -34.600173999930121 ], [ -58.432545999997842, -34.601054000042041 ], [ -58.431858999792951, -34.601719000131709 ], [ -58.431108000233962, -34.600861000135012 ], [ -58.431043999980602, -34.600774999766372 ], [ -58.430184999937751, -34.599767000046995 ], [ -58.429734999870334, -34.599831000300355 ], [ -58.428210999737814, -34.599981000023092 ], [ -58.426751999904809, -34.600109999676704 ], [ -58.425314000140929, -34.600260000298704 ], [ -58.423768999939341, -34.600410000021441 ], [ -58.42220999999148, -34.600561999836373 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.419177999564965, -34.600840000065887 ], [ -58.419328000187022, -34.602040999692349 ], [ -58.419521000094051, -34.603328999733492 ], [ -58.419649999747662, -34.604358999568149 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.419885999838982, -34.606011000207445 ], [ -58.419929000023274, -34.606676000297114 ], [ -58.419971000161468, -34.607255000018199 ], [ -58.420056999630788, -34.608520999944176 ], [ -58.419929000023274, -34.60970200044693 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.417288999687571, -34.610925000188558 ], [ -58.415765999601149, -34.610859999889044 ], [ -58.4144570003902, -34.610753000350655 ], [ -58.413105000095641, -34.610645999912947 ], [ -58.411731999731956, -34.610560000443627 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.406131000445271, -34.609958999707999 ], [ -58.406024000007562, -34.609808999985319 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406173999730242, -34.609187000079942 ], [ -58.406536000236201, -34.609100999711302 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 157.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.390424000067526, -34.707762999862496 ], [ -58.390809999881526, -34.708857999996667 ], [ -58.39016699990708, -34.709308000064084 ], [ -58.389137000072481, -34.710037999554004 ], [ -58.388515000167104, -34.710487999621421 ], [ -58.387635000055184, -34.709737000062432 ], [ -58.386776000012333, -34.708985999604181 ], [ -58.385918000015636, -34.708235000045192 ], [ -58.385124000272356, -34.707483999586884 ], [ -58.384202000022242, -34.706733000027896 ], [ -58.383150000072419, -34.705788999662559 ], [ -58.382205999707082, -34.705038000103571 ], [ -58.381325999595163, -34.704308999760485 ], [ -58.380382000129146, -34.703579000270622 ], [ -58.379415999648643, -34.702784999627966 ], [ -58.378515000366917, -34.702055000138103 ], [ -58.377678000439346, -34.701390000048434 ], [ -58.377763999908609, -34.701303999679794 ], [ -58.378407999929209, -34.700681999774417 ], [ -58.379265999925906, -34.699866999962012 ], [ -58.380146000037826, -34.69903000003444 ], [ -58.380896999596814, -34.698408000129064 ], [ -58.381411999963802, -34.697978000084618 ], [ -58.380488999667534, -34.697226999626309 ], [ -58.379996000315145, -34.697699999855047 ], [ -58.379309000110254, -34.698342999829549 ], [ -58.378407999929209, -34.697634999555532 ], [ -58.377614000185929, -34.697012999650156 ], [ -58.377334999910261, -34.696797999627961 ], [ -58.376133000237758, -34.696069000184195 ], [ -58.374931999711976, -34.695338999794956 ], [ -58.373601000385804, -34.69452399998255 ], [ -58.372613999836176, -34.693708000124047 ], [ -58.372271000206467, -34.693407999779311 ], [ -58.371584000001576, -34.692829000058282 ], [ -58.370576000282142, -34.691948999946362 ], [ -58.369546000447542, -34.691112000018734 ], [ -58.368558999897914, -34.690254000022037 ], [ -58.367529000063257, -34.689352999841049 ], [ -58.366735000319977, -34.688665999636157 ], [ -58.365962999792544, -34.688021999615557 ], [ -58.365190000118389, -34.68731400024086 ], [ -58.364459999729149, -34.686670000220317 ], [ -58.362528999713504, -34.684932000111644 ], [ -58.361842999554767, -34.684310000206324 ], [ -58.361585000247544, -34.684074000114947 ], [ -58.36104899981143, -34.684525000228518 ], [ -58.360404999790887, -34.683987999746364 ], [ -58.359996999861607, -34.683645000116599 ], [ -58.358967000027008, -34.682786000073804 ], [ -58.358324000052505, -34.682228999568622 ], [ -58.357937000192351, -34.681884999892759 ], [ -58.356907000357751, -34.680983999711771 ], [ -58.355749000016317, -34.679953999877171 ], [ -58.354868999904397, -34.679160000133834 ], [ -58.353945999608129, -34.678345000321485 ], [ -58.35471900018166, -34.677701000300885 ], [ -58.355577000178357, -34.676993000026869 ], [ -58.356457000290277, -34.67624199956856 ], [ -58.357357999572002, -34.67553400019392 ], [ -58.358280999868214, -34.674782999735612 ], [ -58.359138999864911, -34.674353999737264 ], [ -58.359911000392287, -34.673945999807984 ], [ -58.360319000321567, -34.673730999785789 ], [ -58.360790999604887, -34.673473999625344 ], [ -58.361585000247544, -34.673023000411092 ], [ -58.361585000247544, -34.672744000135481 ], [ -58.361305999971876, -34.672508000044104 ], [ -58.361177000318264, -34.672294000068007 ], [ -58.362679000335561, -34.670019000376499 ], [ -58.363151999665035, -34.669333000217762 ], [ -58.363859999938995, -34.668238000083591 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370329999729677, -34.657594000262861 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.370951999635054, -34.65634900040601 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371535000439906, -34.654770000435121 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.37228499995274, -34.65246100007505 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374094999784347, -34.649955999669601 ], [ -58.374109999576774, -34.649869000154183 ], [ -58.374115999853473, -34.649827000015989 ], [ -58.374031000430307, -34.649656000224184 ], [ -58.373836999577804, -34.649526999671252 ], [ -58.373257999856776, -34.649376999948572 ], [ -58.372872000042719, -34.649227000225835 ], [ -58.372785999674079, -34.649184000041544 ], [ -58.372722000320039, -34.648819000296555 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.372978999581107, -34.647380999633356 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.373257999856776, -34.645664999639962 ], [ -58.373665999785999, -34.643604999970705 ], [ -58.373879999762153, -34.642360000113854 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377699999655192, -34.629979000230605 ], [ -58.378, -34.630172000137634 ], [ -58.378128999653597, -34.630300999791245 ], [ -58.378281000367849, -34.630320999814273 ], [ -58.3784510001135, -34.630343999975594 ], [ -58.378644000020529, -34.630257999606954 ], [ -58.378687000204877, -34.630215000321982 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.380764999804853, -34.627759000377523 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 153.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.445463000317147, -34.542089000406975 ], [ -58.444261999791422, -34.542496000290157 ], [ -58.443595999655599, -34.542689000197186 ], [ -58.441322000010246, -34.543396999571826 ], [ -58.441235999641606, -34.543439999756117 ], [ -58.441085999918926, -34.5437840003313 ], [ -58.441088000011177, -34.543864999570019 ], [ -58.441129000103217, -34.545413999956111 ], [ -58.439501999717493, -34.545393999933083 ], [ -58.4393909999946, -34.545392999886985 ], [ -58.438983000065377, -34.545457000140402 ], [ -58.43891899981196, -34.545522000439917 ], [ -58.438746999974001, -34.545542999609722 ], [ -58.438618000320446, -34.545500000324694 ], [ -58.438575000136098, -34.545413999956111 ], [ -58.438575000136098, -34.545328999633568 ], [ -58.43859700025132, -34.544963999888637 ], [ -58.438510999882681, -34.544555999959414 ], [ -58.438488999767458, -34.544406000236677 ], [ -58.43812500006868, -34.543741000147008 ], [ -58.437545000301498, -34.54307600005734 ], [ -58.437073000118801, -34.54275399959738 ], [ -58.436793999843189, -34.54266800012806 ], [ -58.436494000397772, -34.542624999943769 ], [ -58.43567799963995, -34.542732000381477 ], [ -58.434841999758419, -34.542947000403728 ], [ -58.434742999689661, -34.542980000126875 ], [ -58.434069000084264, -34.543203999664797 ], [ -58.433339999741179, -34.54354800023998 ], [ -58.43297800013454, -34.543770999731805 ], [ -58.432610000251259, -34.543998000307397 ], [ -58.432159000137688, -34.544298999798968 ], [ -58.431752000254562, -34.544663000397122 ], [ -58.431569999955514, -34.54489999963522 ], [ -58.431323000256214, -34.545221000049082 ], [ -58.431092000395438, -34.545830000254284 ], [ -58.431021999865379, -34.546014999792362 ], [ -58.430978999681031, -34.546851999719991 ], [ -58.431023999957574, -34.547166999857097 ], [ -58.431108000233962, -34.547752999900979 ], [ -58.431087000164894, -34.548332999668162 ], [ -58.43104199988835, -34.548627999782298 ], [ -58.431021999865379, -34.54876199966651 ], [ -58.430851000073574, -34.549211999733984 ], [ -58.430657000120391, -34.549619999663207 ], [ -58.430356999775654, -34.549963000192236 ], [ -58.430207000052974, -34.550135000030195 ], [ -58.429755999939402, -34.550542999959418 ], [ -58.429363999848647, -34.550755999889418 ], [ -58.429005000380414, -34.550950999888698 ], [ -58.428104000199426, -34.551466000255687 ], [ -58.427554000017039, -34.551704999586036 ], [ -58.427267000271797, -34.551829999954464 ], [ -58.425744000185432, -34.552409999721647 ], [ -58.425218000210521, -34.552577000228325 ], [ -58.424391999890815, -34.552838999719995 ], [ -58.423296999756701, -34.553161000179955 ], [ -58.423256999710702, -34.553170999741781 ], [ -58.422782000289033, -34.553288999787469 ], [ -58.421521999740435, -34.55359699960178 ], [ -58.420056999630788, -34.553954999923292 ], [ -58.418653999682306, -34.554308000014146 ], [ -58.417331999871863, -34.554641000082029 ], [ -58.416494999944234, -34.554877000173349 ], [ -58.415469000294081, -34.555229000218162 ], [ -58.414992999926938, -34.555391999641017 ], [ -58.413914999677445, -34.555947000053948 ], [ -58.412869000004321, -34.556486999775188 ], [ -58.412332999568207, -34.556830000304217 ], [ -58.411689000446984, -34.557259000302565 ], [ -58.411355000332946, -34.557512000278564 ], [ -58.410014999692464, -34.558525000228542 ], [ -58.409101999857342, -34.559354999833317 ], [ -58.409071000226447, -34.559383000225239 ], [ -58.40821300022975, -34.560263000337159 ], [ -58.407922000300061, -34.560579999667198 ], [ -58.407741000047054, -34.560777999804827 ], [ -58.407311000002608, -34.561249999987467 ], [ -58.406791000304395, -34.561824000377271 ], [ -58.406260000098882, -34.562409000374998 ], [ -58.405471999732981, -34.563435000025208 ], [ -58.405122999826517, -34.563890000323227 ], [ -58.404579999966984, -34.564633999559362 ], [ -58.404372000267585, -34.564919000111729 ], [ -58.403567000017006, -34.565968999969357 ], [ -58.4033849997179, -34.566207000152872 ], [ -58.403015999788522, -34.566674000104967 ], [ -58.402740999697357, -34.567021999965277 ], [ -58.402011000207438, -34.567858999892906 ], [ -58.401658000116583, -34.56821199998376 ], [ -58.401604000324312, -34.568266999822129 ], [ -58.401023999657809, -34.568716999889602 ], [ -58.400252000029752, -34.569232000256591 ], [ -58.399793999593385, -34.569514999817329 ], [ -58.398963999988553, -34.570025999999871 ], [ -58.398448999621621, -34.570390999744802 ], [ -58.398342000083176, -34.570456000044317 ], [ -58.398100999761311, -34.570594000112976 ], [ -58.396974999996189, -34.571241000271925 ], [ -58.396044000230404, -34.571775999762508 ], [ -58.395617000324251, -34.57202200031503 ], [ -58.395264000233396, -34.572248999991302 ], [ -58.395015999588679, -34.572408000129087 ], [ -58.394436999867594, -34.572708999620602 ], [ -58.394339999891031, -34.572759000127689 ], [ -58.393900000284759, -34.572987999896213 ], [ -58.393689999593789, -34.573106999987999 ], [ -58.393032999873014, -34.573479000055784 ], [ -58.391549999832591, -34.574320000167802 ], [ -58.391174999626514, -34.574533000097858 ], [ -58.390893000111816, -34.574692000235586 ], [ -58.390531999652012, -34.574896999796636 ], [ -58.390274000344789, -34.575132999888012 ], [ -58.390203999814673, -34.5752170001644 ], [ -58.390038000253469, -34.575412000163624 ], [ -58.389758999977801, -34.575905999562167 ], [ -58.389437000417217, -34.576249000091252 ], [ -58.389402999748597, -34.576277999629951 ], [ -58.388793000396618, -34.576785999674087 ], [ -58.388554000166948, -34.576927999927193 ], [ -58.387635000055184, -34.577471999832881 ], [ -58.386994000172933, -34.577793000246743 ], [ -58.386904999665944, -34.577836999577812 ], [ -58.386605000220527, -34.577900999831229 ], [ -58.386347000013984, -34.577987000199869 ], [ -58.385908999600588, -34.578159000037772 ], [ -58.385853999762219, -34.578180000106897 ], [ -58.385252999925967, -34.578265999576161 ], [ -58.384608999905367, -34.578180000106897 ], [ -58.38428600029863, -34.578180000106897 ], [ -58.384115999653602, -34.578180000106897 ], [ -58.383429000348031, -34.578245000406412 ], [ -58.383125999864944, -34.578345999668102 ], [ -58.383042999634711, -34.578373000013869 ], [ -58.382677999889722, -34.578544999851829 ], [ -58.382012999800054, -34.578929999619731 ], [ -58.38048400033631, -34.579814999962252 ], [ -58.380232000406465, -34.579961000399805 ], [ -58.379996000315145, -34.580090000053417 ], [ -58.379781000292894, -34.580154000306834 ], [ -58.379088999857402, -34.580111000122542 ], [ -58.377655000278025, -34.580020000422621 ], [ -58.377055999634649, -34.579982999615709 ], [ -58.376327000190884, -34.57994000033068 ], [ -58.376124999868807, -34.579989999938505 ], [ -58.376068999984341, -34.580003999684777 ], [ -58.375039000149684, -34.580562000236057 ], [ -58.374309999806599, -34.581013000349628 ], [ -58.373922999946444, -34.581249000440948 ], [ -58.373777000408211, -34.581330999725822 ], [ -58.373429999694679, -34.581527999817297 ], [ -58.372285999998837, -34.582166999607296 ], [ -58.371066000395558, -34.582848999581643 ], [ -58.370704999935754, -34.583050999903662 ], [ -58.370210999637891, -34.58333000017933 ], [ -58.369052000149622, -34.583995000268999 ], [ -58.368730999735817, -34.584167000106902 ], [ -58.366627999882269, -34.585389999848587 ], [ -58.367206999603297, -34.586098000122547 ], [ -58.367421999625549, -34.58635600032909 ], [ -58.367936999992537, -34.586978000234467 ], [ -58.368107999784343, -34.587235000394912 ], [ -58.369180999803234, -34.588543999605861 ], [ -58.369246000102805, -34.588629999974501 ], [ -58.370232999753114, -34.589831999647004 ], [ -58.370340000190822, -34.589939000084769 ], [ -58.370489999913502, -34.589961000199935 ], [ -58.370661999751462, -34.589961000199935 ], [ -58.370833000442587, -34.589831999647004 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371326999841131, -34.589037999903724 ], [ -58.37141300020977, -34.588831000250423 ], [ -58.371541999863382, -34.588523000436055 ], [ -58.371691999586062, -34.588480000251764 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.372534999790389, -34.589328999833413 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.373896999646774, -34.590998000357388 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.374267999668405, -34.593357000325284 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373525999625144, -34.593998000207478 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372573999790234, -34.595930000269277 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371863000277187, -34.597599999939973 ], [ -58.371498999679034, -34.598371999568087 ], [ -58.372828999858427, -34.598501000121018 ], [ -58.374202000222112, -34.598586999590339 ], [ -58.375360999710324, -34.598671999912824 ], [ -58.376799000373524, -34.59878000039663 ], [ -58.378279000275597, -34.598886999935075 ], [ -58.379744000385244, -34.59895200023459 ], [ -58.381154999803357, -34.599015999588687 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.381626999985997, -34.599894999654452 ], [ -58.381670000170345, -34.600196000045344 ], [ -58.381604999870831, -34.601333000317652 ], [ -58.381561999686483, -34.60249199980592 ], [ -58.381540999617414, -34.602663999643823 ], [ -58.381381000332851, -34.602843999850677 ], [ -58.381279000125687, -34.602906000011842 ], [ -58.381154999803357, -34.603092999642172 ], [ -58.381069000334037, -34.603651000193452 ], [ -58.381089000357065, -34.603929000422966 ], [ -58.381110999572911, -34.604224999683936 ], [ -58.381132999688134, -34.604294000167954 ], [ -58.381347999710385, -34.604658999912886 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.381305000425414, -34.606074999561542 ], [ -58.381240000125842, -34.607255000018199 ], [ -58.381175999872482, -34.608371000221439 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.381090000403162, -34.60961600007829 ], [ -58.381047000218871, -34.610795999635627 ], [ -58.380960999850231, -34.611804000254381 ], [ -58.380918999712037, -34.613028000042107 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380790000058425, -34.61523800033342 ], [ -58.380746999874077, -34.616395999775534 ], [ -58.380681999574563, -34.617577000278288 ], [ -58.380640000335688, -34.618456000344111 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.381455000148094, -34.619722000270031 ], [ -58.381476000217219, -34.620988000196007 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.381411999963802, -34.622768999589596 ], [ -58.381390999894677, -34.622941000326875 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.381390999894677, -34.628991999680977 ], [ -58.381347999710385, -34.630151000068565 ], [ -58.381347999710385, -34.630880000411651 ], [ -58.382613999636305, -34.631738999555125 ], [ -58.383000000349682, -34.631995999715571 ], [ -58.383214000325836, -34.632297000106405 ], [ -58.383278999726031, -34.632511000082559 ], [ -58.383321999910322, -34.63263999973617 ], [ -58.383386000163739, -34.632832999643199 ], [ -58.383299999795099, -34.63334800001013 ], [ -58.383150000072419, -34.633540999917159 ], [ -58.382698999958848, -34.634119999638244 ], [ -58.382420999729334, -34.63454999968269 ], [ -58.381776999708734, -34.636930999765809 ], [ -58.381347999710385, -34.638411999713981 ], [ -58.380876000427065, -34.640149999822597 ], [ -58.380918999712037, -34.642102999953465 ], [ -58.379953000130797, -34.642210000391174 ], [ -58.379738000108603, -34.642059999769117 ], [ -58.379458999832934, -34.642960999950162 ], [ -58.379288000041129, -34.643733999624317 ], [ -58.379201999672489, -34.643969999715694 ], [ -58.37885900004278, -34.644914000080973 ], [ -58.37821500002218, -34.646372999913979 ], [ -58.377549999932512, -34.647831999746927 ], [ -58.37718500018758, -34.648798000227487 ], [ -58.378258000206529, -34.648969000019292 ], [ -58.378192999906958, -34.649118999742029 ], [ -58.377742999839541, -34.650342000382977 ], [ -58.377334999910261, -34.651457999686897 ], [ -58.377077999749872, -34.652165999960914 ], [ -58.376883999796689, -34.652638000143554 ], [ -58.378279000275597, -34.653002999888486 ], [ -58.378815999858489, -34.653132000441417 ], [ -58.37965299978606, -34.653346999564349 ], [ -58.381154999803357, -34.653733000277725 ], [ -58.382269999960499, -34.654011999654017 ], [ -58.383342999979448, -34.654290999929685 ], [ -58.38415899983795, -34.654483999836657 ], [ -58.385467999948219, -34.654827000365742 ], [ -58.387055000288001, -34.655213000179799 ], [ -58.388664999889784, -34.655600000039954 ], [ -58.388599999590269, -34.656178999760982 ], [ -58.388557000305298, -34.656887000034999 ], [ -58.388449999867532, -34.658175000076142 ], [ -58.388309999706678, -34.659665999586196 ], [ -58.388278000029629, -34.659997999607924 ], [ -58.388213999776212, -34.660276999883592 ], [ -58.388170999591921, -34.661374000109959 ], [ -58.388085000122601, -34.662401999852364 ], [ -58.388385999614172, -34.663238999779992 ], [ -58.388729000143201, -34.663947000053952 ], [ -58.389224999633996, -34.665161000279909 ], [ -58.389781000093024, -34.666522000090197 ], [ -58.388729000143201, -34.667336999902602 ], [ -58.387827999962212, -34.668045000176562 ], [ -58.388857999796812, -34.668925000288482 ], [ -58.389223000441064, -34.669267999918191 ], [ -58.389672999609218, -34.669696999916596 ], [ -58.390573999790206, -34.67046999959075 ], [ -58.390682000274069, -34.670577000028459 ], [ -58.389715999793509, -34.671391999840864 ], [ -58.388708000074075, -34.672207999699367 ], [ -58.387678000239475, -34.673023000411092 ], [ -58.386668999574624, -34.673860000338721 ], [ -58.385638999740024, -34.674675000151069 ], [ -58.384652000089716, -34.675468999894406 ], [ -58.383622000255059, -34.676284999752909 ], [ -58.382936000096265, -34.676843000304189 ], [ -58.383299999795099, -34.677637000047469 ], [ -58.383492999702128, -34.678043999930594 ], [ -58.383558000001642, -34.678194999699429 ], [ -58.383815000162087, -34.678752000204611 ], [ -58.384051000253407, -34.679266999672279 ], [ -58.384329999629756, -34.679932999808045 ], [ -58.384587999836299, -34.680490000313227 ], [ -58.38518899967255, -34.68186399982369 ], [ -58.385252999925967, -34.682056999730719 ], [ -58.385617999670899, -34.682872000442444 ], [ -58.385768000292956, -34.68321600011825 ], [ -58.385896999946567, -34.683558999748016 ], [ -58.386303999829693, -34.684482000044227 ], [ -58.386668999574624, -34.685361000110049 ], [ -58.386690999689847, -34.685426000409564 ], [ -58.386733999874139, -34.685555000063175 ], [ -58.387055000288001, -34.686305999622164 ], [ -58.387183999941612, -34.686649000151192 ], [ -58.387442000148155, -34.687206999803152 ], [ -58.387849000031281, -34.68819400035278 ], [ -58.387892000215572, -34.6882799998221 ], [ -58.388041999938309, -34.688644000420254 ], [ -58.388213999776212, -34.689094999634506 ], [ -58.388621999705492, -34.690061000115008 ], [ -58.389008000418869, -34.690983000365122 ], [ -58.389418999587122, -34.691921999600538 ], [ -58.389458999633064, -34.692013000199779 ], [ -58.389566000070829, -34.692228000221974 ], [ -58.389930999815761, -34.693150999618922 ], [ -58.389995000069177, -34.693279000125699 ], [ -58.390295999560692, -34.694008999615619 ], [ -58.390316999629761, -34.69405199979991 ], [ -58.390660000158846, -34.694909999796607 ], [ -58.391024999903777, -34.695789999908527 ], [ -58.391368000432806, -34.696647999905224 ], [ -58.391733000177794, -34.697505999901921 ], [ -58.392054999738434, -34.698299999645201 ], [ -58.392011999554086, -34.699866999962012 ], [ -58.392011999554086, -34.700252999776069 ], [ -58.391969000269114, -34.701325999795017 ], [ -58.391926000084823, -34.702376999698743 ], [ -58.391905000015697, -34.702485000182548 ], [ -58.391882999900474, -34.703449999717691 ], [ -58.391861999831406, -34.703965000084622 ], [ -58.391839999716183, -34.704673000358639 ], [ -58.391818999647057, -34.705423999917627 ], [ -58.391818999647057, -34.705638999939879 ], [ -58.39175500029296, -34.706668999774479 ], [ -58.39175500029296, -34.706776000212187 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.391991000384337, -34.709587000339752 ], [ -58.393105999642103, -34.709414999602529 ], [ -58.394178999661051, -34.709264999879792 ], [ -58.395251999679999, -34.709094000087987 ], [ -58.396324999698948, -34.708943000319152 ], [ -58.397247999995159, -34.708814999812375 ], [ -58.398321000014107, -34.708664000043541 ], [ -58.399286000448512, -34.708556999605776 ], [ -58.400466000005849, -34.708384999767873 ], [ -58.401646999609284, -34.708213999976067 ], [ -58.402525999675106, -34.708085000322455 ], [ -58.404350000152363, -34.707806000046844 ], [ -58.405808999985311, -34.707613000139816 ], [ -58.406002999938437, -34.708536000436027 ], [ -58.406110000376202, -34.709071999972764 ], [ -58.406239000029814, -34.709693999878141 ], [ -58.406475000121134, -34.710832000196604 ], [ -58.406711000212454, -34.71201199975394 ], [ -58.406947000303774, -34.713149000026306 ], [ -58.407118000095579, -34.714072000322517 ], [ -58.407311000002608, -34.714993999673311 ], [ -58.407439999656219, -34.715960000153814 ], [ -58.407504999955734, -34.716003000338162 ], [ -58.407053999842162, -34.716582000059191 ], [ -58.406711000212454, -34.717011000057539 ], [ -58.406581999659522, -34.717161999826374 ], [ -58.406409999821619, -34.717397999917694 ], [ -58.406131000445271, -34.717741000446779 ], [ -58.405980999823271, -34.717955999569654 ], [ -58.405638000193505, -34.718448999821419 ], [ -58.405252000379448, -34.71889999993499 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 151.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.617327, -34.648369 ], [ -58.617232, -34.648392 ], [ -58.616145, -34.648384 ], [ -58.616176, -34.649302 ], [ -58.616197, -34.649962 ], [ -58.616219, -34.650619 ], [ -58.616254, -34.651777 ], [ -58.617391, -34.651764 ], [ -58.618563, -34.651733 ], [ -58.619846, -34.651701 ], [ -58.621191, -34.651688 ], [ -58.622695, -34.651649 ], [ -58.624203, -34.651627 ], [ -58.625317, -34.651612 ], [ -58.625349, -34.652885 ], [ -58.625367, -34.653823 ], [ -58.625386, -34.654741 ], [ -58.625386, -34.655603 ], [ -58.625401, -34.655667 ], [ -58.625416, -34.655766 ], [ -58.625443, -34.657153 ], [ -58.625466, -34.658396 ], [ -58.625504, -34.659403 ], [ -58.625497, -34.66052 ], [ -58.625329, -34.660519 ], [ -58.625345, -34.661541 ], [ -58.625354, -34.662128 ], [ -58.62616, -34.663615 ], [ -58.626449, -34.664234 ], [ -58.626578, -34.664506 ], [ -58.626794, -34.664881 ], [ -58.627223, -34.665734 ], [ -58.627559, -34.666352 ], [ -58.628018, -34.667268 ], [ -58.628487, -34.668227 ], [ -58.631044, -34.673757 ], [ -58.631602, -34.674941 ], [ -58.632131, -34.676078 ], [ -58.632661, -34.677196 ], [ -58.633215, -34.678336 ], [ -58.633472, -34.678867 ], [ -58.633729, -34.679478 ], [ -58.634276, -34.680596 ], [ -58.634603, -34.681344 ], [ -58.634778, -34.681734 ], [ -58.635351, -34.682907 ], [ -58.635771, -34.68383 ], [ -58.635899, -34.684148 ], [ -58.63612, -34.685419 ], [ -58.63638, -34.68684 ], [ -58.636577, -34.687792 ], [ -58.636664, -34.688279 ], [ -58.636839, -34.689299 ], [ -58.636904, -34.689746 ], [ -58.63701, -34.69054 ], [ -58.637058, -34.691033 ], [ -58.637133, -34.69158 ], [ -58.637218, -34.691828 ], [ -58.637291, -34.692071 ], [ -58.637504, -34.692452 ], [ -58.637576, -34.69257 ], [ -58.637673, -34.69273 ], [ -58.637721, -34.692794 ], [ -58.637917, -34.693054 ], [ -58.638085, -34.69328 ], [ -58.638566, -34.693725 ], [ -58.638899, -34.693997 ], [ -58.639502, -34.694483 ], [ -58.640304, -34.695087 ], [ -58.640441, -34.695078 ], [ -58.640514, -34.695216 ], [ -58.640735, -34.695381 ], [ -58.640986, -34.695473 ], [ -58.641287, -34.695596 ], [ -58.641478, -34.695674 ], [ -58.642071, -34.695855 ], [ -58.642407, -34.695957 ], [ -58.643402, -34.696104 ], [ -58.644142, -34.696228 ], [ -58.644398, -34.696266 ], [ -58.644986, -34.696352 ], [ -58.647579, -34.696751 ], [ -58.649083, -34.697071 ], [ -58.649899, -34.697338 ], [ -58.650993, -34.69773 ], [ -58.651686, -34.69798 ], [ -58.652689, -34.698372 ], [ -58.653154, -34.698532 ], [ -58.653873, -34.698787 ], [ -58.654215, -34.698904 ], [ -58.654664, -34.699064 ], [ -58.655429, -34.699325 ], [ -58.655693, -34.699424 ], [ -58.656198, -34.699596 ], [ -58.656672, -34.699765 ], [ -58.656987999999899, -34.699873 ], [ -58.657673, -34.70014 ], [ -58.658503, -34.700409 ], [ -58.659287, -34.700703 ], [ -58.66007, -34.700905 ], [ -58.660774, -34.701191 ], [ -58.661508, -34.701469 ], [ -58.661538, -34.701485 ], [ -58.662288, -34.701744 ], [ -58.662566, -34.701851 ], [ -58.663419, -34.702179 ], [ -58.664298, -34.702488 ], [ -58.665173, -34.702831 ], [ -58.666007, -34.703144 ], [ -58.666909, -34.703476 ], [ -58.667749999999899, -34.703796 ], [ -58.668613, -34.704122 ], [ -58.669554, -34.704538 ], [ -58.670636, -34.705022 ], [ -58.671496, -34.705262 ], [ -58.672567, -34.705693 ], [ -58.673698, -34.706143 ], [ -58.674493, -34.706449 ], [ -58.675353, -34.7068 ], [ -58.676472, -34.7072 ], [ -58.67744, -34.70764 ], [ -58.681783, -34.709353 ], [ -58.683816, -34.710295 ], [ -58.684642, -34.710489 ], [ -58.686756, -34.711375 ], [ -58.687677, -34.711704 ], [ -58.68881, -34.712179 ], [ -58.689152, -34.712305 ], [ -58.690774, -34.712967 ], [ -58.695799, -34.715009 ], [ -58.695814, -34.715021 ], [ -58.698268, -34.715241 ], [ -58.70018, -34.7154 ], [ -58.700661, -34.715439 ], [ -58.701485, -34.715477 ], [ -58.702554, -34.715583 ], [ -58.703904, -34.715724 ], [ -58.705771, -34.715856 ], [ -58.711278, -34.716255 ], [ -58.711831, -34.715868 ], [ -58.712508, -34.715281 ], [ -58.713165, -34.714762 ], [ -58.71389, -34.714213 ], [ -58.714742, -34.713492 ], [ -58.715767, -34.714357 ], [ -58.716324, -34.714872 ], [ -58.716633, -34.715077 ], [ -58.716965, -34.715477 ], [ -58.717289, -34.715672 ], [ -58.717423, -34.715519 ], [ -58.717527, -34.715248 ], [ -58.717438999999899, -34.714985 ], [ -58.717852, -34.714696 ], [ -58.719029, -34.713899 ], [ -58.720431, -34.712949 ], [ -58.721837, -34.712 ], [ -58.72324, -34.711054 ], [ -58.724627, -34.710108 ], [ -58.726029, -34.709152 ], [ -58.727007, -34.708484 ], [ -58.727091, -34.708427 ], [ -58.728035, -34.707786 ], [ -58.729634, -34.708465 ], [ -58.731229, -34.709132 ], [ -58.732072, -34.709464 ], [ -58.733108999999899, -34.70989 ], [ -58.733358, -34.709452 ], [ -58.734167, -34.709775 ], [ -58.735236, -34.708987 ], [ -58.735341, -34.709143 ], [ -58.736391, -34.70838 ], [ -58.737262, -34.707751 ], [ -58.738589, -34.706806 ], [ -58.738752, -34.706687 ], [ -58.738926, -34.706565 ], [ -58.739471, -34.706172 ], [ -58.739945, -34.705791 ], [ -58.740313, -34.70557 ], [ -58.741317, -34.704861 ], [ -58.742681, -34.703892 ], [ -58.744, -34.70295 ], [ -58.744902, -34.70231 ], [ -58.746034, -34.701501 ], [ -58.747141, -34.700732 ], [ -58.746072, -34.700503 ], [ -58.745377, -34.700362 ], [ -58.745229, -34.700209 ], [ -58.744693, -34.699668 ], [ -58.74413, -34.699112 ], [ -58.743246, -34.698211 ], [ -58.742671, -34.697621 ], [ -58.742101, -34.697018 ], [ -58.741554, -34.696455 ], [ -58.740976, -34.695848 ], [ -58.740388, -34.695239 ], [ -58.739837, -34.694663 ], [ -58.739232, -34.694068 ], [ -58.738496, -34.693592 ], [ -58.737911, -34.692943 ], [ -58.737379, -34.692342 ], [ -58.736641, -34.691527 ], [ -58.736117, -34.690935 ], [ -58.735532, -34.690332 ], [ -58.734954, -34.689734 ], [ -58.734384, -34.689136 ], [ -58.733772, -34.688502 ], [ -58.733183, -34.687897 ], [ -58.732605, -34.687294 ], [ -58.732032, -34.6867 ], [ -58.732013, -34.686677 ], [ -58.731401, -34.686097 ], [ -58.730865, -34.685587 ], [ -58.730854, -34.685579 ], [ -58.730425, -34.685042 ], [ -58.729896, -34.684397 ], [ -58.729383, -34.683772 ], [ -58.728901, -34.683198 ], [ -58.728707, -34.683255 ], [ -58.72856, -34.683289 ], [ -58.728445, -34.683288 ], [ -58.72829, -34.683227 ], [ -58.728202, -34.68317 ], [ -58.728138, -34.683102 ], [ -58.728085, -34.682995 ], [ -58.728058, -34.682882 ], [ -58.728062, -34.682767 ], [ -58.728112, -34.682654 ], [ -58.728328, -34.682412 ], [ -58.728138, -34.682286 ], [ -58.727777, -34.681815 ], [ -58.727317, -34.68126 ], [ -58.726863, -34.680705 ], [ -58.726403, -34.680146 ], [ -58.725913, -34.679557 ], [ -58.725761, -34.679337 ], [ -58.725275, -34.678504 ], [ -58.724777, -34.677679 ], [ -58.724269, -34.676833 ], [ -58.723768, -34.675993 ], [ -58.723752, -34.67597 ], [ -58.723105, -34.674877 ], [ -58.722423, -34.673729 ], [ -58.723763, -34.673132 ], [ -58.724172, -34.672321 ], [ -58.724698, -34.671185 ], [ -58.725235, -34.670035 ], [ -58.725753, -34.6689 ], [ -58.725761, -34.668889 ], [ -58.726321, -34.66775 ], [ -58.726893, -34.666593 ], [ -58.727434, -34.665499 ], [ -58.727399, -34.665346 ], [ -58.727293, -34.664866 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 150.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.439691000339337, -34.719651000393299 ], [ -58.440785000427411, -34.720273000298675 ], [ -58.440957000265314, -34.720379999837064 ], [ -58.441900999731331, -34.720917000319275 ], [ -58.442995999865445, -34.721539000224652 ], [ -58.444111000022588, -34.722183000245195 ], [ -58.444647999605479, -34.722482999690612 ], [ -58.445399000063787, -34.721624999693915 ], [ -58.445699999555302, -34.721344000225372 ], [ -58.446664999989707, -34.720445000136579 ], [ -58.447089999803609, -34.719912999884968 ], [ -58.448639000189644, -34.717976999638779 ], [ -58.449327999587467, -34.717131000195479 ], [ -58.451836000131266, -34.714050000207294 ], [ -58.452265000129614, -34.713491999656014 ], [ -58.453338000148563, -34.712162000375997 ], [ -58.453842000008251, -34.711431999986758 ], [ -58.454486000028851, -34.710357999921712 ], [ -58.455232000256558, -34.709428000202024 ], [ -58.456292999722109, -34.708221000298863 ], [ -58.456328999583604, -34.708162000276047 ], [ -58.456267000321759, -34.707974999746398 ], [ -58.455800000369663, -34.707541999563603 ], [ -58.45557900007077, -34.707486999725234 ], [ -58.454411000167511, -34.707885000092631 ], [ -58.454261999591552, -34.707877999769835 ], [ -58.453970999661863, -34.707557000255292 ], [ -58.455398999863917, -34.70671199995877 ], [ -58.455521000094052, -34.706843999750731 ], [ -58.45597600039207, -34.707345000371447 ], [ -58.456789000112224, -34.707078999795954 ], [ -58.457218000110572, -34.706904999865799 ], [ -58.457654000431717, -34.70671199995877 ], [ -58.458351000198434, -34.706268000168052 ], [ -58.458601000036083, -34.706218999707005 ], [ -58.458850999873732, -34.70616800005314 ], [ -58.459066999942081, -34.706024999753879 ], [ -58.459947000053944, -34.705231000010599 ], [ -58.460466999752214, -34.704919000011785 ], [ -58.461728000346909, -34.704136999922582 ], [ -58.462994000272829, -34.703407000432662 ], [ -58.464505999851951, -34.70241200041346 ], [ -58.465569000309074, -34.701711999609074 ], [ -58.467156999795691, -34.700638999590126 ], [ -58.468071999722952, -34.699950000192302 ], [ -58.46898100027289, -34.69926600012576 ], [ -58.471183000195253, -34.697354000086989 ], [ -58.472070999776804, -34.696583999651807 ], [ -58.473294000417752, -34.69564000018579 ], [ -58.473952000184624, -34.695223999887617 ], [ -58.474517000159381, -34.694866999612316 ], [ -58.475847000338774, -34.693923000146299 ], [ -58.476957000265315, -34.693103000103349 ], [ -58.477328000286946, -34.692829000058282 ], [ -58.478528999913351, -34.691905999762014 ], [ -58.479175000026203, -34.691374000409724 ], [ -58.479259000302591, -34.691304999925762 ], [ -58.479516999609814, -34.691112000018734 ], [ -58.480574999836335, -34.690325999745028 ], [ -58.480933000157791, -34.690061000115008 ], [ -58.48196299999239, -34.689288000440797 ], [ -58.484408000328926, -34.687446000032821 ], [ -58.485095999680595, -34.68692800042686 ], [ -58.485352999841041, -34.686713000404609 ], [ -58.48714199960358, -34.685398000017642 ], [ -58.487542000063229, -34.685103999949604 ], [ -58.488356999875577, -34.684459999929004 ], [ -58.489099999964992, -34.683903000323141 ], [ -58.491447000278811, -34.682143000099359 ], [ -58.492069000184188, -34.68154200026305 ], [ -58.492862999927468, -34.680597999897714 ], [ -58.492991999581079, -34.680490000313227 ], [ -58.493227999672399, -34.680339999691171 ], [ -58.493635999601679, -34.680189999968491 ], [ -58.493892999762068, -34.679932999808045 ], [ -58.494107999784319, -34.679738999854919 ], [ -58.494617999920706, -34.679357000225309 ], [ -58.495394999779364, -34.678774000319834 ], [ -58.496103000053381, -34.678194999699429 ], [ -58.497176000072329, -34.677422000025217 ], [ -58.497863000277221, -34.676864000373257 ], [ -58.498162999722638, -34.676628000281937 ], [ -58.499407999579489, -34.675727000100949 ], [ -58.500287999691409, -34.675039999896057 ], [ -58.500523999782729, -34.674869000104252 ], [ -58.501446000032843, -34.674225000083652 ], [ -58.501704000239386, -34.673988999992332 ], [ -58.5018319998469, -34.673881999554567 ], [ -58.502519000051791, -34.673216000318121 ], [ -58.503807000092934, -34.672250999883715 ], [ -58.505137000272327, -34.67134999970267 ], [ -58.506059999669219, -34.670641000281876 ], [ -58.507047000218847, -34.669889999823567 ], [ -58.507990999684864, -34.66920399966483 ], [ -58.508098000122573, -34.66911800019551 ], [ -58.508269999960476, -34.669010999757802 ], [ -58.508891999865853, -34.668517000359259 ], [ -58.509407000232841, -34.668173999830174 ], [ -58.509706999678258, -34.667937999738854 ], [ -58.511166999557361, -34.666822000434934 ], [ -58.512689999643726, -34.665641999978277 ], [ -58.513183999941589, -34.665277000233345 ], [ -58.513935000399897, -34.664718999682066 ], [ -58.514299000098731, -34.66446200042094 ], [ -58.514487999821313, -34.664313999891135 ], [ -58.515201000325874, -34.663754000146923 ], [ -58.515630000324222, -34.66343199968702 ], [ -58.516016000138279, -34.66311000012638 ], [ -58.517518000155519, -34.661993999923141 ], [ -58.517990000338216, -34.661651000293375 ], [ -58.519169999895553, -34.660792000250581 ], [ -58.519813999916096, -34.660276999883592 ], [ -58.52067199991285, -34.659654999978216 ], [ -58.521272999749101, -34.65916199972645 ], [ -58.522130999745798, -34.658538999774976 ], [ -58.524491999805889, -34.656715000197039 ], [ -58.524941999873363, -34.656393999783234 ], [ -58.525221000148974, -34.656221999945274 ], [ -58.525585999893963, -34.65590000038469 ], [ -58.526037000007477, -34.655577999924731 ], [ -58.526250999983631, -34.655406000086771 ], [ -58.527023999657843, -34.654440999652365 ], [ -58.527818000300442, -34.653454000002057 ], [ -58.528268000367859, -34.652874000234874 ], [ -58.528310999652888, -34.652809999981457 ], [ -58.528310999652888, -34.652530999705846 ], [ -58.528397000021471, -34.6507500003122 ], [ -58.528440000205819, -34.650577999574978 ], [ -58.528461000274888, -34.650321000313852 ], [ -58.528461000274888, -34.650148999576629 ], [ -58.528483000390111, -34.649870000200281 ], [ -58.528568999859431, -34.648776000112264 ], [ -58.528633000112848, -34.647659999909024 ], [ -58.528655000228014, -34.647467000001996 ], [ -58.528655000228014, -34.647102000257064 ], [ -58.528697000366208, -34.64594399991563 ], [ -58.528697000366208, -34.645878999616116 ], [ -58.528782999835528, -34.64506399980371 ], [ -58.528782999835528, -34.644870999896682 ], [ -58.528804999950751, -34.644334000313847 ], [ -58.528826000019819, -34.643862000131151 ], [ -58.528869000204168, -34.642960999950162 ], [ -58.528975999742556, -34.641974000299854 ], [ -58.528997999857779, -34.641738000208477 ], [ -58.529041000042071, -34.640514999567529 ], [ -58.529169999695682, -34.64017199993782 ], [ -58.529190999764808, -34.639741999893317 ], [ -58.529310999902691, -34.639323000356114 ], [ -58.529362999602711, -34.639142000103163 ], [ -58.529383999671779, -34.638712000058717 ], [ -58.529320000317739, -34.638369000429009 ], [ -58.529255000018168, -34.637531999602061 ], [ -58.529341000386808, -34.636544999951752 ], [ -58.529491000109545, -34.636395000229015 ], [ -58.529513000224767, -34.636308999860432 ], [ -58.529498000432341, -34.636217000114414 ], [ -58.529491000109545, -34.636180000206821 ], [ -58.529426999856128, -34.636137000022472 ], [ -58.529362999602711, -34.636094999884278 ], [ -58.529341000386808, -34.635966000230667 ], [ -58.529298000202516, -34.635600999586416 ], [ -58.528718999582111, -34.634999999750164 ], [ -58.528655000228014, -34.634828999958359 ], [ -58.529320000317739, -34.634141999753467 ], [ -58.529384999717934, -34.63388000026174 ], [ -58.529426999856128, -34.633712999755119 ], [ -58.529448999971351, -34.633176000172227 ], [ -58.529470000040419, -34.632576000382073 ], [ -58.529513000224767, -34.631802999808542 ], [ -58.529556000409059, -34.631031000180485 ], [ -58.52968500006267, -34.628906000211714 ], [ -58.529727000200864, -34.628111999569057 ], [ -58.529812999670185, -34.62701800038036 ], [ -58.529877999969699, -34.625815999808481 ], [ -58.529877999969699, -34.625688000201023 ], [ -58.529942000223116, -34.625322999556715 ], [ -58.529963000292184, -34.625044000180424 ], [ -58.529985000407407, -34.624400000159824 ], [ -58.530048999761505, -34.623563000232252 ], [ -58.530091999945796, -34.622833999889167 ], [ -58.530102999553719, -34.622700000004954 ], [ -58.530178000314436, -34.621781999939287 ], [ -58.530284999852825, -34.619850999923642 ], [ -58.530284999852825, -34.619357999671877 ], [ -58.530284999852825, -34.619174000179896 ], [ -58.530284999852825, -34.619142999649682 ], [ -58.530328000037116, -34.618756999835625 ], [ -58.530350000152339, -34.618305999722054 ], [ -58.530350000152339, -34.618177000068442 ], [ -58.530350000152339, -34.617834000438734 ], [ -58.530441999898358, -34.616945999957863 ], [ -58.530499999875076, -34.616395999775534 ], [ -58.530456999690728, -34.616009999961477 ], [ -58.530456999690728, -34.615602000032254 ], [ -58.530241999668533, -34.615023000311169 ], [ -58.530173000083835, -34.614924000242354 ], [ -58.530091999945796, -34.614809000335072 ], [ -58.529877999969699, -34.614336000106277 ], [ -58.52968500006267, -34.613907000107929 ], [ -58.529431000040574, -34.613342000133173 ], [ -58.52912700041071, -34.612663000297175 ], [ -58.528891000319391, -34.612191000114535 ], [ -58.528697000366208, -34.611740000000964 ], [ -58.528589999928499, -34.611482999840518 ], [ -58.528483000390111, -34.611224999633976 ], [ -58.528183000045374, -34.610645999912947 ], [ -58.527731999931802, -34.60970200044693 ], [ -58.527431000440288, -34.609015000242039 ], [ -58.526981000372814, -34.608070999876702 ], [ -58.525693000331671, -34.605389000302068 ], [ -58.525645999962876, -34.605297999702884 ], [ -58.525306999618294, -34.604658999912886 ], [ -58.524920999804237, -34.603821999985257 ], [ -58.524642000427946, -34.603243000264229 ], [ -58.524469999690666, -34.602877999619921 ], [ -58.524363000152277, -34.602663999643823 ], [ -58.524170000245249, -34.602233999599378 ], [ -58.523762000316026, -34.601290000133361 ], [ -58.523611999693969, -34.600883000250235 ], [ -58.523505000155581, -34.600689000297109 ], [ -58.523032999972941, -34.599788000116064 ], [ -58.522581999859369, -34.598843999750727 ], [ -58.522282000413952, -34.598050000007447 ], [ -58.521968000322943, -34.597203999664828 ], [ -58.521574000139935, -34.596140000060927 ], [ -58.521251999679976, -34.595582000408967 ], [ -58.520822999681627, -34.594981999719494 ], [ -58.520780000396655, -34.594853000065882 ], [ -58.520414999752404, -34.594059000322545 ], [ -58.520006999823124, -34.593222000394974 ], [ -58.519707000377707, -34.592599999590277 ], [ -58.519299000448484, -34.591765999800998 ], [ -58.519235000195067, -34.591634000009037 ], [ -58.518763000012427, -34.590668999574632 ], [ -58.518461999621536, -34.589961000199935 ], [ -58.518268999714508, -34.589553000270712 ], [ -58.518162000176119, -34.589295000064169 ], [ -58.517711000062548, -34.588350999698832 ], [ -58.517518000155519, -34.587921999700484 ], [ -58.517453999902159, -34.587789999908523 ], [ -58.517110000226296, -34.587084999772856 ], [ -58.51693900043449, -34.586742000143147 ], [ -58.516724000412239, -34.586204999660936 ], [ -58.516547000343735, -34.585828000261984 ], [ -58.516401999952279, -34.585519000401518 ], [ -58.516187999976182, -34.585047000218822 ], [ -58.516037000207348, -34.584745999827987 ], [ -58.515600999886203, -34.583792999946922 ], [ -58.515328999933388, -34.583200999626399 ], [ -58.515264999679971, -34.582750999558925 ], [ -58.515136000026359, -34.582385999813994 ], [ -58.514986000303622, -34.581977999884771 ], [ -58.514906000211681, -34.581805000000713 ], [ -58.514470999936634, -34.580862999727628 ], [ -58.514063000007411, -34.580239999776097 ], [ -58.513629999824616, -34.579510000286234 ], [ -58.513248000195006, -34.578867000311789 ], [ -58.512689999643726, -34.577773000223715 ], [ -58.512287999991145, -34.576906999858124 ], [ -58.511423999717749, -34.575047000418692 ], [ -58.510395999975401, -34.572871999942777 ], [ -58.510136999722704, -34.572321999760447 ], [ -58.510094000437732, -34.572215000222059 ], [ -58.510008000069092, -34.571528000017167 ], [ -58.509938000438353, -34.571289999833596 ], [ -58.509900999631384, -34.571164000318333 ], [ -58.509793000046898, -34.570949000296082 ], [ -58.509600000139869, -34.570605999767054 ], [ -58.509535999886452, -34.570219999952997 ], [ -58.509393999633346, -34.569847999885269 ], [ -58.509364000048549, -34.569768999839425 ], [ -58.509150000072395, -34.569426000209717 ], [ -58.508676999843601, -34.568867999658437 ], [ -58.508506000051796, -34.568502999913449 ], [ -58.508226999776184, -34.567709000170169 ], [ -58.50821099993766, -34.56762800003213 ], [ -58.508183999591893, -34.567494000147917 ], [ -58.507926000284669, -34.566978999780986 ], [ -58.507389999848556, -34.56560600031662 ], [ -58.507132999688167, -34.565262999787592 ], [ -58.506789000012304, -34.564618999766992 ], [ -58.506316999829664, -34.563953999677324 ], [ -58.506077999599938, -34.563412999909986 ], [ -58.505651999739939, -34.562451999660027 ], [ -58.505352000294522, -34.561871999892844 ], [ -58.50530900011023, -34.561765000354455 ], [ -58.504922000250076, -34.561079000195662 ], [ -58.504783000135319, -34.560786000173721 ], [ -58.504450000067436, -34.560090999599936 ], [ -58.503505999702099, -34.557988999792485 ], [ -58.503369999725692, -34.557672999609224 ], [ -58.503034000418722, -34.556893999658314 ], [ -58.501825000423366, -34.554416999644786 ], [ -58.501704000239386, -34.554168999899389 ], [ -58.501338999595134, -34.553397000271275 ], [ -58.500716999689757, -34.552044999976715 ], [ -58.500536000336126, -34.551818000300443 ], [ -58.499794000292866, -34.550885999589184 ], [ -58.499643999670809, -34.550779000050795 ], [ -58.499409999671684, -34.550411000167458 ], [ -58.499343000179294, -34.550306999868099 ], [ -58.499235999741529, -34.55011399996107 ], [ -58.498849999927529, -34.54964199977843 ], [ -58.498184999837804, -34.549127000310762 ], [ -58.497241000371844, -34.548568999759482 ], [ -58.497149999772603, -34.548543000359132 ], [ -58.49685399961237, -34.548461000174996 ], [ -58.495524000332296, -34.547945999808007 ], [ -58.494902000426919, -34.547775000016202 ], [ -58.49413600017624, -34.547713999901134 ], [ -58.494085999669096, -34.547709999716687 ], [ -58.493335000110108, -34.547667999578493 ], [ -58.493055999834496, -34.547603000178299 ], [ -58.492713000204731, -34.547431000340339 ], [ -58.492520000297759, -34.547259999649214 ], [ -58.492347999560479, -34.547044999626962 ], [ -58.49232999962976, -34.546857999996632 ], [ -58.492327000390731, -34.546830999650865 ], [ -58.492648999951371, -34.546316000183197 ], [ -58.492885000042691, -34.546080000091877 ], [ -58.493270999856691, -34.545778999701042 ], [ -58.493829000408027, -34.545500000324694 ], [ -58.493935999946416, -34.545413999956111 ], [ -58.494430000244279, -34.544857000350248 ], [ -58.495052000149656, -34.544319999868037 ], [ -58.495414999802335, -34.543813999916097 ], [ -58.495652999985907, -34.543482999940466 ], [ -58.49685399961237, -34.541959999854043 ], [ -58.497587000139902, -34.541215999718588 ], [ -58.498249000091221, -34.540544000205387 ], [ -58.498451999560075, -34.54029000018329 ], [ -58.499730000039449, -34.538697999612964 ], [ -58.500480999598437, -34.537710999962655 ], [ -58.501204999710922, -34.536631999667009 ], [ -58.501489000217134, -34.536208999945359 ], [ -58.501553999617329, -34.536122999576719 ], [ -58.502218999707054, -34.535179000110702 ], [ -58.502740000350684, -34.534397000021499 ], [ -58.5028619996815, -34.534213999676297 ], [ -58.503505999702099, -34.533076000257154 ], [ -58.503678000439322, -34.532775999912417 ], [ -58.504209999791613, -34.532123000376146 ], [ -58.504342999629671, -34.531960000053914 ], [ -58.504836999927591, -34.531251999779897 ], [ -58.505436999717745, -34.530436999967549 ], [ -58.5055820001092, -34.53024400006052 ], [ -58.505694999924287, -34.530094000337783 ], [ -58.506880999758266, -34.528512000228602 ], [ -58.506981999919333, -34.528377000298292 ], [ -58.508655999774533, -34.52605999956927 ], [ -58.508871999842881, -34.525765000354454 ], [ -58.510511999928838, -34.523527999717373 ], [ -58.511251999879846, -34.522518999951842 ], [ -58.512411000267434, -34.521124000372254 ], [ -58.512693999828173, -34.520838999819944 ], [ -58.514661999751468, -34.518852999965929 ], [ -58.514707000028011, -34.518806999643289 ], [ -58.515672999609194, -34.517691000339369 ], [ -58.516724000412239, -34.516833000342672 ], [ -58.516987999996161, -34.516560000343702 ], [ -58.517368000432839, -34.516168000252947 ], [ -58.518569000059244, -34.515029999934484 ], [ -58.519366999987028, -34.514350000052389 ], [ -58.519598999893901, -34.514150999868718 ], [ -58.519749999662736, -34.514000000099884 ], [ -58.520242999914501, -34.513421000378798 ], [ -58.520522000190113, -34.513142000103187 ], [ -58.520800999566461, -34.512928000127033 ], [ -58.52122999956481, -34.512626999736199 ], [ -58.521822999931487, -34.512286000198685 ], [ -58.52505499968845, -34.510426999906088 ], [ -58.525221000148974, -34.510330999975622 ], [ -58.525349999802586, -34.510266999722205 ], [ -58.526873999935106, -34.509301000141022 ], [ -58.527464000163434, -34.509065000049645 ], [ -58.527625000393414, -34.509000999796285 ], [ -58.528848000135042, -34.508528999613588 ], [ -58.530914000080998, -34.507517999755862 ], [ -58.532753000350624, -34.506618999667069 ], [ -58.53393900018466, -34.506049000361031 ], [ -58.535563999578869, -34.505267000271829 ], [ -58.537530000309232, -34.504290000183346 ], [ -58.539275999887423, -34.503421999725447 ], [ -58.541382999925474, -34.502396000075294 ], [ -58.541701000200931, -34.50224200016811 ], [ -58.542065999945919, -34.502091000399332 ], [ -58.544833999889136, -34.500674999851299 ], [ -58.545105999841951, -34.500546000197687 ], [ -58.545606000416569, -34.500310000106367 ], [ -58.547214999972255, -34.49945200010967 ], [ -58.548160000383689, -34.499044000180447 ], [ -58.549426000309609, -34.498486999675265 ], [ -58.550970999611877, -34.497606999563345 ], [ -58.551242000417972, -34.497356999725696 ], [ -58.551764000208379, -34.496877000073425 ], [ -58.551958000161562, -34.496727000350745 ], [ -58.553009000065288, -34.495804000054534 ], [ -58.554103000153304, -34.494859999689197 ], [ -58.554554000266876, -34.494666999782169 ], [ -58.555240999572447, -34.494581000312849 ], [ -58.555455000447864, -34.494494999944266 ], [ -58.556184999937784, -34.493808999785472 ], [ -58.556613999936133, -34.493659000062735 ], [ -58.557815999608636, -34.49382999985454 ], [ -58.558051999700012, -34.49382999985454 ], [ -58.559897000246337, -34.493294000317803 ], [ -58.561013000449577, -34.492907999604427 ], [ -58.561635000354954, -34.492671000366329 ], [ -58.563581000162969, -34.491760999770293 ], [ -58.563974000299822, -34.491577000278312 ], [ -58.566677999989679, -34.490547000443655 ], [ -58.567193000356667, -34.490247000098918 ], [ -58.568008000169016, -34.489903000423112 ], [ -58.568372999913947, -34.489795999985347 ], [ -58.56901599988845, -34.48958200000925 ], [ -58.569338000348409, -34.489516999709736 ], [ -58.572673000358634, -34.489010999757795 ], [ -58.5727290002431, -34.489002000242067 ], [ -58.573951999984786, -34.488915999873427 ], [ -58.576075999907403, -34.488658999713039 ], [ -58.576311999998779, -34.488573000243719 ], [ -58.579769000239139, -34.488172999784069 ], [ -58.579831000400304, -34.488165000314496 ], [ -58.580796999981544, -34.488014999692439 ], [ -58.581375999702573, -34.487843999900633 ], [ -58.581783999631853, -34.48782199978541 ], [ -58.582170000345172, -34.487800999716342 ], [ -58.583306999718218, -34.487778999601119 ], [ -58.584572999644195, -34.487886000038827 ], [ -58.585044999826835, -34.487886000038827 ], [ -58.585473999825183, -34.487951000338342 ], [ -58.586053999592366, -34.487843999900633 ], [ -58.587147999680383, -34.487564999624965 ], [ -58.587555999609663, -34.48750000022477 ], [ -58.589121999880376, -34.487370999671839 ], [ -58.589873000338628, -34.487243000064382 ], [ -58.590344999622005, -34.487156999695742 ], [ -58.590399000313596, -34.48711400041077 ], [ -58.590903000173284, -34.486705999582171 ], [ -58.591118000195536, -34.48662000011285 ], [ -58.592276999683747, -34.486491999606073 ], [ -58.592620000212776, -34.486512999675142 ], [ -58.593049000211124, -34.486835000135102 ], [ -58.593198999933861, -34.486920999604422 ], [ -58.593370999771764, -34.48694199967349 ], [ -58.59362799993221, -34.48694199967349 ], [ -58.595881000407815, -34.486727999697393 ], [ -58.597298000102569, -34.486512999675142 ], [ -58.599099999565283, -34.486362999952462 ], [ -58.600429999744676, -34.486276999583822 ], [ -58.601375000156111, -34.486276999583822 ], [ -58.602469000244128, -34.486298999699045 ], [ -58.604464999659967, -34.486170000045433 ], [ -58.607379000040794, -34.48586300027722 ], [ -58.607725999854949, -34.48582600036957 ], [ -58.610344000075486, -34.485482999840542 ], [ -58.611846000092783, -34.485289999933514 ], [ -58.61302599965012, -34.485140000210777 ], [ -58.614098999669068, -34.484989999588777 ], [ -58.614635000105125, -34.484925000188582 ], [ -58.615065000149571, -34.484838999819942 ], [ -58.615364999594988, -34.484796999681748 ], [ -58.616588000235993, -34.484602999728622 ], [ -58.61697400005005, -34.484560000443594 ], [ -58.618347999560513, -34.484345999568177 ], [ -58.619269999810626, -34.484216999914565 ], [ -58.619505999901946, -34.484173999730274 ], [ -58.621179999757146, -34.48395999975412 ], [ -58.621738000308426, -34.483895000353925 ], [ -58.62353999977114, -34.483616000078314 ], [ -58.623947999700363, -34.483551999824897 ], [ -58.625150000272242, -34.483273000448548 ], [ -58.626565999920899, -34.483037000357228 ], [ -58.626951999734956, -34.48301600028816 ], [ -58.627038000103596, -34.48301600028816 ], [ -58.628196999591808, -34.48292999991952 ], [ -58.628776000212213, -34.48284399955088 ], [ -58.629784999977744, -34.4826939998282 ], [ -58.630686000158732, -34.48252199999024 ], [ -58.631780000246749, -34.482306999968046 ], [ -58.632938999735018, -34.482092999991892 ], [ -58.634891999865886, -34.481535000339932 ], [ -58.635192000210623, -34.481471000086515 ], [ -58.636157999791806, -34.481362999602709 ], [ -58.636822999881474, -34.48125600006432 ], [ -58.638317000429197, -34.480967000226826 ], [ -58.640707000027987, -34.480504999606012 ], [ -58.640951999635035, -34.480463000367138 ], [ -58.643067000041981, -34.480096999676732 ], [ -58.644226000429512, -34.479667999678384 ], [ -58.645104999596015, -34.479411000417315 ], [ -58.645942000422963, -34.479302999933452 ], [ -58.646435999821506, -34.479238999680035 ], [ -58.646885999888923, -34.479132000141647 ], [ -58.647444000440203, -34.478981000372812 ], [ -58.648173999930123, -34.478809999681687 ], [ -58.648925000388431, -34.478594999659435 ], [ -58.649719000131711, -34.478273000098852 ], [ -58.650506999598292, -34.478072999869028 ], [ -58.650898999689048, -34.477972999754115 ], [ -58.651435000125105, -34.477909000400018 ], [ -58.652808999635567, -34.477651000193475 ], [ -58.654439000159698, -34.477222000195127 ], [ -58.654739999651213, -34.477135999826487 ], [ -58.65522400038725, -34.476979999827108 ], [ -58.655941000176995, -34.47675000001243 ], [ -58.657465000309458, -34.476321000014082 ], [ -58.658430999890697, -34.476213000429595 ], [ -58.659761000070034, -34.47586999990051 ], [ -58.660361999906343, -34.47572000017783 ], [ -58.661577000178397, -34.475386000063793 ], [ -58.662077999899736, -34.475247999995133 ], [ -58.662186000383542, -34.475204999810842 ], [ -58.663708999570645, -34.474775999812493 ], [ -58.664289000237147, -34.47460399997459 ], [ -58.665682999770581, -34.474153999907116 ], [ -58.666885000342461, -34.473789000162185 ], [ -58.669094999734398, -34.473101999957294 ], [ -58.669674000354803, -34.473015999588654 ], [ -58.672893000411591, -34.472136000376054 ], [ -58.675746999824128, -34.471342999779552 ], [ -58.676386999660281, -34.471119000241629 ], [ -58.677528000117093, -34.470719999828077 ], [ -58.67853599983647, -34.470356000129243 ], [ -58.679372999764098, -34.469969000269089 ], [ -58.680896999896561, -34.469132000341517 ], [ -58.681904999615995, -34.468467000251792 ], [ -58.681945999708091, -34.468435999721578 ], [ -58.682977999634943, -34.467652000439443 ], [ -58.683794000392766, -34.466944000165427 ], [ -58.684652000389463, -34.466128000306924 ], [ -58.685253000225714, -34.465485000332478 ], [ -58.685660000108896, -34.464754999943239 ], [ -58.686174999576508, -34.46408999985357 ], [ -58.686882999850525, -34.463252999925942 ], [ -58.687483999686776, -34.462674000204913 ], [ -58.688042000238056, -34.461965999930896 ], [ -58.688556999705725, -34.461321999910297 ], [ -58.689007999819296, -34.460742000143171 ], [ -58.689608999655547, -34.459819999893057 ], [ -58.690080999838244, -34.45911199961904 ], [ -58.690702999743621, -34.4584040002444 ], [ -58.69136799983329, -34.457652999786092 ], [ -58.692141000406821, -34.456708000273977 ], [ -58.693878999616118, -34.454433999729247 ], [ -58.694350999798758, -34.453511000332355 ], [ -58.694501000420814, -34.45333999964123 ], [ -58.695080000141843, -34.45269599962063 ], [ -58.696003000438054, -34.451686999855099 ], [ -58.69658200015914, -34.450978999581139 ], [ -58.696775000066168, -34.450743000389139 ], [ -58.697568999809448, -34.449777999954676 ], [ -58.698384999667951, -34.448748000120077 ], [ -58.698813999666299, -34.447932000261574 ], [ -58.698900000034939, -34.447631999916837 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 149.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.45572699027926, -34.586885437477193 ], [ -58.457536659618441, -34.586176260219922 ], [ -58.458754684992513, -34.585728798670509 ], [ -58.459043327346443, -34.585621184597478 ], [ -58.459280012886495, -34.585547661704013 ], [ -58.459532862210381, -34.585513979937303 ], [ -58.459820718562021, -34.585500692231079 ], [ -58.459995499753589, -34.585500405975793 ], [ -58.460212544170162, -34.585512801643667 ], [ -58.460428954024017, -34.585541090607016 ], [ -58.460689826204316, -34.585591331554951 ], [ -58.460999476044492, -34.58566711170235 ], [ -58.461241011582992, -34.585736214717748 ], [ -58.461525401282692, -34.585821240577346 ], [ -58.461710269106852, -34.585893839978326 ], [ -58.461906615813305, -34.586004154504998 ], [ -58.462087314836424, -34.586130120359542 ], [ -58.462188695048468, -34.586201493621779 ], [ -58.462335314771856, -34.586331028608249 ], [ -58.46258904786044, -34.58657075257355 ], [ -58.462835823107966, -34.586808031027587 ], [ -58.463284954110755, -34.587226371588891 ], [ -58.46423802027887, -34.58812394588103 ], [ -58.465995188188096, -34.589820299357918 ], [ -58.466817401369639, -34.590591370833742 ], [ -58.467368274798815, -34.591096583485097 ], [ -58.467546089815215, -34.591270433841878 ], [ -58.467715912972977, -34.591421912925554 ], [ -58.467839197305139, -34.591525897363148 ], [ -58.467989415118268, -34.591645356766492 ], [ -58.468142998002634, -34.591745617368979 ], [ -58.468307674321608, -34.591842580040208 ], [ -58.468483888540383, -34.591936910461811 ], [ -58.468705250237711, -34.592033536856164 ], [ -58.468930513482661, -34.592115012255839 ], [ -58.469186725961805, -34.592193492697717 ], [ -58.469431408460153, -34.592244404107468 ], [ -58.469683231885732, -34.592286612978981 ], [ -58.469949498937609, -34.592312616572571 ], [ -58.470232457357326, -34.592313876697197 ], [ -58.471420842502724, -34.592327706043221 ], [ -58.47466330300513, -34.592427658348761 ], [ -58.476397027775192, -34.592481422955927 ], [ -58.478717071663304, -34.592539117789464 ], [ -58.484050066265496, -34.59266888757309 ], [ -58.488639017631954, -34.592796042127979 ], [ -58.491674910044352, -34.592864352114091 ], [ -58.492480594296907, -34.59290728812821 ], [ -58.492937425796292, -34.592950227697798 ], [ -58.493174160178697, -34.592984264285924 ], [ -58.494866936396917, -34.593246634212512 ], [ -58.496700250891266, -34.59350839524447 ], [ -58.500837196845609, -34.594107536651805 ], [ -58.505357553279481, -34.594785796955016 ], [ -58.509580124652487, -34.595426250620584 ], [ -58.513115192819654, -34.595996550454871 ], [ -58.518311244516838, -34.596768242159897 ], [ -58.521110173307974, -34.597194160460525 ], [ -58.521987175139486, -34.597307603085511 ], [ -58.522345689019573, -34.597339644477181 ], [ -58.522600331287293, -34.597358031910446 ], [ -58.522829786620164, -34.597356656761029 ], [ -58.523089186267526, -34.597345876604265 ], [ -58.523316302767796, -34.597326070151162 ], [ -58.523739006402295, -34.597269524942206 ], [ -58.524784799476478, -34.597123052971561 ], [ -58.527905644672877, -34.596645425939862 ], [ -58.539641662269197, -34.59489078435201 ], [ -58.546475236886302, -34.593844603609355 ], [ -58.554467247061112, -34.592635745779162 ], [ -58.560627203108226, -34.591672062066507 ], [ -58.562572465026875, -34.591396681136359 ], [ -58.566828977064915, -34.590758208501065 ], [ -58.573590503539101, -34.58973011253191 ], [ -58.574456699330014, -34.589612463997348 ], [ -58.574756040380365, -34.58956962195046 ], [ -58.574969777057163, -34.589542373462642 ], [ -58.575214866462026, -34.589524894928196 ], [ -58.575504041661816, -34.589512687948591 ], [ -58.579109532397027, -34.589380279382972 ], [ -58.581875810739596, -34.589286558707663 ], [ -58.584657197227656, -34.589192747955693 ], [ -58.587945836948556, -34.589076373971821 ], [ -58.58979753567597, -34.589003500166257 ], [ -58.592155914669405, -34.588925959063914 ], [ -58.599079001110596, -34.588666813171173 ], [ -58.604612619189552, -34.588453460349008 ], [ -58.608217523264528, -34.588325644320136 ], [ -58.612398935255058, -34.588161108301193 ], [ -58.61624832800743, -34.588023957697693 ], [ -58.621616769921815, -34.587828647637302 ], [ -58.625636062977264, -34.587672035810421 ], [ -58.630567605324288, -34.587500909301902 ], [ -58.632029781782066, -34.587436838107415 ], [ -58.635587444777727, -34.587292990284162 ], [ -58.635796811588463, -34.587278533956649 ], [ -58.636002918661205, -34.587253716076631 ], [ -58.636235357404836, -34.587213115499246 ], [ -58.636439037263685, -34.587170078777234 ], [ -58.636645764355038, -34.587104234130081 ], [ -58.636802622917443, -34.587047756578109 ], [ -58.636960041753809, -34.586976545772949 ], [ -58.637129266055496, -34.586884873460271 ], [ -58.637270833476748, -34.586787621742126 ], [ -58.637387859053618, -34.586687323502723 ], [ -58.637499371876238, -34.586578878674139 ], [ -58.637612955627446, -34.586441100041725 ], [ -58.637712011939399, -34.586299427830518 ], [ -58.637782184687453, -34.586161560871517 ], [ -58.638119401063435, -34.585498262068256 ], [ -58.6385949791757, -34.584601084301241 ], [ -58.639195501444767, -34.583380046577155 ], [ -58.639335089576221, -34.58301828682238 ], [ -58.63957899234984, -34.582302939974937 ], [ -58.639961942837964, -34.581147822593898 ], [ -58.640279288499535, -34.580206147055378 ], [ -58.640490628930465, -34.579566561794536 ], [ -58.640556731875897, -34.579386951595907 ], [ -58.640621603653983, -34.579219832226634 ], [ -58.640694076994109, -34.579061241129665 ], [ -58.640758019488786, -34.578908110883226 ], [ -58.640853913199891, -34.578749679604201 ], [ -58.640989082184518, -34.57854208287737 ], [ -58.641211652697116, -34.578211618000125 ], [ -58.641607311147027, -34.577649335677201 ], [ -58.642100718896884, -34.576906884697571 ], [ -58.64299958209125, -34.575575831907628 ], [ -58.643229703255955, -34.57528123846901 ], [ -58.643372072110793, -34.575091531834339 ], [ -58.643583428519257, -34.574834545746377 ], [ -58.643794635648462, -34.574634188236594 ], [ -58.644090069268259, -34.574367997545856 ], [ -58.644478464372867, -34.574075397642176 ], [ -58.645556120149479, -34.573242977500648 ], [ -58.64734998045725, -34.571838450942302 ], [ -58.648545717808247, -34.570901195048073 ], [ -58.649938483780403, -34.569846938631862 ], [ -58.651142283741621, -34.568966344388201 ], [ -58.652158653987726, -34.56823364715909 ], [ -58.653819554975399, -34.567026207149517 ], [ -58.655187789511558, -34.566038170005505 ], [ -58.65654639261686, -34.565055391737936 ], [ -58.659684487957605, -34.562758091713945 ], [ -58.660654472816169, -34.562055984356718 ], [ -58.661567215398129, -34.561382673598544 ], [ -58.662369010417486, -34.560793783317649 ], [ -58.662924239704481, -34.560360130395367 ], [ -58.663879133705152, -34.559569688291951 ], [ -58.664892987163491, -34.558775716837324 ], [ -58.665261402215819, -34.558503583490889 ], [ -58.665576319965837, -34.558280784052883 ], [ -58.666111213082388, -34.557926079497996 ], [ -58.666917745063941, -34.557357747434011 ], [ -58.668283598914769, -34.556373393248734 ], [ -58.670146257441118, -34.555065452632299 ], [ -58.671907913444144, -34.553839620120982 ], [ -58.672100619060501, -34.55369468618688 ], [ -58.672324881773349, -34.553526161848751 ], [ -58.672550932607578, -34.55335145683199 ], [ -58.672810888570019, -34.553159689485632 ], [ -58.673059171787912, -34.552966814680524 ], [ -58.673452320996574, -34.552686823732323 ], [ -58.674083022082058, -34.552237963252601 ], [ -58.676422121799533, -34.550565767145685 ], [ -58.677848774365664, -34.549520234492967 ], [ -58.678883958670255, -34.548768451988273 ], [ -58.681058211726516, -34.547170716014257 ], [ -58.682647371028352, -34.545991641129334 ], [ -58.684821158259552, -34.544404451206638 ], [ -58.686881159911394, -34.542883755179403 ], [ -58.688645569359004, -34.54165698275709 ], [ -58.690305895230814, -34.540450616257509 ], [ -58.695325606113954, -34.536867283745551 ], [ -58.696225661438355, -34.53622749023689 ], [ -58.696219651585473, -34.536229400490001 ], [ -58.698191648310676, -34.534809156797301 ], [ -58.699774894342198, -34.533649058095492 ], [ -58.700836546139605, -34.532866486485041 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 147.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.551787, -34.450435 ], [ -58.551858, -34.45047 ], [ -58.552176, -34.450628 ], [ -58.552623, -34.450852 ], [ -58.552701, -34.450893 ], [ -58.552923, -34.451004 ], [ -58.553235, -34.451167 ], [ -58.553556, -34.451336 ], [ -58.55363, -34.451373 ], [ -58.553786, -34.451451 ], [ -58.554094, -34.451607 ], [ -58.554448, -34.451793 ], [ -58.554623, -34.451838 ], [ -58.55542, -34.45228 ], [ -58.556182, -34.452672 ], [ -58.556218, -34.452691 ], [ -58.556915, -34.453053 ], [ -58.557329, -34.453284 ], [ -58.55766, -34.453451 ], [ -58.558742, -34.454034 ], [ -58.559236, -34.454295 ], [ -58.55927, -34.454313 ], [ -58.559716, -34.45452 ], [ -58.560571, -34.454951 ], [ -58.560613, -34.454971 ], [ -58.561447, -34.455356 ], [ -58.562368, -34.455794 ], [ -58.562612, -34.455906 ], [ -58.562876, -34.456069 ], [ -58.56346, -34.456357 ], [ -58.564548, -34.456854 ], [ -58.565741, -34.457416 ], [ -58.567189, -34.458121 ], [ -58.568319, -34.458638 ], [ -58.568361, -34.458657 ], [ -58.569332, -34.459133 ], [ -58.57043, -34.45965 ], [ -58.57153, -34.460189 ], [ -58.572846, -34.460799 ], [ -58.572865, -34.460809 ], [ -58.573767, -34.461188 ], [ -58.574241, -34.461413 ], [ -58.574832999999899, -34.461688 ], [ -58.575934, -34.462197 ], [ -58.577012, -34.462726 ], [ -58.577143, -34.462788 ], [ -58.578098, -34.463248 ], [ -58.579152, -34.463753 ], [ -58.579185, -34.463769 ], [ -58.58028, -34.464286 ], [ -58.580457, -34.464373 ], [ -58.581351, -34.464794 ], [ -58.581578, -34.4649 ], [ -58.581695, -34.464956 ], [ -58.582464, -34.465309 ], [ -58.582667, -34.465413 ], [ -58.583549, -34.465825 ], [ -58.584633, -34.466345 ], [ -58.585684, -34.466868 ], [ -58.586769, -34.467405 ], [ -58.587875, -34.467929 ], [ -58.58799, -34.467973 ], [ -58.58896, -34.468441 ], [ -58.590018, -34.468963 ], [ -58.591134, -34.469482 ], [ -58.592199, -34.46997 ], [ -58.593298, -34.470498 ], [ -58.594399, -34.47103 ], [ -58.5951, -34.471357 ], [ -58.595541, -34.47157 ], [ -58.596522, -34.472038 ], [ -58.596662, -34.472076 ], [ -58.596733, -34.472086 ], [ -58.596832, -34.472074 ], [ -58.596914, -34.472038 ], [ -58.596958, -34.472009 ], [ -58.597025, -34.471948 ], [ -58.597049, -34.471905 ], [ -58.597102, -34.471885 ], [ -58.597072, -34.471748 ], [ -58.596926, -34.471052 ], [ -58.596733, -34.470224 ], [ -58.596661, -34.469901 ], [ -58.596304, -34.468241 ], [ -58.59599, -34.466783 ], [ -58.594828, -34.461382 ], [ -58.594797, -34.46116 ], [ -58.585294, -34.457077 ], [ -58.584095, -34.456631 ], [ -58.580931, -34.455278 ], [ -58.579920999999899, -34.454854 ], [ -58.57892, -34.454432 ], [ -58.577953, -34.453988 ], [ -58.576969, -34.453575 ], [ -58.575693, -34.453018 ], [ -58.574353, -34.452442 ], [ -58.573974, -34.452268 ], [ -58.573212, -34.451943 ], [ -58.572474, -34.45163 ], [ -58.571986, -34.451405 ], [ -58.570872, -34.450927 ], [ -58.569631999999899, -34.4504 ], [ -58.568098, -34.449764 ], [ -58.566683, -34.449145 ], [ -58.566299999999899, -34.448972 ], [ -58.566023, -34.44885 ], [ -58.565869, -34.448782 ], [ -58.564881, -34.448364 ], [ -58.563919, -34.447957 ], [ -58.56289, -34.447519 ], [ -58.561821, -34.447054 ], [ -58.560767, -34.446622 ], [ -58.559796, -34.446205 ], [ -58.559082, -34.445894 ], [ -58.558822, -34.445674 ], [ -58.55808, -34.445038 ], [ -58.558813, -34.444435 ], [ -58.55959, -34.44382 ], [ -58.560369, -34.443239 ], [ -58.561103, -34.443875 ], [ -58.561841999999899, -34.444552 ], [ -58.562578, -34.445199 ], [ -58.563353, -34.445884 ], [ -58.564109, -34.445266 ], [ -58.564877, -34.444622 ], [ -58.565623, -34.443991 ], [ -58.566387, -34.443351 ], [ -58.567179, -34.442741 ], [ -58.567915, -34.442137 ], [ -58.568651, -34.441515 ], [ -58.569457, -34.440874 ], [ -58.568714, -34.440214 ], [ -58.567976, -34.439555 ], [ -58.567224, -34.438899 ], [ -58.566571, -34.43829 ], [ -58.566647, -34.43829 ], [ -58.567398, -34.43772 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 145.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.449153999657312, -34.55895400022689 ], [ -58.450334000113969, -34.558245999952874 ], [ -58.450613000389637, -34.558417999790834 ], [ -58.451148999926374, -34.558761000319862 ], [ -58.451964999784877, -34.559254999718405 ], [ -58.452072000222586, -34.559318999971822 ], [ -58.452952000334506, -34.55983400033881 ], [ -58.453832000446425, -34.560369999875547 ], [ -58.454753999797219, -34.560907000357759 ], [ -58.455698000162556, -34.561442999894496 ], [ -58.456085000022711, -34.561701000101039 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457715999693562, -34.562602000282027 ], [ -58.458573999690316, -34.563137999818821 ], [ -58.459453999802236, -34.563653000185752 ], [ -58.460332999868001, -34.564210999837712 ], [ -58.461320000417629, -34.564748000319923 ], [ -58.460504999705904, -34.56569199978594 ], [ -58.459667999778333, -34.566658000266443 ], [ -58.458939000334567, -34.567537000332266 ], [ -58.457630000224299, -34.568975000096145 ], [ -58.45767300040859, -34.569404000094494 ], [ -58.457823000131327, -34.569640000185814 ], [ -58.458016000038356, -34.569768999839425 ], [ -58.458852999965927, -34.570562999582705 ], [ -58.459754000146972, -34.571420999579402 ], [ -58.46005399959239, -34.571185000387402 ], [ -58.460933999704309, -34.570605999767054 ], [ -58.462006999723201, -34.569360999910202 ], [ -58.462758000181509, -34.568459999729157 ], [ -58.463874000384749, -34.569124999818825 ], [ -58.464925000288474, -34.569746999724202 ], [ -58.465847999685423, -34.570284000206414 ], [ -58.466878000419342, -34.570885000042665 ], [ -58.467886000138776, -34.571463999763751 ], [ -58.468851999719959, -34.572001000245905 ], [ -58.469839000269587, -34.572557999851767 ], [ -58.470719000381507, -34.573030000034407 ], [ -58.471792000400455, -34.573674000055007 ], [ -58.472564000028513, -34.574125000168578 ], [ -58.473508000393849, -34.574660999705316 ], [ -58.474451999859866, -34.575219000256595 ], [ -58.475375000156077, -34.575755999839487 ], [ -58.475826000269649, -34.576013 ], [ -58.476576999828637, -34.576464000113447 ], [ -58.477885999938906, -34.577214999672435 ], [ -58.477156000449042, -34.578051999600063 ], [ -58.476576999828637, -34.578716999689732 ], [ -58.476276000337123, -34.579039000149692 ], [ -58.475481999694466, -34.57994000033068 ], [ -58.475010000411146, -34.580475999867474 ], [ -58.474710000066409, -34.5808200004426 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474001999792392, -34.581614000185937 ], [ -58.473529999609752, -34.582321999560577 ], [ -58.472993000026861, -34.58333000017933 ], [ -58.47247799965993, -34.584316999829639 ], [ -58.472113999961095, -34.58500400003453 ], [ -58.471169000448981, -34.586785000327438 ], [ -58.470869000104244, -34.587364000048524 ], [ -58.470869000104244, -34.587513999771204 ], [ -58.470933000357661, -34.587579000070775 ], [ -58.471898999938844, -34.588308000413861 ], [ -58.472113999961095, -34.588480000251764 ], [ -58.473444000140432, -34.587749999862581 ], [ -58.474237999883769, -34.588350999698832 ], [ -58.475010000411146, -34.588973999650307 ], [ -58.475975999992386, -34.589725000108615 ], [ -58.476747999620443, -34.590324999898769 ], [ -58.477349000356014, -34.590797000081466 ], [ -58.477842999754614, -34.59118399994162 ], [ -58.477241999918306, -34.5913339996643 ], [ -58.476383999921609, -34.591590999824746 ], [ -58.47619100001458, -34.591783999731774 ], [ -58.476125999715066, -34.592170999591929 ], [ -58.476083000430094, -34.592256999960512 ], [ -58.476361999806386, -34.593049999657694 ], [ -58.477092000195626, -34.595024999903785 ], [ -58.477842999754614, -34.597084999573042 ], [ -58.478336000006379, -34.598329000283115 ], [ -58.478594000212922, -34.598951000188492 ], [ -58.478743999935602, -34.599144000095464 ], [ -58.478980000026922, -34.599315999933424 ], [ -58.479624000047522, -34.599079999842047 ], [ -58.479752999701134, -34.599251999680007 ], [ -58.478830000304242, -34.599680999678355 ], [ -58.475730000339183, -34.600349999952471 ], [ -58.472371000121541, -34.601076000157263 ], [ -58.47224199956861, -34.601097000226332 ], [ -58.471277000033467, -34.601312000248583 ], [ -58.471556000309135, -34.602684999712949 ], [ -58.471749000216164, -34.603887000284772 ], [ -58.472907999704375, -34.604615999728537 ], [ -58.474022999861518, -34.605302999933429 ], [ -58.473593999863169, -34.605860999585445 ], [ -58.472822000235055, -34.606869000204142 ], [ -58.472048999661581, -34.607899000038799 ], [ -58.471277000033467, -34.60890799980433 ], [ -58.470504000359313, -34.609916000423027 ], [ -58.469731999831879, -34.610925000188558 ], [ -58.469002000342016, -34.611889999723644 ], [ -58.468186999630291, -34.612962999742592 ], [ -58.467413999956079, -34.613972000407443 ], [ -58.466642000328022, -34.6150020002421 ], [ -58.465697999962686, -34.61626800016802 ], [ -58.465354000286823, -34.616933000257688 ], [ -58.464817999850766, -34.618027000345762 ], [ -58.464345999668126, -34.619013999996071 ], [ -58.46376699994704, -34.620193999553408 ], [ -58.463187000179857, -34.621396000125287 ], [ -58.462801000365857, -34.622189999868567 ], [ -58.462221999745452, -34.623349000256098 ], [ -58.461191999910852, -34.623004999680973 ], [ -58.460183000145321, -34.622640999982139 ], [ -58.459624999594041, -34.622447000029013 ], [ -58.458939000334567, -34.623434999725418 ], [ -58.458144999691967, -34.624571999997784 ], [ -58.45743700031727, -34.625601999832384 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.496747000073981, -34.636115999953404 ], [ -58.498145999837959, -34.636303999629831 ], [ -58.498184999837804, -34.636308999860432 ], [ -58.498013, -34.637210000041421 ], [ -58.497797999977649, -34.63849800008262 ], [ -58.497540999817261, -34.639720999824249 ], [ -58.497282999610718, -34.640943999565877 ], [ -58.497176000072329, -34.641415999748574 ], [ -58.497026000349592, -34.642146000137757 ], [ -58.496768000143049, -34.643368999879385 ], [ -58.497111999818912, -34.643412000063734 ], [ -58.498184999837804, -34.643884000246373 ], [ -58.499214999672461, -34.644376999598819 ], [ -58.50024500040638, -34.644848999781459 ], [ -58.501275000241037, -34.645320999964156 ], [ -58.502305000075637, -34.645793000146796 ], [ -58.503334999910294, -34.646307999614464 ], [ -58.504363999698796, -34.646779999797104 ], [ -58.505394000432716, -34.647274000094967 ], [ -58.506531999851859, -34.647809999631761 ], [ -58.506702999643664, -34.647874999931275 ], [ -58.507669000124224, -34.648347000113915 ], [ -58.508956000119269, -34.648925999835001 ], [ -58.510543999605829, -34.649677000293309 ], [ -58.511681999924292, -34.650191999760921 ], [ -58.512647000358754, -34.650663999943617 ], [ -58.513526999571354, -34.651050999803772 ], [ -58.514406999683274, -34.65147999980212 ], [ -58.515394000232902, -34.651929999869537 ], [ -58.516037000207348, -34.652252000329497 ], [ -58.516551999675016, -34.652488000420817 ], [ -58.517132000341519, -34.652766999797166 ], [ -58.51820500036041, -34.653217999910737 ], [ -58.519169999895553, -34.653690000093377 ], [ -58.519707000377707, -34.653926000184697 ], [ -58.519859000192639, -34.653993999723241 ], [ -58.519900000284736, -34.654011999654017 ], [ -58.520242999914501, -34.654183000345142 ], [ -58.520737000212364, -34.654419000436462 ], [ -58.521272999749101, -34.654676999743685 ], [ -58.521831000300381, -34.654933999904131 ], [ -58.522345999768049, -34.655148999926382 ], [ -58.522882000204106, -34.655428000201994 ], [ -58.523418999786998, -34.655664000293314 ], [ -58.523890999969638, -34.655879000315565 ], [ -58.524578000174529, -34.656221999945274 ], [ -58.524941999873363, -34.656393999783234 ], [ -58.525800999916157, -34.656865999965873 ], [ -58.526379999637243, -34.657187000379736 ], [ -58.527002000441939, -34.657508999940376 ], [ -58.528160999930151, -34.658109999776627 ], [ -58.529341000386808, -34.658731999682004 ], [ -58.530027999692379, -34.659097000326256 ], [ -58.530671999712979, -34.659418999886896 ], [ -58.531980999823247, -34.660106000091787 ], [ -58.533224999634001, -34.660771000181455 ], [ -58.534361999906309, -34.661349999902541 ], [ -58.534984999857841, -34.661651000293375 ], [ -58.535649999947509, -34.661993999923141 ], [ -58.536228999668538, -34.662273000198752 ], [ -58.536872999689137, -34.662594999759392 ], [ -58.537023000311194, -34.662659000012809 ], [ -58.537494999594514, -34.662917000219352 ], [ -58.538117000399211, -34.663216999664769 ], [ -58.538761000419811, -34.663517000009506 ], [ -58.539468999794451, -34.663838999570146 ], [ -58.540348999906371, -34.664096999776689 ], [ -58.541185999833999, -34.664332999868009 ], [ -58.542022999761571, -34.664568999959329 ], [ -58.542859999689199, -34.664826000119774 ], [ -58.543760999870187, -34.665084000326317 ], [ -58.544575999682593, -34.665320000417637 ], [ -58.545392000440415, -34.665555999609637 ], [ -58.546270999606918, -34.665812999770083 ], [ -58.547087000364741, -34.666027999792334 ], [ -58.547987999646409, -34.666263999883654 ], [ -58.548910999942677, -34.666543000159265 ], [ -58.549383000125317, -34.666671999812877 ], [ -58.549833000192791, -34.666800000319711 ], [ -58.551034999865294, -34.667143999995574 ], [ -58.551678999885894, -34.667336999902602 ], [ -58.552644000320299, -34.667616000178214 ], [ -58.553587999786316, -34.667873000338659 ], [ -58.554660999805265, -34.668387999806328 ], [ -58.555669999570796, -34.668925000288482 ], [ -58.556377999844756, -34.669290000033413 ], [ -58.556721000373841, -34.669460999825219 ], [ -58.557042999934481, -34.669632999663179 ], [ -58.557708000024149, -34.669976000192207 ], [ -58.559188999972321, -34.671327999587447 ], [ -58.559596999901601, -34.671714000300824 ], [ -58.560326000244686, -34.672379000390492 ], [ -58.561163000172257, -34.673108999880412 ], [ -58.561934999800371, -34.673817000154372 ], [ -58.560712000058743, -34.674675000151069 ], [ -58.559661000155018, -34.675512000078697 ], [ -58.558567000066944, -34.676349000006326 ], [ -58.559296000410029, -34.677014000095994 ], [ -58.560025999899949, -34.67768000023176 ], [ -58.560755000243034, -34.678366000390554 ], [ -58.561527999917246, -34.679073999765251 ], [ -58.562257000260331, -34.679717999785794 ], [ -58.562986999750194, -34.680404999990685 ], [ -58.5638019995626, -34.681113000264702 ], [ -58.56268600025868, -34.681928000077107 ], [ -58.561635000354954, -34.68274399993561 ], [ -58.560475999967366, -34.683623000001433 ], [ -58.559360999810281, -34.684438999859935 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 144.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.789408317188006, -34.650626790431673 ], [ -58.789752222468984, -34.650526051483311 ], [ -58.789895134184704, -34.650476965843751 ], [ -58.85289850737432, -34.632901861653757 ], [ -58.865934299721097, -34.629261434771188 ], [ -58.867091217244337, -34.628931971405848 ], [ -58.86820563721384, -34.628634345555291 ], [ -58.869764834416593, -34.62825144310532 ], [ -58.871619271988102, -34.627826321280807 ], [ -58.921275719756402, -34.61627752477618 ], [ -58.952199088324221, -34.609079609488653 ], [ -59.056938636071763, -34.584578044438523 ], [ -59.084263447593059, -34.578169923286161 ], [ -59.087589600563113, -34.577387477876869 ], [ -59.08912787989378, -34.577021912479481 ], [ -59.09065748501537, -34.576637433940441 ], [ -59.092162396759683, -34.576277393662437 ], [ -59.093159281543713, -34.576061786710802 ], [ -59.093843016195791, -34.575957142006963 ], [ -59.0945443504569, -34.575888315177878 ], [ -59.095606178230447, -34.575826681839303 ], [ -59.096684470653322, -34.575812786266951 ], [ -59.09741692710481, -34.575852672832021 ], [ -59.098633911156583, -34.57597922712484 ], [ -59.100112818397221, -34.576173189754478 ], [ -59.10091876440562, -34.57634082511224 ], [ -59.101538575471281, -34.576503556794307 ], [ -59.102334667073443, -34.576781811625288 ], [ -59.104690176709639, -34.57758530879449 ], [ -59.140070384077632, -34.589456052043111 ], [ -59.14214243139255, -34.590166212863302 ], [ -59.143311774653149, -34.590626550876763 ], [ -59.144994792687363, -34.591365969401572 ], [ -59.148750051642153, -34.593052856594788 ], [ -59.149520725793231, -34.593381568091388 ], [ -59.150215192114921, -34.593651992714122 ], [ -59.150820858610381, -34.593848368595502 ], [ -59.151694637613687, -34.594125585438462 ], [ -59.152877525443778, -34.594444405564467 ], [ -59.15441694496117, -34.594796318965962 ], [ -59.15756725735627, -34.595505330397337 ], [ -59.158649092660717, -34.595746972225292 ], [ -59.159323204037463, -34.595930563349597 ], [ -59.160041937433277, -34.596142877451364 ], [ -59.161296081741149, -34.596547192515807 ], [ -59.17052013694196, -34.599634862445193 ], [ -59.176602941941539, -34.601653331654319 ], [ -59.252494377057097, -34.627039494742142 ], [ -59.258692624915483, -34.629059617310553 ], [ -59.28124500606004, -34.636570209490763 ], [ -59.284531177699748, -34.637660583281807 ], [ -59.286482936768593, -34.638301958265259 ], [ -59.287479823790541, -34.638584406928103 ], [ -59.288288930435137, -34.638802606953973 ], [ -59.289247156314943, -34.639019582021938 ], [ -59.290449550277792, -34.639253808298562 ], [ -59.291893777224047, -34.639524892782447 ], [ -59.293739311452072, -34.639747003454147 ], [ -59.297027393822937, -34.640077237440117 ], [ -59.328214277731362, -34.643185891203281 ], [ -59.330515276745942, -34.643432359680077 ], [ -59.33167841829453, -34.643577883845524 ], [ -59.332696098431931, -34.643728452050247 ], [ -59.333852574025222, -34.643936498226878 ], [ -59.336228745366959, -34.644404836547601 ], [ -59.349898590833057, -34.647234179044808 ], [ -59.398889084048122, -34.657351586399372 ], [ -59.407044660888737, -34.658981582208483 ], [ -59.408998109240343, -34.659390018508972 ], [ -59.410389824358951, -34.659658097092112 ], [ -59.411552841024601, -34.659855210673769 ], [ -59.412752441980203, -34.659993418904151 ], [ -59.41362606043689, -34.660051743681059 ], [ -59.414835103662178, -34.66009654798156 ], [ -59.416455743204843, -34.660065387982982 ], [ -59.417755020656017, -34.65997429447534 ], [ -59.41868008831004, -34.659874179806408 ], [ -59.419527580709868, -34.659732446551693 ], [ -59.421924674711448, -34.659347003003447 ], [ -59.428351084722749, -34.658312345731652 ], [ -59.429813440983793, -34.658090478994332 ], [ -59.433733279888841, -34.657453254687681 ], [ -59.43706192499549, -34.65694112326166 ], [ -59.438316279404411, -34.656765147212873 ], [ -59.439544435631717, -34.656690892522377 ], [ -59.440714727935749, -34.656662371188141 ], [ -59.441890980444462, -34.656677154865847 ], [ -59.44263008124544, -34.656738398684972 ], [ -59.443655329251101, -34.656834490337431 ], [ -59.444724886640287, -34.657009642398982 ], [ -59.445707195977029, -34.657229623495432 ], [ -59.446230641028514, -34.657385594983133 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 143.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.374610000151335, -34.655577999924731 ], [ -58.375061000264907, -34.654355000183045 ], [ -58.375424999963741, -34.653217999910737 ], [ -58.375811999823895, -34.652294999614469 ], [ -58.376004999730924, -34.651886999685246 ], [ -58.376563000282204, -34.650449999967464 ], [ -58.376669999820592, -34.650170999691852 ], [ -58.377119999888066, -34.648947999950167 ], [ -58.37718500018758, -34.648798000227487 ], [ -58.377549999932512, -34.647831999746927 ], [ -58.376454999798341, -34.64753200030151 ], [ -58.375318000425352, -34.647230999910676 ], [ -58.374309999806599, -34.646951999635007 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.373257999856776, -34.645664999639962 ], [ -58.373665999785999, -34.643604999970705 ], [ -58.373879999762153, -34.642360000113854 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377357000025484, -34.629550000232257 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.379819000246641, -34.627219999803117 ], [ -58.382190999914656, -34.627369000379019 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.38439499992927, -34.624700999651395 ], [ -58.385789000362024, -34.624742999789589 ], [ -58.387183999941612, -34.624829000158172 ], [ -58.388385999614172, -34.624936999742715 ], [ -58.389652000439412, -34.625044000180424 ], [ -58.391325000248514, -34.625237000087452 ], [ -58.391432999833057, -34.623992000230601 ], [ -58.391453999902126, -34.623498999978835 ], [ -58.391497000086417, -34.622726000304624 ], [ -58.391562000385989, -34.621545999847967 ], [ -58.391625999740029, -34.620215999668631 ], [ -58.391668999924377, -34.619100000364654 ], [ -58.391689999993446, -34.618112999815025 ], [ -58.391689999993446, -34.616911000142522 ], [ -58.391646999809154, -34.61570999961674 ], [ -58.391689999993446, -34.614936999942529 ], [ -58.391712000108669, -34.613821999785443 ], [ -58.39175500029296, -34.612684000366301 ], [ -58.391818999647057, -34.611503999909644 ], [ -58.391839999716183, -34.610345000421376 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.392033999669309, -34.608005999577188 ], [ -58.392118999991794, -34.606804999950725 ], [ -58.392184000291365, -34.605688999747485 ], [ -58.392290999829754, -34.604422999821566 ], [ -58.392420000382685, -34.603135999826463 ], [ -58.392613000289714, -34.601998000407377 ], [ -58.392785000127617, -34.600817999950721 ], [ -58.392934999850297, -34.599658999563133 ], [ -58.393042000288062, -34.598715000097116 ], [ -58.393214000125965, -34.597256000264167 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.394650999843748, -34.595797000431162 ], [ -58.396088999607628, -34.595689999993454 ], [ -58.39737699964877, -34.595582000408967 ], [ -58.398534999990204, -34.595431999786911 ], [ -58.399673000308667, -34.595217999810814 ], [ -58.399909000399987, -34.595153000410619 ], [ -58.401153000210741, -34.594809999881534 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.403620999809277, -34.594080000391671 ], [ -58.405100999711351, -34.593372000117654 ], [ -58.406131000445271, -34.592578000374374 ], [ -58.407183000395094, -34.591634000009037 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.412203999914595, -34.587643000324135 ], [ -58.412353999637332, -34.587556999955552 ], [ -58.413169000349058, -34.586999000303592 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.414992999926938, -34.585775999662587 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.420528999813428, -34.581892000415451 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.429643000124315, -34.577146000087794 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 142.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.450334000113969, -34.558245999952874 ], [ -58.450613000389637, -34.558417999790834 ], [ -58.451148999926374, -34.558761000319862 ], [ -58.451964999784877, -34.559254999718405 ], [ -58.452072000222586, -34.559318999971822 ], [ -58.452952000334506, -34.55983400033881 ], [ -58.453832000446425, -34.560369999875547 ], [ -58.454753999797219, -34.560907000357759 ], [ -58.455698000162556, -34.561442999894496 ], [ -58.456085000022711, -34.561701000101039 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.445376999948564, -34.570819999743151 ], [ -58.445828000062136, -34.571593000316682 ], [ -58.446343000429067, -34.572408000129087 ], [ -58.446578999621067, -34.572837000127436 ], [ -58.446921000104055, -34.573412999710115 ], [ -58.446986999550347, -34.573524000332327 ], [ -58.447029999734639, -34.57360999980159 ], [ -58.447416000448015, -34.574210999637899 ], [ -58.447738000008655, -34.574811000327372 ], [ -58.448380999983101, -34.576035000115098 ], [ -58.448896000350089, -34.576999999650241 ], [ -58.449410999817758, -34.577966000130743 ], [ -58.449990999584941, -34.57890999959676 ], [ -58.450570000205289, -34.579853999962097 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.451535999786529, -34.581399000163685 ], [ -58.451728999693557, -34.581698999609102 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.455224999933762, -34.587095000234058 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.455419999932985, -34.587214000325787 ], [ -58.455677000093431, -34.587150000072427 ], [ -58.456385000367447, -34.586870999796758 ], [ -58.456492999951934, -34.586833999889166 ], [ -58.457328999833408, -34.586549000236118 ], [ -58.459283000010373, -34.585820999939131 ], [ -58.459689999893556, -34.585669000124199 ], [ -58.459882999800584, -34.585625999939907 ], [ -58.460096999776681, -34.585625999939907 ], [ -58.460398000167515, -34.585669000124199 ], [ -58.461106000441532, -34.585840999962159 ], [ -58.461514000370755, -34.58603399986913 ], [ -58.461964000438229, -34.586291000029576 ], [ -58.462157000345258, -34.58644199979841 ], [ -58.462907999904246, -34.587084999772856 ], [ -58.463465999556206, -34.587643000324135 ], [ -58.465648000354918, -34.589690000293217 ], [ -58.466234000398742, -34.590239999576283 ], [ -58.466555999959382, -34.590560999990089 ], [ -58.466578000074605, -34.590647000358729 ], [ -58.466578000074605, -34.590925999735077 ], [ -58.466255999614646, -34.591227000125912 ], [ -58.465246999849114, -34.592063000007386 ], [ -58.464475000221057, -34.592750000212277 ], [ -58.464817999850766, -34.594016000138254 ], [ -58.465032999873017, -34.594788999812465 ], [ -58.465376000402046, -34.595068000088077 ], [ -58.466406000236702, -34.595776000362093 ], [ -58.467177999864759, -34.596290999829762 ], [ -58.465998000307422, -34.596290999829762 ], [ -58.465675999847463, -34.59639800026747 ], [ -58.465611999594046, -34.596504999805859 ], [ -58.465675999847463, -34.596740999897179 ], [ -58.465977000238354, -34.59774999966271 ], [ -58.465998000307422, -34.59783600003135 ], [ -58.466276999683771, -34.598800999566436 ], [ -58.466512999775091, -34.599595000209035 ], [ -58.466599000143674, -34.599853000415578 ], [ -58.467007000072954, -34.601097000226332 ], [ -58.468615999628639, -34.600753999697304 ], [ -58.468938000088599, -34.601847999785321 ], [ -58.469302999833531, -34.60217000024528 ], [ -58.470461000174964, -34.602985000057686 ], [ -58.471749000216164, -34.603887000284772 ], [ -58.472907999704375, -34.604615999728537 ], [ -58.474022999861518, -34.605302999933429 ], [ -58.474345000321478, -34.605495999840457 ], [ -58.475117999995689, -34.605989000092222 ], [ -58.47619100001458, -34.606633000112822 ], [ -58.476899000288597, -34.607018999926879 ], [ -58.477478000009626, -34.607277000133422 ], [ -58.478958999957854, -34.607749000316062 ], [ -58.479667000231814, -34.607921000153965 ], [ -58.479794999839328, -34.607964000338313 ], [ -58.480438999859928, -34.608114000060993 ], [ -58.48196299999239, -34.60849999987505 ], [ -58.483508000194036, -34.608864999619982 ], [ -58.482992999827047, -34.60946600035561 ], [ -58.482628000082116, -34.60993799963893 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.481855000407904, -34.610903000073336 ], [ -58.481468999694528, -34.611418000440324 ], [ -58.480653999882122, -34.612427000205855 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.479023000211271, -34.614421999575598 ], [ -58.478228999568614, -34.615452000309517 ], [ -58.477478000009626, -34.616461000075049 ], [ -58.476641000082054, -34.617447999725357 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.475868999554621, -34.618456000344111 ], [ -58.475052999696118, -34.619465000109642 ], [ -58.474215999768546, -34.620516000013367 ], [ -58.473916000323129, -34.621181000103036 ], [ -58.473465000209558, -34.622168999799442 ], [ -58.473015000142084, -34.623177000418195 ], [ -58.472564000028513, -34.624164000068504 ], [ -58.472113999961095, -34.625150999718812 ], [ -58.471577000378204, -34.626353000290692 ], [ -58.471127000310787, -34.627404000194417 ], [ -58.470676000197216, -34.628412999959949 ], [ -58.470440000105896, -34.628906000211714 ], [ -58.470225000083644, -34.629420999679326 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.492347999560479, -34.63534400032529 ], [ -58.493829000408027, -34.635664999839832 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.493484999832845, -34.637402999948449 ], [ -58.493378000294456, -34.637918000315437 ], [ -58.493142000203079, -34.63911999998794 ], [ -58.494601000036084, -34.639312999894969 ], [ -58.494364999944764, -34.64055799975182 ], [ -58.494278999576125, -34.640986999750169 ], [ -58.494128999853444, -34.641738000208477 ], [ -58.493892999762068, -34.642939999881037 ], [ -58.493614000385776, -34.644055000038179 ], [ -58.494687000404724, -34.644527000220819 ], [ -58.495095000333947, -34.644721000174002 ], [ -58.495223999987559, -34.644848999781459 ], [ -58.496038999799964, -34.64562200035499 ], [ -58.496790000258272, -34.646329999729687 ], [ -58.497540999817261, -34.647016999934579 ], [ -58.498292000275569, -34.647703000093315 ], [ -58.499042999834558, -34.648390000298207 ], [ -58.499428999648558, -34.648755000043195 ], [ -58.499794000292866, -34.649097999672904 ], [ -58.500544999851797, -34.649784999877795 ], [ -58.501296000310106, -34.650471000036589 ], [ -58.502196999591831, -34.65130799996416 ], [ -58.50309799977282, -34.652209000145206 ], [ -58.504021000069031, -34.653089000257125 ], [ -58.504621999905339, -34.653646999909085 ], [ -58.505715999993356, -34.654440999652365 ], [ -58.506488999667567, -34.655020000272771 ], [ -58.507196999941527, -34.655556999855605 ], [ -58.508183999591893, -34.654827000365742 ], [ -58.509277999679909, -34.654054999838309 ], [ -58.509900999631384, -34.654676999743685 ], [ -58.508827999612436, -34.655449000271119 ], [ -58.507948000399836, -34.656093000291662 ], [ -58.507004000034556, -34.65693000021929 ], [ -58.50578100029287, -34.657916999869599 ], [ -58.504578999721048, -34.658904000419227 ], [ -58.503119999888042, -34.660127000160912 ], [ -58.501661000055094, -34.661328999833415 ], [ -58.500180000106866, -34.662551999575101 ], [ -58.500930999665854, -34.663174000379797 ], [ -58.501747000423677, -34.663838999570146 ], [ -58.502541000166957, -34.664504999705912 ], [ -58.503227000325751, -34.665084000326317 ], [ -58.503355999979362, -34.665169999795637 ], [ -58.504149999722642, -34.665834999885305 ], [ -58.504944000365299, -34.666478999905905 ], [ -58.505738000108579, -34.667165000064642 ], [ -58.506531999851859, -34.667830000154368 ], [ -58.507325999595139, -34.668474000174911 ], [ -58.508098000122573, -34.66911800019551 ], [ -58.508785000327464, -34.66976200021611 ], [ -58.509150000072395, -34.670169000099236 ], [ -58.509513999771229, -34.670490999659876 ], [ -58.510308000413829, -34.669846999639276 ], [ -58.511102000157166, -34.670490999659876 ], [ -58.511831999647029, -34.671134999680476 ], [ -58.512583000105337, -34.671799999770144 ], [ -58.513312000448423, -34.672464999859812 ], [ -58.514170999591897, -34.671842999954436 ], [ -58.515071999772942, -34.671155999749544 ], [ -58.515823000231251, -34.67055599995939 ], [ -58.516660000158822, -34.66991199993879 ], [ -58.517067000042005, -34.669569000309082 ], [ -58.517540000270742, -34.669161000379802 ], [ -58.518162000176119, -34.669632999663179 ], [ -58.518806000196719, -34.670125999914944 ], [ -58.518869999550816, -34.670169000099236 ], [ -58.519878000169513, -34.670962999842516 ], [ -58.520028999938347, -34.671071000326378 ], [ -58.520908000004169, -34.671756999585796 ], [ -58.521981000023118, -34.672508000044104 ], [ -58.522946999604301, -34.673216000318121 ], [ -58.523526000224706, -34.673667000431692 ], [ -58.524062999807541, -34.674075000360915 ], [ -58.524599000243597, -34.674461000174972 ], [ -58.525135999826489, -34.67489000017332 ], [ -58.525672000262546, -34.6752980001026 ], [ -58.526164999614991, -34.6756839999166 ], [ -58.525264000333323, -34.676520999844229 ], [ -58.524642000427946, -34.677057000280286 ], [ -58.523998000407346, -34.677658000116594 ], [ -58.523333000317677, -34.678236999837623 ], [ -58.522560999790244, -34.678924000042514 ], [ -58.522196000045312, -34.679245999603154 ], [ -58.521508999840421, -34.679889999623754 ], [ -58.521444999587004, -34.679932999808045 ], [ -58.520715000097141, -34.680597999897714 ], [ -58.520479000005821, -34.680790999804742 ], [ -58.519963999638833, -34.681262999987439 ], [ -58.519534999640484, -34.68162799973237 ], [ -58.519235000195067, -34.681907000007982 ], [ -58.518547999990176, -34.682528999913359 ], [ -58.518483999736759, -34.682593000166776 ], [ -58.51773300017777, -34.683259000302598 ], [ -58.51693900043449, -34.683987999746364 ], [ -58.516016000138279, -34.684739000204672 ], [ -58.515114999957234, -34.685511999878827 ], [ -58.514106000191703, -34.686326999691232 ], [ -58.513140999757297, -34.687121000333832 ], [ -58.510437000067441, -34.689267000371728 ], [ -58.509556999955521, -34.689759999724174 ], [ -58.508570000305212, -34.690297000206328 ], [ -58.508506000051796, -34.690403999744774 ], [ -58.50848399993663, -34.690467999998134 ], [ -58.508440999752281, -34.690704000089511 ], [ -58.508848999681561, -34.690896999996482 ], [ -58.509256999610784, -34.691391000294402 ], [ -58.508141000306864, -34.692035000314945 ], [ -58.507025000103624, -34.692657000220322 ], [ -58.506123999922636, -34.693150999618922 ], [ -58.505200999626368, -34.693643999870631 ], [ -58.504279000275574, -34.694180000306744 ], [ -58.503377000048488, -34.694673999705287 ], [ -58.503227000325751, -34.694760000073927 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 141.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.495033, -34.543747 ], [ -58.495796, -34.542858 ], [ -58.496284, -34.542301 ], [ -58.496563, -34.541973 ], [ -58.49725, -34.541122 ], [ -58.497272, -34.541103 ], [ -58.498074, -34.540268 ], [ -58.499554, -34.538601 ], [ -58.500065, -34.537796 ], [ -58.500668, -34.536903 ], [ -58.501266, -34.535973 ], [ -58.501804, -34.535168 ], [ -58.5019, -34.53503 ], [ -58.502495, -34.534168 ], [ -58.503056, -34.53334 ], [ -58.503479, -34.532887 ], [ -58.503662, -34.532795 ], [ -58.503803, -34.532722 ], [ -58.504005, -34.532543 ], [ -58.50425, -34.532219 ], [ -58.504623, -34.531693 ], [ -58.505718, -34.530617 ], [ -58.505726, -34.530609 ], [ -58.50721, -34.528633 ], [ -58.507759, -34.527847 ], [ -58.510143, -34.524647 ], [ -58.510483, -34.524101 ], [ -58.512234, -34.521851 ], [ -58.512852, -34.521233 ], [ -58.514178999999899, -34.519844 ], [ -58.515858, -34.518219 ], [ -58.51672, -34.517391 ], [ -58.516918, -34.517208 ], [ -58.517712, -34.516487 ], [ -58.519405, -34.514961 ], [ -58.520485, -34.514164 ], [ -58.520538, -34.513947 ], [ -58.520626, -34.513748 ], [ -58.520756, -34.513569 ], [ -58.520901, -34.513397 ], [ -58.521042, -34.513226 ], [ -58.521187, -34.513058 ], [ -58.521347, -34.512909 ], [ -58.521526, -34.512779 ], [ -58.521713, -34.512661 ], [ -58.5219, -34.512543 ], [ -58.522087, -34.512424 ], [ -58.52227, -34.512302 ], [ -58.522446, -34.512165 ], [ -58.522583, -34.511993 ], [ -58.522648, -34.511745 ], [ -58.522648, -34.511555 ], [ -58.522751, -34.511372 ], [ -58.522987, -34.511314 ], [ -58.523582, -34.511063 ], [ -58.523693, -34.511017 ], [ -58.524879, -34.510208 ], [ -58.525219, -34.510021 ], [ -58.525642, -34.510014 ], [ -58.527782, -34.50914 ], [ -58.529255, -34.508598 ], [ -58.534416, -34.506153 ], [ -58.536415, -34.505062 ], [ -58.538727, -34.504009 ], [ -58.542492, -34.502232 ], [ -58.545036, -34.501022 ], [ -58.545532, -34.500614 ], [ -58.546207, -34.500156 ], [ -58.547108, -34.49966 ], [ -58.548481, -34.499016 ], [ -58.551357, -34.497673 ], [ -58.552067, -34.497166 ], [ -58.552567, -34.496593 ], [ -58.552765, -34.496185 ], [ -58.552872, -34.495953 ], [ -58.553101, -34.495701 ], [ -58.553329, -34.495499 ], [ -58.554047, -34.494869 ], [ -58.554237, -34.494755 ], [ -58.554432, -34.494652 ], [ -58.554653, -34.494637 ], [ -58.554878, -34.494644 ], [ -58.555088, -34.494602 ], [ -58.555283, -34.494495 ], [ -58.555489, -34.49437 ], [ -58.556175, -34.493824 ], [ -58.556194, -34.493805 ], [ -58.556713, -34.49366 ], [ -58.55698, -34.493694 ], [ -58.557468, -34.49379 ], [ -58.557991, -34.49379 ], [ -58.558109, -34.49379 ], [ -58.55854, -34.493729 ], [ -58.559216, -34.493649 ], [ -58.561199, -34.492996 ], [ -58.564766, -34.491669 ], [ -58.565735, -34.491318 ], [ -58.569294, -34.490158 ], [ -58.571529, -34.489567 ], [ -58.574036, -34.489082 ], [ -58.574406, -34.489033 ], [ -58.574554, -34.488869 ], [ -58.574741, -34.488758 ], [ -58.574947, -34.488678 ], [ -58.575161, -34.488617 ], [ -58.575378, -34.488583 ], [ -58.575596, -34.488541 ], [ -58.575817, -34.488514 ], [ -58.576038, -34.488503 ], [ -58.576256, -34.48848 ], [ -58.576477, -34.488449 ], [ -58.576698, -34.488445 ], [ -58.576916, -34.488415 ], [ -58.577133, -34.488384 ], [ -58.577351, -34.488342 ], [ -58.577564, -34.488281 ], [ -58.577946, -34.488171 ], [ -58.579021, -34.488075 ], [ -58.579132, -34.488132 ], [ -58.579247, -34.488174 ], [ -58.579365, -34.488174 ], [ -58.579487, -34.48819 ], [ -58.579647, -34.488216 ], [ -58.579784, -34.488216 ], [ -58.579967, -34.488209 ], [ -58.580173, -34.488197 ], [ -58.580391, -34.488144 ], [ -58.580605, -34.488087 ], [ -58.580814, -34.488022 ], [ -58.581028, -34.487961 ], [ -58.581242, -34.487892 ], [ -58.581448, -34.487812 ], [ -58.581692, -34.487617 ], [ -58.581879, -34.487736 ], [ -58.582088, -34.487801 ], [ -58.582306, -34.487843 ], [ -58.582527, -34.487873 ], [ -58.582748, -34.487892 ], [ -58.582966, -34.487904 ], [ -58.583187, -34.487911 ], [ -58.583408, -34.487911 ], [ -58.583633, -34.487915 ], [ -58.583855, -34.487915 ], [ -58.584076, -34.487919 ], [ -58.584297, -34.487923 ], [ -58.584518, -34.487926 ], [ -58.584736, -34.487938 ], [ -58.584957, -34.487953 ], [ -58.585175, -34.487999 ], [ -58.58556, -34.48811 ], [ -58.587276, -34.487934 ], [ -58.588249, -34.487671 ], [ -58.589756, -34.487392 ], [ -58.590221, -34.487267 ], [ -58.592499, -34.487022 ], [ -58.594799, -34.486893 ], [ -58.59499, -34.486923 ], [ -58.595219, -34.486919 ], [ -58.595375, -34.486908 ], [ -58.595478, -34.486877 ], [ -58.595551, -34.486839 ], [ -58.595615, -34.486801 ], [ -58.59613, -34.486813 ], [ -58.601269, -34.4865 ], [ -58.602566, -34.486572 ], [ -58.602951, -34.486607 ], [ -58.604008, -34.486664 ], [ -58.604805, -34.486641 ], [ -58.605408, -34.486576 ], [ -58.605824, -34.486313 ], [ -58.606327, -34.486164 ], [ -58.607758, -34.486 ], [ -58.609131, -34.485783 ], [ -58.610134, -34.485649 ], [ -58.611862, -34.485229 ], [ -58.612114, -34.485199 ], [ -58.613068, -34.485058 ], [ -58.613657321999938, -34.484987127999943 ], [ -58.6140097359999, -34.484933644999956 ], [ -58.619387545999928, -34.487632545999929 ], [ -58.626811093999947, -34.491627085999937 ], [ -58.637958977999915, -34.497646652999947 ], [ -58.643099642999914, -34.500544562999949 ], [ -58.641884116999904, -34.502204924999944 ], [ -58.643788914999902, -34.502039641999943 ], [ -58.6436434929999, -34.500820512999951 ], [ -58.643099642999914, -34.500544562999949 ], [ -58.642207528999904, -34.500001210999926 ], [ -58.641095480999923, -34.499373275999915 ], [ -58.640135555999905, -34.498835034999956 ], [ -58.639044810999906, -34.498236967999958 ], [ -58.637958977999915, -34.497646652999947 ], [ -58.636919106999926, -34.497090515999957 ], [ -58.635867771999926, -34.496526775999939 ], [ -58.634838462999937, -34.495972025999947 ], [ -58.633748159999925, -34.495386654999947 ], [ -58.632726474999913, -34.494835731999956 ], [ -58.631735284999934, -34.494296314999929 ], [ -58.630794430999913, -34.493787783999949 ], [ -58.630571106999923, -34.493667458999937 ], [ -58.629792571999928, -34.49326887299992 ], [ -58.628870382999935, -34.492742460999921 ], [ -58.628081183999939, -34.492321319999917 ], [ -58.627903499999945, -34.492215704999921 ], [ -58.626811093999947, -34.491627085999937 ], [ -58.625896289999901, -34.491140286999951 ], [ -58.625592599999948, -34.49097551199992 ], [ -58.624953779999942, -34.490634021999938 ], [ -58.623881198999925, -34.490060934999917 ], [ -58.622901393999939, -34.489528850999932 ], [ -58.622103781999954, -34.489114482999923 ], [ -58.621921584999939, -34.489000554999905 ], [ -58.621404919999918, -34.488749537999922 ], [ -58.620607582999924, -34.488293620999912 ], [ -58.619387545999928, -34.487632545999929 ], [ -58.618339723999952, -34.487104716999909 ], [ -58.617211631999908, -34.48658101299992 ], [ -58.616176039999914, -34.48602253699994 ], [ -58.615550263999921, -34.485711183999911 ], [ -58.615018534999933, -34.485469287999933 ], [ -58.614590214999907, -34.48523864099991 ], [ -58.614305817999934, -34.48508481999994 ], [ -58.6140097359999, -34.484933644999956 ], [ -58.61381530299991, -34.48484968899993 ], [ -58.61360848399994, -34.484759328999928 ], [ -58.612309, -34.483997 ], [ -58.611443, -34.48354 ], [ -58.611092, -34.483379 ], [ -58.610504, -34.483051 ], [ -58.609615, -34.482586 ], [ -58.609211, -34.482376 ], [ -58.608227, -34.481846 ], [ -58.607521, -34.481461 ], [ -58.606922, -34.481148 ], [ -58.606491, -34.480907 ], [ -58.605007, -34.480713 ], [ -58.603657, -34.480515 ], [ -58.602924, -34.480316 ], [ -58.602264, -34.480125 ], [ -58.600811, -34.47879 ], [ -58.59956, -34.477638 ], [ -58.598, -34.476227 ], [ -58.59795, -34.475857 ], [ -58.597855, -34.475239 ], [ -58.597824, -34.475109 ], [ -58.597591, -34.474037 ], [ -58.597397, -34.473145 ], [ -58.59734, -34.472889 ], [ -58.596664, -34.472309 ], [ -58.595596, -34.47179 ], [ -58.594418, -34.471218 ], [ -58.593281, -34.470665 ], [ -58.592228, -34.470158 ], [ -58.591106, -34.469608 ], [ -58.590034, -34.46909 ], [ -58.588936, -34.468555 ], [ -58.587997, -34.468098 ], [ -58.587883, -34.468044 ], [ -58.586781, -34.46751 ], [ -58.58567, -34.466972 ], [ -58.584564, -34.466434 ], [ -58.583477, -34.465916 ], [ -58.582397, -34.465393 ], [ -58.581314, -34.46487 ], [ -58.580963, -34.464699 ], [ -58.580235, -34.464352 ], [ -58.579147, -34.463844 ], [ -58.578072, -34.463333 ], [ -58.576973, -34.462818 ], [ -58.575882, -34.462307 ], [ -58.574795, -34.461788 ], [ -58.57373, -34.461285 ], [ -58.572884, -34.460888 ], [ -58.572865, -34.460876 ], [ -58.571548, -34.460255 ], [ -58.570427, -34.459709 ], [ -58.569332, -34.459202 ], [ -58.568375, -34.458744 ], [ -58.568333, -34.458725 ], [ -58.567188, -34.458183 ], [ -58.565781, -34.457516 ], [ -58.565762, -34.457504 ], [ -58.564594, -34.456909 ], [ -58.563496, -34.456383 ], [ -58.562946, -34.456112 ], [ -58.562656, -34.455967 ], [ -58.562412, -34.455856 ], [ -58.561489, -34.455421 ], [ -58.560654, -34.455029 ], [ -58.560612, -34.455009 ], [ -58.559719, -34.454578 ], [ -58.559296, -34.454369 ], [ -58.558762, -34.45409 ], [ -58.557713, -34.453545 ], [ -58.557671, -34.453522 ], [ -58.557358, -34.453358 ], [ -58.55695, -34.453148 ], [ -58.556225, -34.45277 ], [ -58.556187, -34.452751 ], [ -58.555443, -34.452366 ], [ -58.554607, -34.451942 ], [ -58.554577, -34.451923 ], [ -58.553627, -34.451427 ], [ -58.552757, -34.450966 ], [ -58.551777, -34.450451 ], [ -58.551609, -34.450363 ], [ -58.551552, -34.450302 ], [ -58.551537, -34.45023 ], [ -58.551327, -34.45005 ], [ -58.55056, -34.4506 ], [ -58.549747, -34.451183 ], [ -58.548935, -34.451767 ], [ -58.548115, -34.452328 ], [ -58.547615, -34.452713 ], [ -58.547298, -34.452942 ], [ -58.546501, -34.453506 ], [ -58.546028, -34.453091 ], [ -58.545307, -34.452427 ], [ -58.544594, -34.45179 ], [ -58.543961, -34.451214 ], [ -58.543152, -34.450485 ], [ -58.543118, -34.450462 ], [ -58.543056, -34.450508 ], [ -58.542198, -34.450981 ], [ -58.542006999999899, -34.451084 ], [ -58.541222, -34.451439 ], [ -58.540581, -34.451729 ], [ -58.540314, -34.45195 ], [ -58.539223, -34.452881 ], [ -58.53878, -34.453236 ], [ -58.53857, -34.453415 ], [ -58.538116, -34.453793 ], [ -58.538086, -34.453815 ], [ -58.538002, -34.453857 ], [ -58.537323, -34.454502 ], [ -58.536407, -34.45525 ], [ -58.535706, -34.455719 ], [ -58.534973, -34.456192 ], [ -58.533981, -34.456894 ], [ -58.533432, -34.457302 ], [ -58.533245, -34.457413 ], [ -58.532475, -34.457813 ], [ -58.531384, -34.458378 ], [ -58.5303, -34.458977 ], [ -58.529655, -34.459278 ], [ -58.529156, -34.459686 ], [ -58.528244, -34.460312 ], [ -58.528137, -34.460403 ], [ -58.527374, -34.461044 ], [ -58.526539, -34.461731 ], [ -58.525978, -34.462223 ], [ -58.525349, -34.462757 ], [ -58.525246, -34.462837 ], [ -58.524498, -34.463432 ], [ -58.522293, -34.465183 ], [ -58.5215, -34.465679 ], [ -58.520695, -34.466179 ], [ -58.519905, -34.466671 ], [ -58.518974, -34.467232 ], [ -58.518364, -34.46796 ], [ -58.517895, -34.468513 ], [ -58.51778, -34.468647 ], [ -58.516941, -34.469627 ], [ -58.516575, -34.470051 ], [ -58.516129, -34.470573 ], [ -58.515835, -34.470917 ], [ -58.515419, -34.471394 ], [ -58.514992, -34.471889 ], [ -58.51442, -34.472557 ], [ -58.514351, -34.472626 ], [ -58.513531, -34.473392 ], [ -58.512623, -34.474293 ], [ -58.511909, -34.474991 ], [ -58.511089, -34.47583 ], [ -58.510403, -34.476555 ], [ -58.509773, -34.477188 ], [ -58.509026, -34.477966 ], [ -58.508316, -34.478699 ], [ -58.507603, -34.479443 ], [ -58.507172, -34.479881 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 139.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.230800999966107, -34.706969000119216 ], [ -58.231026000449503, -34.707031000280381 ], [ -58.232174000329792, -34.707719999678204 ], [ -58.233418000140546, -34.708471000136512 ], [ -58.234298000252465, -34.708965000434375 ], [ -58.234834999835357, -34.709286999995015 ], [ -58.235736000016345, -34.709823000431072 ], [ -58.236616000128265, -34.710360000013964 ], [ -58.237517000309253, -34.710875000380895 ], [ -58.238417999590979, -34.711410999917689 ], [ -58.239297999702899, -34.71192600028462 ], [ -58.240177999814819, -34.712440999752289 ], [ -58.241078999995807, -34.712977000188346 ], [ -58.241980000176852, -34.713513999771237 ], [ -58.242860000288715, -34.714029000138225 ], [ -58.244661999751429, -34.715102000157117 ], [ -58.245541999863349, -34.715637999693911 ], [ -58.246399999860046, -34.716153000060842 ], [ -58.246571999698006, -34.716259999599231 ], [ -58.247215999718549, -34.716625000243539 ], [ -58.247559000247634, -34.716840000265734 ], [ -58.247708999970314, -34.716989999988471 ], [ -58.246764999605034, -34.717611999893847 ], [ -58.247551999924838, -34.718079999892041 ], [ -58.248352999990914, -34.71857800037435 ], [ -58.249189999918542, -34.719070999726796 ], [ -58.250134000283822, -34.719500999771299 ], [ -58.251099999865062, -34.719994000023064 ], [ -58.252044000230399, -34.720466000205704 ], [ -58.253008999765484, -34.720959999604247 ], [ -58.253953000130821, -34.721409999671721 ], [ -58.254876000427032, -34.721881999854361 ], [ -58.255798999823924, -34.722354000037001 ], [ -58.256721000074037, -34.72284800033492 ], [ -58.257686999655277, -34.723340999687366 ], [ -58.258566999767197, -34.723791999800881 ], [ -58.259554000316825, -34.724307000167869 ], [ -58.260111999968785, -34.723555999709561 ], [ -58.260497999782842, -34.723041000241949 ], [ -58.260690999689871, -34.722784000081504 ], [ -58.261034000218899, -34.722310999852709 ], [ -58.261292000425442, -34.721990000338224 ], [ -58.261678000239499, -34.721452999856012 ], [ -58.261893000261693, -34.721153000410595 ], [ -58.262258000006682, -34.720681000227955 ], [ -58.262471999982779, -34.720401999952287 ], [ -58.262857999796836, -34.719886999585299 ], [ -58.262992999727089, -34.719707000277822 ], [ -58.263051999749962, -34.719629000278076 ], [ -58.26348099974831, -34.719070999726796 ], [ -58.263887999631436, -34.718492000005767 ], [ -58.26292300009635, -34.717998999754002 ], [ -58.263501999817379, -34.717182999895499 ], [ -58.264489000367007, -34.71769800026243 ], [ -58.264102999653687, -34.718212999730099 ], [ -58.265003999834676, -34.718641999728447 ], [ -58.265175999672579, -34.718728000097087 ], [ -58.266120000037915, -34.719179000210659 ], [ -58.265498000132538, -34.720058000276424 ], [ -58.264897000296287, -34.720852000019761 ], [ -58.265797999577956, -34.721282000064207 ], [ -58.266698999759001, -34.721711000062555 ], [ -58.267665000239504, -34.722204000314321 ], [ -58.268608999705521, -34.722697999712864 ], [ -58.269532000001732, -34.723169999895561 ], [ -58.270518999652097, -34.723663000147269 ], [ -58.271140999557417, -34.722826000219698 ], [ -58.271763000362114, -34.721968000223001 ], [ -58.272386000313645, -34.721110000226304 ], [ -58.273029000288091, -34.720252000229607 ], [ -58.273652000239565, -34.719306999818116 ], [ -58.27423099996065, -34.71842799975235 ], [ -58.274809999681679, -34.717568999709499 ], [ -58.275368000232959, -34.716732999828025 ], [ -58.276097999722879, -34.715788000315911 ], [ -58.276677000343227, -34.715015999788534 ], [ -58.277299000248604, -34.714199999930031 ], [ -58.277900000084912, -34.713385000117626 ], [ -58.276913000434604, -34.712869999750637 ], [ -58.275990000138336, -34.71241999968322 ], [ -58.275595999955385, -34.71222200044491 ], [ -58.275175000325987, -34.71201199975394 ], [ -58.276398000067616, -34.711431999986758 ], [ -58.277686000108758, -34.710853000265729 ], [ -58.278843999550872, -34.710294999714449 ], [ -58.280046000122752, -34.709844999646975 ], [ -58.281461999771409, -34.709330000179307 ], [ -58.282256000414066, -34.709028999788472 ], [ -58.282664000343289, -34.708879000065735 ], [ -58.283843999900625, -34.708363999698804 ], [ -58.285260000448602, -34.707741999793427 ], [ -58.286011000007591, -34.707377000048496 ], [ -58.286440000005939, -34.707184000141467 ], [ -58.286912000188636, -34.70694800005009 ], [ -58.28762099960943, -34.706604000374284 ], [ -58.288844000250378, -34.706024999753879 ], [ -58.289401999902339, -34.705746000377587 ], [ -58.290001999692493, -34.705467000101919 ], [ -58.291225000333441, -34.704866000265667 ], [ -58.291273999895111, -34.70485399971227 ], [ -58.293048999911377, -34.704416000198194 ], [ -58.293842999654657, -34.704201000175999 ], [ -58.294616000228189, -34.704008000268971 ], [ -58.294809000135217, -34.703921999900331 ], [ -58.295474000224885, -34.703751000108525 ], [ -58.296289000037291, -34.703515000017205 ], [ -58.297125999964862, -34.703278999925885 ], [ -58.297919999708199, -34.703063999903634 ], [ -58.298221000099034, -34.702935000250022 ], [ -58.298778999750994, -34.702763999558897 ], [ -58.299614999632468, -34.702506000251674 ], [ -58.299829999654719, -34.702441999998257 ], [ -58.301374999856307, -34.701905000415366 ], [ -58.302812999620187, -34.701412000163657 ], [ -58.303091999895855, -34.701303999679794 ], [ -58.304328000236978, -34.700867000211872 ], [ -58.30485100007354, -34.700681999774417 ], [ -58.305151000418277, -34.700553000120806 ], [ -58.307877000223357, -34.699415999848497 ], [ -58.308455999944385, -34.69911600040308 ], [ -58.309164000218402, -34.698750999758772 ], [ -58.310129999799585, -34.698236000291161 ], [ -58.310452000259545, -34.698063999553881 ], [ -58.310729999589796, -34.697978000084618 ], [ -58.311671999862881, -34.697682999970425 ], [ -58.312231999607036, -34.697505999901921 ], [ -58.312361000159967, -34.697634999555532 ], [ -58.313413000109847, -34.698535999736578 ], [ -58.314442999944447, -34.699394999779372 ], [ -58.315472999779104, -34.700273999845194 ], [ -58.316009000215161, -34.700747000073932 ], [ -58.316523999682772, -34.70117600007228 ], [ -58.317060000118886, -34.701626000139754 ], [ -58.317554000416749, -34.702034000068977 ], [ -58.318584000251349, -34.702957000365245 ], [ -58.319742999739617, -34.702077000253325 ], [ -58.320772999574217, -34.701240000325697 ], [ -58.321824000377262, -34.700403000398126 ], [ -58.322703999589862, -34.699695000124109 ], [ -58.32369100013949, -34.698943999665801 ], [ -58.324549000136187, -34.698257000360229 ], [ -58.325278999626107, -34.697677999739881 ], [ -58.32457100025141, -34.697033999719281 ], [ -58.325386000063816, -34.696498000182544 ], [ -58.326073000268707, -34.697076999903572 ], [ -58.326179999807096, -34.697142000203087 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.327424999663947, -34.698149999922521 ], [ -58.328454000351769, -34.698986999850092 ], [ -58.329548999586621, -34.699866999962012 ], [ -58.330600000389666, -34.700747000073932 ], [ -58.331609000155197, -34.701582999955463 ], [ -58.332831999896825, -34.702569999605771 ], [ -58.333948000100065, -34.703471999832857 ], [ -58.334977999934722, -34.704308999760485 ], [ -58.335900000184836, -34.703579000270622 ], [ -58.336822999581727, -34.702870999996605 ], [ -58.337745999877939, -34.702140999607423 ], [ -58.338647000058984, -34.701433000232726 ], [ -58.339570000355195, -34.700724999958766 ], [ -58.340364000098475, -34.700080999938166 ], [ -58.341156999795658, -34.699459000032789 ], [ -58.341908000253966, -34.698815000012189 ], [ -58.342809999581789, -34.698063999553881 ], [ -58.343710999762777, -34.697312999994892 ], [ -58.344375999852446, -34.696755000342932 ], [ -58.345212999780074, -34.696069000184195 ], [ -58.345942000123159, -34.695446000232664 ], [ -58.346779000050788, -34.694760000073927 ], [ -58.34759499990929, -34.694072999868979 ], [ -58.34838899965257, -34.693407999779311 ], [ -58.349204000364296, -34.692742999689642 ], [ -58.349890999669867, -34.692162999922459 ], [ -58.350277000383244, -34.691842000407974 ], [ -58.350642000128175, -34.691519999948014 ], [ -58.351972000307512, -34.690424999813843 ], [ -58.352722999866501, -34.689825000023689 ], [ -58.353710000416129, -34.690683000020385 ], [ -58.35424699999902, -34.690231999906814 ], [ -58.354374999606478, -34.690125000368425 ], [ -58.355082999880494, -34.68954599974802 ], [ -58.355749000016317, -34.68898800009606 ], [ -58.356028000291928, -34.688729999889517 ], [ -58.356284999553054, -34.688472999729129 ], [ -58.356778999850917, -34.688021999615557 ], [ -58.357228999918391, -34.687572000447403 ], [ -58.358152000214602, -34.68684200005822 ], [ -58.359138999864911, -34.686069000384009 ], [ -58.360062000161122, -34.685317999925701 ], [ -58.36104899981143, -34.684525000228518 ], [ -58.361585000247544, -34.684074000114947 ], [ -58.363236999987521, -34.68274399993561 ], [ -58.363752000354509, -34.682313999891164 ], [ -58.363816999754704, -34.681928000077107 ], [ -58.364150999868684, -34.679610000201308 ], [ -58.364160000283732, -34.679545999947891 ], [ -58.364332000121692, -34.678302000137137 ], [ -58.364396000375052, -34.677807999839274 ], [ -58.364696999866624, -34.675748000170017 ], [ -58.363473000078841, -34.674654000082 ], [ -58.363066000195715, -34.674310999552915 ], [ -58.362894000357812, -34.674159999784138 ], [ -58.362335999806533, -34.673624000247344 ], [ -58.362250000337212, -34.67409600043004 ], [ -58.362186000083796, -34.674439000059749 ], [ -58.361800000269739, -34.674396999921555 ], [ -58.361971000061544, -34.673301999787441 ], [ -58.362099999715156, -34.673195000248995 ], [ -58.362345000221524, -34.673411000317344 ], [ -58.363193999803229, -34.674159999784138 ], [ -58.363623999847675, -34.674546999644292 ], [ -58.364396000375052, -34.675254999918252 ], [ -58.364846999589304, -34.675640999732309 ], [ -58.36579099995464, -34.676477999659937 ], [ -58.366520000297726, -34.677142999749606 ], [ -58.366648999951337, -34.677250000187314 ], [ -58.367249999787646, -34.677764999654983 ], [ -58.367582999855529, -34.678083999976593 ], [ -58.367743000039354, -34.678236999837623 ], [ -58.368044000430245, -34.678430999790749 ], [ -58.368194000152926, -34.678451999859874 ], [ -58.368387000059954, -34.678387999606457 ], [ -58.368987999896262, -34.678022999861525 ], [ -58.369609999801582, -34.677508000393857 ], [ -58.370512000028725, -34.676778000004674 ], [ -58.370897999842782, -34.676477999659937 ], [ -58.371262999587714, -34.675984000261337 ], [ -58.37231899972204, -34.674986000103786 ], [ -58.372828999858427, -34.674504000359264 ], [ -58.374387999806288, -34.673260999695344 ], [ -58.375789999708672, -34.672143000299172 ], [ -58.376047999915215, -34.672014999792339 ], [ -58.376284000006535, -34.671929000323075 ], [ -58.376476999913564, -34.671865000069658 ], [ -58.377034999565524, -34.671714000300824 ], [ -58.377678000439346, -34.671563999678824 ], [ -58.378149999722666, -34.671563999678824 ], [ -58.378364999744917, -34.671650000047407 ], [ -58.378494000297849, -34.671799999770144 ], [ -58.378594999559539, -34.671952999631173 ], [ -58.379717000039477, -34.673645000316469 ], [ -58.380210000291243, -34.674138999715012 ], [ -58.380833000242717, -34.673667000431692 ], [ -58.381670000170345, -34.672980000226801 ], [ -58.381797999777802, -34.673409000225149 ], [ -58.382142000352985, -34.674546999644292 ], [ -58.382506000051819, -34.675727000100949 ], [ -58.382936000096265, -34.676843000304189 ], [ -58.383299999795099, -34.677637000047469 ], [ -58.383492999702128, -34.678043999930594 ], [ -58.383558000001642, -34.678194999699429 ], [ -58.383815000162087, -34.678752000204611 ], [ -58.384051000253407, -34.679266999672279 ], [ -58.384329999629756, -34.679932999808045 ], [ -58.384587999836299, -34.680490000313227 ], [ -58.385831999647053, -34.681563000332176 ], [ -58.386325999944916, -34.681156000448993 ], [ -58.386798000127555, -34.680747999620451 ], [ -58.387249000241127, -34.680339999691171 ], [ -58.387721000423767, -34.679932999808045 ], [ -58.388278000029629, -34.679460999625405 ], [ -58.388878999865938, -34.678924000042514 ], [ -58.3893730001638, -34.678516000113291 ], [ -58.389866000415566, -34.678109000230108 ], [ -58.390337999698886, -34.67768000023176 ], [ -58.390853000065874, -34.677229000118245 ], [ -58.391389999648709, -34.676778000004674 ], [ -58.391905000015697, -34.6763279999372 ], [ -58.392377000198337, -34.675920000007977 ], [ -58.392849000381034, -34.675512000078697 ], [ -58.393299999595285, -34.675148000379863 ], [ -58.393771999777925, -34.674718000335417 ], [ -58.394200999776274, -34.674268000267944 ], [ -58.394243999960565, -34.673945999807984 ], [ -58.394672999958914, -34.673945999807984 ], [ -58.395509999886542, -34.673216000318121 ], [ -58.395617000324251, -34.673130999995635 ], [ -58.395702999793571, -34.673216000318121 ], [ -58.39641100006753, -34.673839000269595 ], [ -58.397182999695644, -34.674525000428389 ], [ -58.397763000362147, -34.675039999896057 ], [ -58.398128000107079, -34.6752980001026 ], [ -58.398706999828164, -34.675704999985726 ], [ -58.399286000448512, -34.67609199984588 ], [ -58.400165999661112, -34.676691999636034 ], [ -58.401023999657809, -34.677293000371606 ], [ -58.401667999678409, -34.67680000011984 ], [ -58.402139999861049, -34.676435000374909 ], [ -58.402848000135066, -34.675920000007977 ], [ -58.403299000248637, -34.675598000447337 ], [ -58.404136000176209, -34.674975999642641 ], [ -58.404929999919545, -34.674374999806332 ], [ -58.405723999662825, -34.673796000085304 ], [ -58.406560000443619, -34.673152000064704 ], [ -58.407397000371247, -34.672551000228452 ], [ -58.408234000298819, -34.671929000323075 ], [ -58.40868500041239, -34.671606999863116 ], [ -58.409435999971379, -34.671049000211156 ], [ -58.409864999969727, -34.670726999751196 ], [ -58.410679999782133, -34.670104999845819 ], [ -58.411495999640636, -34.669504000009567 ], [ -58.412332999568207, -34.66888200010419 ], [ -58.413105000095641, -34.668303000383105 ], [ -58.413963000092338, -34.667680000431631 ], [ -58.41477899995084, -34.667057999626934 ], [ -58.41557299969412, -34.666456999790682 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416766999897106, -34.660312999745088 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416584999598001, -34.658998000257441 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416408999575651, -34.656629999874554 ], [ -58.416388000405846, -34.655685000362439 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416324000152429, -34.654162000276074 ], [ -58.416302000037206, -34.653325000348445 ], [ -58.416280999968137, -34.652144999891789 ], [ -58.416237999783846, -34.651759000077732 ], [ -58.416237999783846, -34.650772000427423 ], [ -58.416237999783846, -34.649677000293309 ], [ -58.416237999783846, -34.648432999583235 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416194999599497, -34.648303999929624 ], [ -58.415953000130799, -34.64794000023079 ], [ -58.415765999601149, -34.647659999909024 ], [ -58.415357999671926, -34.647102000257064 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416324000152429, -34.648197000391235 ], [ -58.416408999575651, -34.648217999560984 ], [ -58.416603000428097, -34.648217999560984 ], [ -58.416687999851263, -34.648175000276012 ], [ -58.417439000309571, -34.647896000000344 ], [ -58.417654000331822, -34.647809999631761 ], [ -58.418427000005977, -34.647423999817704 ], [ -58.419177999564965, -34.647102000257064 ], [ -58.419885999838982, -34.646307999614464 ], [ -58.420121999930302, -34.646008000169047 ], [ -58.421108999580611, -34.644891999965807 ], [ -58.421966999577307, -34.643905000315442 ], [ -58.422824999574004, -34.642789000112202 ], [ -58.422867999758353, -34.642553000020882 ], [ -58.423233000402604, -34.641179999657197 ], [ -58.423490999709827, -34.64017199993782 ], [ -58.423768999939341, -34.639142000103163 ], [ -58.424006000076815, -34.637982999715632 ], [ -58.424198999983844, -34.637145999788004 ], [ -58.424348999706524, -34.636737999858781 ], [ -58.424520000397649, -34.636202000321987 ], [ -58.424671000166484, -34.635600999586416 ], [ -58.424864000073512, -34.634828999958359 ], [ -58.425185999634152, -34.633690999639896 ], [ -58.425529000163181, -34.632361000359822 ], [ -58.425744000185432, -34.631481000247902 ], [ -58.425980000276752, -34.630430000344177 ], [ -58.426216000368072, -34.629378000394354 ], [ -58.426451999560072, -34.628326999591309 ], [ -58.426751999904809, -34.626997000311292 ], [ -58.426987999996186, -34.626030999830732 ], [ -58.427052000249546, -34.625731000385315 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.427482000294049, -34.623585000347418 ], [ -58.427803999854689, -34.622061000214956 ], [ -58.427953999577369, -34.621309999756647 ], [ -58.428061000015077, -34.620666999782145 ], [ -58.42831900022162, -34.619400999856225 ], [ -58.428555000312997, -34.618284999652985 ], [ -58.428791000404317, -34.617169000349065 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.434713000104807, -34.617511999978774 ], [ -58.435291999825893, -34.617770000185317 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.437760000323692, -34.618864000273334 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483057000080464, -34.633369000079256 ], [ -58.483228999918367, -34.633240999572422 ], [ -58.483357000425201, -34.633132999987936 ], [ -58.483465000009687, -34.632940000080907 ], [ -58.483572000447396, -34.632703999989587 ], [ -58.483980000376675, -34.631867000061959 ], [ -58.484451999659996, -34.630859000342525 ], [ -58.484944999911761, -34.629807000392702 ], [ -58.485502999563721, -34.628605999866977 ], [ -58.485953999677292, -34.627597000101446 ], [ -58.486167999653446, -34.627124999918749 ], [ -58.486425999859989, -34.626589000382012 ], [ -58.486597999697892, -34.626202999668635 ], [ -58.487756000039326, -34.626674999851332 ], [ -58.488957999711886, -34.627168000103097 ], [ -58.489752000354486, -34.626481999944303 ], [ -58.490760000073919, -34.625688000201023 ], [ -58.491317999725879, -34.625258000156521 ], [ -58.491855000208034, -34.624829000158172 ], [ -58.492390999744828, -34.624400000159824 ], [ -58.492928000226982, -34.623971000161475 ], [ -58.494000000199833, -34.623113000164778 ], [ -58.494536999782667, -34.62268400016643 ], [ -58.495073000218724, -34.622254000121984 ], [ -58.496146000237673, -34.621396000125287 ], [ -58.496682999820564, -34.620967000126939 ], [ -58.497219000256621, -34.620538000128533 ], [ -58.497755999839455, -34.62013000019931 ], [ -58.498313000344638, -34.619701000200962 ], [ -58.499386000363586, -34.618821000089042 ], [ -58.500308999760477, -34.618069999630734 ], [ -58.501209999941523, -34.617341000186968 ], [ -58.501961000399831, -34.61635399963734 ], [ -58.502840999612374, -34.615195000149072 ], [ -58.503184000141459, -34.614744000035557 ], [ -58.503548999886391, -34.614293999968083 ], [ -58.504043000184254, -34.613736000316123 ], [ -58.504578999721048, -34.613155999649621 ], [ -58.504986999650271, -34.612684000366301 ], [ -58.505415999648619, -34.612212000183604 ], [ -58.505802000361996, -34.611783000185255 ], [ -58.506167000106927, -34.611375000256032 ], [ -58.506488999667567, -34.611010999657879 ], [ -58.506811000127527, -34.610666999982016 ], [ -58.507132999688167, -34.610281000167959 ], [ -58.507476000217196, -34.609895000353958 ], [ -58.508162000375989, -34.609100999711302 ], [ -58.508827999612436, -34.608328000037147 ], [ -58.50885199981991, -34.608299999645226 ], [ -58.509728999793481, -34.607277000133422 ], [ -58.510480000251789, -34.606397000021502 ], [ -58.511230999810778, -34.605516999909582 ], [ -58.511724000062486, -34.605796000185194 ], [ -58.5124330003826, -34.605044999726886 ], [ -58.513118999642074, -34.604294000167954 ], [ -58.513354999733394, -34.605603000278222 ], [ -58.513441000102034, -34.606117999745834 ], [ -58.513590999824714, -34.606933999604337 ], [ -58.514278000029663, -34.607362999602685 ], [ -58.515543999955582, -34.608157000245342 ], [ -58.516809999881559, -34.608928999873399 ], [ -58.518075999807479, -34.609722999616679 ], [ -58.518247999645439, -34.609830000054387 ], [ -58.519428000102096, -34.610538000328404 ], [ -58.520392999637181, -34.611139000164655 ], [ -58.521937999838769, -34.612041000391798 ], [ -58.523505000155581, -34.613005999926884 ], [ -58.524019999623249, -34.613285000202552 ], [ -58.524491999805889, -34.613563999578901 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.525414000056003, -34.61418600038354 ], [ -58.525821999985283, -34.614486999875112 ], [ -58.526337000352271, -34.614850999573946 ], [ -58.526830999750814, -34.615280999618392 ], [ -58.527367000186871, -34.615730999685866 ], [ -58.527839000369511, -34.616096000330117 ], [ -58.528310999652888, -34.616461000075049 ], [ -58.528782999835528, -34.61682599981998 ], [ -58.529298000202516, -34.617211999634037 ], [ -58.529706000131739, -34.617534000093997 ], [ -58.530091999945796, -34.617855999654637 ], [ -58.530091999945796, -34.617855999654637 ], [ -58.530284999852825, -34.617855999654637 ], [ -58.530350000152339, -34.617834000438734 ], [ -58.530435999621659, -34.617813000369608 ], [ -58.530520999944144, -34.617791000254442 ], [ -58.530671999712979, -34.617813000369608 ], [ -58.530993000126841, -34.617834000438734 ], [ -58.531100999711327, -34.617876999723705 ], [ -58.531314999687424, -34.618048999561609 ], [ -58.531293999618356, -34.618155999999374 ], [ -58.531272000402453, -34.618692000435431 ], [ -58.531229000218161, -34.619163999718751 ], [ -58.531229000218161, -34.619272000202614 ], [ -58.531208000149036, -34.620109000130185 ], [ -58.531164999964744, -34.620795000288979 ], [ -58.531100999711327, -34.621288999687522 ], [ -58.531058000426356, -34.622104000399247 ], [ -58.531036000311133, -34.622618999866916 ], [ -58.531208000149036, -34.622748000419847 ], [ -58.531659000262607, -34.623091000049556 ], [ -58.532088000260956, -34.623476999863612 ], [ -58.532623999797693, -34.623950000092407 ], [ -58.533246999749224, -34.624506999698212 ], [ -58.534212000183629, -34.625343999625841 ], [ -58.534684000366269, -34.625751999555064 ], [ -58.535070000180326, -34.626117000199372 ], [ -58.535950000292246, -34.626888999827429 ], [ -58.536443999690789, -34.627339999941 ], [ -58.535457000040481, -34.628111999569057 ], [ -58.534448000274949, -34.628863000027366 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 138.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370178999960842, -34.585881000008101 ], [ -58.370081999984279, -34.585775999662587 ], [ -58.369223999987582, -34.58476799994321 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.376690999889718, -34.591870000100357 ], [ -58.377872000392472, -34.59109799957298 ], [ -58.378944000365266, -34.590390000198283 ], [ -58.379437999763866, -34.590110999922672 ], [ -58.380918999712037, -34.589317000179392 ], [ -58.381906000261665, -34.588779999697181 ], [ -58.382827999612459, -34.588287000344735 ], [ -58.383879999562282, -34.587685999609164 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.385918000015636, -34.586612999590216 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.388685999958909, -34.58509000040317 ], [ -58.389201000325841, -34.584811000127502 ], [ -58.389114999957258, -34.584677000243346 ], [ -58.389894999954265, -34.584298999898863 ], [ -58.390004999631003, -34.584245000106648 ], [ -58.390178999561158, -34.584168000153056 ], [ -58.39025600041407, -34.584282000014241 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.392312999944977, -34.585025000103656 ], [ -58.393493000401634, -34.585625999939907 ], [ -58.393643000124314, -34.585690000193324 ], [ -58.394973000303708, -34.586334000213867 ], [ -58.396196000045336, -34.58691399998105 ], [ -58.396454000251879, -34.586720000027924 ], [ -58.397011999903839, -34.587150000072427 ], [ -58.397247999995159, -34.587063999703787 ], [ -58.397461999971256, -34.587084999772856 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.404714999897294, -34.582600999836245 ], [ -58.404179000360557, -34.581913999631354 ], [ -58.405187000079934, -34.581571000001588 ], [ -58.405551999824866, -34.582279000275605 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406388999752494, -34.583781000292902 ], [ -58.407118000095579, -34.584811000127502 ], [ -58.407654999678471, -34.58556199968649 ], [ -58.408083999676819, -34.586141000306895 ], [ -58.408340999837208, -34.586570000305244 ], [ -58.409071000226447, -34.587556999955552 ], [ -58.409522000340019, -34.588244000160444 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.411217000264287, -34.590347000013992 ], [ -58.412311000352361, -34.591634000009037 ], [ -58.412440000005972, -34.591826999916066 ], [ -58.412890000073389, -34.592342000283054 ], [ -58.413556000209212, -34.593071999772917 ], [ -58.414414000205909, -34.594059000322545 ], [ -58.416408999575651, -34.594101999607574 ], [ -58.416753000150777, -34.595540000270773 ], [ -58.416989000242154, -34.59663400035879 ], [ -58.417267999618446, -34.59783600003135 ], [ -58.417503999709766, -34.59886599986595 ], [ -58.417911999639045, -34.599894999654452 ], [ -58.417717999685919, -34.599959999953967 ], [ -58.417782999985434, -34.600989999788624 ], [ -58.419177999564965, -34.600840000065887 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.42222499978385, -34.600560999790275 ], [ -58.423768999939341, -34.600410000021441 ], [ -58.425314000140929, -34.600260000298704 ], [ -58.426751999904809, -34.600109999676704 ], [ -58.428210999737814, -34.599981000023092 ], [ -58.429734999870334, -34.599831000300355 ], [ -58.430184999937751, -34.599767000046995 ], [ -58.431043999980602, -34.600774999766372 ], [ -58.431108000233962, -34.600861000135012 ], [ -58.431858999792951, -34.601719000131709 ], [ -58.432181000252911, -34.602083999876641 ], [ -58.433167999903219, -34.602599000243629 ], [ -58.433339999741179, -34.602705999782017 ], [ -58.433919000361527, -34.60296399998856 ], [ -58.435163000172281, -34.60360800000916 ], [ -58.436623000051384, -34.60431600028312 ], [ -58.437158999588121, -34.604552000374497 ], [ -58.437974000299846, -34.604959000257622 ], [ -58.438575000136098, -34.605259999749137 ], [ -58.439304999626017, -34.605603000278222 ], [ -58.440120000337686, -34.605860999585445 ], [ -58.440292000175646, -34.605903999769737 ], [ -58.441664999639954, -34.606268000367891 ], [ -58.443060000118862, -34.606633000112822 ], [ -58.444197000391227, -34.60691200038849 ], [ -58.445270000410176, -34.607190999764782 ], [ -58.445569999855593, -34.607298000202491 ], [ -58.445720999624371, -34.607341000386839 ], [ -58.445442000248079, -34.607728000246993 ], [ -58.445184000041536, -34.608070999876702 ], [ -58.444991000134507, -34.608371000221439 ], [ -58.444541000067034, -34.60897200005769 ], [ -58.443788999562628, -34.609958999707999 ], [ -58.443038000003639, -34.610903000073336 ], [ -58.442308999660554, -34.611889999723644 ], [ -58.441514999917274, -34.612941999673524 ], [ -58.441085999918926, -34.613929000223152 ], [ -58.442416000098262, -34.61450799994418 ], [ -58.443747000323754, -34.614980000126877 ], [ -58.44524900034105, -34.615602000032254 ], [ -58.445871000246427, -34.615881000307866 ], [ -58.445934999600524, -34.615988999892409 ], [ -58.446686000058833, -34.615966999777186 ], [ -58.446686000058833, -34.61658999972866 ], [ -58.448509999636713, -34.616996999611786 ], [ -58.449367999633409, -34.617319000071745 ], [ -58.45078500022754, -34.617876999723705 ], [ -58.452007999969169, -34.618348999906402 ], [ -58.453230999710854, -34.618821000089042 ], [ -58.454517999705899, -34.619272000202614 ], [ -58.455548000439819, -34.619636999947545 ], [ -58.456620999559448, -34.620000999646379 ], [ -58.458488000220996, -34.620623999597854 ], [ -58.459066999942081, -34.620837999573951 ], [ -58.460419000236641, -34.621288999687522 ], [ -58.461791999701006, -34.621825000123636 ], [ -58.462801000365857, -34.622189999868567 ], [ -58.463788000016166, -34.622575999682624 ], [ -58.465182999595697, -34.623091000049556 ], [ -58.464366999737194, -34.624099999815087 ], [ -58.464668000128086, -34.624186000183727 ], [ -58.464195999945389, -34.625280000271744 ], [ -58.463723999762749, -34.626395999575664 ], [ -58.463187000179857, -34.627619000216669 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.489130000449109, -34.636973999950101 ], [ -58.488185000037674, -34.636737999858781 ], [ -58.487283999856686, -34.636523999882627 ], [ -58.486297000206378, -34.636265999676084 ], [ -58.485889000277098, -34.636588000136044 ], [ -58.484923999842692, -34.637338999695032 ], [ -58.484022999661647, -34.638069000084215 ], [ -58.483336000356076, -34.638604999621009 ], [ -58.482885000242504, -34.63897000026526 ], [ -58.483894000008036, -34.639421000378832 ], [ -58.484602000282052, -34.63976400000854 ], [ -58.484880999658344, -34.639892999662152 ], [ -58.485309999656693, -34.640106999638306 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.486962000296046, -34.64088000021178 ], [ -58.487799000223617, -34.641287000094962 ], [ -58.488721999620566, -34.641716000093311 ], [ -58.489559000447457, -34.642102999953465 ], [ -58.490160000283765, -34.642403000298202 ], [ -58.490910999842754, -34.642768000043134 ], [ -58.491640000185839, -34.643110999672842 ], [ -58.492284000206382, -34.643412000063734 ], [ -58.493614000385776, -34.644055000038179 ], [ -58.494687000404724, -34.644527000220819 ], [ -58.494902000426919, -34.644763000312196 ], [ -58.494902000426919, -34.64482799971239 ], [ -58.494837000127404, -34.644935000150099 ], [ -58.493164000318302, -34.64538600026367 ], [ -58.491426000209685, -34.645836000331087 ], [ -58.489622999801554, -34.646307999614464 ], [ -58.488099999715189, -34.646779999797104 ], [ -58.486639999836086, -34.647081000187939 ], [ -58.487134000133949, -34.647510000186344 ], [ -58.487648999601618, -34.647939000184692 ], [ -58.488163999968606, -34.648390000298207 ], [ -58.488764999804857, -34.648925999835001 ], [ -58.489386999710234, -34.649463000317155 ], [ -58.490202000421959, -34.650148999576629 ], [ -58.490996000165239, -34.650814999712395 ], [ -58.491768999839451, -34.651457999686897 ], [ -58.492562999582731, -34.652122999776566 ], [ -58.493378000294456, -34.652788999912389 ], [ -58.49415099996861, -34.653454000002057 ], [ -58.494944999711947, -34.654119000091725 ], [ -58.495739000354547, -34.654784000181394 ], [ -58.496532000051729, -34.655449000271119 ], [ -58.497241000371844, -34.656029000038302 ], [ -58.497841000161998, -34.656522000290011 ], [ -58.498249000091221, -34.656865999965873 ], [ -58.498827999812306, -34.65733800014857 ], [ -58.499794000292866, -34.658152999960919 ], [ -58.503119999888042, -34.660127000160912 ], [ -58.503871000346351, -34.660749000066232 ], [ -58.504642999974408, -34.661415000202055 ], [ -58.505179999557299, -34.661822000085181 ], [ -58.505458999832911, -34.662080000291724 ], [ -58.506273999645316, -34.662745000381392 ], [ -58.507068000287916, -34.663389000401992 ], [ -58.507862000031253, -34.664074999661466 ], [ -58.506424000267373, -34.66525600016422 ], [ -58.504944000365299, -34.666478999905905 ], [ -58.503956999815671, -34.667314999787379 ], [ -58.503013000349654, -34.66808800036091 ], [ -58.502090000053443, -34.668838999919842 ], [ -58.500888000380883, -34.669846999639276 ], [ -58.499686999855101, -34.670856000304127 ], [ -58.498936000296112, -34.672508000044104 ], [ -58.499150000272266, -34.672636999697716 ], [ -58.499751000108517, -34.672959000157675 ], [ -58.500115999853449, -34.673152000064704 ], [ -58.500694999574534, -34.673452000409441 ], [ -58.501704000239386, -34.673988999992332 ], [ -58.502647999705403, -34.674482000244097 ], [ -58.503184000141459, -34.674760999620389 ], [ -58.503592000070682, -34.674975999642641 ], [ -58.504127999607476, -34.675275999987377 ], [ -58.504536000436019, -34.675512000078697 ], [ -58.505243999810716, -34.675920000007977 ], [ -58.505415999648619, -34.676027000445686 ], [ -58.506231000360344, -34.676585000097646 ], [ -58.506446000382596, -34.676734999820326 ], [ -58.506575000036207, -34.676821000188966 ], [ -58.507283000310167, -34.677314999587509 ], [ -58.507433000032904, -34.67744400014044 ], [ -58.507797999777836, -34.67768000023176 ], [ -58.508419999683213, -34.678130000299234 ], [ -58.509127999957173, -34.678559000297582 ], [ -58.510265000229538, -34.679353000040862 ], [ -58.509450000417132, -34.680040000245754 ], [ -58.508676999843601, -34.680662000151131 ], [ -58.507926000284669, -34.681262999987439 ], [ -58.507174999826361, -34.681907000007982 ], [ -58.506403000198247, -34.682528999913359 ], [ -58.505715999993356, -34.683044000280347 ], [ -58.505458999832911, -34.68321600011825 ], [ -58.504578999721048, -34.683688000300947 ], [ -58.505373000363647, -34.684739000204672 ], [ -58.506231000360344, -34.685725999854981 ], [ -58.507047000218847, -34.686734999620512 ], [ -58.507884000146476, -34.68772200017014 ], [ -58.508720000027949, -34.688729999889517 ], [ -58.509556999955521, -34.689759999724174 ], [ -58.508570000305212, -34.690297000206328 ], [ -58.508506000051796, -34.690403999744774 ], [ -58.50848399993663, -34.690467999998134 ], [ -58.508440999752281, -34.690704000089511 ], [ -58.508848999681561, -34.690896999996482 ], [ -58.509256999610784, -34.691391000294402 ], [ -58.510072000322509, -34.692400000059934 ], [ -58.51093100036536, -34.693428999848436 ], [ -58.511852999716098, -34.694437999613967 ], [ -58.510758999628081, -34.695189000072276 ], [ -58.510608999905401, -34.695295999610664 ], [ -58.509728999793481, -34.695897000346235 ], [ -58.509364000048549, -34.696154999653459 ], [ -58.508848999681561, -34.696498000182544 ], [ -58.508077000053447, -34.697033999719281 ], [ -58.508011999753933, -34.697076999903572 ], [ -58.507174999826361, -34.697656999670755 ], [ -58.506724999758887, -34.697957000015492 ], [ -58.505436999717745, -34.698858000196481 ], [ -58.504149999722642, -34.6997380003084 ], [ -58.503420000232779, -34.700252999776069 ], [ -58.502326000144762, -34.701004000234377 ], [ -58.501402999848551, -34.701648000254977 ], [ -58.500501999667506, -34.702291000229422 ], [ -58.499386000363586, -34.703042999834508 ], [ -58.50028200031403, -34.704081000038059 ], [ -58.500737999758826, -34.704609000105222 ], [ -58.501810999777774, -34.70576799959349 ], [ -58.502883999796722, -34.707205000210536 ], [ -58.503206000256682, -34.707569999955467 ], [ -58.503977999884739, -34.708471000136512 ], [ -58.504557999651922, -34.709286999995015 ], [ -58.504986999650271, -34.709629999624724 ], [ -58.505523000086328, -34.710123999922587 ], [ -58.506188000176053, -34.710745999827964 ], [ -58.506382000129179, -34.710981999919341 ], [ -58.506466999552345, -34.711089000357049 ], [ -58.507174999826361, -34.71241999968322 ], [ -58.509063999703756, -34.714887000134922 ], [ -58.509150000072395, -34.715015999788534 ], [ -58.510565999721052, -34.716946999804179 ], [ -58.511702999993418, -34.718599000443476 ], [ -58.511734999670466, -34.718650000097398 ], [ -58.512604000174406, -34.720037000207356 ], [ -58.512840000265783, -34.720252000229607 ], [ -58.513118999642074, -34.720401999952287 ], [ -58.513376999848617, -34.720488000320927 ], [ -58.513699000308577, -34.720530999605899 ], [ -58.514014000445741, -34.720509000389995 ], [ -58.514642999774594, -34.720252000229607 ], [ -58.517110000226296, -34.718384999568059 ], [ -58.517817999600936, -34.717891000169459 ], [ -58.518011999554119, -34.717826999916042 ], [ -58.51829099982973, -34.717913000284682 ], [ -58.518483999736759, -34.718040999892196 ], [ -58.518547999990176, -34.718149000376002 ], [ -58.518547999990176, -34.71834200028303 ], [ -58.518483999736759, -34.718448999821419 ], [ -58.518032999623188, -34.719049999657727 ], [ -58.517561000339867, -34.719478999656076 ], [ -58.51749700008645, -34.719565000024716 ], [ -58.517089000157171, -34.720037000207356 ], [ -58.516853000065851, -34.720186999930036 ], [ -58.516766999697211, -34.720315999583647 ], [ -58.516080000391639, -34.721153000410595 ], [ -58.515171999887855, -34.722050999553915 ], [ -58.514213999776246, -34.722998000057601 ], [ -58.513634000009063, -34.723449000171172 ], [ -58.512131999991766, -34.72452200019012 ], [ -58.511166999557361, -34.72507999984208 ], [ -58.510652000089692, -34.725337000002526 ], [ -58.509342999979424, -34.725852000369457 ], [ -58.508612999590241, -34.726130999745806 ], [ -58.508162000375989, -34.726366999837126 ], [ -58.506618000220499, -34.727589999578754 ], [ -58.506064999899763, -34.728036000361101 ], [ -58.505029999834562, -34.729071000426302 ], [ -58.504321999560602, -34.729908000353873 ], [ -58.504064000253379, -34.730272000052707 ], [ -58.503484999632974, -34.731044999726919 ], [ -58.502647999705403, -34.732138999814936 ], [ -58.5013609997103, -34.733850999623883 ], [ -58.500180000106866, -34.735422000125141 ], [ -58.500093999738283, -34.735550999778752 ], [ -58.499730000039449, -34.736022999961449 ], [ -58.498999999650209, -34.736989000441952 ], [ -58.498120000437609, -34.738146999884066 ], [ -58.497434000278872, -34.739026999995986 ], [ -58.497243999610873, -34.739289000387032 ], [ -58.496467999798313, -34.740357000175379 ], [ -58.495780999593421, -34.741259000402522 ], [ -58.494902000426919, -34.742460000028927 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 137.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.751205, -34.518618 ], [ -58.75224, -34.518059 ], [ -58.751667, -34.517719 ], [ -58.752243, -34.516991 ], [ -58.752853, -34.516223 ], [ -58.753483, -34.515453 ], [ -58.7541, -34.514665 ], [ -58.7547, -34.513907 ], [ -58.755311, -34.513153 ], [ -58.755906, -34.512401 ], [ -58.756519, -34.511625 ], [ -58.757084, -34.510854 ], [ -58.7577, -34.511176 ], [ -58.757984, -34.51086 ], [ -58.758306, -34.510408 ], [ -58.758926, -34.509629 ], [ -58.759415, -34.509025 ], [ -58.760187, -34.507979 ], [ -58.760975, -34.506971 ], [ -58.761551, -34.506222 ], [ -58.761759, -34.505936 ], [ -58.762546, -34.504878 ], [ -58.763349, -34.503889 ], [ -58.763493, -34.503664 ], [ -58.764121, -34.502846 ], [ -58.76499, -34.503314 ], [ -58.765095, -34.503379 ], [ -58.766106, -34.503942 ], [ -58.767051, -34.504502 ], [ -58.768058, -34.505023 ], [ -58.769061, -34.505556 ], [ -58.770058, -34.506085 ], [ -58.770835, -34.506504 ], [ -58.771589, -34.506916 ], [ -58.772348, -34.507331 ], [ -58.773103, -34.507739 ], [ -58.773865, -34.508163 ], [ -58.774616, -34.508566 ], [ -58.775375, -34.50897 ], [ -58.77614, -34.50937 ], [ -58.777612, -34.510201 ], [ -58.779229, -34.509622 ], [ -58.780671, -34.509148 ], [ -58.782148, -34.508693 ], [ -58.782871, -34.508451 ], [ -58.783456, -34.507711 ], [ -58.784421, -34.506473 ], [ -58.78539, -34.505239 ], [ -58.786253, -34.504143 ], [ -58.787137, -34.503002 ], [ -58.787886, -34.502024 ], [ -58.788084, -34.502119 ], [ -58.78855, -34.502413 ], [ -58.78919, -34.502852 ], [ -58.78988, -34.503291 ], [ -58.79098, -34.504046 ], [ -58.791452, -34.504355 ], [ -58.792424, -34.50398 ], [ -58.794026, -34.503537 ], [ -58.794579, -34.503357 ], [ -58.795406, -34.503094 ], [ -58.796972, -34.502582 ], [ -58.798513, -34.502094 ], [ -58.800073, -34.501585 ], [ -58.801678, -34.501063 ], [ -58.803256, -34.500551 ], [ -58.804095, -34.500299 ], [ -58.804956, -34.500005 ], [ -58.805056, -34.499974 ], [ -58.805838, -34.499711 ], [ -58.80671, -34.499414 ], [ -58.807549, -34.499111 ], [ -58.809044, -34.498581 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 136.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.368944999711914, -34.605216999564846 ], [ -58.369845999892959, -34.605302999933429 ], [ -58.370038999799988, -34.605302999933429 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.373580000316736, -34.607899000038799 ], [ -58.375039000149684, -34.607169999695714 ], [ -58.375575999732575, -34.606869000204142 ], [ -58.376520000097912, -34.606397000021502 ], [ -58.377399000163678, -34.605924999838805 ], [ -58.377956999815638, -34.605645999563194 ], [ -58.379437999763866, -34.604808999635566 ], [ -58.380317999875729, -34.60487399993508 ], [ -58.380876000427065, -34.604895000004205 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.382163000422111, -34.604981000372845 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.385037999903716, -34.605153000210748 ], [ -58.386475999667596, -34.605237999633914 ], [ -58.387871000146504, -34.605346000117777 ], [ -58.389329999979452, -34.605410000371194 ], [ -58.390788999812457, -34.605539000024805 ], [ -58.392184000291365, -34.605688999747485 ], [ -58.393686000308605, -34.605796000185194 ], [ -58.395123000026388, -34.605881999654514 ], [ -58.39658299990549, -34.605989000092222 ], [ -58.397956000269176, -34.606032000276571 ], [ -58.399307999664416, -34.606096999676765 ], [ -58.400724000212392, -34.606160999930182 ], [ -58.402054000391786, -34.606289999583794 ], [ -58.403556000409026, -34.606397000021502 ], [ -58.404650999643877, -34.606440000205794 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.407697999862762, -34.607834999785382 ], [ -58.409114000410739, -34.607899000038799 ], [ -58.410443999690813, -34.607921000153965 ], [ -58.411839000169664, -34.607877999969674 ], [ -58.412761999566612, -34.607619999763131 ], [ -58.413942000023269, -34.607320000317713 ], [ -58.414735999766549, -34.607147999580491 ], [ -58.416258999852914, -34.606954999673462 ], [ -58.417267999618446, -34.606869000204142 ], [ -58.418619999913005, -34.606761999766434 ], [ -58.418663000097354, -34.607277000133422 ], [ -58.419971000161468, -34.607255000018199 ], [ -58.421408999925347, -34.607255000018199 ], [ -58.422910999942644, -34.607255000018199 ], [ -58.424627999982192, -34.607255000018199 ], [ -58.42617300018378, -34.607255000018199 ], [ -58.427031000180477, -34.607255000018199 ], [ -58.427675000201077, -34.607255000018199 ], [ -58.429155000103151, -34.607147999580491 ], [ -58.430613999936099, -34.607062000111171 ], [ -58.431580000416659, -34.607448999971325 ], [ -58.432353000090814, -34.607770000385187 ], [ -58.433211000087567, -34.608048999761479 ], [ -58.433018000180539, -34.607834999785382 ], [ -58.432759999973996, -34.607405999787034 ], [ -58.432673999605356, -34.607105000295462 ], [ -58.432653000435607, -34.606869000204142 ], [ -58.432673999605356, -34.606419000136725 ], [ -58.432909999696676, -34.605818000300417 ], [ -58.43306100036483, -34.605582000209097 ], [ -58.433254000271859, -34.605324000002554 ], [ -58.433811999923819, -34.60487399993508 ], [ -58.434154999553527, -34.604681000028108 ], [ -58.434756000289156, -34.604444999936732 ], [ -58.435357000125407, -34.60431600028312 ], [ -58.436623000051384, -34.60431600028312 ], [ -58.437158999588121, -34.604552000374497 ], [ -58.437974000299846, -34.604959000257622 ], [ -58.438575000136098, -34.605259999749137 ], [ -58.439304999626017, -34.605603000278222 ], [ -58.440120000337686, -34.605860999585445 ], [ -58.440292000175646, -34.605903999769737 ], [ -58.441664999639954, -34.606268000367891 ], [ -58.443060000118862, -34.606633000112822 ], [ -58.444197000391227, -34.60691200038849 ], [ -58.445270000410176, -34.607190999764782 ], [ -58.445526999671245, -34.607283000410121 ], [ -58.445569999855593, -34.607298000202491 ], [ -58.445720999624371, -34.607341000386839 ], [ -58.445892000315496, -34.607426999856102 ], [ -58.44627900017565, -34.607598999694062 ], [ -58.446536000336096, -34.607534000293811 ], [ -58.447007999619473, -34.607405999787034 ], [ -58.449174999726438, -34.606804999950725 ], [ -58.450633999559386, -34.606503999559891 ], [ -58.450742000043249, -34.606483000390085 ], [ -58.45102100031886, -34.606419000136725 ], [ -58.452007999969169, -34.606160999930182 ], [ -58.453015999688603, -34.605881999654514 ], [ -58.454025000353454, -34.605645999563194 ], [ -58.454989999888539, -34.605389000302068 ], [ -58.455805999747042, -34.605174000279874 ], [ -58.456578000274476, -34.604959000257622 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.458939000334567, -34.604358999568149 ], [ -58.460118999891904, -34.604058000076577 ], [ -58.461492000255589, -34.603715000446869 ], [ -58.462157000345258, -34.603542999709646 ], [ -58.462907999904246, -34.603349999802617 ], [ -58.464366999737194, -34.602985000057686 ], [ -58.464947000403697, -34.602835000334949 ], [ -58.465805000400394, -34.602621000358852 ], [ -58.466020000422645, -34.602556000059337 ], [ -58.467349999702662, -34.602233999599378 ], [ -58.468938000088599, -34.601847999785321 ], [ -58.470353999737256, -34.601526000224681 ], [ -58.471277000033467, -34.601312000248583 ], [ -58.47224199956861, -34.601097000226332 ], [ -58.472371000121541, -34.601076000157263 ], [ -58.476690999689822, -34.60014300029917 ], [ -58.478830000304242, -34.599680999678355 ], [ -58.479752999701134, -34.599251999680007 ], [ -58.480460999975151, -34.598973000303658 ], [ -58.480803999604859, -34.598822999681659 ], [ -58.482133999784196, -34.59822199984535 ], [ -58.482605999966893, -34.59798599975403 ], [ -58.483228999918367, -34.597770999731836 ], [ -58.483399999710173, -34.59774999966271 ], [ -58.484859000442498, -34.597621000009099 ], [ -58.485181000003081, -34.597599999939973 ], [ -58.486146999584321, -34.59751399957139 ], [ -58.486490000113349, -34.597492000355487 ], [ -58.486683000020378, -34.597471000286419 ], [ -58.487155000203074, -34.597449000171196 ], [ -58.487799000223617, -34.597405999986847 ], [ -58.488571999897829, -34.597362999802556 ], [ -58.489601999732486, -34.597299000448459 ], [ -58.490223999637806, -34.597256000264167 ], [ -58.491211000187491, -34.59719200001075 ], [ -58.492970000365176, -34.597063000357139 ], [ -58.494816000058336, -34.59695599991943 ], [ -58.496703999889633, -34.596827000265819 ], [ -58.496790000258272, -34.596848000334887 ], [ -58.497198000187495, -34.596806000196693 ], [ -58.498420999929181, -34.596376000152247 ], [ -58.498914000180946, -34.596676999643762 ], [ -58.498228000022152, -34.597449000171196 ], [ -58.499558000201489, -34.598265000029699 ], [ -58.500888000380883, -34.59910199995727 ], [ -58.502218999707054, -34.599916999769675 ], [ -58.50309799977282, -34.600453000205732 ], [ -58.503613000139808, -34.600796999881595 ], [ -58.504836999927591, -34.601548000339903 ], [ -58.505523000086328, -34.601977000338252 ], [ -58.506167000106927, -34.602363000152309 ], [ -58.507476000217196, -34.603179000010812 ], [ -58.508334000213893, -34.603715000446869 ], [ -58.509192000210589, -34.604229999914537 ], [ -58.510458000136566, -34.605023999657817 ], [ -58.511230999810778, -34.605516999909582 ], [ -58.511724000062486, -34.605796000185194 ], [ -58.512797000081434, -34.606440000205794 ], [ -58.512989999988463, -34.606589999928531 ], [ -58.513590999824714, -34.606933999604337 ], [ -58.514278000029663, -34.607362999602685 ], [ -58.515543999955582, -34.608157000245342 ], [ -58.516809999881559, -34.608928999873399 ], [ -58.518075999807479, -34.609722999616679 ], [ -58.518247999645439, -34.609830000054387 ], [ -58.519428000102096, -34.610538000328404 ], [ -58.520392999637181, -34.611139000164655 ], [ -58.521937999838769, -34.612041000391798 ], [ -58.523505000155581, -34.613005999926884 ], [ -58.524019999623249, -34.613285000202552 ], [ -58.524491999805889, -34.613563999578901 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.525414000056003, -34.61418600038354 ], [ -58.525821999985283, -34.614486999875112 ], [ -58.526337000352271, -34.614850999573946 ], [ -58.526830999750814, -34.615280999618392 ], [ -58.527367000186871, -34.615730999685866 ], [ -58.527839000369511, -34.616096000330117 ], [ -58.528310999652888, -34.616461000075049 ], [ -58.528782999835528, -34.61682599981998 ], [ -58.529298000202516, -34.617211999634037 ], [ -58.529706000131739, -34.617534000093997 ], [ -58.530091999945796, -34.617855999654637 ], [ -58.530284999852825, -34.617855999654637 ], [ -58.530350000152339, -34.617834000438734 ], [ -58.530435999621659, -34.617813000369608 ], [ -58.530520999944144, -34.617791000254442 ], [ -58.530671999712979, -34.617813000369608 ], [ -58.530993000126841, -34.617834000438734 ], [ -58.531100999711327, -34.617876999723705 ], [ -58.531314999687424, -34.618048999561609 ], [ -58.531293999618356, -34.618155999999374 ], [ -58.531680000331733, -34.618348999906402 ], [ -58.532237999983693, -34.618541999813374 ], [ -58.533439999656196, -34.618992999926945 ], [ -58.534255000367921, -34.619786999670282 ], [ -58.533632999563224, -34.620236999737699 ], [ -58.534470000390172, -34.62101000031123 ], [ -58.535370999671841, -34.62180400005451 ], [ -58.536035999761566, -34.622382999775596 ], [ -58.537023000311194, -34.623198999634099 ], [ -58.537494999594514, -34.623606000416544 ], [ -58.537988999892377, -34.623884999792836 ], [ -58.539018999727034, -34.624549999882561 ], [ -58.539619000416508, -34.624914999627492 ], [ -58.540155999999342, -34.625237000087452 ], [ -58.540649000251108, -34.625537000432189 ], [ -58.541163999718776, -34.625837999923704 ], [ -58.542258999852947, -34.626503000013372 ], [ -58.542708999920364, -34.625966999577315 ], [ -58.543203000218227, -34.625386999810132 ], [ -58.543675000400924, -34.624851000273395 ], [ -58.544146999684244, -34.624313999791241 ], [ -58.544640999982107, -34.623756000139224 ], [ -58.545476999863638, -34.622811999773944 ], [ -58.546443000344141, -34.623306000071807 ], [ -58.547386999810158, -34.623735000070155 ], [ -58.548160000383689, -34.624056999630795 ], [ -58.548954000126969, -34.624400000159824 ], [ -58.549746999824151, -34.624742999789589 ], [ -58.550583999751723, -34.625087000364715 ], [ -58.551378000394379, -34.625429999994481 ], [ -58.552300999791271, -34.625815999808481 ], [ -58.553245000156608, -34.626223999737761 ], [ -58.554210999737791, -34.626631999666984 ], [ -58.554853999712293, -34.626910999942652 ], [ -58.555712999755087, -34.626223999737761 ], [ -58.55635599972959, -34.625666000085801 ], [ -58.557021999865356, -34.625087000364715 ], [ -58.558501999767429, -34.625966999577315 ], [ -58.559982999715601, -34.626845999643137 ], [ -58.560626999736201, -34.626287999991177 ], [ -58.561098999918897, -34.62590200017712 ], [ -58.561656000424023, -34.625322999556715 ], [ -58.563330000279223, -34.626008999715509 ], [ -58.564339000044754, -34.626459999829081 ], [ -58.565153999857159, -34.626803000358109 ], [ -58.565433000132828, -34.626888999827429 ], [ -58.566055000038205, -34.626438999760012 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 135.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.488332543995213, -34.513887262250222 ], [ -58.487336905157377, -34.512684029195029 ], [ -58.487050345232149, -34.512337682408457 ], [ -58.486909275676453, -34.512138002264152 ], [ -58.486832289342487, -34.512023721030488 ], [ -58.486751071098873, -34.511891096769403 ], [ -58.486674930861561, -34.51175970255855 ], [ -58.486538828199841, -34.511527963850767 ], [ -58.485979542372533, -34.510506688112478 ], [ -58.485376113014809, -34.509472467012721 ], [ -58.484608131911742, -34.508121305353569 ], [ -58.484297386901588, -34.507561861373787 ], [ -58.484027497714692, -34.507033298566071 ], [ -58.483544510210344, -34.506151018442068 ], [ -58.483015715638167, -34.505206313164642 ], [ -58.482800294486552, -34.504770422071537 ], [ -58.48260950476773, -34.504351770625888 ], [ -58.482509689301381, -34.504106986309537 ], [ -58.482418930179158, -34.50383881963144 ], [ -58.482339435457277, -34.503556676907913 ], [ -58.482301972109411, -34.503407704271567 ], [ -58.482163899506162, -34.502847004331642 ], [ -58.481876208555363, -34.501595391546353 ], [ -58.48163037189569, -34.50046003729679 ], [ -58.481273875378783, -34.498891255142077 ], [ -58.481121045229827, -34.498105429377652 ], [ -58.481071986350003, -34.497647011755078 ], [ -58.48104707744767, -34.497341102454037 ], [ -58.48102263978096, -34.496864217675423 ], [ -58.481011538835972, -34.496596300972158 ], [ -58.481008327550107, -34.496213628578957 ], [ -58.481027342473062, -34.495650671506937 ], [ -58.481047118994262, -34.495189176755417 ], [ -58.481058373888949, -34.494843995539867 ], [ -58.48111658397773, -34.493424966853183 ], [ -58.481195529875322, -34.492154910735792 ], [ -58.481226001183138, -34.490558405526492 ], [ -58.48126696800832, -34.488891758318928 ], [ -58.481336886406822, -34.487002438700081 ], [ -58.481377284131042, -34.486161544623393 ], [ -58.481412351928398, -34.485511704933437 ], [ -58.481457462188096, -34.485069081031412 ], [ -58.481512364562647, -34.484708043764677 ], [ -58.481594339745648, -34.484351962519362 ], [ -58.481722792543252, -34.483928390704563 ], [ -58.481901003732773, -34.483442406727427 ], [ -58.48208405091831, -34.482989897508553 ], [ -58.482364048760573, -34.48235429174634 ], [ -58.482787466437529, -34.481371839059129 ], [ -58.483385824871043, -34.480074460950092 ], [ -58.483722163233082, -34.47944467043385 ], [ -58.484117285586407, -34.478736890590092 ], [ -58.484532726759006, -34.478049420438431 ], [ -58.484893585772667, -34.477515799062708 ], [ -58.485279546514988, -34.477025055897798 ], [ -58.4855967273622, -34.47667860356394 ], [ -58.48604675523638, -34.476282075539423 ], [ -58.486576423631369, -34.475924863451922 ], [ -58.488464962451417, -34.474811894737599 ], [ -58.490612785390518, -34.473552116665857 ], [ -58.491180171683119, -34.473237781779062 ], [ -58.491712375910893, -34.472971650666139 ], [ -58.492205534503107, -34.472730988462857 ], [ -58.492522134508206, -34.47259489253338 ], [ -58.492939620819712, -34.472439030780329 ], [ -58.493276377312782, -34.472325237282547 ], [ -58.493666765917837, -34.472211537332669 ], [ -58.494296075042953, -34.472058886854953 ], [ -58.495114132839952, -34.471866233481293 ], [ -58.496000834740599, -34.471648858616277 ], [ -58.49651412050865, -34.471501053621743 ], [ -58.497000586016959, -34.471344454822997 ], [ -58.497313676074157, -34.471229473552029 ], [ -58.497841970280227, -34.471020612404757 ], [ -58.499352594386622, -34.470377790501431 ], [ -58.500621944620349, -34.469830893877003 ], [ -58.501170526633771, -34.469584562420629 ], [ -58.501750339748057, -34.469286050933079 ], [ -58.50218909941249, -34.469032940924151 ], [ -58.503812524995659, -34.468043159718142 ], [ -58.504604186835131, -34.467586258470078 ], [ -58.506392448081172, -34.466529491666279 ], [ -58.50710573722823, -34.466129758837752 ], [ -58.507281192242978, -34.466014380775157 ], [ -58.507439550576812, -34.46590662875056 ], [ -58.507599116693171, -34.465792640373657 ], [ -58.507737125898039, -34.465682323751622 ], [ -58.507855369427247, -34.465603607517409 ], [ -58.508645882725148, -34.465241571767493 ], [ -58.508795177996653, -34.465185899613218 ], [ -58.508988969748771, -34.465126569707927 ], [ -58.510012861029082, -34.464666802551399 ], [ -58.51032180711065, -34.46453404343324 ], [ -58.510543568501518, -34.464432759096297 ], [ -58.510693031861649, -34.464333505553597 ], [ -58.510908746347233, -34.464174454306409 ], [ -58.5111061410216, -34.464005261655707 ], [ -58.511316505147647, -34.46380532142247 ], [ -58.511495617445298, -34.463630660075147 ], [ -58.51167791499055, -34.463424700592022 ], [ -58.511900918612078, -34.463187392318389 ], [ -58.512110064145268, -34.462951604666202 ], [ -58.512733617463311, -34.462249315828089 ], [ -58.51360609286089, -34.461242261144513 ], [ -58.513741142690932, -34.461084391225512 ], [ -58.513922018650369, -34.460832754939887 ], [ -58.514098867982732, -34.460600406582657 ], [ -58.514288956981339, -34.460332948091882 ], [ -58.514487057746898, -34.460040597910002 ], [ -58.51458891745802, -34.459882730863512 ], [ -58.514697253585233, -34.459699815424877 ], [ -58.514777700796792, -34.45956823379116 ], [ -58.514913940246259, -34.459382522124088 ], [ -58.515085055439279, -34.459152820336179 ], [ -58.515248635601722, -34.458949890008782 ], [ -58.515452237213211, -34.45871735615232 ], [ -58.515686129364617, -34.458453057293717 ], [ -58.515864952586462, -34.458255312424967 ], [ -58.515997862268812, -34.458130755570622 ], [ -58.516275114729567, -34.457876469258139 ], [ -58.51763445871012, -34.456565836653212 ], [ -58.518757323499557, -34.455491622225892 ], [ -58.52119690609824, -34.453091655952768 ], [ -58.522173292601323, -34.452138506739857 ], [ -58.523373306025142, -34.451012769972429 ], [ -58.524480111284298, -34.449930175560262 ], [ -58.52512130208801, -34.449349986792967 ], [ -58.525463254165722, -34.449104223434553 ], [ -58.525730063968247, -34.44891477095787 ], [ -58.525959729878373, -34.448772541914572 ], [ -58.526195748374782, -34.448643925553156 ], [ -58.526464862026472, -34.448517925144522 ], [ -58.526776960804803, -34.448386604773773 ], [ -58.527171543166247, -34.448232840450288 ], [ -58.52749057328883, -34.448124158827099 ], [ -58.529346937877818, -34.447455577499703 ], [ -58.530047192484673, -34.447158663919282 ], [ -58.530587306161102, -34.446913996151622 ], [ -58.53109632049371, -34.446670899880367 ], [ -58.531623755238009, -34.446411020926988 ], [ -58.532972904509379, -34.445786684597557 ], [ -58.533254398536641, -34.445669503185137 ], [ -58.533505014573429, -34.445578618581031 ], [ -58.533750508596917, -34.445507669149997 ], [ -58.534060099851388, -34.445426584352177 ], [ -58.534357920399472, -34.445357761159741 ], [ -58.534557073457229, -34.445325878572447 ], [ -58.535653613019548, -34.44513064042264 ], [ -58.537002636260873, -34.444913507125122 ], [ -58.538764757431892, -34.444621607306587 ], [ -58.539906092969282, -34.444428304304672 ], [ -58.540434138062373, -34.444339890342263 ], [ -58.540858608143722, -34.444260592995647 ], [ -58.541151559781937, -34.444203730365402 ], [ -58.541450115964217, -34.444141541476192 ], [ -58.541673826483148, -34.444084010235727 ], [ -58.542001701630262, -34.443995996776167 ], [ -58.542394179205182, -34.443858463420028 ], [ -58.542866755645541, -34.443666900263217 ], [ -58.543499201806263, -34.443383316196332 ], [ -58.544802910843813, -34.442803837586688 ], [ -58.546185224937972, -34.442173894988208 ], [ -58.548477624276373, -34.441181646414577 ], [ -58.549319109992041, -34.440783228266589 ], [ -58.549694061141253, -34.440590058783172 ], [ -58.550057671344817, -34.440380317033778 ], [ -58.550391965125847, -34.440180431250162 ], [ -58.550803398608302, -34.439904317904102 ], [ -58.551216901291433, -34.439603818763487 ], [ -58.551543658235659, -34.439365803685192 ], [ -58.552083210689489, -34.438949451739212 ], [ -58.552412652423861, -34.438701756892712 ], [ -58.552956376693523, -34.438295959085814 ], [ -58.553379391305121, -34.437983600799377 ], [ -58.554166823077111, -34.437380588743949 ], [ -58.556234949613611, -34.435785580503349 ], [ -58.557080434224339, -34.435098256927027 ], [ -58.557550096560547, -34.434686609953637 ], [ -58.5579522327413, -34.434328786478638 ], [ -58.558734145717359, -34.433632840548739 ], [ -58.56009888962857, -34.432427822497203 ], [ -58.561559741601357, -34.431105408927131 ], [ -58.562497589390738, -34.430278400526859 ], [ -58.563235568453699, -34.42964777589409 ], [ -58.564468647913792, -34.428575599985869 ], [ -58.564833954376439, -34.428242800220367 ], [ -58.56545510575959, -34.427661555051714 ], [ -58.566269836412317, -34.426934369982739 ], [ -58.566906500141037, -34.426360618404082 ], [ -58.567579067505029, -34.425776424823852 ], [ -58.56826142080935, -34.425203107684922 ], [ -58.569412418594922, -34.424243605687167 ], [ -58.570327324455633, -34.423479509000302 ], [ -58.571616496939093, -34.42241876587925 ], [ -58.572482409401651, -34.42169521091288 ], [ -58.572824088398733, -34.421428331183847 ], [ -58.573159530972902, -34.4211888990367 ], [ -58.573500313604903, -34.420947970809451 ], [ -58.574577088648176, -34.420183638985883 ], [ -58.576076686556547, -34.419124498665553 ], [ -58.576587389727528, -34.418742471602123 ], [ -58.576896584984638, -34.41851250027252 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 134.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.479624000047522, -34.50702100021897 ], [ -58.477714000101003, -34.5061040001994 ], [ -58.477306000171723, -34.507240999572446 ], [ -58.477842999754614, -34.507519999848057 ], [ -58.478551000028574, -34.507905999662114 ], [ -58.479387999956202, -34.508313999591337 ], [ -58.478787000119894, -34.509837999723857 ], [ -58.478208000398865, -34.51108200043393 ], [ -58.478035999661643, -34.51155399971725 ], [ -58.477349000356014, -34.513206000356604 ], [ -58.477092000195626, -34.513742999939439 ], [ -58.476512000428443, -34.515073000118832 ], [ -58.475932999808037, -34.516554000067003 ], [ -58.475783000085357, -34.516833000342672 ], [ -58.475095999880466, -34.518549000336066 ], [ -58.474581000412797, -34.519601000285888 ], [ -58.474152000414449, -34.520501999567557 ], [ -58.473743999585849, -34.521489000117242 ], [ -58.473357999771849, -34.522432999583202 ], [ -58.47271399975125, -34.523871000246402 ], [ -58.472221000398804, -34.52502999973467 ], [ -58.471898999938844, -34.525759000077755 ], [ -58.471491000009621, -34.52661800012055 ], [ -58.471040999942147, -34.527604999770858 ], [ -58.470589999828576, -34.528634999605515 ], [ -58.470504000359313, -34.528828000411863 ], [ -58.470396999921547, -34.528934999950252 ], [ -58.470096999576811, -34.529106999788155 ], [ -58.469603000178267, -34.529492999602212 ], [ -58.469280999718308, -34.529815000062172 ], [ -58.469109999926502, -34.5300079999692 ], [ -58.468830999650891, -34.53056599962116 ], [ -58.468548000090095, -34.531089000357042 ], [ -58.468422999721611, -34.531403000448051 ], [ -58.468316000183222, -34.5316819998244 ], [ -58.468186999630291, -34.53215400000704 ], [ -58.468057999976679, -34.532862000281057 ], [ -58.467908000253942, -34.533892000115657 ], [ -58.467606999863108, -34.534470999836742 ], [ -58.467457000140428, -34.534729000043285 ], [ -58.466814000165925, -34.535866000315593 ], [ -58.466663000397091, -34.53610200040697 ], [ -58.466298999798937, -34.536681000127999 ], [ -58.465805000400394, -34.537474999871279 ], [ -58.465312000148629, -34.538290999729838 ], [ -58.464861000035057, -34.53904200018809 ], [ -58.464388999852417, -34.539857000000495 ], [ -58.463831000200457, -34.540693999928124 ], [ -58.463380000086886, -34.541336999902569 ], [ -58.463187000179857, -34.541530999855695 ], [ -58.462628999628578, -34.542089000406975 ], [ -58.462028999838424, -34.542689000197186 ], [ -58.461320000417629, -34.54331200014866 ], [ -58.460677000443184, -34.543934000054037 ], [ -58.459797000331264, -34.544705999682094 ], [ -58.458981999619539, -34.545371999817917 ], [ -58.458165999761036, -34.546036999907585 ], [ -58.457372000017756, -34.546701999997254 ], [ -58.456557000205351, -34.54732399990263 ], [ -58.455762999562751, -34.548032000176647 ], [ -58.455333999564402, -34.54844000010587 ], [ -58.455140999657374, -34.548568999759482 ], [ -58.455033000072831, -34.548633000012899 ], [ -58.454732999728094, -34.548869000104219 ], [ -58.454432000236579, -34.549148000379887 ], [ -58.454196000145259, -34.549341000286915 ], [ -58.454046000422522, -34.549469999940527 ], [ -58.453251999779923, -34.55020000032971 ], [ -58.453015999688603, -34.550499999775127 ], [ -58.452308000313906, -34.551314999587532 ], [ -58.451622000155169, -34.552109000230132 ], [ -58.45125700041018, -34.552452999905995 ], [ -58.450912999835055, -34.552925000088635 ], [ -58.450119000091718, -34.553868999554652 ], [ -58.449304000279369, -34.554790999804766 ], [ -58.448509999636713, -34.555714000100977 ], [ -58.449712000208592, -34.556464999659966 ], [ -58.450891999765929, -34.557129999749634 ], [ -58.452007999969169, -34.557795999885457 ], [ -58.451148999926374, -34.558761000319862 ], [ -58.450613000389637, -34.558417999790834 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.446406999783164, -34.560435000175062 ], [ -58.44477700015841, -34.561206999803176 ], [ -58.444176000322102, -34.561442999894496 ], [ -58.444197000391227, -34.561635999801524 ], [ -58.444218999607131, -34.561722000170107 ], [ -58.44460500032045, -34.562043999730747 ], [ -58.443638999839948, -34.562838000373347 ], [ -58.442609000005291, -34.563653000185752 ], [ -58.441256999710731, -34.564597999697867 ], [ -58.440356000429063, -34.5653700002253 ], [ -58.439434000178949, -34.566120999784289 ], [ -58.439325999695086, -34.566207000152872 ], [ -58.438102999953458, -34.567301000240946 ], [ -58.437373999610372, -34.568287999891254 ], [ -58.437008999865384, -34.568782000189117 ], [ -58.436557999751869, -34.569317999725854 ], [ -58.435720999824241, -34.570241000022065 ], [ -58.434927000080961, -34.571099000018819 ], [ -58.434091000199487, -34.571979000130682 ], [ -58.433511000432304, -34.57257999996699 ], [ -58.43338299992547, -34.572708999620602 ], [ -58.432523999882676, -34.57360999980159 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.430250000237265, -34.575712999655138 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420528999813428, -34.581892999562228 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.414992999926938, -34.585775999662587 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.413169000349058, -34.586999000303592 ], [ -58.412353999637332, -34.587556999955552 ], [ -58.412203999914595, -34.587643000324135 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.409071000226447, -34.591699000308552 ], [ -58.409736000316116, -34.592793000396625 ], [ -58.410229999714659, -34.593736999862585 ], [ -58.410337000152367, -34.593951999884837 ], [ -58.410981000172967, -34.595068000088077 ], [ -58.411151999964773, -34.595410999717842 ], [ -58.411624000147469, -34.596247999645414 ], [ -58.411752999801081, -34.59686999955079 ], [ -58.411945999708053, -34.598028999938379 ], [ -58.410316000083299, -34.598093000191739 ], [ -58.409413999856156, -34.598093000191739 ], [ -58.408170000045402, -34.59807200012267 ], [ -58.406624999843814, -34.598028999938379 ], [ -58.405595000009214, -34.598050000007447 ], [ -58.404737000012517, -34.598028999938379 ], [ -58.404499999875043, -34.598050000007447 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.403084000226386, -34.598822999681659 ], [ -58.402504999605981, -34.599123000026395 ], [ -58.402011000207438, -34.599380000186841 ], [ -58.401062999657654, -34.599490999909676 ], [ -58.399929999569792, -34.599638000393384 ], [ -58.398771000081524, -34.599767000046995 ], [ -58.397225999879936, -34.599767000046995 ], [ -58.395810000231279, -34.599723999862647 ], [ -58.394393999683302, -34.599723999862647 ], [ -58.392934999850297, -34.599658999563133 ], [ -58.391562000385989, -34.599552000024744 ], [ -58.39016699990708, -34.599444999587035 ], [ -58.389652000439412, -34.599380000186841 ], [ -58.388150000422115, -34.599315999933424 ], [ -58.388085000122601, -34.600689000297109 ], [ -58.388041999938309, -34.601698000062584 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.385230999810744, -34.601526000224681 ], [ -58.384973999650299, -34.601439999856041 ], [ -58.38463100002059, -34.601397999717847 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.38383700027731, -34.602599000243629 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.382163000422111, -34.604981000372845 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.380876000427065, -34.604895000004205 ], [ -58.380317999875729, -34.60487399993508 ], [ -58.379437999763866, -34.604808999635566 ], [ -58.377956999815638, -34.605645999563194 ], [ -58.377399000163678, -34.605924999838805 ], [ -58.376520000097912, -34.606397000021502 ], [ -58.375575999732575, -34.606869000204142 ], [ -58.375039000149684, -34.607169999695714 ], [ -58.373580000316736, -34.607899000038799 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370104000099502, -34.606676000297114 ], [ -58.369889000077251, -34.606568999859405 ], [ -58.369439000009777, -34.606503999559891 ], [ -58.368944999711914, -34.606655000228045 ], [ -58.368816000058303, -34.606739999651211 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368300999691314, -34.606891000319365 ], [ -58.368044000430245, -34.607127000410685 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.369352999641194, -34.60952999970965 ], [ -58.369331000425291, -34.609916000423027 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.369180999803234, -34.612297999652924 ], [ -58.369117000449194, -34.613584999647969 ], [ -58.368944999711914, -34.614766000150723 ], [ -58.368859000242651, -34.61579599998538 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.368687999551526, -34.617834000438734 ], [ -58.368602000082205, -34.618284999652985 ], [ -58.368494999644497, -34.619400999856225 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.369760999570417, -34.62171799968587 ], [ -58.371347999910199, -34.621825000123636 ], [ -58.372849999927496, -34.621868000307927 ], [ -58.374137999968696, -34.621932999708122 ], [ -58.374073999715279, -34.623240999772293 ], [ -58.374009000315084, -34.624422000275047 ], [ -58.37267900013569, -34.624292999722115 ], [ -58.371198000187519, -34.624228000321921 ], [ -58.371068999634588, -34.625343999625841 ], [ -58.370962000096199, -34.626609999551818 ], [ -58.370769000189171, -34.628091000399309 ], [ -58.370661999751462, -34.629184999588006 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.369439000009777, -34.628305000375406 ], [ -58.368473000428594, -34.627468999594612 ], [ -58.368150999968634, -34.627147000033972 ], [ -58.368022000315023, -34.627124999918749 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.363387999756355, -34.630343999975594 ], [ -58.362401000106047, -34.630965999880971 ], [ -58.360855999904459, -34.632038999899862 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.359890000323219, -34.63366999957077 ], [ -58.35978299988551, -34.63384200030805 ], [ -58.359632000116676, -34.634119999638244 ], [ -58.359396000025356, -34.634507000397718 ], [ -58.358880999658368, -34.635301000140998 ], [ -58.358388000305922, -34.636115999953404 ], [ -58.357916000123282, -34.636867000411712 ], [ -58.357400999756294, -34.637767999693381 ], [ -58.357228999918391, -34.637960999600409 ], [ -58.357036000011362, -34.638196999691729 ], [ -58.357143000449071, -34.638411999713981 ], [ -58.358044999776894, -34.638819999643204 ], [ -58.358473999775242, -34.63897000026526 ], [ -58.36034100043679, -34.63897000026526 ], [ -58.361413000409584, -34.639248999641552 ], [ -58.361564000178419, -34.639484999732929 ], [ -58.36160700036271, -34.639741999893317 ], [ -58.361649999647739, -34.640193000006889 ], [ -58.361477999809779, -34.64055799975182 ], [ -58.361069999880556, -34.64088000021178 ], [ -58.362465000359464, -34.641673999955117 ], [ -58.363709000170161, -34.642124000022534 ], [ -58.364266999822121, -34.641137000372225 ], [ -58.364761000120041, -34.640236000191237 ], [ -58.364018000030626, -34.640093999938131 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 131.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.545086999865134, -34.631560000293746 ], [ -58.544469000144204, -34.631781999739474 ], [ -58.543760999870187, -34.63208200008421 ], [ -58.543160000033936, -34.632061000015085 ], [ -58.543246000402576, -34.631158999787942 ], [ -58.541807999739376, -34.630623000251205 ], [ -58.541121000433805, -34.630387000159885 ], [ -58.540456000344079, -34.630922999696622 ], [ -58.539748000070119, -34.630300999791245 ], [ -58.539490999909674, -34.630064999699925 ], [ -58.539254999818354, -34.629849999677674 ], [ -58.53863199986688, -34.629292000025714 ], [ -58.537730999685834, -34.628477000213365 ], [ -58.537301999687486, -34.628111999569057 ], [ -58.536872999689137, -34.627725999755057 ], [ -58.536443999690789, -34.627339999941 ], [ -58.535950000292246, -34.626888999827429 ], [ -58.535070000180326, -34.626117000199372 ], [ -58.534684000366269, -34.625751999555064 ], [ -58.534212000183629, -34.625343999625841 ], [ -58.533246999749224, -34.624506999698212 ], [ -58.532623999797693, -34.623950000092407 ], [ -58.532088000260956, -34.623476999863612 ], [ -58.531659000262607, -34.623091000049556 ], [ -58.531208000149036, -34.622748000419847 ], [ -58.531036000311133, -34.622618999866916 ], [ -58.531058000426356, -34.622104000399247 ], [ -58.531100999711327, -34.621288999687522 ], [ -58.531164999964744, -34.620795000288979 ], [ -58.531208000149036, -34.620109000130185 ], [ -58.531229000218161, -34.619272000202614 ], [ -58.531229000218161, -34.619163999718751 ], [ -58.531272000402453, -34.618692000435431 ], [ -58.531293999618356, -34.618155999999374 ], [ -58.531314999687424, -34.618048999561609 ], [ -58.531357999871773, -34.617598000347414 ], [ -58.531401000056064, -34.616933000257688 ], [ -58.531466000355579, -34.615966999777186 ], [ -58.531487000424704, -34.61562400014742 ], [ -58.531487000424704, -34.615494999594489 ], [ -58.531100999711327, -34.614700999851209 ], [ -58.530649999597756, -34.613736000316123 ], [ -58.530414000405756, -34.613220999949135 ], [ -58.530350000152339, -34.613070000180301 ], [ -58.529899000038768, -34.612104999745895 ], [ -58.529834999785351, -34.611932999907992 ], [ -58.529426999856128, -34.611139000164655 ], [ -58.529341000386808, -34.610946000257684 ], [ -58.529341000386808, -34.610946000257684 ], [ -58.528589999928499, -34.611482999840518 ], [ -58.528204000114499, -34.611783000185255 ], [ -58.527796000185219, -34.612082999630672 ], [ -58.527367000186871, -34.612405000090632 ], [ -58.527002000441939, -34.612684000366301 ], [ -58.526552000374465, -34.612984999857815 ], [ -58.525757999731866, -34.613563999578901 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.524491999805889, -34.613563999578901 ], [ -58.524019999623249, -34.613285000202552 ], [ -58.523505000155581, -34.613005999926884 ], [ -58.521937999838769, -34.612041000391798 ], [ -58.520392999637181, -34.611139000164655 ], [ -58.519213000079844, -34.612019000276575 ], [ -58.518268999714508, -34.612748999766495 ], [ -58.517282000064199, -34.613500000224803 ], [ -58.516681000227948, -34.61395000029222 ], [ -58.516358999767988, -34.614207999599444 ], [ -58.515565000024708, -34.614787000219849 ], [ -58.514793000396594, -34.6153880000561 ], [ -58.514406999683274, -34.615667000331769 ], [ -58.51401999982312, -34.615966999777186 ], [ -58.513097999573006, -34.616718000235494 ], [ -58.512604000174406, -34.616438999959826 ], [ -58.512175000176057, -34.61618199979938 ], [ -58.511724000062486, -34.615903000423089 ], [ -58.511251999879846, -34.615645000216546 ], [ -58.510844999996721, -34.615409000125226 ], [ -58.510437000067441, -34.61515199996478 ], [ -58.510029000138218, -34.61491599987346 ], [ -58.509579000070744, -34.614636999597792 ], [ -58.509063999703756, -34.614336000106277 ], [ -58.508720000027949, -34.614143000199249 ], [ -58.508313000144824, -34.613907000107929 ], [ -58.507862000031253, -34.613649999947484 ], [ -58.507519000401487, -34.613457000040455 ], [ -58.507068000287916, -34.613177999764844 ], [ -58.505415999648619, -34.612212000183604 ], [ -58.504986999650271, -34.612684000366301 ], [ -58.504578999721048, -34.613155999649621 ], [ -58.504043000184254, -34.613736000316123 ], [ -58.503548999886391, -34.614293999968083 ], [ -58.502690999889694, -34.613821999785443 ], [ -58.501511000332357, -34.613113000364649 ], [ -58.500523999782729, -34.612555999859467 ], [ -58.499558000201489, -34.611976000092284 ], [ -58.498313000344638, -34.611267999818267 ], [ -58.497304999725941, -34.610689000097238 ], [ -58.495995999615673, -34.60993799963893 ], [ -58.494986999850141, -34.609357999871747 ], [ -58.493764000108456, -34.608671999712953 ], [ -58.492819999743176, -34.608135000130119 ], [ -58.493164000318302, -34.607728000246993 ], [ -58.493958000061639, -34.606848000135074 ], [ -58.494772999873987, -34.605924999838805 ], [ -58.494000000199833, -34.605473999725291 ], [ -58.492670000020439, -34.604702000097177 ], [ -58.491339999841102, -34.6039299995698 ], [ -58.490030999730834, -34.603156999895589 ], [ -58.489000999896177, -34.602578000174503 ], [ -58.487799000223617, -34.601847999785321 ], [ -58.487047999765309, -34.60281400026588 ], [ -58.488207000152897, -34.603479000355549 ], [ -58.487069999880532, -34.604808999635566 ], [ -58.486210999837738, -34.605753000000902 ], [ -58.485203000118304, -34.60691200038849 ], [ -58.484451999659996, -34.607770000385187 ], [ -58.483508000194036, -34.608864999619982 ], [ -58.482992999827047, -34.60946600035561 ], [ -58.482628000082116, -34.60993799963893 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.481855000407904, -34.610903000073336 ], [ -58.481468999694528, -34.611418000440324 ], [ -58.480653999882122, -34.612427000205855 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.479023000211271, -34.614421999575598 ], [ -58.478228999568614, -34.615452000309517 ], [ -58.477478000009626, -34.616461000075049 ], [ -58.476641000082054, -34.617447999725357 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.475868999554621, -34.618456000344111 ], [ -58.475052999696118, -34.619465000109642 ], [ -58.474215999768546, -34.620516000013367 ], [ -58.472949999842569, -34.619850999923642 ], [ -58.471641999778399, -34.619163999718751 ], [ -58.470417999990673, -34.618477999560014 ], [ -58.469130999995627, -34.617791000254442 ], [ -58.468809000434987, -34.61761999956326 ], [ -58.467951000438291, -34.617254999818329 ], [ -58.466727999797286, -34.616718000235494 ], [ -58.465697999962686, -34.61626800016802 ], [ -58.464453000105834, -34.615752999801032 ], [ -58.463057999626926, -34.615216000218197 ], [ -58.461900000184812, -34.614766000150723 ], [ -58.460677000443184, -34.614336000106277 ], [ -58.459474999871304, -34.613886000038804 ], [ -58.457328999833408, -34.613028000042107 ], [ -58.457092999742088, -34.612919999558301 ], [ -58.455892000115682, -34.612448000274924 ], [ -58.455333999564402, -34.612191000114535 ], [ -58.454753999797219, -34.611955000023215 ], [ -58.454110999822717, -34.611653999632324 ], [ -58.453531000055591, -34.611332000071684 ], [ -58.452973000403631, -34.611031999726947 ], [ -58.452287000244837, -34.610666999982016 ], [ -58.451600000039946, -34.610302000237084 ], [ -58.450956000019346, -34.609958999707999 ], [ -58.449926000184746, -34.609401000056039 ], [ -58.448896000350089, -34.608843000404079 ], [ -58.447802000262072, -34.608284999852799 ], [ -58.446557999551999, -34.607749000316062 ], [ -58.44627900017565, -34.607598999694062 ], [ -58.445892000315496, -34.607426999856102 ], [ -58.445720999624371, -34.607341000386839 ], [ -58.445569999855593, -34.607298000202491 ], [ -58.445270000410176, -34.607190999764782 ], [ -58.444197000391227, -34.60691200038849 ], [ -58.443060000118862, -34.606633000112822 ], [ -58.441664999639954, -34.606268000367891 ], [ -58.440292000175646, -34.605903999769737 ], [ -58.440120000337686, -34.605860999585445 ], [ -58.439304999626017, -34.605603000278222 ], [ -58.438575000136098, -34.605259999749137 ], [ -58.437974000299846, -34.604959000257622 ], [ -58.437158999588121, -34.604552000374497 ], [ -58.436623000051384, -34.60431600028312 ], [ -58.435163000172281, -34.60360800000916 ], [ -58.433919000361527, -34.60296399998856 ], [ -58.433211000087567, -34.604273000098829 ], [ -58.432309999906522, -34.603971999707994 ], [ -58.431323000256214, -34.603971999707994 ], [ -58.430399999960002, -34.604014999892286 ], [ -58.428832999643191, -34.604101000260926 ], [ -58.427330999625894, -34.604186999730189 ], [ -58.425871999792889, -34.604294000167954 ], [ -58.424348999706524, -34.604487000074926 ], [ -58.422804000404255, -34.604681000028108 ], [ -58.42119499994925, -34.60487399993508 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.418361999706462, -34.605259999749137 ], [ -58.417052999596194, -34.605473999725291 ], [ -58.416022999761594, -34.605645999563194 ], [ -58.414928999673577, -34.605839000369542 ], [ -58.413640999632378, -34.606096999676765 ], [ -58.412417999890749, -34.606397000021502 ], [ -58.411344999871801, -34.606546999744182 ], [ -58.409972000407436, -34.606739999651211 ], [ -58.409370999671864, -34.605259999749137 ], [ -58.408920999604391, -34.604101000260926 ], [ -58.40868500041239, -34.603500000424617 ], [ -58.408470000390139, -34.60296399998856 ], [ -58.407418999587094, -34.603028000241977 ], [ -58.406324000352299, -34.603156999895589 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.403620999809277, -34.603392999986909 ], [ -58.402205000160563, -34.603415000102132 ], [ -58.400917000119421, -34.603415000102132 ], [ -58.399564999824861, -34.603349999802617 ], [ -58.398364000198399, -34.60328600044852 ], [ -58.396926000434519, -34.603264000333297 ], [ -58.395424000417222, -34.603243000264229 ], [ -58.393985999754022, -34.60320000007988 ], [ -58.392420000382685, -34.603135999826463 ], [ -58.391174999626514, -34.603113999711297 ], [ -58.391304000179446, -34.601912000038737 ], [ -58.391432999833057, -34.600774999766372 ], [ -58.391562000385989, -34.599552000024744 ], [ -58.391603999624863, -34.599144000095464 ], [ -58.391668999924377, -34.598628999728533 ], [ -58.391818999647057, -34.597213000079819 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.392054999738434, -34.594939000434465 ], [ -58.392141000107017, -34.593972999953962 ], [ -58.392184000291365, -34.593736999862585 ], [ -58.390853000065874, -34.592557000305248 ], [ -58.389930999815761, -34.591699000308552 ], [ -58.388944000165452, -34.590840000265757 ], [ -58.387935000399921, -34.589961000199935 ], [ -58.387034000218875, -34.589058999972849 ], [ -58.386089999853596, -34.588094000437707 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.385918000015636, -34.586612999590216 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.388729000143201, -34.585304000379267 ], [ -58.389479999702189, -34.585025000103656 ], [ -58.389781000093024, -34.584981999919307 ], [ -58.39016699990708, -34.585047000218822 ], [ -58.391024999903777, -34.584960999850239 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390206999953023, -34.584208000198998 ], [ -58.389211999933821, -34.584615000082124 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 128.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.296899, -34.783871 ], [ -58.29761, -34.782988 ], [ -58.298177, -34.783241 ], [ -58.298717, -34.783547 ], [ -58.299126, -34.783778 ], [ -58.300009, -34.784276 ], [ -58.300789, -34.784726 ], [ -58.30109, -34.784908 ], [ -58.301557, -34.785176 ], [ -58.301947, -34.784711 ], [ -58.302241, -34.784382 ], [ -58.302741, -34.783836 ], [ -58.303229, -34.783298 ], [ -58.303714, -34.782765 ], [ -58.3042, -34.782224 ], [ -58.304689, -34.781685 ], [ -58.305185, -34.781128 ], [ -58.305668, -34.780595 ], [ -58.306172, -34.780044 ], [ -58.306659, -34.779515 ], [ -58.30715, -34.778973 ], [ -58.307549, -34.778535 ], [ -58.30761, -34.778433 ], [ -58.307678, -34.778318 ], [ -58.308132, -34.777847 ], [ -58.308638, -34.777317 ], [ -58.308693, -34.777249 ], [ -58.308736, -34.777181 ], [ -58.309165, -34.776728 ], [ -58.309669, -34.776194 ], [ -58.310164, -34.775663 ], [ -58.31067, -34.775119 ], [ -58.311155, -34.774562 ], [ -58.311631, -34.774025 ], [ -58.312116, -34.773479 ], [ -58.312596, -34.77293 ], [ -58.313097, -34.772386 ], [ -58.313588, -34.77185 ], [ -58.31408, -34.771314 ], [ -58.314665, -34.770675 ], [ -58.314707, -34.770615 ], [ -58.314741, -34.770554 ], [ -58.315151, -34.770026 ], [ -58.315627, -34.769421 ], [ -58.316132, -34.768784 ], [ -58.31768, -34.769621 ], [ -58.319212, -34.770413 ], [ -58.319773, -34.769707 ], [ -58.320315, -34.769038 ], [ -58.320998, -34.768144 ], [ -58.321695, -34.767236 ], [ -58.322288, -34.766456 ], [ -58.322794, -34.765814 ], [ -58.322869, -34.765741 ], [ -58.322969, -34.765645 ], [ -58.323068, -34.765549 ], [ -58.323147, -34.765473 ], [ -58.323611, -34.764858 ], [ -58.324153, -34.764127 ], [ -58.3247, -34.763399 ], [ -58.323753, -34.762908 ], [ -58.324237, -34.762272 ], [ -58.324775, -34.761559 ], [ -58.325246, -34.760943 ], [ -58.325706, -34.760326 ], [ -58.326256, -34.759604 ], [ -58.326733, -34.758975 ], [ -58.327093, -34.7585 ], [ -58.32722, -34.758341 ], [ -58.327297, -34.758242 ], [ -58.327811, -34.757512 ], [ -58.328385, -34.756658 ], [ -58.328445, -34.756564 ], [ -58.328968, -34.755795 ], [ -58.329567, -34.754945 ], [ -58.330099, -34.754199 ], [ -58.330702, -34.753396 ], [ -58.331345, -34.752488 ], [ -58.331856, -34.751738 ], [ -58.332016, -34.751591 ], [ -58.332201, -34.751424 ], [ -58.332644, -34.750847 ], [ -58.333253, -34.750142 ], [ -58.333313, -34.750088 ], [ -58.334134, -34.749042 ], [ -58.334472, -34.748611 ], [ -58.334601, -34.748334 ], [ -58.33475, -34.74844 ], [ -58.335262, -34.748703 ], [ -58.335988, -34.749051 ], [ -58.336707, -34.749392 ], [ -58.337405, -34.749734 ], [ -58.337683, -34.749891 ], [ -58.338142, -34.750079 ], [ -58.339351, -34.75045 ], [ -58.3402, -34.75069 ], [ -58.340403, -34.75076 ], [ -58.340901, -34.751034 ], [ -58.341347, -34.751262 ], [ -58.341624, -34.75142 ], [ -58.342063, -34.751635 ], [ -58.342401, -34.751808 ], [ -58.3427, -34.751958 ], [ -58.342956999999899, -34.752102 ], [ -58.343148, -34.751856 ], [ -58.343301, -34.751215 ], [ -58.34346, -34.750762 ], [ -58.343706, -34.750036 ], [ -58.343919, -34.749336 ], [ -58.344385, -34.748238 ], [ -58.344448, -34.748076 ], [ -58.344756, -34.747125 ], [ -58.345162, -34.746133 ], [ -58.345344, -34.745679 ], [ -58.345548, -34.745139 ], [ -58.346003, -34.744034 ], [ -58.346059, -34.743894 ], [ -58.346628, -34.742484 ], [ -58.347139, -34.740953 ], [ -58.347317, -34.740398 ], [ -58.347544, -34.739811 ], [ -58.347798, -34.739051 ], [ -58.348388, -34.737579 ], [ -58.34891, -34.736196 ], [ -58.349121, -34.735638 ], [ -58.349322, -34.735159 ], [ -58.349411, -34.734865 ], [ -58.34973, -34.73407 ], [ -58.350132, -34.733041 ], [ -58.35023, -34.732699 ], [ -58.350546, -34.731875 ], [ -58.350895, -34.730826 ], [ -58.351111, -34.730317 ], [ -58.351566, -34.729979 ], [ -58.352419, -34.729347 ], [ -58.353263, -34.728684 ], [ -58.354109, -34.728035 ], [ -58.354981, -34.727373 ], [ -58.355819, -34.726723 ], [ -58.356581, -34.726144 ], [ -58.357554, -34.725399 ], [ -58.358196, -34.724887 ], [ -58.358521, -34.724638 ], [ -58.359286, -34.724024 ], [ -58.359656, -34.723736 ], [ -58.360487, -34.723132 ], [ -58.361319, -34.722461 ], [ -58.362123, -34.721794 ], [ -58.361215, -34.721001 ], [ -58.360333, -34.720254 ], [ -58.359449, -34.719481 ], [ -58.358569, -34.718715 ], [ -58.357722, -34.717972 ], [ -58.359449, -34.716793 ], [ -58.360593, -34.715961 ], [ -58.361673, -34.715146 ], [ -58.361706, -34.715123 ], [ -58.36283, -34.714313 ], [ -58.362845, -34.714305 ], [ -58.36393, -34.713476 ], [ -58.363957, -34.713453 ], [ -58.365122, -34.712635 ], [ -58.366274, -34.711814 ], [ -58.367384999999899, -34.711013 ], [ -58.367419, -34.710987 ], [ -58.366514, -34.710105 ], [ -58.367266, -34.709586 ], [ -58.367923, -34.709146 ], [ -58.368026, -34.70907 ], [ -58.369005, -34.708394 ], [ -58.369085, -34.708337 ], [ -58.369998, -34.707716 ], [ -58.370273, -34.707529 ], [ -58.370939, -34.707058 ], [ -58.371418, -34.706736 ], [ -58.371441, -34.706717 ], [ -58.372363, -34.706004 ], [ -58.372498, -34.70592 ], [ -58.372785, -34.70574 ], [ -58.373705, -34.705058 ], [ -58.374023, -34.704819 ], [ -58.374835, -34.704127 ], [ -58.375305, -34.703759 ], [ -58.375788, -34.703398 ], [ -58.376513, -34.702752 ], [ -58.377043, -34.702005 ], [ -58.377707, -34.701321 ], [ -58.378393, -34.700707 ], [ -58.378408, -34.700693 ], [ -58.379253, -34.699881 ], [ -58.38014, -34.699034 ], [ -58.380152, -34.699026 ], [ -58.380867, -34.698411 ], [ -58.381428, -34.698006 ], [ -58.382219, -34.697373 ], [ -58.383142, -34.696631 ], [ -58.383163, -34.696649 ], [ -58.384155, -34.695887 ], [ -58.384792, -34.695403 ], [ -58.385739, -34.69466 ], [ -58.385995, -34.694473 ], [ -58.386368, -34.694199 ], [ -58.387602, -34.693313 ], [ -58.388444, -34.692798 ], [ -58.389244, -34.692214 ], [ -58.389427, -34.692112 ], [ -58.388972, -34.690989 ], [ -58.388564, -34.690088 ], [ -58.388692, -34.689965 ], [ -58.389735, -34.689216 ], [ -58.390309, -34.688742 ], [ -58.39107, -34.689424 ], [ -58.391954, -34.69024 ], [ -58.392264, -34.690003 ], [ -58.392886, -34.689477 ], [ -58.393278, -34.689172 ], [ -58.393732, -34.688792 ], [ -58.394287, -34.688379 ], [ -58.394681, -34.688055 ], [ -58.395361, -34.687548 ], [ -58.395589, -34.687347 ], [ -58.396384, -34.686767 ], [ -58.396546, -34.686647 ], [ -58.397521, -34.685931 ], [ -58.398086, -34.685497 ], [ -58.398616, -34.685105 ], [ -58.399272, -34.684658 ], [ -58.399848, -34.684226 ], [ -58.400632, -34.683408 ], [ -58.401273, -34.682695 ], [ -58.401964, -34.681906 ], [ -58.402692, -34.681137 ], [ -58.403364, -34.680367 ], [ -58.40407, -34.679518 ], [ -58.404168, -34.67941 ], [ -58.404354, -34.679279 ], [ -58.405194, -34.678664 ], [ -58.406003, -34.678062 ], [ -58.406786, -34.677479 ], [ -58.407572, -34.676831 ], [ -58.408297, -34.676133 ], [ -58.409004, -34.675464 ], [ -58.409673, -34.674658 ], [ -58.410343, -34.673892 ], [ -58.410626, -34.673591 ], [ -58.411025, -34.673201 ], [ -58.411852, -34.672563 ], [ -58.41263, -34.671956 ], [ -58.41352, -34.67134 ], [ -58.414338, -34.670773 ], [ -58.415163, -34.67017 ], [ -58.416022, -34.669523 ], [ -58.416827, -34.668943 ], [ -58.417089, -34.668608 ], [ -58.417217, -34.667755 ], [ -58.417406, -34.666386 ], [ -58.417615, -34.664987 ], [ -58.417478, -34.664091 ], [ -58.417258, -34.662878 ], [ -58.417145, -34.662317 ], [ -58.416929, -34.661478 ], [ -58.416275, -34.662017 ], [ -58.416739, -34.662405 ], [ -58.41681, -34.662414 ], [ -58.416897, -34.662417 ], [ -58.416974, -34.662407 ], [ -58.41703, -34.662387 ], [ -58.417092, -34.66235 ], [ -58.417145, -34.662317 ], [ -58.417228, -34.662266 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 126.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.728493, -34.66519 ], [ -58.729564, -34.665034 ], [ -58.730043, -34.664979 ], [ -58.731322, -34.664785 ], [ -58.731576, -34.664237 ], [ -58.73287, -34.664032 ], [ -58.733755, -34.66386 ], [ -58.734245, -34.663789 ], [ -58.735586, -34.663592 ], [ -58.735513, -34.663729 ], [ -58.736536, -34.664061 ], [ -58.738379, -34.664664 ], [ -58.739249, -34.664949 ], [ -58.740146, -34.665239 ], [ -58.740746, -34.665439 ], [ -58.740853, -34.665349 ], [ -58.741894, -34.666215 ], [ -58.742754, -34.666927 ], [ -58.743557, -34.667602 ], [ -58.74509, -34.668879 ], [ -58.745581, -34.669304 ], [ -58.746234999999899, -34.669818 ], [ -58.746482, -34.670044 ], [ -58.746524, -34.670051 ], [ -58.747618, -34.670941 ], [ -58.748721, -34.671844 ], [ -58.749836, -34.672735 ], [ -58.752803, -34.675167 ], [ -58.75344, -34.675729 ], [ -58.754048, -34.676232 ], [ -58.754529, -34.676708 ], [ -58.754803, -34.676966 ], [ -58.755122, -34.677153 ], [ -58.755445, -34.677388 ], [ -58.756014, -34.677857 ], [ -58.756454, -34.678214 ], [ -58.757203, -34.678824 ], [ -58.757932, -34.679421 ], [ -58.758543, -34.679923 ], [ -58.759132, -34.680433 ], [ -58.759606, -34.681052 ], [ -58.75985, -34.681368 ], [ -58.760092, -34.681679 ], [ -58.760681, -34.682455 ], [ -58.762401, -34.6848 ], [ -58.763024, -34.685716 ], [ -58.763748, -34.686302 ], [ -58.76439, -34.686811 ], [ -58.764974, -34.68728 ], [ -58.764982, -34.687287 ], [ -58.765407, -34.687896 ], [ -58.766292, -34.689199 ], [ -58.76671, -34.68975 ], [ -58.767177, -34.69037 ], [ -58.767637, -34.690938 ], [ -58.768019, -34.691565 ], [ -58.768534, -34.692231 ], [ -58.768873, -34.692669 ], [ -58.768981, -34.692806 ], [ -58.769445, -34.693402 ], [ -58.769889, -34.693969 ], [ -58.770387, -34.69462 ], [ -58.770896, -34.695274 ], [ -58.771329, -34.695829 ], [ -58.771823, -34.696468 ], [ -58.772267, -34.697046 ], [ -58.772737, -34.697648 ], [ -58.7732, -34.698259 ], [ -58.773711, -34.698935 ], [ -58.774158, -34.699522 ], [ -58.774665, -34.700191 ], [ -58.775155, -34.700835 ], [ -58.775612, -34.701438 ], [ -58.776601, -34.702732 ], [ -58.777083, -34.70337 ], [ -58.777553, -34.703996 ], [ -58.778053, -34.704649 ], [ -58.778519, -34.705263 ], [ -58.779053, -34.705969 ], [ -58.779527, -34.706588 ], [ -58.779985, -34.707202 ], [ -58.780482, -34.707848 ], [ -58.780949, -34.708458 ], [ -58.781429, -34.709095 ], [ -58.781953, -34.709859 ], [ -58.782468, -34.710603 ], [ -58.782915, -34.71126 ], [ -58.78343, -34.711993 ], [ -58.783893, -34.712668 ], [ -58.784347, -34.713333 ], [ -58.784805, -34.714008 ], [ -58.786214, -34.715806 ], [ -58.786886, -34.71665 ], [ -58.787563, -34.717512 ], [ -58.788231, -34.718364 ], [ -58.788872, -34.719177 ], [ -58.78956, -34.720051 ], [ -58.790213, -34.720876 ], [ -58.790678, -34.721932 ], [ -58.791282, -34.722803 ], [ -58.791955, -34.723688 ], [ -58.792611, -34.724624 ], [ -58.793287, -34.725512 ], [ -58.79394, -34.726398 ], [ -58.794562, -34.727268 ], [ -58.79546, -34.728005 ], [ -58.796106, -34.72888 ], [ -58.796774, -34.729788 ], [ -58.796697, -34.730066 ], [ -58.797205, -34.730753 ], [ -58.79816, -34.732036 ], [ -58.798836, -34.732941 ], [ -58.79947, -34.733788 ], [ -58.799661, -34.734048 ], [ -58.800127, -34.734674 ], [ -58.800567, -34.735265 ], [ -58.800811, -34.735584 ], [ -58.801691, -34.736766 ], [ -58.802639, -34.738039 ], [ -58.803832, -34.739636 ], [ -58.804399, -34.740273 ], [ -58.804924, -34.739952 ], [ -58.808679, -34.745488 ], [ -58.810022, -34.747491 ], [ -58.81033, -34.747942 ], [ -58.813465, -34.752382 ], [ -58.813775, -34.752784 ], [ -58.816239, -34.755972 ], [ -58.81654, -34.756373 ], [ -58.818076, -34.758311 ], [ -58.818624, -34.759005 ], [ -58.818941, -34.759395 ], [ -58.821733, -34.762799 ], [ -58.821519, -34.762979 ], [ -58.821455, -34.763025 ], [ -58.821304, -34.763141 ], [ -58.821122, -34.763302 ], [ -58.823113, -34.765822 ], [ -58.824714, -34.767859 ], [ -58.824945, -34.767745 ], [ -58.82577, -34.768829 ], [ -58.826556, -34.769886 ], [ -58.827253, -34.770847 ], [ -58.827369, -34.770978 ], [ -58.82721, -34.772592 ], [ -58.82714, -34.773426 ], [ -58.827068, -34.774147 ], [ -58.827013, -34.774635 ], [ -58.827059, -34.774852 ], [ -58.827063, -34.775028 ], [ -58.827357, -34.775387 ], [ -58.828202, -34.776542 ], [ -58.829002, -34.777607 ], [ -58.829781, -34.778652 ], [ -58.830192, -34.7792 ], [ -58.83059, -34.779748 ], [ -58.831368, -34.780782 ], [ -58.831907, -34.781526 ], [ -58.832613, -34.782484 ], [ -58.833611, -34.781964 ], [ -58.834528, -34.781481 ], [ -58.834067, -34.780824 ], [ -58.833907, -34.780766 ], [ -58.833984, -34.780697 ], [ -58.83447, -34.780305 ], [ -58.834644, -34.780171 ], [ -58.834803, -34.78004 ], [ -58.835297, -34.779664 ], [ -58.835621, -34.780121 ], [ -58.836358, -34.781161 ], [ -58.836757, -34.781733 ], [ -58.837704, -34.781225 ], [ -58.838135, -34.781843 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 124.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.53138233260983, -34.618129311103424 ], [ -58.536687974546915, -34.61542585871625 ], [ -58.567124693036924, -34.627697589785647 ], [ -58.571674035633698, -34.629730825634169 ], [ -58.573556124068411, -34.630671417883839 ], [ -58.574549127782412, -34.630861435225334 ], [ -58.575184188297207, -34.630842433510772 ], [ -58.575091815858684, -34.63180201465638 ], [ -58.564888991361066, -34.637967771256619 ], [ -58.56438815954602, -34.637889395870843 ], [ -58.563872894537425, -34.640118315443601 ], [ -58.564715793038857, -34.640208563455857 ], [ -58.564906311193283, -34.640218063240887 ], [ -58.564992910354391, -34.640251312480004 ], [ -58.565091056070315, -34.640322560804627 ], [ -58.570362058342965, -34.641222659367628 ], [ -58.570740208013127, -34.639500826409154 ], [ -58.577922165107516, -34.640640802573948 ], [ -58.578776610163757, -34.641334280408266 ], [ -58.583764721843451, -34.637762332588018 ], [ -58.58496556354411, -34.638873832839096 ], [ -58.590230792539366, -34.639396327809976 ], [ -58.589416760424974, -34.643951394513707 ], [ -58.590519456409723, -34.644084385402664 ], [ -58.59128730230487, -34.639557825589563 ], [ -58.593481147719544, -34.639819071331843 ], [ -58.594070022015082, -34.636166306176584 ], [ -58.596639130461185, -34.636460813360834 ], [ -58.596696863235266, -34.636532064941861 ], [ -58.603769128058921, -34.627473123194569 ], [ -58.60662690037541, -34.631116770342587 ], [ -58.608555175029359, -34.62888879650577 ], [ -58.608630227635651, -34.628850792168642 ], [ -58.608734146628976, -34.62884366635349 ], [ -58.608855385454504, -34.62884366635349 ], [ -58.608939097976929, -34.628872169610418 ], [ -58.609077656634696, -34.628945802978784 ], [ -58.609123842853933, -34.629045564212355 ], [ -58.609198895460246, -34.629176203741572 ], [ -58.609233535124673, -34.629299717289086 ], [ -58.609265288150432, -34.629484987265606 ], [ -58.609279721343938, -34.629722512271279 ], [ -58.609357660588934, -34.629891154612501 ], [ -58.609432713195226, -34.629969537555802 ], [ -58.609513539078918, -34.630076423268221 ], [ -58.610786546747157, -34.631185651309387 ], [ -58.611640991803419, -34.631784200751056 ], [ -58.61220677298931, -34.63289578111366 ], [ -58.612784100730003, -34.6339503435862 ], [ -58.613061218045559, -34.634501370896622 ], [ -58.613742464779584, -34.635080895670278 ], [ -58.614620002945465, -34.635565413274968 ], [ -58.622304235174248, -34.642353112324173 ], [ -58.622390834335356, -34.64243385837424 ], [ -58.622073304077958, -34.642633348278494 ], [ -58.621796186762431, -34.642885084853695 ], [ -58.620953288261006, -34.643607042113679 ], [ -58.620976381370639, -34.644561725943674 ], [ -58.621061537212377, -34.64803364261536 ], [ -58.619914098327719, -34.648065701359997 ], [ -58.619751003240971, -34.647967150364792 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 123.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.839298807817777, -34.489625486915642 ], [ -58.837858943200366, -34.488902354907786 ], [ -58.824573792330376, -34.481819820839696 ], [ -58.827427923972017, -34.478124168321685 ], [ -58.833542549047294, -34.481365463560437 ], [ -58.834902421185959, -34.479490439858651 ], [ -58.838348497170294, -34.474953266464247 ], [ -58.840812265515666, -34.476204348831807 ], [ -58.839097226771372, -34.478511331918817 ], [ -58.837378988327934, -34.480797516961346 ], [ -58.835956722055847, -34.482670940813541 ], [ -58.841783374207616, -34.485787447785448 ], [ -58.843162444541193, -34.486491381598398 ], [ -58.842490507719731, -34.487412894953536 ], [ -58.842218533292005, -34.487777660656612 ], [ -58.842106543821757, -34.488148825757989 ], [ -58.842212133893703, -34.488734370702403 ], [ -58.839847556222004, -34.489492699400905 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 121.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.358339999891029, -34.627484000286358 ], [ -58.358687999751339, -34.62725399957236 ], [ -58.35969700041619, -34.628263000237212 ], [ -58.359847000138927, -34.628412999959949 ], [ -58.359932999608191, -34.628520000397657 ], [ -58.360640999882207, -34.629270999956645 ], [ -58.361455999694613, -34.630107999884217 ], [ -58.362443000244241, -34.629442999794549 ], [ -58.363172999734104, -34.628949000396005 ], [ -58.363323000356161, -34.628863000027366 ], [ -58.363903000123344, -34.628477000213365 ], [ -58.364674999751401, -34.627961999846377 ], [ -58.365448000324932, -34.627468999594612 ], [ -58.365662000301029, -34.627317999825777 ], [ -58.366176999768697, -34.626975000196069 ], [ -58.366306000321629, -34.626803000358109 ], [ -58.366348999606601, -34.626652999736109 ], [ -58.366477000113434, -34.625172999834035 ], [ -58.366627999882269, -34.624035000414892 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368494999644497, -34.619400999856225 ], [ -58.368602000082205, -34.618284999652985 ], [ -58.368687999551526, -34.617834000438734 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.368859000242651, -34.61579599998538 ], [ -58.368944999711914, -34.614766000150723 ], [ -58.369117000449194, -34.613584999647969 ], [ -58.369180999803234, -34.612297999652924 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.369331000425291, -34.609916000423027 ], [ -58.369352999641194, -34.60952999970965 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.368044000430245, -34.607127000410685 ], [ -58.368300999691314, -34.606891000319365 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368944999711914, -34.606848000135074 ], [ -58.369460000078902, -34.606718999582142 ], [ -58.369609999801582, -34.606568999859405 ], [ -58.369739000354514, -34.606419000136725 ], [ -58.369845999892959, -34.605302999933429 ], [ -58.369932000261542, -34.604250999983606 ], [ -58.370104000099502, -34.60296399998856 ], [ -58.370210999637891, -34.601912000038737 ], [ -58.370383000375114, -34.600668000227984 ], [ -58.370661999751462, -34.599465999656104 ], [ -58.371027000395713, -34.598329000283115 ], [ -58.371177000118394, -34.59807200012267 ], [ -58.371670000370159, -34.597063000357139 ], [ -58.371755999839479, -34.596912999735082 ], [ -58.372099000368507, -34.596140000060927 ], [ -58.372334999560564, -34.595561000339842 ], [ -58.372722000320039, -34.594745999628117 ], [ -58.372872000042719, -34.594424000067534 ], [ -58.373193999603359, -34.594059000322545 ], [ -58.373516000063319, -34.593780000046934 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.376690999889718, -34.591870000100357 ], [ -58.377872000392472, -34.59109799957298 ], [ -58.378944000365266, -34.590390000198283 ], [ -58.379437999763866, -34.590110999922672 ], [ -58.380918999712037, -34.589317000179392 ], [ -58.381906000261665, -34.588779999697181 ], [ -58.382827999612459, -34.588287000344735 ], [ -58.383879999562282, -34.587685999609164 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.385918000015636, -34.586612999590216 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.388685999958909, -34.58509000040317 ], [ -58.389201000325841, -34.584811000127502 ], [ -58.38907700000351, -34.584618000220473 ], [ -58.390158000391352, -34.584136999622785 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.391668999924377, -34.583694999924262 ], [ -58.393170999941674, -34.582986999650245 ], [ -58.394351000398331, -34.582493000251702 ], [ -58.395959999954016, -34.581720999724325 ], [ -58.398062999807564, -34.580668999774502 ], [ -58.400229999914529, -34.579617999870777 ], [ -58.401411000417284, -34.578952999781052 ], [ -58.402161999976272, -34.578523999782703 ], [ -58.402634000158912, -34.578223000291189 ], [ -58.40347100008654, -34.577601000385812 ], [ -58.404929999919545, -34.576528000366864 ], [ -58.405808999985311, -34.575799000023778 ], [ -58.406645999912939, -34.575176000072304 ], [ -58.407590000278276, -34.574575000236052 ], [ -58.410959000057744, -34.572215000222059 ], [ -58.411087999711356, -34.572085999669127 ], [ -58.411217000264287, -34.571979000130682 ], [ -58.411582000009275, -34.571550000132333 ], [ -58.411709999616733, -34.57137800029443 ], [ -58.411839000169664, -34.571335000110139 ], [ -58.411988999892401, -34.571357000225362 ], [ -58.412610999797778, -34.571077999949694 ], [ -58.413320000117892, -34.570520000297734 ], [ -58.414633999559385, -34.56960600041657 ], [ -58.415294000317829, -34.569146999934048 ], [ -58.416451999759943, -34.567966000330614 ], [ -58.416560000243749, -34.567815999708557 ], [ -58.416666999782194, -34.567450999963626 ], [ -58.416774000219903, -34.567301000240946 ], [ -58.416946000057806, -34.567172999734112 ], [ -58.417911999639045, -34.566615000082152 ], [ -58.419413999656342, -34.565542000063203 ], [ -58.419627999632439, -34.5653700002253 ], [ -58.419735000070148, -34.565113000064855 ], [ -58.419906999908051, -34.564962000296021 ], [ -58.420571999997776, -34.563567999863267 ], [ -58.420830000204319, -34.563267000371752 ], [ -58.421151999764959, -34.562988000096084 ], [ -58.423855000307981, -34.562086999915095 ], [ -58.423940999777301, -34.561958000261484 ], [ -58.427482000294049, -34.559212000433433 ], [ -58.429970999961654, -34.557238000233497 ], [ -58.430592999867031, -34.556722999866508 ], [ -58.434154999553527, -34.55397599999236 ], [ -58.435239000079775, -34.554498999828922 ], [ -58.435400000309698, -34.554576999828612 ], [ -58.435484999732921, -34.554491000359349 ], [ -58.435656999570824, -34.554404999990709 ], [ -58.435956999915561, -34.554340999737292 ], [ -58.436343999775715, -34.554191000014612 ], [ -58.437502000117149, -34.554877000173349 ], [ -58.438317999975652, -34.553911999738943 ], [ -58.439111999718989, -34.55301000041112 ], [ -58.440248999991297, -34.55365400043172 ], [ -58.441365000194537, -34.554318999622069 ], [ -58.442180000006942, -34.553375000156109 ], [ -58.443296000210182, -34.554040000245777 ], [ -58.444412000413422, -34.554726999551349 ], [ -58.445548999786467, -34.555370999571949 ], [ -58.446642999874484, -34.556035999661617 ], [ -58.447715999893433, -34.556679999682217 ], [ -58.448509999636713, -34.555714000100977 ], [ -58.449304000279369, -34.554790999804766 ], [ -58.450119000091718, -34.553868999554652 ], [ -58.450912999835055, -34.552925000088635 ], [ -58.45125700041018, -34.552452999905995 ], [ -58.451622000155169, -34.552109000230132 ], [ -58.452308000313906, -34.551314999587532 ], [ -58.453015999688603, -34.550499999775127 ], [ -58.453251999779923, -34.55020000032971 ], [ -58.454046000422522, -34.549469999940527 ], [ -58.454196000145259, -34.549341000286915 ], [ -58.454432000236579, -34.549148000379887 ], [ -58.454732999728094, -34.548869000104219 ], [ -58.455033000072831, -34.548633000012899 ], [ -58.455140999657374, -34.548568999759482 ], [ -58.455333999564402, -34.54844000010587 ], [ -58.455762999562751, -34.548032000176647 ], [ -58.456557000205351, -34.54732399990263 ], [ -58.457372000017756, -34.546701999997254 ], [ -58.458165999761036, -34.546036999907585 ], [ -58.458981999619539, -34.545371999817917 ], [ -58.459797000331264, -34.544705999682094 ], [ -58.460677000443184, -34.543934000054037 ], [ -58.461320000417629, -34.54331200014866 ], [ -58.462028999838424, -34.542689000197186 ], [ -58.462628999628578, -34.542089000406975 ], [ -58.463187000179857, -34.541530999855695 ], [ -58.463380000086886, -34.541336999902569 ], [ -58.463831000200457, -34.540693999928124 ], [ -58.464388999852417, -34.539857000000495 ], [ -58.464861000035057, -34.53904200018809 ], [ -58.465847999685423, -34.539556999655758 ], [ -58.466792000050702, -34.540028999838455 ], [ -58.466856000304119, -34.540070999976649 ], [ -58.467736000416039, -34.540522000090164 ], [ -58.468658999812931, -34.54099400027286 ], [ -58.469603000178267, -34.541465999556181 ], [ -58.470525999575159, -34.541937999738877 ], [ -58.471491000009621, -34.542388999852392 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476821000288908, -34.537028999988308 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.482242000268059, -34.526660000258744 ], [ -58.482649000151184, -34.525908999800436 ], [ -58.482734999620504, -34.52573800000863 ], [ -58.483143000449047, -34.52502999973467 ], [ -58.483272000102659, -34.524814999712419 ], [ -58.483765000354424, -34.52391400043075 ], [ -58.484301999937315, -34.522970000065413 ], [ -58.484752000004733, -34.522089999953494 ], [ -58.485288999587624, -34.520910000396157 ], [ -58.486705000135601, -34.521617999770854 ], [ -58.487842000407966, -34.522111000022562 ], [ -58.488443000244217, -34.522412000413453 ], [ -58.489087000264817, -34.522755000043162 ], [ -58.489837999823806, -34.523119999788094 ], [ -58.490760000073919, -34.52359199997079 ], [ -58.490888999727531, -34.523656000224207 ], [ -58.491939999631256, -34.524192999807042 ], [ -58.492284000206382, -34.52438599971407 ], [ -58.493121000134011, -34.524814999712419 ], [ -58.493699999855096, -34.525072999918962 ], [ -58.494085999669096, -34.52526599982599 ], [ -58.494451000313347, -34.525436999617796 ], [ -58.495460000078879, -34.525951999984784 ], [ -58.496682999820564, -34.526531999751967 ], [ -58.497863000277221, -34.527132999588218 ], [ -58.498999999650209, -34.527690000093401 ], [ -58.500202000222089, -34.528269999860584 ], [ -58.501424999963717, -34.528870999696835 ], [ -58.502647999705403, -34.52945000031724 ], [ -58.503807000092934, -34.530029000038269 ], [ -58.504965000434368, -34.530608999805452 ], [ -58.505629999624716, -34.530909000150189 ], [ -58.506188000176053, -34.531167000356731 ], [ -58.507389999848556, -34.531746000077817 ], [ -58.508570000305212, -34.532303999729777 ], [ -58.510136999722704, -34.533076000257154 ], [ -58.510952000434429, -34.532690000443097 ], [ -58.511810000431126, -34.532303999729777 ], [ -58.512668999574657, -34.531938999984845 ], [ -58.513484000286326, -34.531553000170788 ], [ -58.514793000396594, -34.530651999989743 ], [ -58.515500999771291, -34.530179999807103 ], [ -58.515908999700514, -34.52992199960056 ], [ -58.516165999860959, -34.52968600040856 ], [ -58.517368000432839, -34.530308000313937 ], [ -58.517817999600936, -34.529749999762657 ], [ -58.518226000429536, -34.529149999972503 ], [ -58.518676999643787, -34.528549000136195 ], [ -58.519148999826427, -34.527884000046527 ], [ -58.520199999730153, -34.528440999652389 ], [ -58.52067199991285, -34.528698999858932 ], [ -58.521251999679976, -34.528978000134543 ], [ -58.522302999583701, -34.529492999602212 ], [ -58.523396999671775, -34.530051000153492 ], [ -58.52462100035882, -34.530651999989743 ], [ -58.524898999689071, -34.53080199971248 ], [ -58.525757999731866, -34.531230999710829 ], [ -58.526573000443591, -34.531617000424205 ], [ -58.527645999563163, -34.532131999891817 ], [ -58.528546999744208, -34.532560999890165 ], [ -58.528718999582111, -34.532647000258805 ], [ -58.529727000200864, -34.533161999726474 ], [ -58.530779000150687, -34.533677000093462 ], [ -58.531659000262607, -34.533826999816142 ], [ -58.533118000095612, -34.534364000298353 ], [ -58.533911999838892, -34.534620999559422 ], [ -58.534877000273298, -34.535007000272799 ], [ -58.535606999763161, -34.535307999764314 ], [ -58.535842999854538, -34.535394000132953 ], [ -58.536787000219817, -34.535715999693593 ], [ -58.538032000076726, -34.536187999876233 ], [ -58.5388679999582, -34.536510000336193 ], [ -58.539727000000994, -34.536830999850736 ], [ -58.540348999906371, -34.53704599987293 ], [ -58.540800000019942, -34.536231000060582 ], [ -58.541185999833999, -34.535500999671342 ], [ -58.542043999830696, -34.534750000112354 ], [ -58.542429999644753, -34.534449999767617 ], [ -58.542859999689199, -34.534085000022685 ], [ -58.543481999594576, -34.533569999655697 ], [ -58.544061000214924, -34.533055000188085 ], [ -58.544726000304649, -34.532454000351777 ], [ -58.544877000073427, -34.532324999798846 ], [ -58.545520000047929, -34.531789000262108 ], [ -58.547429999994449, -34.530136999622812 ], [ -58.548589000382037, -34.52912799985728 ], [ -58.549597000101414, -34.528290999929652 ], [ -58.550562999682654, -34.527432999932955 ], [ -58.551528000117059, -34.526574999936258 ], [ -58.552515999813522, -34.52573800000863 ], [ -58.55350300036315, -34.524814999712419 ], [ -58.554554000266876, -34.52397799978479 ], [ -58.554919000011807, -34.523699000408499 ], [ -58.555669999570796, -34.523013000249705 ], [ -58.556700000304716, -34.52215400020691 ], [ -58.556850000027453, -34.522025999700077 ], [ -58.557365000394384, -34.521532000301534 ], [ -58.557730000139372, -34.521231999956797 ], [ -58.557944000115469, -34.521060000118894 ], [ -58.558609000205138, -34.520501999567557 ], [ -58.559489000317058, -34.519751000008625 ], [ -58.559789999808629, -34.519429000447985 ], [ -58.560261999991269, -34.519000000449637 ], [ -58.561206000356606, -34.51829200017562 ], [ -58.562128999753497, -34.517518999602089 ], [ -58.563158999588097, -34.51661800032042 ], [ -58.564146000137782, -34.515760000323723 ], [ -58.565132999788091, -34.514880000211804 ], [ -58.566183999691816, -34.514022000215107 ], [ -58.567193000356667, -34.513142000103187 ], [ -58.566376999598788, -34.512498000082587 ], [ -58.565539999671216, -34.511832999992919 ], [ -58.564745999927936, -34.511188999972319 ], [ -58.566077000153371, -34.510138000068594 ], [ -58.565068000387839, -34.509171999588091 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 120.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619867, -34.648044 ], [ -58.621079, -34.648142 ], [ -58.621079, -34.647974 ], [ -58.621057, -34.647353 ], [ -58.621053, -34.646991 ], [ -58.621047, -34.646406 ], [ -58.62103, -34.645477 ], [ -58.621025, -34.644528 ], [ -58.620985, -34.643562 ], [ -58.622374, -34.642402 ], [ -58.621576, -34.641625 ], [ -58.620634, -34.640652 ], [ -58.620596, -34.640621 ], [ -58.619593, -34.639785 ], [ -58.619053, -34.639343 ], [ -58.618582, -34.638958 ], [ -58.617544, -34.638095 ], [ -58.617525, -34.638084 ], [ -58.616643, -34.63735 ], [ -58.615762, -34.636617 ], [ -58.614846, -34.635849 ], [ -58.614173, -34.635286 ], [ -58.613045, -34.634364 ], [ -58.612867, -34.634219 ], [ -58.612751, -34.634113 ], [ -58.612627, -34.633988 ], [ -58.61238, -34.633642 ], [ -58.612311, -34.633459 ], [ -58.611724, -34.63195 ], [ -58.611617, -34.631811 ], [ -58.611427, -34.631562 ], [ -58.611214, -34.631356 ], [ -58.610943, -34.631199 ], [ -58.610649, -34.631091 ], [ -58.610129, -34.630822 ], [ -58.609967, -34.630616 ], [ -58.609462, -34.629977 ], [ -58.609278, -34.629627 ], [ -58.609198, -34.629387 ], [ -58.609159, -34.629061 ], [ -58.60904, -34.62893 ], [ -58.608802, -34.628849 ], [ -58.608561, -34.628856 ], [ -58.607915, -34.629639 ], [ -58.60723, -34.630428 ], [ -58.606644, -34.631128 ], [ -58.605752, -34.629952 ], [ -58.604257, -34.629208 ], [ -58.602972, -34.628517 ], [ -58.602362, -34.629288 ], [ -58.602172, -34.629533 ], [ -58.601907, -34.629869 ], [ -58.601471, -34.630424 ], [ -58.600971999999899, -34.631057 ], [ -58.60072, -34.631379 ], [ -58.600493, -34.631632 ], [ -58.600377, -34.631781 ], [ -58.599575, -34.632793 ], [ -58.599431, -34.633006 ], [ -58.600694, -34.633737 ], [ -58.601963, -34.634452 ], [ -58.60316, -34.63515 ], [ -58.602768, -34.635626 ], [ -58.602487, -34.63595 ], [ -58.601714, -34.63684 ], [ -58.601402, -34.63719 ], [ -58.600723, -34.638016 ], [ -58.600002, -34.638827 ], [ -58.599071, -34.638702 ], [ -58.59762, -34.638504 ], [ -58.596136, -34.638315 ], [ -58.595361, -34.63822 ], [ -58.594891, -34.638813 ], [ -58.594797, -34.638931 ], [ -58.594038, -34.639883 ], [ -58.593473, -34.639812 ], [ -58.592372, -34.639696 ], [ -58.591294, -34.639565 ], [ -58.590195, -34.639444 ], [ -58.589116, -34.639317 ], [ -58.588019, -34.639194 ], [ -58.586942, -34.639056 ], [ -58.58595, -34.638953 ], [ -58.584969, -34.638828 ], [ -58.584383, -34.638287 ], [ -58.583809, -34.637747 ], [ -58.582603, -34.63861 ], [ -58.580499, -34.640184 ], [ -58.579598, -34.640861 ], [ -58.578866, -34.641418 ], [ -58.578254999999899, -34.640854 ], [ -58.577999, -34.640683 ], [ -58.576566, -34.640449 ], [ -58.575102999999899, -34.640209 ], [ -58.573664, -34.639977 ], [ -58.572191, -34.639731 ], [ -58.570764, -34.639494 ], [ -58.570609, -34.64007 ], [ -58.569241, -34.639865 ], [ -58.567575, -34.639526 ], [ -58.566193, -34.639278 ], [ -58.565334, -34.639121 ], [ -58.565609, -34.63808 ], [ -58.565642, -34.637491 ], [ -58.566121, -34.6372 ], [ -58.566423, -34.637025 ], [ -58.5677, -34.636243 ], [ -58.567976, -34.636083 ], [ -58.568324, -34.635856 ], [ -58.569265, -34.635278 ], [ -58.57022, -34.634696 ], [ -58.570379, -34.634602 ], [ -58.571169, -34.634113 ], [ -58.571402, -34.633984 ], [ -58.572135, -34.63353 ], [ -58.572424, -34.633362 ], [ -58.573108, -34.632945 ], [ -58.573793, -34.632527 ], [ -58.574044999999899, -34.632361 ], [ -58.574974, -34.631795 ], [ -58.575201, -34.631641 ], [ -58.575207, -34.631516 ], [ -58.574861, -34.630881 ], [ -58.574156, -34.630894 ], [ -58.573064, -34.630442 ], [ -58.571548, -34.629767 ], [ -58.570638, -34.629349 ], [ -58.569748, -34.628934 ], [ -58.568443, -34.628329 ], [ -58.567705, -34.627979 ], [ -58.566962, -34.627629 ], [ -58.566219, -34.627273 ], [ -58.565427, -34.62691 ], [ -58.565173, -34.626821 ], [ -58.564278, -34.626433 ], [ -58.563334, -34.626023 ], [ -58.56169, -34.625332 ], [ -58.56041, -34.624795 ], [ -58.560042, -34.624638 ], [ -58.558414, -34.623953 ], [ -58.557964, -34.623747 ], [ -58.556799, -34.623251 ], [ -58.556563, -34.623136 ], [ -58.555817, -34.622847 ], [ -58.555405, -34.622645 ], [ -58.55458, -34.622284 ], [ -58.554435, -34.622222 ], [ -58.55367, -34.621921 ], [ -58.553015, -34.621655 ], [ -58.552891, -34.621607 ], [ -58.552263, -34.621364 ], [ -58.551909, -34.621216 ], [ -58.551447, -34.621051 ], [ -58.551007, -34.620858 ], [ -58.55015, -34.620494 ], [ -58.549243, -34.62015 ], [ -58.548396, -34.619802 ], [ -58.547441, -34.619432 ], [ -58.547054, -34.619273 ], [ -58.546193, -34.618962 ], [ -58.545308, -34.61866 ], [ -58.544926, -34.618531 ], [ -58.544713, -34.618441 ], [ -58.54364, -34.617991 ], [ -58.542882, -34.617704 ], [ -58.542313, -34.617466 ], [ -58.541387, -34.617125 ], [ -58.540181, -34.616703 ], [ -58.538938, -34.616259 ], [ -58.537643, -34.61575 ], [ -58.536708, -34.615425 ], [ -58.535551, -34.615942 ], [ -58.534375, -34.616487 ], [ -58.53331, -34.61702 ], [ -58.533055, -34.616618 ], [ -58.531774, -34.617362 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 119.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.262447725703645, -34.724166919336682 ], [ -58.261049457175176, -34.72605634168464 ], [ -58.262758896445959, -34.726907461658492 ], [ -58.270866934091558, -34.730591115304719 ], [ -58.264521930677532, -34.739060718954256 ], [ -58.263899589192896, -34.73997903261025 ], [ -58.261648600841042, -34.743210728751535 ], [ -58.269931022090304, -34.747858291766612 ], [ -58.274660177433681, -34.749904499372903 ], [ -58.278806987531816, -34.751824318862781 ], [ -58.283049788604451, -34.754160099242135 ], [ -58.288150109049234, -34.75678385254497 ], [ -58.288076515968783, -34.757174215841239 ], [ -58.292344914634633, -34.759273218483514 ], [ -58.294632699526737, -34.760540299346836 ], [ -58.293149638970775, -34.761893772087205 ], [ -58.29471429185503, -34.762711295219994 ], [ -58.30048174957254, -34.765853399785108 ], [ -58.312613408898976, -34.772955132048082 ], [ -58.311635900808724, -34.77404782930774 ], [ -58.310645593921876, -34.775148525815261 ], [ -58.309696883123934, -34.776233223827042 ], [ -58.306687566073577, -34.779525714252173 ], [ -58.305188507021917, -34.781173559314325 ], [ -58.30814022948762, -34.7829653908382 ], [ -58.30767467326131, -34.783563734579211 ], [ -58.306170814660902, -34.782667818817266 ], [ -58.303028710095802, -34.786065899314352 ], [ -58.305540473928396, -34.787614553702859 ], [ -58.309869666878086, -34.790305500687836 ], [ -58.311383124575926, -34.791249411937024 ], [ -58.304068612319476, -34.801194076894596 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 118.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.369122999826516, -34.598302999983446 ], [ -58.369180999803234, -34.598286000098767 ], [ -58.369566999617291, -34.598199999730184 ], [ -58.369482000194125, -34.599359000117715 ], [ -58.369310000356165, -34.600538999675052 ], [ -58.370383000375114, -34.600668000227984 ], [ -58.370489999913502, -34.600689000297109 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.371262999587714, -34.600774999766372 ], [ -58.372613999836176, -34.600861000135012 ], [ -58.373988000245959, -34.600989999788624 ], [ -58.375360999710324, -34.601076000157263 ], [ -58.376756000189232, -34.601119000341555 ], [ -58.378171999837889, -34.601203999764721 ], [ -58.379609999601769, -34.601269000064235 ], [ -58.381069000334037, -34.601312000248583 ], [ -58.381604999870831, -34.601333000317652 ], [ -58.381927000330734, -34.601355000432875 ], [ -58.382378000444305, -34.601375999602681 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.38463100002059, -34.601397999717847 ], [ -58.384973999650299, -34.601439999856041 ], [ -58.385230999810744, -34.601526000224681 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.386648000404875, -34.60272799989724 ], [ -58.387956999615824, -34.602877999619921 ], [ -58.389458999633064, -34.603028000241977 ], [ -58.390853000065874, -34.603092999642172 ], [ -58.391174999626514, -34.603113999711297 ], [ -58.392420000382685, -34.603135999826463 ], [ -58.393985999754022, -34.60320000007988 ], [ -58.395424000417222, -34.603243000264229 ], [ -58.396926000434519, -34.603264000333297 ], [ -58.398364000198399, -34.60328600044852 ], [ -58.399564999824861, -34.603349999802617 ], [ -58.400917000119421, -34.603415000102132 ], [ -58.402205000160563, -34.603415000102132 ], [ -58.403620999809277, -34.603392999986909 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.406324000352299, -34.603156999895589 ], [ -58.407418999587094, -34.603028000241977 ], [ -58.408470000390139, -34.60296399998856 ], [ -58.40868500041239, -34.603500000424617 ], [ -58.408920999604391, -34.604101000260926 ], [ -58.409370999671864, -34.605259999749137 ], [ -58.409972000407436, -34.606739999651211 ], [ -58.411344999871801, -34.606546999744182 ], [ -58.412417999890749, -34.606397000021502 ], [ -58.413640999632378, -34.606096999676765 ], [ -58.414928999673577, -34.605839000369542 ], [ -58.416022999761594, -34.605645999563194 ], [ -58.417052999596194, -34.605473999725291 ], [ -58.418361999706462, -34.605259999749137 ], [ -58.418619999913005, -34.606761999766434 ], [ -58.418663000097354, -34.607277000133422 ], [ -58.418769999635742, -34.608520999944176 ], [ -58.418640999982131, -34.60961600007829 ], [ -58.418469000144228, -34.611031999726947 ], [ -58.417826000169725, -34.612470000390147 ], [ -58.417267999618446, -34.613863999923637 ], [ -58.417138999964834, -34.614530000059403 ], [ -58.417010000311222, -34.615688000400837 ], [ -58.416923999942583, -34.616631999866854 ], [ -58.416859999689166, -34.617319000071745 ], [ -58.416731000035554, -34.618541999813374 ], [ -58.416623999597846, -34.619786999670282 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.416388000405846, -34.622447000029013 ], [ -58.416280999968137, -34.623349000256098 ], [ -58.416215999668623, -34.624014000345824 ], [ -58.417052999596194, -34.624464999560018 ], [ -58.417760999870211, -34.624506999698212 ], [ -58.419113000164771, -34.624593000066852 ], [ -58.420528999813428, -34.624700999651395 ], [ -58.421129999649736, -34.624721999720464 ], [ -58.421860000038919, -34.624764999904755 ], [ -58.422525000128587, -34.624808000089104 ], [ -58.423212000333535, -34.624872000342521 ], [ -58.424520000397649, -34.624936999742715 ], [ -58.425980000276752, -34.625044000180424 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.428596999551871, -34.625258000156521 ], [ -58.430078000399362, -34.625429999994481 ], [ -58.431407999679379, -34.625558999648092 ], [ -58.43282500027351, -34.625709000270092 ], [ -58.433124999718927, -34.624292999722115 ], [ -58.433254000271859, -34.623670999816738 ], [ -58.433425000063664, -34.62292000025775 ], [ -58.434648999851447, -34.623026999796139 ], [ -58.436279000375521, -34.623219999703167 ], [ -58.436889999773655, -34.623219999703167 ], [ -58.437738000208526, -34.623198999634099 ], [ -58.438510999882681, -34.623113000164778 ], [ -58.43891899981196, -34.623069999980487 ], [ -58.439434000178949, -34.623026999796139 ], [ -58.440789999758636, -34.622883000350157 ], [ -58.440849999827606, -34.622877000073458 ], [ -58.441214999572537, -34.622854999958236 ], [ -58.441922999846497, -34.622833999889167 ], [ -58.442780999843251, -34.622790999704819 ], [ -58.443617999770822, -34.623004999680973 ], [ -58.444991000134507, -34.623821000438795 ], [ -58.445678000339399, -34.624207000252795 ], [ -58.446499999575281, -34.62467999958227 ], [ -58.446536000336096, -34.624700999651395 ], [ -58.447479999802113, -34.625172999834035 ], [ -58.447908999800461, -34.625386999810132 ], [ -58.44905400044172, -34.625959000107741 ], [ -58.449111000372341, -34.625987999646441 ], [ -58.450054999838358, -34.626438999760012 ], [ -58.450978000134569, -34.62693200001172 ], [ -58.452875000380914, -34.627891000169484 ], [ -58.453974999846309, -34.628566999867132 ], [ -58.454003000238231, -34.628583999751754 ], [ -58.454647000258831, -34.628991999680977 ], [ -58.455484000186402, -34.629292000025714 ], [ -58.456041999838362, -34.629485999978897 ], [ -58.456535000090128, -34.629635999701577 ], [ -58.457608000109076, -34.629979000230605 ], [ -58.458766999597287, -34.630321999860371 ], [ -58.460096999776681, -34.630751999904817 ], [ -58.461728000346909, -34.631267000271805 ], [ -58.463100999811275, -34.631674000154931 ], [ -58.464453000105834, -34.63208200008421 ], [ -58.465784000331325, -34.632490000013433 ], [ -58.467177999864759, -34.632919000011782 ], [ -58.468486999975028, -34.633326999941062 ], [ -58.470011000107547, -34.633733999824187 ], [ -58.471190999664884, -34.634098999569119 ], [ -58.472284999752901, -34.63446400021337 ], [ -58.473357999771849, -34.634850000027427 ], [ -58.4743670004367, -34.635214999772359 ], [ -58.4753970002713, -34.635643999770707 ], [ -58.476404999990734, -34.636072999769056 ], [ -58.477349000356014, -34.636480999698335 ], [ -58.478551000028574, -34.636973999950101 ], [ -58.480053000045871, -34.637661000154992 ], [ -58.480417999790802, -34.637832999992895 ], [ -58.481468999694528, -34.63832600024466 ], [ -58.481747999970196, -34.638432999783049 ], [ -58.482885000242504, -34.63897000026526 ], [ -58.483894000008036, -34.639421000378832 ], [ -58.484602000282052, -34.63976400000854 ], [ -58.484880999658344, -34.639892999662152 ], [ -58.485309999656693, -34.640106999638306 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.486962000296046, -34.64088000021178 ], [ -58.487799000223617, -34.641287000094962 ], [ -58.488721999620566, -34.641716000093311 ], [ -58.489559000447457, -34.642102999953465 ], [ -58.490160000283765, -34.642403000298202 ], [ -58.490910999842754, -34.642768000043134 ], [ -58.491640000185839, -34.643110999672842 ], [ -58.492284000206382, -34.643412000063734 ], [ -58.493614000385776, -34.644055000038179 ], [ -58.494687000404724, -34.644527000220819 ], [ -58.495095000333947, -34.644721000174002 ], [ -58.495180999803267, -34.644806999643265 ], [ -58.495223999987559, -34.644848999781459 ], [ -58.496038999799964, -34.64562200035499 ], [ -58.496790000258272, -34.646329999729687 ], [ -58.497540999817261, -34.647016999934579 ], [ -58.498292000275569, -34.647703000093315 ], [ -58.499042999834558, -34.648390000298207 ], [ -58.499428999648558, -34.648755000043195 ], [ -58.499794000292866, -34.649097999672904 ], [ -58.500544999851797, -34.649784999877795 ], [ -58.501296000310106, -34.650471000036589 ], [ -58.502196999591831, -34.65130799996416 ], [ -58.50309799977282, -34.652209000145206 ], [ -58.504021000069031, -34.653089000257125 ], [ -58.504621999905339, -34.653646999909085 ], [ -58.505715999993356, -34.654440999652365 ], [ -58.506488999667567, -34.655020000272771 ], [ -58.507196999941527, -34.655556999855605 ], [ -58.508183999591893, -34.654827000365742 ], [ -58.509277999679909, -34.654054999838309 ], [ -58.509900999631384, -34.654676999743685 ], [ -58.508827999612436, -34.655449000271119 ], [ -58.507948000399836, -34.656093000291662 ], [ -58.507004000034556, -34.65693000021929 ], [ -58.50578100029287, -34.657916999869599 ], [ -58.504578999721048, -34.658904000419227 ], [ -58.503119999888042, -34.660127000160912 ], [ -58.501661000055094, -34.661328999833415 ], [ -58.500180000106866, -34.662551999575101 ], [ -58.500930999665854, -34.663174000379797 ], [ -58.501747000423677, -34.663838999570146 ], [ -58.502541000166957, -34.664504999705912 ], [ -58.503227000325751, -34.665084000326317 ], [ -58.503355999979362, -34.665169999795637 ], [ -58.504149999722642, -34.665834999885305 ], [ -58.504944000365299, -34.666478999905905 ], [ -58.505738000108579, -34.667165000064642 ], [ -58.506531999851859, -34.667830000154368 ], [ -58.507325999595139, -34.668474000174911 ], [ -58.508098000122573, -34.66911800019551 ], [ -58.508785000327464, -34.66976200021611 ], [ -58.508827999612436, -34.669805000400402 ], [ -58.509150000072395, -34.670169000099236 ], [ -58.509513999771229, -34.670490999659876 ], [ -58.510265000229538, -34.671112999565253 ], [ -58.510972999604235, -34.671756999585796 ], [ -58.511702999993418, -34.672443999790687 ], [ -58.512154000106989, -34.672851999719967 ], [ -58.512583000105337, -34.673238000433344 ], [ -58.513140999757297, -34.673752999900955 ], [ -58.513741000446771, -34.674289000337069 ], [ -58.51425599991444, -34.674760999620389 ], [ -58.514771000281371, -34.675275999987377 ], [ -58.515179000210651, -34.675640999732309 ], [ -58.515780000046902, -34.676199000283589 ], [ -58.516981999719462, -34.676864000373257 ], [ -58.517518000155519, -34.677207000003023 ], [ -58.518096999876605, -34.677614999932246 ], [ -58.518547999990176, -34.677937000392205 ], [ -58.519213000079844, -34.678387999606457 ], [ -58.519749999662736, -34.678731000135485 ], [ -58.520286000098793, -34.679116999949542 ], [ -58.520800999566461, -34.679481999694474 ], [ -58.521444999587004, -34.679932999808045 ], [ -58.521508999840421, -34.679889999623754 ], [ -58.522302999583701, -34.680426000059811 ], [ -58.523140000410649, -34.681004999780896 ], [ -58.523955000223054, -34.68154200026305 ], [ -58.524771000081557, -34.68209999991501 ], [ -58.525629000078254, -34.682721999820387 ], [ -58.526316000283146, -34.683301000440792 ], [ -58.527087999911203, -34.683924000392267 ], [ -58.528011000207471, -34.684674999951255 ], [ -58.528676000297139, -34.685211000387312 ], [ -58.529341000386808, -34.685725999854981 ], [ -58.529963000292184, -34.68628400040626 ], [ -58.530607000312784, -34.686863000127289 ], [ -58.531143999895619, -34.687377999594958 ], [ -58.531743999685773, -34.687915000077169 ], [ -58.530649999597756, -34.68875200000474 ], [ -58.529556000409059, -34.689566999817146 ], [ -58.528461000274888, -34.690381999629551 ], [ -58.527431000440288, -34.691155000203025 ], [ -58.527903999769705, -34.691497999832791 ], [ -58.528117999745859, -34.691627000385722 ], [ -58.528975999742556, -34.692206000106751 ], [ -58.529169999695682, -34.692356999875585 ], [ -58.53039300033663, -34.693235999941407 ], [ -58.531121999780453, -34.693708000124047 ], [ -58.531593999963093, -34.694029999684687 ], [ -58.531852000169636, -34.694180000306744 ], [ -58.532710000166333, -34.694737999958704 ], [ -58.532838999819944, -34.694824000327287 ], [ -58.533375000256001, -34.69516800000315 ], [ -58.534040000345726, -34.695597000001499 ], [ -58.534212000183629, -34.695704000439207 ], [ -58.534748999766464, -34.696025999999847 ], [ -58.535478000109549, -34.696454999998195 ], [ -58.536250999783761, -34.696927000180892 ], [ -58.537023000311194, -34.697378000294407 ], [ -58.537903000423114, -34.697913999831201 ], [ -58.538588999682531, -34.698321999760424 ], [ -58.539169000349034, -34.698687000404675 ], [ -58.539770000185342, -34.69903000003444 ], [ -58.540048999561634, -34.699222999941469 ], [ -58.540520999744274, -34.699481000148012 ], [ -58.541036000111262, -34.699651999939817 ], [ -58.541529000363028, -34.699651999939817 ], [ -58.541829999854542, -34.699523000286206 ], [ -58.542087000014988, -34.699545000401429 ], [ -58.542173000383627, -34.699608999755469 ], [ -58.542236999737725, -34.699844999846846 ], [ -58.542193999553376, -34.700103000053389 ], [ -58.542215999668599, -34.700360000213777 ], [ -58.542258999852947, -34.70046799979832 ], [ -58.542795000289004, -34.701025000303503 ], [ -58.543375000056187, -34.701539999771114 ], [ -58.544898000142553, -34.702935000250022 ], [ -58.547750000362214, -34.705458999733025 ], [ -58.547881000108021, -34.705574999686462 ], [ -58.548867999758329, -34.706519000051742 ], [ -58.549597000101414, -34.707140999957119 ], [ -58.550970999611877, -34.707698999609079 ], [ -58.551206999703254, -34.707784999977719 ], [ -58.552128999953368, -34.708170999791776 ], [ -58.552536999882591, -34.708342999629679 ], [ -58.552794000043036, -34.708664000043541 ], [ -58.553095000433871, -34.709007999719347 ], [ -58.557407999679413, -34.711325000448369 ], [ -58.562644000120486, -34.714093000391586 ], [ -58.563287000094931, -34.714673000158768 ], [ -58.5638019995626, -34.715145000341465 ], [ -58.563887999931239, -34.715208999695562 ], [ -58.564445999583199, -34.715702999993425 ], [ -58.565004000134479, -34.716218000360357 ], [ -58.565561999786439, -34.716710999712802 ], [ -58.566120000337719, -34.717205000010722 ], [ -58.566699000058748, -34.717741000446779 ], [ -58.567299999895056, -34.718255999914447 ], [ -58.567900999731307, -34.718813999566407 ], [ -58.568522999636684, -34.719350000002464 ], [ -58.569102000257089, -34.719886999585299 ], [ -58.569659999909049, -34.720423000021412 ], [ -58.570239999676176, -34.720980999673372 ], [ -58.568866000165713, -34.721947000153875 ], [ -58.568008000169016, -34.722590000128378 ], [ -58.566334000313816, -34.723834999985229 ], [ -58.565604999970731, -34.724413999706258 ], [ -58.564832000296519, -34.72499400037276 ], [ -58.564382000229102, -34.725337000002526 ], [ -58.564146000137782, -34.725529999909497 ], [ -58.563436999817668, -34.726024000207417 ], [ -58.562665000189554, -34.726623999997571 ], [ -58.561956999915594, -34.727139000364559 ], [ -58.561312999894994, -34.727653999832171 ], [ -58.557160999980113, -34.730744000235404 ], [ -58.553267000271831, -34.733640999832232 ], [ -58.554875999827516, -34.734498999828929 ], [ -58.558380000436614, -34.736356000029332 ], [ -58.559210000041446, -34.736794999589506 ], [ -58.560454999898298, -34.737438999610106 ], [ -58.563498999978833, -34.739059999719188 ], [ -58.564403000298171, -34.739542000362974 ], [ -58.565754999693468, -34.740249999737671 ], [ -58.566119000291565, -34.740481999644544 ], [ -58.567407000332764, -34.741301999687494 ], [ -58.567900999731307, -34.741602000032231 ], [ -58.568586999890101, -34.742031000030579 ], [ -58.569166999657284, -34.742416999844636 ], [ -58.569939000184661, -34.742824999773859 ], [ -58.570432999583204, -34.743104000049527 ], [ -58.571505999602152, -34.743661999701487 ], [ -58.572856999850615, -34.744391000044573 ], [ -58.574252000329523, -34.745121000433755 ], [ -58.575603999724763, -34.745850999923675 ], [ -58.576999000203671, -34.746580000266761 ], [ -58.578050000107396, -34.747137999918721 ], [ -58.578800999666385, -34.747523999732778 ], [ -58.579574000239859, -34.747931999662001 ], [ -58.580345999867973, -34.748339999591281 ], [ -58.581054000141933, -34.748747000373726 ], [ -58.58120399986467, -34.748832999843046 ], [ -58.581590999724824, -34.74904799986524 ], [ -58.582599000343578, -34.749520000047937 ], [ -58.583585999993886, -34.750035000414869 ], [ -58.584445000036681, -34.750484999583023 ], [ -58.584650999643884, -34.750579000320556 ], [ -58.584851999919806, -34.750699999605274 ], [ -58.585603000378114, -34.751108000433817 ], [ -58.586612000143646, -34.751622999901485 ], [ -58.587663000047371, -34.752116000153251 ], [ -58.5878559999544, -34.752201999622514 ], [ -58.588758000181542, -34.752480999898182 ], [ -58.589293999718279, -34.752652999736085 ], [ -58.589830000154336, -34.752824000427211 ], [ -58.591010999757771, -34.753145999987851 ], [ -58.592125999914913, -34.753447000378742 ], [ -58.592898999589124, -34.753661000354839 ], [ -58.593842999954461, -34.753939999731188 ], [ -58.595581000063078, -34.754411999913827 ], [ -58.596482000244066, -34.75467000012037 ], [ -58.597362000355986, -34.754927000280816 ], [ -58.598541999913323, -34.755269999910524 ], [ -58.599701000300911, -34.755571000301359 ], [ -58.600752000204579, -34.755892999861999 ], [ -58.601095999880442, -34.756000000299707 ], [ -58.601632000316499, -34.756150000022444 ], [ -58.602532999598225, -34.756408000228987 ], [ -58.603670999916687, -34.756729999789627 ], [ -58.604957999911733, -34.757094000387781 ], [ -58.606223999837709, -34.757438000063587 ], [ -58.608069000384035, -34.757973999600381 ], [ -58.609592999617178, -34.758402999598729 ], [ -58.610300999891194, -34.758511000082535 ], [ -58.61199599981552, -34.758532000151661 ], [ -58.612919000111731, -34.758596000405078 ], [ -58.613605000270525, -34.758917999965661 ], [ -58.614485000382444, -34.759518999801969 ], [ -58.615171999688016, -34.759798000077581 ], [ -58.616159000237644, -34.760056000284123 ], [ -58.616737999958673, -34.760034000168957 ], [ -58.617145999887953, -34.759990999984609 ], [ -58.617810999977621, -34.760013000099832 ], [ -58.618112000368455, -34.760098000422317 ], [ -58.618326000344609, -34.760162999822512 ], [ -58.620021000268935, -34.760485000282472 ], [ -58.620750999758798, -34.760612999889986 ], [ -58.621097000426175, -34.760670999866704 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 117.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.350620000012952, -34.652896000350097 ], [ -58.349954999923284, -34.652917000419166 ], [ -58.349225999580199, -34.652938999635069 ], [ -58.348517000159404, -34.652959999704194 ], [ -58.34783100000061, -34.652959999704194 ], [ -58.347122999726594, -34.652981999819417 ], [ -58.346415000351953, -34.652981999819417 ], [ -58.346456999590828, -34.654162000276074 ], [ -58.346478999706051, -34.655341999833354 ], [ -58.346499999775119, -34.655792999946925 ], [ -58.346499999775119, -34.656435999921428 ], [ -58.346542999959468, -34.657680999778279 ], [ -58.346586000143759, -34.658861000234936 ], [ -58.346608000258982, -34.658989999888547 ], [ -58.348023999907639, -34.659719000231632 ], [ -58.348237999883736, -34.659870000000467 ], [ -58.34871100011253, -34.660149000276078 ], [ -58.34941900038649, -34.660556000159261 ], [ -58.350791999850856, -34.661243000364152 ], [ -58.352100999961124, -34.662014999992209 ], [ -58.353410000071392, -34.662787999666421 ], [ -58.354632999813077, -34.663452999756089 ], [ -58.354783000435077, -34.663560000193797 ], [ -58.355533999994066, -34.662681000128032 ], [ -58.356221000198957, -34.661887000384695 ], [ -58.356499999575306, -34.661585999993861 ], [ -58.356713999551403, -34.661521999740444 ], [ -58.357251000033557, -34.661478999556152 ], [ -58.357337000402197, -34.661393000086832 ], [ -58.358022999661671, -34.661887000384695 ], [ -58.359246000302619, -34.662765999551198 ], [ -58.360748000319916, -34.663881999754437 ], [ -58.361349000156167, -34.664289999683717 ], [ -58.362873000288687, -34.665405999886957 ], [ -58.363837999823772, -34.666114000160917 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370365999591172, -34.658246999799132 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.372273000298662, -34.652497999982643 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.372613999836176, -34.651544000055537 ], [ -58.37323699978765, -34.650342000382977 ], [ -58.373941999923318, -34.649138999765 ], [ -58.373966000130736, -34.649097999672904 ], [ -58.374480999598404, -34.648088999907372 ], [ -58.374825000173587, -34.647359999564287 ], [ -58.375232000056712, -34.646350999798756 ], [ -58.375455999594692, -34.645702000446931 ], [ -58.375468000148032, -34.645664999639962 ], [ -58.375832999892964, -34.644162999622665 ], [ -58.375940000330729, -34.643561999786414 ], [ -58.376210000191293, -34.642839999766124 ], [ -58.376476999913564, -34.642124000022534 ], [ -58.376841999658495, -34.640793999843197 ], [ -58.377034999565524, -34.640279000375529 ], [ -58.378364999744917, -34.641158999588129 ], [ -58.379609999601769, -34.641974000299854 ], [ -58.379738000108603, -34.642059999769117 ], [ -58.379953000130797, -34.642210000391174 ], [ -58.380918999712037, -34.642102999953465 ], [ -58.380876000427065, -34.640149999822597 ], [ -58.381347999710385, -34.638411999713981 ], [ -58.381776999708734, -34.636930999765809 ], [ -58.382420999729334, -34.63454999968269 ], [ -58.382698999958848, -34.634119999638244 ], [ -58.383150000072419, -34.633540999917159 ], [ -58.383299999795099, -34.63334800001013 ], [ -58.383386000163739, -34.632832999643199 ], [ -58.383278999726031, -34.632511000082559 ], [ -58.383214000325836, -34.632297000106405 ], [ -58.383000000349682, -34.631995999715571 ], [ -58.383000000349682, -34.631995999715571 ], [ -58.383815000162087, -34.63231800017553 ], [ -58.383987, -34.632382000428947 ], [ -58.38542499976387, -34.632811999574074 ], [ -58.386518999851944, -34.633155000103102 ], [ -58.387249000241127, -34.63334800001013 ], [ -58.387656000124252, -34.633455000447896 ], [ -58.388729000143201, -34.63375599993941 ], [ -58.389501999817412, -34.633948999846439 ], [ -58.390337999698886, -34.634119999638244 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.402976999788677, -34.636631000320392 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.405252000379448, -34.637039000249615 ], [ -58.405616000078282, -34.637102999603712 ], [ -58.407547000093928, -34.637446000132741 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.411195000149121, -34.638069000084215 ], [ -58.411624000147469, -34.638133000337632 ], [ -58.413190999564961, -34.638411999713981 ], [ -58.414563999928589, -34.638668999874426 ], [ -58.415937000292274, -34.63888399989662 ], [ -58.416194999599497, -34.637511000432255 ], [ -58.416215999668623, -34.637145999788004 ], [ -58.416194999599497, -34.636072999769056 ], [ -58.416173000383594, -34.635301000140998 ], [ -58.416109000130234, -34.634035000215022 ], [ -58.416022999761594, -34.632726000104753 ], [ -58.416001999692469, -34.632017999830794 ], [ -58.415959000407497, -34.631351999694971 ], [ -58.415937000292274, -34.630729999789594 ], [ -58.41589500015408, -34.630151000068565 ], [ -58.416494999944234, -34.630215000321982 ], [ -58.417760999870211, -34.630365000044662 ], [ -58.418361999706462, -34.630430000344177 ], [ -58.419177999564965, -34.630536999882622 ], [ -58.420464999560068, -34.630686999605302 ], [ -58.421816999854627, -34.630880000411651 ], [ -58.423125999964896, -34.631073000318679 ], [ -58.424499000328581, -34.631288000340874 ], [ -58.425744000185432, -34.631481000247902 ], [ -58.42720300001838, -34.63152400043225 ], [ -58.428490000013426, -34.631566999717222 ], [ -58.429090999849734, -34.631609999901514 ], [ -58.429712999755111, -34.631953000430599 ], [ -58.429799000123694, -34.632017999830794 ], [ -58.431559000347534, -34.633261999641547 ], [ -58.432116999999494, -34.633584000101507 ], [ -58.432738999904871, -34.63399200003073 ], [ -58.432952999881024, -34.634035000215022 ], [ -58.433275000340927, -34.634119999638244 ], [ -58.433704000339276, -34.634206000006827 ], [ -58.434197999737876, -34.634292000375467 ], [ -58.434970000265253, -34.63446400021337 ], [ -58.435291999825893, -34.634527999567467 ], [ -58.435742999939464, -34.634613999936107 ], [ -58.436729999589772, -34.63302600044949 ], [ -58.437352000394469, -34.632103000153279 ], [ -58.438038999700041, -34.631095000433902 ], [ -58.438724999858835, -34.630107999884217 ], [ -58.439518999602114, -34.628841999958297 ], [ -58.441751000008594, -34.629164000418257 ], [ -58.442930999565931, -34.629335000210062 ], [ -58.444475999767519, -34.629550000232257 ], [ -58.446064000153456, -34.629807000392702 ], [ -58.447522999986404, -34.630022000414954 ], [ -58.448210000191295, -34.630128999953342 ], [ -58.449367999633409, -34.630300999791245 ], [ -58.450505999951872, -34.630472999629205 ], [ -58.451600000039946, -34.630623000251205 ], [ -58.453230999710854, -34.631115999603651 ], [ -58.454367999983162, -34.631481000247902 ], [ -58.455484000186402, -34.631823999877668 ], [ -58.456557000205351, -34.632167999553474 ], [ -58.457715999693562, -34.63255400026685 ], [ -58.459023999757733, -34.63296200019613 ], [ -58.460762999912447, -34.633497999732867 ], [ -58.461256000164212, -34.632382000428947 ], [ -58.461728000346909, -34.631267000271805 ], [ -58.462242999814521, -34.630064999699925 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463187000179857, -34.627619000216669 ], [ -58.463723999762749, -34.626395999575664 ], [ -58.464195999945389, -34.625280000271744 ], [ -58.464668000128086, -34.624186000183727 ], [ -58.466126999961034, -34.624658000366367 ], [ -58.467522000439942, -34.625087000364715 ], [ -58.468873999835182, -34.625516000363064 ], [ -58.470268000267936, -34.625945000361412 ], [ -58.471577000378204, -34.626353000290692 ], [ -58.473164999864821, -34.626845999643137 ], [ -58.473743999585849, -34.625579999717161 ], [ -58.474215999768546, -34.624593000066852 ], [ -58.474688999997284, -34.623606000416544 ], [ -58.473015000142084, -34.623177000418195 ], [ -58.473465000209558, -34.622168999799442 ], [ -58.473916000323129, -34.621181000103036 ], [ -58.474215999768546, -34.620516000013367 ], [ -58.475052999696118, -34.619465000109642 ], [ -58.475868999554621, -34.618456000344111 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.476641000082054, -34.617447999725357 ], [ -58.477478000009626, -34.616461000075049 ], [ -58.478228999568614, -34.615452000309517 ], [ -58.479023000211271, -34.614421999575598 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.480653999882122, -34.612427000205855 ], [ -58.481468999694528, -34.611418000440324 ], [ -58.481855000407904, -34.610903000073336 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.482628000082116, -34.60993799963893 ], [ -58.482992999827047, -34.60946600035561 ], [ -58.483508000194036, -34.608864999619982 ], [ -58.484451999659996, -34.607770000385187 ], [ -58.485203000118304, -34.60691200038849 ], [ -58.486210999837738, -34.605753000000902 ], [ -58.487069999880532, -34.604808999635566 ], [ -58.488207000152897, -34.603479000355549 ], [ -58.489000999896177, -34.602578000174503 ], [ -58.489730000239263, -34.601654999878292 ], [ -58.490782000189142, -34.602255999714544 ], [ -58.492133999584382, -34.6030500003572 ], [ -58.493484999832845, -34.60384400010048 ], [ -58.494172000037736, -34.602920999804269 ], [ -58.494687000404724, -34.602233999599378 ], [ -58.495073000218724, -34.601719000131709 ], [ -58.495975000445867, -34.601762000316 ], [ -58.496983000165301, -34.601762000316 ], [ -58.497884000346289, -34.601826999716195 ], [ -58.498184999837804, -34.601998000407377 ], [ -58.499107000087918, -34.602556000059337 ], [ -58.499794000292866, -34.60296399998856 ], [ -58.501166999757174, -34.603778999800966 ], [ -58.502305000075637, -34.604444999936732 ], [ -58.503613000139808, -34.605216999564846 ], [ -58.504342999629671, -34.605645999563194 ], [ -58.504922000250076, -34.605989000092222 ], [ -58.505823999577899, -34.606546999744182 ], [ -58.506660000358693, -34.607041000042102 ], [ -58.507968999569641, -34.607812999670159 ], [ -58.508913999981075, -34.606739999651211 ], [ -58.509665000439384, -34.605903999769737 ], [ -58.510458000136566, -34.605023999657817 ], [ -58.511166999557361, -34.604250999983606 ], [ -58.511831999647029, -34.60352199964052 ], [ -58.512303999829669, -34.602985000057686 ], [ -58.512882999550754, -34.603007000172852 ], [ -58.513762999662674, -34.603564999824812 ], [ -58.513118999642074, -34.604294000167954 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 116.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -57.888159846901338, -34.857608985006578 ], [ -57.891944230241663, -34.86493268999255 ], [ -57.888221909633437, -34.866286272337362 ], [ -57.886489926411301, -34.867015752795893 ], [ -57.882875854754481, -34.869043106059983 ], [ -57.881317069854575, -34.869952556703879 ], [ -57.88188285104048, -34.869699143082286 ], [ -57.88259296416156, -34.870535168236444 ], [ -57.883946797713513, -34.87238718235475 ], [ -57.890793904718301, -34.880775194463759 ], [ -57.893518891654466, -34.884128265292333 ], [ -57.897538536049119, -34.88190947596626 ], [ -57.901509107585824, -34.886772027291904 ], [ -57.90325552400143, -34.888879398682946 ], [ -57.906618458091053, -34.887034859707541 ], [ -57.908624671989998, -34.888692342059883 ], [ -57.910431707818411, -34.890321377849283 ], [ -57.912319569530524, -34.891978793904897 ], [ -57.918445016859387, -34.897670579590944 ], [ -57.919807510327466, -34.899015336580739 ], [ -57.921470214220712, -34.900435830615365 ], [ -57.922417031715462, -34.901060840207506 ], [ -57.92310982500431, -34.901932057763545 ], [ -57.924356852924241, -34.903901732952349 ], [ -57.925811718830822, -34.905928176388493 ], [ -57.926758536325579, -34.907140230804167 ], [ -57.926279354300789, -34.907732047748517 ], [ -57.925448002354166, -34.908319125942697 ], [ -57.920032668146341, -34.912409618771377 ], [ -57.922584456760269, -34.914691494957935 ], [ -57.93537803949431, -34.915136500764824 ], [ -57.936544241530569, -34.916205214962886 ], [ -57.937644050876614, -34.915372021478866 ], [ -57.936593314388539, -34.914446504029257 ], [ -57.945107455244596, -34.908031505497036 ], [ -57.947971000838493, -34.905931727355252 ], [ -57.948975551107331, -34.906892850057226 ], [ -57.950141753143576, -34.905979073564616 ], [ -57.954737281959552, -34.910083886126067 ], [ -57.954454391366639, -34.91024485498604 ], [ -57.954338925818512, -34.910633072702865 ], [ -57.954385112037755, -34.910988148275543 ], [ -57.954512124140727, -34.911220130153609 ], [ -57.949645251286555, -34.914856005364385 ], [ -57.943824344340847, -34.919279909766701 ], [ -57.945710762733633, -34.921032599947765 ], [ -57.952191266623053, -34.921354494413485 ], [ -57.953894383458142, -34.922836139423154 ], [ -57.954552537082542, -34.923446777665006 ], [ -57.954009849006255, -34.931360995522297 ], [ -57.956203694420957, -34.930608420330849 ], [ -57.957242884354223, -34.931441459127953 ], [ -57.957125975486719, -34.92987003796167 ], [ -57.957996297055828, -34.92917661513453 ], [ -57.962059241031028, -34.932849559451228 ], [ -57.961132630007192, -34.933531118657847 ], [ -57.969428829641096, -34.940937976764559 ], [ -57.963846070388485, -34.945055237987695 ], [ -57.970473792851791, -34.951136101959577 ], [ -57.972881249530531, -34.949399434292538 ], [ -57.982083853717398, -34.957843457888195 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 115.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.218107, -34.713934 ], [ -58.218979, -34.713358 ], [ -58.219884, -34.712771 ], [ -58.220794, -34.712184 ], [ -58.221639, -34.711633 ], [ -58.222592, -34.710994 ], [ -58.22322, -34.710555 ], [ -58.223258, -34.710393 ], [ -58.223281, -34.710332 ], [ -58.223294, -34.71032 ], [ -58.223373, -34.710275 ], [ -58.223502, -34.710273 ], [ -58.223526, -34.710282 ], [ -58.223607999999899, -34.71035 ], [ -58.223619, -34.710448 ], [ -58.223581, -34.710562 ], [ -58.224412, -34.711038 ], [ -58.225112, -34.711472 ], [ -58.22606, -34.712045 ], [ -58.226914, -34.712538 ], [ -58.227015, -34.712598 ], [ -58.227119, -34.712659 ], [ -58.227618, -34.712951 ], [ -58.228522, -34.713486 ], [ -58.229416, -34.714012 ], [ -58.230304, -34.71453 ], [ -58.231202, -34.71506 ], [ -58.232093, -34.715593 ], [ -58.232967, -34.716117 ], [ -58.233836, -34.71663 ], [ -58.234094, -34.716784 ], [ -58.234265, -34.716885 ], [ -58.234821, -34.717208 ], [ -58.235596, -34.717729 ], [ -58.236506, -34.718245 ], [ -58.237406, -34.718744 ], [ -58.238326, -34.719278 ], [ -58.239176, -34.719811 ], [ -58.239906, -34.720243 ], [ -58.240384, -34.719792 ], [ -58.240782, -34.72002 ], [ -58.241426, -34.720362 ], [ -58.241672, -34.720489 ], [ -58.2426, -34.720977 ], [ -58.243216, -34.720143 ], [ -58.243887, -34.719287 ], [ -58.244875, -34.718744 ], [ -58.245751, -34.719248 ], [ -58.246254, -34.719611 ], [ -58.24703, -34.720117 ], [ -58.247107, -34.720154 ], [ -58.247189, -34.720188 ], [ -58.248084, -34.720571 ], [ -58.248988, -34.721047 ], [ -58.249562, -34.720278 ], [ -58.250088, -34.719586 ], [ -58.250152, -34.719512 ], [ -58.250207, -34.719456 ], [ -58.250695, -34.718793 ], [ -58.250728, -34.718726 ], [ -58.251282, -34.71791 ], [ -58.251861, -34.717139 ], [ -58.252473, -34.716409 ], [ -58.253028, -34.715657 ], [ -58.253673, -34.714821 ], [ -58.25451, -34.713676 ], [ -58.255449, -34.714156 ], [ -58.256405, -34.714629 ], [ -58.257337, -34.715066 ], [ -58.257258, -34.715125 ], [ -58.256417, -34.716209 ], [ -58.255809, -34.71706 ], [ -58.255259, -34.717812 ], [ -58.254736, -34.718594 ], [ -58.254181, -34.719357 ], [ -58.255146, -34.719872 ], [ -58.256056, -34.720346 ], [ -58.256941, -34.720817 ], [ -58.257892, -34.72129 ], [ -58.258796, -34.721726 ], [ -58.258858, -34.721774 ], [ -58.258943, -34.721833 ], [ -58.259763, -34.722229 ], [ -58.260753, -34.72273 ], [ -58.260492, -34.723067 ], [ -58.260131, -34.723545 ], [ -58.259575, -34.724308 ], [ -58.259026, -34.725058 ], [ -58.258417, -34.725855 ], [ -58.258517, -34.725911 ], [ -58.25937, -34.72634 ], [ -58.25953, -34.726432 ], [ -58.260367, -34.726833 ], [ -58.260471, -34.726873 ], [ -58.260579, -34.726909 ], [ -58.261475, -34.727352 ], [ -58.260941, -34.728096 ], [ -58.260873, -34.728176 ], [ -58.261521, -34.728497 ], [ -58.262471, -34.728967 ], [ -58.263634, -34.729516 ], [ -58.264589, -34.729963 ], [ -58.265549, -34.730415 ], [ -58.265634, -34.730458 ], [ -58.265735, -34.730508 ], [ -58.266606, -34.730924 ], [ -58.267551, -34.731361 ], [ -58.268511, -34.731782 ], [ -58.26948, -34.732239 ], [ -58.269573, -34.732296 ], [ -58.269668, -34.73234 ], [ -58.270502, -34.732813 ], [ -58.271513, -34.733332 ], [ -58.27244, -34.733825 ], [ -58.273412, -34.734343 ], [ -58.274492, -34.73491 ], [ -58.275473, -34.735446 ], [ -58.276415, -34.735969 ], [ -58.27664, -34.736094 ], [ -58.27763, -34.736609 ], [ -58.278644, -34.737126 ], [ -58.279614, -34.737584 ], [ -58.28075, -34.738117 ], [ -58.281676, -34.738564 ], [ -58.281813, -34.738595 ], [ -58.281942999999899, -34.738621 ], [ -58.282799, -34.739022 ], [ -58.283788999999899, -34.739487 ], [ -58.284828, -34.739973 ], [ -58.285881, -34.740473 ], [ -58.286943, -34.740971 ], [ -58.287971, -34.741458 ], [ -58.288935, -34.741912 ], [ -58.289974, -34.742402 ], [ -58.290083, -34.742489 ], [ -58.290192, -34.742574 ], [ -58.291056, -34.743085 ], [ -58.291975, -34.743634 ], [ -58.293314, -34.744425 ], [ -58.293631, -34.744602 ], [ -58.293934, -34.744748 ], [ -58.292866, -34.746257 ], [ -58.292326, -34.746983 ], [ -58.291833, -34.747658 ], [ -58.291797, -34.747767 ], [ -58.291766, -34.747873 ], [ -58.291511, -34.748557 ], [ -58.291279, -34.749127 ], [ -58.291241, -34.749234 ], [ -58.291171, -34.749424 ], [ -58.290967, -34.749911 ], [ -58.290795, -34.750352 ], [ -58.290689, -34.750644 ], [ -58.290393, -34.75156 ], [ -58.29015, -34.752116 ], [ -58.289891, -34.752872 ], [ -58.289871, -34.752939 ], [ -58.289847, -34.753068 ], [ -58.289651, -34.75346 ], [ -58.289589, -34.753579 ], [ -58.2894, -34.754041 ], [ -58.289275, -34.75435 ], [ -58.289114, -34.754712 ], [ -58.288969, -34.755045 ], [ -58.288778, -34.755479 ], [ -58.288557, -34.755987 ], [ -58.288336999999899, -34.75651 ], [ -58.288263, -34.756667 ], [ -58.2882, -34.75682 ], [ -58.288064, -34.75717 ], [ -58.289256, -34.757735 ], [ -58.290334, -34.758248 ], [ -58.29135, -34.758736 ], [ -58.291373, -34.758754 ], [ -58.291422, -34.758796 ], [ -58.292268, -34.75925 ], [ -58.293191, -34.75973 ], [ -58.294009, -34.760184 ], [ -58.294675, -34.760528 ], [ -58.293891, -34.761211 ], [ -58.293272, -34.761757 ], [ -58.293186, -34.761834 ], [ -58.293141, -34.761875 ], [ -58.29226, -34.762657 ], [ -58.29135, -34.763473 ], [ -58.290516, -34.764193 ], [ -58.289723, -34.764878 ], [ -58.289304999999899, -34.765251 ], [ -58.289046, -34.765484 ], [ -58.288892, -34.765628 ], [ -58.288009, -34.766382 ], [ -58.287919, -34.766458 ], [ -58.288322, -34.766719 ], [ -58.288447, -34.766774 ], [ -58.288803, -34.766935 ], [ -58.289216, -34.767161 ], [ -58.289589, -34.767369 ], [ -58.289953, -34.767529 ], [ -58.290982, -34.768072 ], [ -58.291668999999899, -34.768458 ], [ -58.292145, -34.768727 ], [ -58.292785, -34.769056 ], [ -58.293725, -34.769549 ], [ -58.294637, -34.770061 ], [ -58.295392, -34.770447 ], [ -58.296143, -34.770829 ], [ -58.29694, -34.771242 ], [ -58.297724, -34.771657 ], [ -58.298493, -34.772077 ], [ -58.299277, -34.772472 ], [ -58.299433, -34.772545 ], [ -58.300101, -34.772858 ], [ -58.300197, -34.772903 ], [ -58.300918, -34.773353 ], [ -58.302347, -34.774253 ], [ -58.303783, -34.775168 ], [ -58.30524, -34.776035 ], [ -58.306685, -34.776907 ], [ -58.307977, -34.77775 ], [ -58.308132, -34.777847 ], [ -58.30828, -34.777929 ], [ -58.309642, -34.778779 ], [ -58.311091, -34.779649 ], [ -58.312539999999899, -34.780537 ], [ -58.313961, -34.781442 ], [ -58.315333, -34.782324 ], [ -58.314733, -34.78281 ], [ -58.314088, -34.783257 ], [ -58.313376, -34.783647 ], [ -58.313585, -34.784037 ], [ -58.314165, -34.784336 ], [ -58.31569, -34.785051 ], [ -58.31577, -34.78511 ], [ -58.315353, -34.785674 ], [ -58.31492, -34.786263 ], [ -58.314513, -34.786829 ], [ -58.314075, -34.787438 ], [ -58.313671, -34.787997 ], [ -58.313262, -34.788567 ], [ -58.312811, -34.789155 ], [ -58.312406, -34.78973 ], [ -58.311966, -34.79029 ], [ -58.311555, -34.790915 ], [ -58.311301, -34.791257 ], [ -58.310255, -34.790613 ], [ -58.309802, -34.790334 ], [ -58.308793, -34.7897 ], [ -58.308156, -34.790399 ], [ -58.307578, -34.791021 ], [ -58.307016, -34.791626 ], [ -58.306453, -34.792237 ], [ -58.305897, -34.792841 ], [ -58.305771, -34.792975 ], [ -58.305862, -34.793787 ], [ -58.304928, -34.793912 ], [ -58.304809, -34.794057 ], [ -58.304242, -34.794673 ], [ -58.303685, -34.795284 ], [ -58.303112, -34.79591 ], [ -58.302559, -34.796514 ], [ -58.302004, -34.797127 ], [ -58.301437, -34.797761 ], [ -58.302888, -34.798643 ], [ -58.302226, -34.799383 ], [ -58.302751, -34.800096 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 114.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.395038, -34.74298 ], [ -58.394606, -34.743041 ], [ -58.393192, -34.743219 ], [ -58.391702, -34.743409 ], [ -58.390112, -34.743598 ], [ -58.390348, -34.744776 ], [ -58.390562, -34.745974 ], [ -58.389215, -34.746168 ], [ -58.387719, -34.746374 ], [ -58.387963, -34.747859 ], [ -58.388115, -34.749047 ], [ -58.388155, -34.749332 ], [ -58.388294, -34.750305 ], [ -58.38843, -34.751401 ], [ -58.388591, -34.752544 ], [ -58.388662, -34.753163 ], [ -58.388745, -34.753741 ], [ -58.388928, -34.754947 ], [ -58.389148, -34.75611 ], [ -58.389258, -34.756876 ], [ -58.389315, -34.757345 ], [ -58.389921999999899, -34.757267 ], [ -58.390141, -34.75843 ], [ -58.390391, -34.75955 ], [ -58.39067, -34.760718 ], [ -58.391993, -34.760563 ], [ -58.392501, -34.760496 ], [ -58.393388, -34.760389 ], [ -58.394733, -34.760201 ], [ -58.396134, -34.760044 ], [ -58.396274, -34.761266 ], [ -58.396414, -34.762437 ], [ -58.396548, -34.763613 ], [ -58.39661, -34.764223 ], [ -58.396625, -34.764781 ], [ -58.396593, -34.765861 ], [ -58.396579, -34.766677 ], [ -58.396479, -34.767929 ], [ -58.396456, -34.768463 ], [ -58.396352, -34.770257 ], [ -58.395682, -34.77128 ], [ -58.394879, -34.772375 ], [ -58.394829999999899, -34.772441 ], [ -58.394472, -34.772954 ], [ -58.394191, -34.773363 ], [ -58.3935, -34.774359 ], [ -58.392602, -34.775619 ], [ -58.391258, -34.774874 ], [ -58.39068, -34.77562 ], [ -58.39012, -34.776376 ], [ -58.388877, -34.775687 ], [ -58.387792, -34.775074 ], [ -58.386787, -34.774544 ], [ -58.385768, -34.773995 ], [ -58.384372, -34.77323 ], [ -58.382887, -34.772418 ], [ -58.381477, -34.771662 ], [ -58.380816, -34.771301 ], [ -58.380085, -34.770898 ], [ -58.379783, -34.770735 ], [ -58.378173, -34.769871 ], [ -58.377567, -34.76956 ], [ -58.377344, -34.769443 ], [ -58.37649, -34.768972 ], [ -58.376246, -34.768849 ], [ -58.375136, -34.76828 ], [ -58.37399, -34.767704 ], [ -58.372847, -34.767124 ], [ -58.372348, -34.766871 ], [ -58.371706, -34.766539 ], [ -58.37125, -34.766301 ], [ -58.370591, -34.765954 ], [ -58.37014, -34.765723 ], [ -58.369477, -34.765387 ], [ -58.368654, -34.764973 ], [ -58.367391, -34.764339 ], [ -58.366718, -34.764004 ], [ -58.366119, -34.763731 ], [ -58.365805, -34.763558 ], [ -58.365431, -34.763383 ], [ -58.364795999999899, -34.763059 ], [ -58.364125, -34.762725 ], [ -58.363249, -34.7623 ], [ -58.362385, -34.761882 ], [ -58.362047, -34.761715 ], [ -58.361412, -34.761395 ], [ -58.360634, -34.761003 ], [ -58.359508, -34.760464 ], [ -58.359194, -34.760313 ], [ -58.358465, -34.75996 ], [ -58.357458, -34.75947 ], [ -58.357251, -34.759366 ], [ -58.356416, -34.758946 ], [ -58.356119, -34.7588 ], [ -58.355675, -34.758578 ], [ -58.355057, -34.758277 ], [ -58.354618, -34.75806 ], [ -58.353626, -34.757576 ], [ -58.352225, -34.756815 ], [ -58.351359, -34.756452 ], [ -58.350746999999899, -34.756146 ], [ -58.350081, -34.755798 ], [ -58.349416, -34.755488 ], [ -58.349037, -34.755288 ], [ -58.348027, -34.754784 ], [ -58.347136, -34.754311 ], [ -58.346432, -34.753942 ], [ -58.345822, -34.753622 ], [ -58.34553, -34.753462 ], [ -58.345196, -34.753281 ], [ -58.344746, -34.753041 ], [ -58.343899, -34.752589 ], [ -58.342956999999899, -34.752102 ], [ -58.3427, -34.751958 ], [ -58.342401, -34.751808 ], [ -58.342063, -34.751635 ], [ -58.341624, -34.75142 ], [ -58.341347, -34.751262 ], [ -58.340901, -34.751034 ], [ -58.340403, -34.75076 ], [ -58.3402, -34.75069 ], [ -58.339351, -34.75045 ], [ -58.338142, -34.750079 ], [ -58.337683, -34.749891 ], [ -58.337405, -34.749734 ], [ -58.336707, -34.749392 ], [ -58.335988, -34.749051 ], [ -58.335262, -34.748703 ], [ -58.33475, -34.74844 ], [ -58.334601, -34.748334 ], [ -58.334314, -34.74822 ], [ -58.333867, -34.747992 ], [ -58.333183, -34.747642 ], [ -58.332846, -34.747479 ], [ -58.332452, -34.747298 ], [ -58.332391, -34.747272 ], [ -58.332352, -34.747248 ], [ -58.33168, -34.746845 ], [ -58.330899, -34.746326 ], [ -58.330043, -34.745856 ], [ -58.329018, -34.745245 ], [ -58.327927, -34.744585 ], [ -58.326981, -34.743986 ], [ -58.325944, -34.74342 ], [ -58.325108, -34.742938 ], [ -58.324211, -34.742358 ], [ -58.32314, -34.741764 ], [ -58.321379, -34.74073 ], [ -58.320488, -34.740173 ], [ -58.32011, -34.73996 ], [ -58.319934, -34.739904 ], [ -58.319811, -34.739858 ], [ -58.319653, -34.739824 ], [ -58.319481, -34.739806 ], [ -58.319335, -34.739802 ], [ -58.319234, -34.739812 ], [ -58.319079, -34.739824 ], [ -58.318866, -34.739863 ], [ -58.318618999999899, -34.73995 ], [ -58.318305, -34.740092 ], [ -58.317641, -34.740686 ], [ -58.317363, -34.740907 ], [ -58.316865, -34.741357 ], [ -58.31669, -34.74151 ], [ -58.315995, -34.742117 ], [ -58.315865, -34.742227 ], [ -58.314744, -34.743195 ], [ -58.313254, -34.744464 ], [ -58.312555, -34.745074 ], [ -58.311818, -34.745713 ], [ -58.311081, -34.746324 ], [ -58.309511, -34.747686 ], [ -58.308955, -34.748162 ], [ -58.30803, -34.748953 ], [ -58.306818, -34.749986 ], [ -58.305829, -34.75089 ], [ -58.304494, -34.750146 ], [ -58.303474, -34.749582 ], [ -58.302527, -34.749069 ], [ -58.301556, -34.748534 ], [ -58.300686, -34.748054 ], [ -58.30021, -34.747798 ], [ -58.299859, -34.747603 ], [ -58.298992, -34.747127 ], [ -58.298648, -34.746941 ], [ -58.298579, -34.746896 ], [ -58.298492, -34.746836 ], [ -58.297268, -34.74625 ], [ -58.296274, -34.745789 ], [ -58.29533, -34.745356 ], [ -58.294377, -34.744922 ], [ -58.293934, -34.744748 ], [ -58.293631, -34.744602 ], [ -58.293314, -34.744425 ], [ -58.291975, -34.743634 ], [ -58.291056, -34.743085 ], [ -58.290192, -34.742574 ], [ -58.290083, -34.742489 ], [ -58.289974, -34.742402 ], [ -58.288935, -34.741912 ], [ -58.287971, -34.741458 ], [ -58.286943, -34.740971 ], [ -58.285881, -34.740473 ], [ -58.284828, -34.739973 ], [ -58.283788999999899, -34.739487 ], [ -58.282799, -34.739022 ], [ -58.281942999999899, -34.738621 ], [ -58.281813, -34.738595 ], [ -58.281676, -34.738564 ], [ -58.28075, -34.738117 ], [ -58.279614, -34.737584 ], [ -58.278644, -34.737126 ], [ -58.27763, -34.736609 ], [ -58.27664, -34.736094 ], [ -58.276415, -34.735969 ], [ -58.275473, -34.735446 ], [ -58.274492, -34.73491 ], [ -58.273412, -34.734343 ], [ -58.27244, -34.733825 ], [ -58.271513, -34.733332 ], [ -58.270502, -34.732813 ], [ -58.269668, -34.73234 ], [ -58.269573, -34.732296 ], [ -58.26948, -34.732239 ], [ -58.268511, -34.731782 ], [ -58.267551, -34.731361 ], [ -58.266606, -34.730924 ], [ -58.265735, -34.730508 ], [ -58.265634, -34.730458 ], [ -58.265549, -34.730415 ], [ -58.264589, -34.729963 ], [ -58.263634, -34.729516 ], [ -58.262471, -34.728967 ], [ -58.261521, -34.728497 ], [ -58.260873, -34.728176 ], [ -58.260941, -34.728096 ], [ -58.261475, -34.727352 ], [ -58.260579, -34.726909 ], [ -58.260471, -34.726873 ], [ -58.260367, -34.726833 ], [ -58.25953, -34.726432 ], [ -58.25937, -34.72634 ], [ -58.258517, -34.725911 ], [ -58.258417, -34.725855 ], [ -58.259026, -34.725058 ], [ -58.259575, -34.724308 ], [ -58.260131, -34.723545 ], [ -58.260492, -34.723067 ], [ -58.260753, -34.72273 ], [ -58.261071, -34.722312 ], [ -58.261337, -34.721947 ], [ -58.260346, -34.72147 ], [ -58.259396, -34.720997 ], [ -58.258431, -34.720517 ], [ -58.257516, -34.720044 ], [ -58.256589, -34.719571 ], [ -58.255704, -34.719106 ], [ -58.254736, -34.718594 ], [ -58.254181, -34.719357 ], [ -58.253607, -34.72014 ], [ -58.252652, -34.719664 ], [ -58.251684, -34.719188 ], [ -58.250856, -34.718785 ], [ -58.250728, -34.718726 ], [ -58.249179, -34.717842 ], [ -58.247787, -34.7171 ], [ -58.247746, -34.717034 ], [ -58.247703, -34.716971 ], [ -58.247687, -34.716949 ], [ -58.247184, -34.716673 ], [ -58.246475, -34.716261 ], [ -58.245495, -34.715681 ], [ -58.244631, -34.715135 ], [ -58.24375, -34.714607 ], [ -58.242835, -34.714119 ], [ -58.241921, -34.713588 ], [ -58.241044, -34.713049 ], [ -58.240148, -34.712511 ], [ -58.239269, -34.711984 ], [ -58.238357, -34.711452 ], [ -58.23748, -34.710913 ], [ -58.236604, -34.710383 ], [ -58.235712, -34.709856 ], [ -58.234809, -34.709329 ], [ -58.234285, -34.709015 ], [ -58.233938, -34.708804 ], [ -58.233389, -34.708478 ], [ -58.232205, -34.707795 ], [ -58.231245, -34.707194 ], [ -58.231016, -34.707055 ], [ -58.230808, -34.707073 ], [ -58.229429, -34.707481 ], [ -58.228233, -34.7078 ], [ -58.227059, -34.70811 ], [ -58.227008, -34.708124 ], [ -58.226167, -34.708652 ], [ -58.225316, -34.709246 ], [ -58.223607999999899, -34.71035 ], [ -58.223619, -34.710448 ], [ -58.223581, -34.710562 ], [ -58.223417, -34.710571 ], [ -58.22322, -34.710555 ], [ -58.222592, -34.710994 ], [ -58.221639, -34.711633 ], [ -58.220794, -34.712184 ], [ -58.219884, -34.712771 ], [ -58.218979, -34.713358 ], [ -58.218107, -34.713934 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 112.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.330386000413569, -34.815608999955316 ], [ -58.331329999879529, -34.814429000397979 ], [ -58.331823000131294, -34.813700000054894 ], [ -58.332317000429214, -34.813012999850002 ], [ -58.332682000174145, -34.812540999667362 ], [ -58.332852999965951, -34.812325999645111 ], [ -58.333368000332882, -34.811575000086123 ], [ -58.333540000170842, -34.812069000384042 ], [ -58.334870000350179, -34.811769000039249 ], [ -58.334634000258859, -34.811059999719191 ], [ -58.33461300018979, -34.810932000111677 ], [ -58.334698999659054, -34.810760000273774 ], [ -58.335094999934256, -34.810326000044824 ], [ -58.335148999726528, -34.810265999975854 ], [ -58.336930000019436, -34.808034999615472 ], [ -58.338454000151955, -34.806124999668953 ], [ -58.338068000337898, -34.805910999692856 ], [ -58.337745999877939, -34.805759999924021 ], [ -58.336908999950367, -34.805309999856547 ], [ -58.336693999928116, -34.805181000202936 ], [ -58.336650999743824, -34.805094999834353 ], [ -58.335813999816196, -34.804601999582587 ], [ -58.335320999564431, -34.804323000206239 ], [ -58.334547999890219, -34.803915000277016 ], [ -58.335278000279459, -34.803271000256416 ], [ -58.336072000022739, -34.802606000166747 ], [ -58.336587000389727, -34.802155000053176 ], [ -58.337122999926464, -34.802047999615468 ], [ -58.338582999805567, -34.801726000054828 ], [ -58.340062999707641, -34.801425999710091 ], [ -58.340449000421017, -34.801640999732285 ], [ -58.341178999910881, -34.802047999615468 ], [ -58.341908000253966, -34.802434000328788 ], [ -58.342509000090217, -34.802755999889428 ], [ -58.342658999812954, -34.802842000258067 ], [ -58.343604000224389, -34.803356999725736 ], [ -58.343861000384834, -34.803507000347736 ], [ -58.344462000221085, -34.803828999908376 ], [ -58.345212999780074, -34.804236999837656 ], [ -58.345792000400479, -34.804537000182393 ], [ -58.346499999775119, -34.804924000042547 ], [ -58.34791700036925, -34.805695999670604 ], [ -58.349333000017907, -34.806490000313204 ], [ -58.350383999921632, -34.807047999965164 ], [ -58.351049000011301, -34.807390999594929 ], [ -58.351994000422735, -34.807841999708501 ], [ -58.352573000143821, -34.808164000168404 ], [ -58.353410000071392, -34.808593000166809 ], [ -58.354290000183312, -34.809150999818769 ], [ -58.35495500027298, -34.809515000416866 ], [ -58.356457000290277, -34.810331000275426 ], [ -58.357207999849265, -34.810739000204649 ], [ -58.357894000008059, -34.811102999903483 ], [ -58.358687999751339, -34.811531999901831 ], [ -58.359503999609842, -34.811939999831111 ], [ -58.36025500006815, -34.812368999829459 ], [ -58.360984000411236, -34.812776999758682 ], [ -58.361778000154516, -34.813227999872254 ], [ -58.362486000428532, -34.813591999571088 ], [ -58.362679000335561, -34.813700000054894 ], [ -58.363538000378355, -34.814172000237591 ], [ -58.364052999846024, -34.814429000397979 ], [ -58.364396000375052, -34.814622000305008 ], [ -58.365190000118389, -34.815073000418579 ], [ -58.365511999679029, -34.815245000256539 ], [ -58.366091000299377, -34.815523999632831 ], [ -58.366091000299377, -34.814579000120716 ], [ -58.365940999677377, -34.813528000216991 ], [ -58.365812000023766, -34.812561999736431 ], [ -58.367013999696269, -34.813227999872254 ], [ -58.368430000244302, -34.814000000399631 ], [ -58.369310000356165, -34.814471999683008 ], [ -58.370383000375114, -34.815030000234287 ], [ -58.371842000208119, -34.815845000046693 ], [ -58.373365000294484, -34.816681999974264 ], [ -58.374695999620656, -34.817412000363504 ], [ -58.376112000168632, -34.818162999922492 ], [ -58.377506999748221, -34.818934999550549 ], [ -58.378472000182626, -34.819472000032704 ], [ -58.379781000292894, -34.820180000306721 ], [ -58.381283000310191, -34.820974000050001 ], [ -58.382827999612459, -34.821810999977629 ], [ -58.383987, -34.822453999952074 ], [ -58.383879999562282, -34.823033999719257 ], [ -58.383858000346379, -34.823290999879703 ], [ -58.383728999793448, -34.823849000430982 ], [ -58.383579000070768, -34.824665000289485 ], [ -58.383535999886419, -34.825007999919194 ], [ -58.383707999724379, -34.825115000356959 ], [ -58.384608999905367, -34.825586999640279 ], [ -58.385081000088064, -34.825759000377502 ], [ -58.385896999946567, -34.826294999914296 ], [ -58.386690999689847, -34.826724999958742 ], [ -58.387333999664293, -34.827067999588451 ], [ -58.388385999614172, -34.827604000024564 ], [ -58.388515000167104, -34.826938999934839 ], [ -58.388642999774561, -34.826102000007268 ], [ -58.388708000074075, -34.825695000124085 ], [ -58.388772000327492, -34.825287000194862 ], [ -58.388944000165452, -34.824471000336359 ], [ -58.39048900036704, -34.824578999920845 ], [ -58.390616999974554, -34.823247999695411 ], [ -58.389307999864286, -34.822497000136423 ], [ -58.389307999864286, -34.821403000048349 ], [ -58.389329999979452, -34.820479999752138 ], [ -58.389201000325841, -34.819107000287772 ], [ -58.389114999957258, -34.817562000086184 ], [ -58.389071999772909, -34.816747000273779 ], [ -58.389050999703841, -34.816424999813819 ], [ -58.388965000234521, -34.815115999703607 ], [ -58.388944000165452, -34.814707999774328 ], [ -58.388900999981104, -34.813764000308311 ], [ -58.388835999681589, -34.812948999596586 ], [ -58.388835999681589, -34.812713000404585 ], [ -58.388814999612521, -34.812477000313265 ], [ -58.388772000327492, -34.811425000363442 ], [ -58.388708000074075, -34.810373999560397 ], [ -58.388621999705492, -34.809301000440769 ], [ -58.388642999774561, -34.809258000256477 ], [ -58.388664999889784, -34.809215000072129 ], [ -58.388664999889784, -34.808185000237529 ], [ -58.388664999889784, -34.807949000146209 ], [ -58.388685999958909, -34.807197999687901 ], [ -58.388685999958909, -34.806618999966815 ], [ -58.388708000074075, -34.805374000109964 ], [ -58.388729000143201, -34.80380799983925 ], [ -58.388729000143201, -34.803271000256416 ], [ -58.388729000143201, -34.803035000165096 ], [ -58.388729000143201, -34.802948999796456 ], [ -58.388751000258424, -34.800739000404519 ], [ -58.388965000234521, -34.800610999897685 ], [ -58.388987000349744, -34.800352999691142 ], [ -58.388729000143201, -34.800224000037531 ], [ -58.388729000143201, -34.799409000225126 ], [ -58.388751000258424, -34.797605999816994 ], [ -58.388772000327492, -34.797220000002937 ], [ -58.388772000327492, -34.795717999985641 ], [ -58.388814999612521, -34.794302000336984 ], [ -58.388857999796812, -34.792906999858133 ], [ -58.388857999796812, -34.792220999699339 ], [ -58.388878999865938, -34.791105000395419 ], [ -58.388900999981104, -34.790397000121402 ], [ -58.388922000050229, -34.790053000445596 ], [ -58.388944000165452, -34.789732000031734 ], [ -58.389050999703841, -34.788400999806242 ], [ -58.389114999957258, -34.787327999787294 ], [ -58.389180000256772, -34.786662999697626 ], [ -58.389243999610869, -34.785589999678677 ], [ -58.389265999726092, -34.785418999886872 ], [ -58.389351000048578, -34.784431000190466 ], [ -58.389394000232869, -34.784066999592312 ], [ -58.389416000348092, -34.783701999847381 ], [ -58.389458999633064, -34.783079999942004 ], [ -58.389501999817412, -34.782758000381364 ], [ -58.389566000070829, -34.782500000174821 ], [ -58.38960900025512, -34.782349999552821 ], [ -58.389758999977801, -34.781770999831735 ], [ -58.389823000231218, -34.781598999993832 ], [ -58.39008100043776, -34.780868999604593 ], [ -58.390210000091372, -34.780569000159176 ], [ -58.390552999721137, -34.779667999978187 ], [ -58.39063900008972, -34.779452999955936 ], [ -58.390831999996749, -34.778980999773296 ], [ -58.391089000157194, -34.778315999683571 ], [ -58.391603999624863, -34.777200000379651 ], [ -58.391839999716183, -34.776792999597205 ], [ -58.392097999922726, -34.776427999852274 ], [ -58.392613000289714, -34.775611999993771 ], [ -58.393493000401634, -34.774389000252143 ], [ -58.394243999960565, -34.773316000233194 ], [ -58.394480000051942, -34.772972999704109 ], [ -58.394844999796874, -34.772458000236497 ], [ -58.394909000050291, -34.772371999867858 ], [ -58.395659999609279, -34.771234999595492 ], [ -58.395767000046988, -34.771062999757589 ], [ -58.39634699981417, -34.770247999945184 ], [ -58.39641100006753, -34.768466999652276 ], [ -58.396432000136656, -34.768080999838219 ], [ -58.396517999605976, -34.766643000074339 ], [ -58.396560999790267, -34.765955999869448 ], [ -58.396560999790267, -34.765871000446282 ], [ -58.396626000089782, -34.764818999597082 ], [ -58.396626000089782, -34.764260999945122 ], [ -58.39658299990549, -34.763574999786385 ], [ -58.396454000251879, -34.762437000367242 ], [ -58.396324999698948, -34.76123599984146 ], [ -58.396174999976211, -34.760013000099832 ], [ -58.396003000138307, -34.758831999597078 ], [ -58.395767000046988, -34.757652000039741 ], [ -58.395596000255182, -34.756493999698307 ], [ -58.395424000417222, -34.755571000301359 ], [ -58.395402000302056, -34.755335000210039 ], [ -58.395338000048639, -34.75499199968101 ], [ -58.395188000325902, -34.754132999638159 ], [ -58.395058999772971, -34.753574999986199 ], [ -58.394952000234582, -34.752953000080822 ], [ -58.394737000212331, -34.751793999693291 ], [ -58.394544000305302, -34.750549999882537 ], [ -58.394357999821807, -34.749411999564074 ], [ -58.394351000398331, -34.7493700003252 ], [ -58.394115000306954, -34.748188999822446 ], [ -58.393900000284759, -34.747052000449401 ], [ -58.393621000009091, -34.745592999717132 ], [ -58.393407000032994, -34.744434000228864 ], [ -58.393192000010743, -34.74327599988743 ], [ -58.392978000034645, -34.742095000283996 ], [ -58.392763000012394, -34.740936999942562 ], [ -58.392549000036297, -34.739757000385225 ], [ -58.392334000014046, -34.738619000066763 ], [ -58.391991000384337, -34.737438999610106 ], [ -58.391689999993446, -34.736280000121837 ], [ -58.390187999976149, -34.736495000144089 ], [ -58.390123999722789, -34.735292999572209 ], [ -58.390101999607566, -34.734091999945804 ], [ -58.390101999607566, -34.732890000273244 ], [ -58.390101999607566, -34.732289000436992 ], [ -58.39008100043776, -34.731730999885713 ], [ -58.390101999607566, -34.730508000144027 ], [ -58.39008100043776, -34.73005800007661 ], [ -58.39008100043776, -34.728469999690674 ], [ -58.39008100043776, -34.726861000134988 ], [ -58.390059000322594, -34.725616000278137 ], [ -58.390231000160497, -34.725401000255886 ], [ -58.39096099965036, -34.724392999637189 ], [ -58.391689999993446, -34.723383999871658 ], [ -58.392075999807503, -34.722890999619892 ], [ -58.392162000176143, -34.722826000219698 ], [ -58.392290999829754, -34.722761999966281 ], [ -58.393942999569731, -34.722655000427892 ], [ -58.394178999661051, -34.722612000243601 ], [ -58.394308000213982, -34.722547999990184 ], [ -58.394393999683302, -34.722440000405641 ], [ -58.394480000051942, -34.722183000245195 ], [ -58.394436999867594, -34.721860999785292 ], [ -58.394501000121011, -34.721667999878264 ], [ -58.394822999681651, -34.721602999578749 ], [ -58.395080999888194, -34.721539000224652 ], [ -58.395166000210679, -34.721452999856012 ], [ -58.395145000141611, -34.721346000317624 ], [ -58.395080999888194, -34.721282000064207 ], [ -58.394607999659399, -34.721002999788539 ], [ -58.394457999936719, -34.720980999673372 ], [ -58.394414999752371, -34.720852000019761 ], [ -58.394157999591982, -34.719651000393299 ], [ -58.393879000215634, -34.718405999637127 ], [ -58.393621000009091, -34.717118999642082 ], [ -58.393407000032994, -34.716131999991774 ], [ -58.393341999733479, -34.715852999716105 ], [ -58.393064000403228, -34.714564999674963 ], [ -58.392912999735131, -34.713836000231197 ], [ -58.392698999758977, -34.712912999934929 ], [ -58.392676999643754, -34.71280600039654 ], [ -58.392591000174491, -34.712377000398192 ], [ -58.392440999552434, -34.711647000009009 ], [ -58.392184000291365, -34.710509999736644 ], [ -58.391991000384337, -34.709587000339752 ], [ -58.391689999993446, -34.708170999791776 ], [ -58.391723999762746, -34.707444000440205 ], [ -58.39175500029296, -34.706776000212187 ], [ -58.39175500029296, -34.706668999774479 ], [ -58.391818999647057, -34.705638999939879 ], [ -58.391818999647057, -34.705423999917627 ], [ -58.391839999716183, -34.704673000358639 ], [ -58.391861999831406, -34.703965000084622 ], [ -58.391862999877503, -34.703932000361476 ], [ -58.391882999900474, -34.703449999717691 ], [ -58.391905000015697, -34.702485000182548 ], [ -58.391926000084823, -34.702376999698743 ], [ -58.391969000269114, -34.701325999795017 ], [ -58.393341999733479, -34.701346999864086 ], [ -58.394672999958914, -34.701390000048434 ], [ -58.395938999884891, -34.701433000232726 ], [ -58.39729100017945, -34.701455000347948 ], [ -58.399265000379444, -34.701539999771114 ], [ -58.400681000028101, -34.701561999886337 ], [ -58.401389000302061, -34.701582999955463 ], [ -58.402398000067592, -34.700768000143057 ], [ -58.40291300043458, -34.700360000213777 ], [ -58.403277000133414, -34.700037999753818 ], [ -58.404157000245334, -34.699309000310052 ], [ -58.405122999826517, -34.698578999920869 ], [ -58.406002999938437, -34.697849999577784 ], [ -58.406624999843814, -34.697335000110115 ], [ -58.406882000004259, -34.697099000018795 ], [ -58.407784000231402, -34.696347999560487 ], [ -58.408126999861111, -34.696047000068972 ], [ -58.408899000388544, -34.695381999979247 ], [ -58.409672000062699, -34.694716999889579 ], [ -58.410443999690813, -34.69405199979991 ], [ -58.411151999964773, -34.693407999779311 ], [ -58.411945999708053, -34.692742999689642 ], [ -58.412417999890749, -34.692291999576071 ], [ -58.412697000166361, -34.692077999599974 ], [ -58.413211999634029, -34.691606000316597 ], [ -58.413447999725349, -34.691412000363471 ], [ -58.413640999632378, -34.691261999741471 ], [ -58.41398500020756, -34.690962000296054 ], [ -58.414800000019966, -34.690275000091162 ], [ -58.415615999878469, -34.689610000001437 ], [ -58.416430999690817, -34.688901999727477 ], [ -58.416796000335125, -34.688601000235906 ], [ -58.416946000057806, -34.68804399973078 ], [ -58.417161000080057, -34.687529000263112 ], [ -58.417590000078405, -34.686434000128941 ], [ -58.418125999615143, -34.685489999763661 ], [ -58.418233000052851, -34.685317999925701 ], [ -58.418856000004382, -34.684438999859935 ], [ -58.419606999563314, -34.683386999910056 ], [ -58.420335999906456, -34.68233600000633 ], [ -58.419219999703159, -34.681799000423496 ], [ -58.418125999615143, -34.681262999987439 ], [ -58.417032000426445, -34.680726999551325 ], [ -58.415916000223206, -34.680189999968491 ], [ -58.414800000019966, -34.679632000316531 ], [ -58.413384000371252, -34.679010000411154 ], [ -58.412353999637332, -34.678516000113291 ], [ -58.411624000147469, -34.677873000138788 ], [ -58.410872999689161, -34.677164999864829 ], [ -58.410122000130173, -34.676477999659937 ], [ -58.409307000317767, -34.677057000280286 ], [ -58.408340999837208, -34.676156000099297 ], [ -58.408297999652916, -34.676199000283589 ], [ -58.407225999680122, -34.675169000448989 ], [ -58.406475000121134, -34.674482000244097 ], [ -58.405723999662825, -34.673796000085304 ], [ -58.406560000443619, -34.673152000064704 ], [ -58.407397000371247, -34.672551000228452 ], [ -58.408234000298819, -34.671929000323075 ], [ -58.40868500041239, -34.671606999863116 ], [ -58.409435999971379, -34.671049000211156 ], [ -58.409864999969727, -34.670726999751196 ], [ -58.410679999782133, -34.670104999845819 ], [ -58.411495999640636, -34.669504000009567 ], [ -58.412332999568207, -34.66888200010419 ], [ -58.413105000095641, -34.668303000383105 ], [ -58.413963000092338, -34.667680000431631 ], [ -58.41477899995084, -34.667057999626934 ], [ -58.41557299969412, -34.666456999790682 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416737000312253, -34.66015399960736 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416451999759943, -34.650792999597229 ], [ -58.416430999690817, -34.648496999836652 ], [ -58.416302000037206, -34.648347000113915 ], [ -58.416258999852914, -34.648132000091664 ], [ -58.416237999783846, -34.647788999562636 ], [ -58.416237999783846, -34.647659999909024 ], [ -58.416237999783846, -34.647359999564287 ], [ -58.416215999668623, -34.646329999729687 ], [ -58.416215999668623, -34.64594399991563 ], [ -58.416237999783846, -34.645256999710739 ], [ -58.416152000314526, -34.644183999691791 ], [ -58.4161310002454, -34.643240000225774 ], [ -58.4161310002454, -34.642745999927911 ], [ -58.416408999575651, -34.641630999770769 ], [ -58.416709999966486, -34.640493000351626 ], [ -58.417095999780543, -34.639098999918872 ], [ -58.417310999802737, -34.638305000175592 ], [ -58.417611000147474, -34.637188999972352 ], [ -58.417869000354017, -34.636180000206821 ], [ -58.417911999639045, -34.635515000117095 ], [ -58.417890000423142, -34.634249000191176 ], [ -58.417847000238851, -34.632940000080907 ], [ -58.417782999985434, -34.631587999786291 ], [ -58.416560000243749, -34.631460000178834 ], [ -58.415959000407497, -34.631351999694971 ], [ -58.415937000292274, -34.630729999789594 ], [ -58.41589500015408, -34.630151000068565 ], [ -58.415916000223206, -34.628928000326937 ], [ -58.415937000292274, -34.627876000377057 ], [ -58.415979999577303, -34.62693200001172 ], [ -58.416109000130234, -34.625408999925355 ], [ -58.416173000383594, -34.624549999882561 ], [ -58.416215999668623, -34.624014000345824 ], [ -58.416280999968137, -34.623349000256098 ], [ -58.416388000405846, -34.622447000029013 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.416623999597846, -34.619786999670282 ], [ -58.416731000035554, -34.618541999813374 ], [ -58.416859999689166, -34.617319000071745 ], [ -58.418276000237199, -34.617447999725357 ], [ -58.419005999727062, -34.617511999978774 ], [ -58.419670999816731, -34.617577000278288 ], [ -58.419906999908051, -34.616653999982077 ], [ -58.419971000161468, -34.616395999775534 ], [ -58.420099999815079, -34.615839000169672 ], [ -58.420335999906456, -34.61459400031282 ], [ -58.42063700029729, -34.613155999649621 ], [ -58.421044000180416, -34.611482999840518 ], [ -58.421129999649736, -34.610816999704753 ], [ -58.421259000202667, -34.610022999961416 ], [ -58.421302000386959, -34.609830000054387 ], [ -58.421516000363113, -34.608543000059342 ], [ -58.421408999925347, -34.607255000018199 ], [ -58.421365999741056, -34.606676000297114 ], [ -58.421302000386959, -34.605989000092222 ], [ -58.42119499994925, -34.60487399993508 ], [ -58.420979999926999, -34.603179000010812 ], [ -58.42078700001997, -34.601890999969612 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.420528999813428, -34.600003000138315 ], [ -58.420485999629136, -34.599530999955618 ], [ -58.420358000021622, -34.598908000004144 ], [ -58.42022900036801, -34.598157000445156 ], [ -58.420186000183719, -34.597770999731836 ], [ -58.419971000161468, -34.596483999736733 ], [ -58.419778000254439, -34.595410999717842 ], [ -58.419564000278342, -34.594122999676642 ], [ -58.419328000187022, -34.592750000212277 ], [ -58.419156000349119, -34.591547999640454 ], [ -58.419069999980479, -34.59077600001234 ], [ -58.419026999796188, -34.590668999574632 ], [ -58.418383999821685, -34.589939000084769 ], [ -58.418189999868559, -34.589616999624809 ], [ -58.417869000354017, -34.589616999624809 ], [ -58.418554999613491, -34.589058999972849 ], [ -58.419371000371314, -34.588393999883124 ], [ -58.42016500011465, -34.587771999977747 ], [ -58.421237000087444, -34.586957000165398 ], [ -58.419885999838982, -34.586098000122547 ], [ -58.418790999704811, -34.586935000050175 ], [ -58.417439000309571, -34.586077000053479 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.414992999926938, -34.584509999736667 ], [ -58.414284999652978, -34.584059999669194 ], [ -58.413384000371252, -34.583479999902011 ], [ -58.412118000445332, -34.582644000020537 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.422610999597907, -34.580605000420405 ], [ -58.423619000216661, -34.579897000146389 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423426000309632, -34.578223000291189 ], [ -58.422589000382004, -34.577343000179269 ], [ -58.421237000087444, -34.575884000346321 ], [ -58.422332000221616, -34.575519999748167 ], [ -58.423532999848021, -34.575089999703664 ], [ -58.424970999611901, -34.574510999982635 ], [ -58.427395999925409, -34.57290200042695 ], [ -58.424627999982192, -34.571357000225362 ], [ -58.424284000306329, -34.571099000018819 ], [ -58.424112999615204, -34.570862999927442 ], [ -58.424048000215009, -34.570735000319985 ], [ -58.423726999801147, -34.570412999860025 ], [ -58.423511999778952, -34.570241000022065 ], [ -58.423362000056215, -34.570197999837774 ], [ -58.421837999923696, -34.568610000351214 ], [ -58.420679999582262, -34.56657199989786 ], [ -58.420641999628515, -34.566502000267064 ], [ -58.420314999837331, -34.565906999808135 ], [ -58.420078999746011, -34.565433999579398 ], [ -58.419906999908051, -34.565047999765341 ], [ -58.419906999908051, -34.564962000296021 ], [ -58.419735000070148, -34.565113000064855 ], [ -58.419627999632439, -34.5653700002253 ], [ -58.419413999656342, -34.565542000063203 ], [ -58.417911999639045, -34.566615000082152 ], [ -58.416946000057806, -34.567172999734112 ], [ -58.416774000219903, -34.567301000240946 ], [ -58.416666999782194, -34.567450999963626 ], [ -58.416560000243749, -34.567815999708557 ], [ -58.416451999759943, -34.567966000330614 ], [ -58.415294000317829, -34.569146999934048 ], [ -58.413320000117892, -34.570520000297734 ], [ -58.412610999797778, -34.571077999949694 ], [ -58.411988999892401, -34.571357000225362 ], [ -58.411839000169664, -34.571335000110139 ], [ -58.411709999616733, -34.571270999856722 ], [ -58.411559999894052, -34.571099000018819 ], [ -58.410872999689161, -34.570498000182511 ], [ -58.410830999550967, -34.570458000136568 ], [ -58.410057999876756, -34.569725999655134 ], [ -58.409758000431339, -34.569383000025368 ], [ -58.40947900015567, -34.569060999565409 ], [ -58.409392999787087, -34.568975000096145 ], [ -58.409156999695711, -34.568716999889602 ], [ -58.40877099988171, -34.568287999891254 ], [ -58.40797700013843, -34.567408999825432 ], [ -58.407784000231402, -34.567150999618889 ], [ -58.407333000117831, -34.566764999804832 ], [ -58.406860999935134, -34.566592999966929 ], [ -58.406388999752494, -34.566592999966929 ], [ -58.405572999893991, -34.566935999596637 ], [ -58.405230000264282, -34.567108000333917 ], [ -58.404779000150711, -34.567301000240946 ], [ -58.404329000083237, -34.567494000147917 ], [ -58.403620999809277, -34.5676880001011 ], [ -58.402933999604386, -34.567794999639489 ], [ -58.402011000207438, -34.567858999892906 ], [ -58.402740999697357, -34.567021999965277 ], [ -58.4033849997179, -34.566207000152872 ], [ -58.403451000063569, -34.566119999738135 ], [ -58.404372000267585, -34.564919000111729 ], [ -58.405122999826517, -34.563890000323227 ], [ -58.406260000098882, -34.562409000374998 ], [ -58.406310999752804, -34.562352999591212 ], [ -58.407311000002608, -34.561249999987467 ], [ -58.407741000047054, -34.560777999804827 ], [ -58.40821300022975, -34.560263000337159 ], [ -58.409071000226447, -34.559383000225239 ], [ -58.409227000225826, -34.559240999972133 ], [ -58.410014999692464, -34.558525000228542 ], [ -58.411689000446984, -34.557259000302565 ], [ -58.412332999568207, -34.556830000304217 ], [ -58.412768999889408, -34.556551000028605 ], [ -58.412869000004321, -34.556486999775188 ], [ -58.414992999926938, -34.555391999641017 ], [ -58.416494999944234, -34.554877000173349 ], [ -58.417331999871863, -34.554641000082029 ], [ -58.421797999877754, -34.553533000247739 ], [ -58.423296999756701, -34.553161000179955 ], [ -58.424391999890815, -34.552838999719995 ], [ -58.425744000185432, -34.552409999721647 ], [ -58.426122999676636, -34.552266000275665 ], [ -58.427267000271797, -34.551829999954464 ], [ -58.428104000199426, -34.551466000255687 ], [ -58.429005000380414, -34.550950999888698 ], [ -58.429755999939402, -34.550542999959418 ], [ -58.430207000052974, -34.550135000030195 ], [ -58.430657000120391, -34.549619999663207 ], [ -58.430851000073574, -34.549211999733984 ], [ -58.431021999865379, -34.54876199966651 ], [ -58.43105999981907, -34.548509999736666 ], [ -58.431087000164894, -34.548332999668162 ], [ -58.431108000233962, -34.547752999900979 ], [ -58.430978999681031, -34.546851999719991 ], [ -58.431021999865379, -34.546014999792362 ], [ -58.431323000256214, -34.545221000049082 ], [ -58.431752000254562, -34.544663000397122 ], [ -58.432159000137688, -34.544298999798968 ], [ -58.432610000251259, -34.543998000307397 ], [ -58.433339999741179, -34.54354800023998 ], [ -58.434069000084264, -34.543203999664797 ], [ -58.434421000129021, -34.543086999665263 ], [ -58.434841999758419, -34.542947000403728 ], [ -58.43567799963995, -34.542732000381477 ], [ -58.436494000397772, -34.542624999943769 ], [ -58.436793999843189, -34.54266800012806 ], [ -58.437073000118801, -34.54275399959738 ], [ -58.437545000301498, -34.54307600005734 ], [ -58.43812500006868, -34.543741000147008 ], [ -58.438488999767458, -34.544406000236677 ], [ -58.438510999882681, -34.544555999959414 ], [ -58.43859700025132, -34.544963999888637 ], [ -58.438575000136098, -34.545328999633568 ], [ -58.438575000136098, -34.545413999956111 ], [ -58.438618000320446, -34.545500000324694 ], [ -58.438746999974001, -34.545542999609722 ], [ -58.43891899981196, -34.545522000439917 ], [ -58.438983000065377, -34.545457000140402 ], [ -58.4393909999946, -34.545392999886985 ], [ -58.441129000103217, -34.545413999956111 ], [ -58.441085999918926, -34.5437840003313 ], [ -58.441235999641606, -34.543439999756117 ], [ -58.441322000010246, -34.543396999571826 ], [ -58.442969999565776, -34.542884000196409 ], [ -58.443595999655599, -34.542689000197186 ], [ -58.444261999791422, -34.542496000290157 ], [ -58.445463000317147, -34.542089000406975 ], [ -58.446064000153456, -34.541659000362529 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 111.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.394606, -34.743041 ], [ -58.393192, -34.743219 ], [ -58.391702, -34.743409 ], [ -58.390112, -34.743598 ], [ -58.38874, -34.743786 ], [ -58.387272, -34.743982 ], [ -58.386418, -34.7441 ], [ -58.385864, -34.744164 ], [ -58.384438, -34.744342 ], [ -58.383071, -34.744534 ], [ -58.381661, -34.744705 ], [ -58.381402, -34.743709 ], [ -58.38144, -34.743478 ], [ -58.38056, -34.743747 ], [ -58.380068, -34.743883 ], [ -58.378696, -34.744294 ], [ -58.377778, -34.744571 ], [ -58.376329, -34.745011 ], [ -58.375565, -34.744611 ], [ -58.374322, -34.743969 ], [ -58.373465, -34.743529 ], [ -58.372517, -34.743056 ], [ -58.371588, -34.742575 ], [ -58.370857, -34.742189 ], [ -58.370461, -34.742494 ], [ -58.370041, -34.742845 ], [ -58.369634, -34.743173 ], [ -58.369215, -34.74351 ], [ -58.368817, -34.743822 ], [ -58.368383, -34.744172 ], [ -58.367958, -34.744507 ], [ -58.367566, -34.744814 ], [ -58.367155, -34.745152 ], [ -58.366728, -34.745502 ], [ -58.366119, -34.746323 ], [ -58.365546, -34.747104 ], [ -58.364966, -34.747892 ], [ -58.36437, -34.748696 ], [ -58.363782, -34.749466 ], [ -58.362982, -34.750514 ], [ -58.362177, -34.751554 ], [ -58.36137, -34.752583 ], [ -58.360482, -34.753778 ], [ -58.35993, -34.754493 ], [ -58.359384, -34.755212 ], [ -58.358262, -34.756366 ], [ -58.357804, -34.756997 ], [ -58.357371, -34.757593 ], [ -58.356974, -34.7582 ], [ -58.356416, -34.758946 ], [ -58.357251, -34.759366 ], [ -58.357458, -34.75947 ], [ -58.358465, -34.75996 ], [ -58.359194, -34.760313 ], [ -58.359508, -34.760464 ], [ -58.360634, -34.761003 ], [ -58.361412, -34.761395 ], [ -58.362047, -34.761715 ], [ -58.362385, -34.761882 ], [ -58.36168, -34.762884 ], [ -58.361017, -34.763808 ], [ -58.360339, -34.764743 ], [ -58.359909, -34.765362 ], [ -58.35939, -34.766076 ], [ -58.358401999999899, -34.765578 ], [ -58.357768, -34.766406 ], [ -58.357143, -34.767239 ], [ -58.356541, -34.768071 ], [ -58.355883, -34.768896 ], [ -58.355332, -34.769633 ], [ -58.35469, -34.770513 ], [ -58.354047, -34.771354 ], [ -58.353337, -34.772279 ], [ -58.353325, -34.772306 ], [ -58.353313, -34.772332 ], [ -58.352796, -34.772904 ], [ -58.352124, -34.773672 ], [ -58.351233, -34.774693 ], [ -58.350305, -34.775721 ], [ -58.349528, -34.77659 ], [ -58.348785, -34.777499 ], [ -58.347801, -34.778602 ], [ -58.347203, -34.779293 ], [ -58.346663, -34.779886 ], [ -58.34659, -34.779926 ], [ -58.347225, -34.780328 ], [ -58.34752, -34.780524 ], [ -58.347886, -34.78075 ], [ -58.348478, -34.781104 ], [ -58.348588, -34.781174 ], [ -58.349231, -34.781581 ], [ -58.349367, -34.781659 ], [ -58.349581, -34.7818 ], [ -58.35028, -34.782207 ], [ -58.35135, -34.782874 ], [ -58.352088, -34.783341 ], [ -58.35132, -34.784103 ], [ -58.350552, -34.78502 ], [ -58.349843, -34.785913 ], [ -58.348889, -34.787146 ], [ -58.348159, -34.786735 ], [ -58.346949, -34.786063 ], [ -58.346752, -34.785952 ], [ -58.346485, -34.785802 ], [ -58.346035, -34.785562 ], [ -58.345759, -34.785423 ], [ -58.345323, -34.78518 ], [ -58.345125, -34.78507 ], [ -58.344596, -34.784773 ], [ -58.344307, -34.78461 ], [ -58.343889, -34.784383 ], [ -58.343503, -34.784165 ], [ -58.34323, -34.784011 ], [ -58.342849, -34.783797 ], [ -58.342526, -34.783611 ], [ -58.342052, -34.783343 ], [ -58.341121, -34.782836 ], [ -58.340412, -34.78245 ], [ -58.339736, -34.782096 ], [ -58.339297, -34.781895 ], [ -58.339034, -34.781686 ], [ -58.338402, -34.781325 ], [ -58.337788, -34.780972 ], [ -58.336325, -34.780161 ], [ -58.335655, -34.779783 ], [ -58.33481, -34.779293 ], [ -58.334206, -34.778947 ], [ -58.33409, -34.77891 ], [ -58.333939, -34.778869 ], [ -58.333354, -34.77852 ], [ -58.332706, -34.778131 ], [ -58.3321, -34.777808 ], [ -58.331999, -34.777745 ], [ -58.331875, -34.777671 ], [ -58.33101, -34.777189 ], [ -58.330005, -34.776657 ], [ -58.329286, -34.776267 ], [ -58.328617, -34.775877 ], [ -58.327865, -34.775452 ], [ -58.327056, -34.774994 ], [ -58.326107, -34.774476 ], [ -58.325137, -34.773951 ], [ -58.324092, -34.77501 ], [ -58.323191, -34.775965 ], [ -58.322315, -34.776822 ], [ -58.322244, -34.776907 ], [ -58.322165, -34.776984 ], [ -58.321289, -34.777825 ], [ -58.320621, -34.778501 ], [ -58.320422, -34.778685 ], [ -58.319598, -34.779192 ], [ -58.319145, -34.779801 ], [ -58.318767, -34.780436 ], [ -58.318336, -34.781143 ], [ -58.317843, -34.781966 ], [ -58.317475, -34.782567 ], [ -58.317054, -34.783244 ], [ -58.317025, -34.783325 ], [ -58.316988, -34.783435 ], [ -58.316611, -34.784003 ], [ -58.31618, -34.784566 ], [ -58.31577, -34.78511 ], [ -58.315353, -34.785674 ], [ -58.31492, -34.786263 ], [ -58.314513, -34.786829 ], [ -58.314075, -34.787438 ], [ -58.313671, -34.787997 ], [ -58.313262, -34.788567 ], [ -58.312811, -34.789155 ], [ -58.312406, -34.78973 ], [ -58.311966, -34.79029 ], [ -58.311555, -34.790915 ], [ -58.311301, -34.791257 ], [ -58.310255, -34.790613 ], [ -58.309802, -34.790334 ], [ -58.308793, -34.7897 ], [ -58.308156, -34.790399 ], [ -58.307578, -34.791021 ], [ -58.307016, -34.791626 ], [ -58.306453, -34.792237 ], [ -58.305897, -34.792841 ], [ -58.305771, -34.792975 ], [ -58.305862, -34.793787 ], [ -58.304928, -34.793912 ], [ -58.304809, -34.794057 ], [ -58.304242, -34.794673 ], [ -58.303685, -34.795284 ], [ -58.303112, -34.79591 ], [ -58.302559, -34.796514 ], [ -58.302004, -34.797127 ], [ -58.301437, -34.797761 ], [ -58.302888, -34.798643 ], [ -58.302226, -34.799383 ], [ -58.302751, -34.800096 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 110.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.641956, -34.502182 ], [ -58.643894, -34.502007 ], [ -58.643917, -34.502262 ], [ -58.645851, -34.502201 ], [ -58.646027, -34.502056 ], [ -58.646679, -34.501457 ], [ -58.648357, -34.499924 ], [ -58.649071, -34.499336 ], [ -58.64978, -34.498745 ], [ -58.64996, -34.498596 ], [ -58.650471, -34.498161 ], [ -58.65115, -34.497581 ], [ -58.651806, -34.497017 ], [ -58.651939, -34.496906 ], [ -58.652744, -34.496216 ], [ -58.653618, -34.495487 ], [ -58.654205, -34.494987 ], [ -58.655025, -34.494274 ], [ -58.655857, -34.493542 ], [ -58.656658, -34.49287 ], [ -58.657513, -34.492153 ], [ -58.658329, -34.491451 ], [ -58.659222, -34.490734 ], [ -58.66029, -34.489845 ], [ -58.661591, -34.488762 ], [ -58.662289, -34.48819 ], [ -58.663242, -34.487423 ], [ -58.664028, -34.486763 ], [ -58.664848, -34.48608 ], [ -58.665627, -34.485439 ], [ -58.666252, -34.484882 ], [ -58.666405, -34.484745 ], [ -58.667164, -34.484055 ], [ -58.66832, -34.484943 ], [ -58.669609, -34.485958 ], [ -58.670901999999899, -34.487007 ], [ -58.672131, -34.487991 ], [ -58.67215, -34.488007 ], [ -58.673412, -34.489021 ], [ -58.675713, -34.488796 ], [ -58.676632, -34.489582 ], [ -58.677181, -34.490002 ], [ -58.679848, -34.492149 ], [ -58.679867, -34.492168 ], [ -58.680779, -34.492863 ], [ -58.68158, -34.493515 ], [ -58.682381, -34.494164 ], [ -58.682388, -34.494175 ], [ -58.683186, -34.494789 ], [ -58.683197, -34.494797 ], [ -58.684292, -34.495708 ], [ -58.684303, -34.495716 ], [ -58.685493, -34.496639 ], [ -58.685509, -34.496651 ], [ -58.686592, -34.497555 ], [ -58.68726, -34.498096 ], [ -58.688339, -34.498951 ], [ -58.688911, -34.498226 ], [ -58.69022, -34.498936 ], [ -58.691574, -34.499748 ], [ -58.692059, -34.499023 ], [ -58.692585, -34.498352 ], [ -58.693145999999899, -34.497662 ], [ -58.693718, -34.49696 ], [ -58.69429, -34.496258 ], [ -58.69511, -34.497025 ], [ -58.69595, -34.497753 ], [ -58.695076, -34.498123 ], [ -58.691574, -34.499748 ], [ -58.693145999999899, -34.497662 ], [ -58.696425960999932, -34.493676789999938 ], [ -58.698899363999942, -34.490581845999941 ], [ -58.701175, -34.491229 ], [ -58.702151999999899, -34.491786 ], [ -58.703269, -34.492745 ], [ -58.704846, -34.494148 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 109.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.395551, -34.775945 ], [ -58.393996, -34.775791 ], [ -58.392707, -34.775681 ], [ -58.392602, -34.775619 ], [ -58.391258, -34.774874 ], [ -58.39068, -34.77562 ], [ -58.39012, -34.776376 ], [ -58.388877, -34.775687 ], [ -58.387792, -34.775074 ], [ -58.386787, -34.774544 ], [ -58.385768, -34.773995 ], [ -58.384372, -34.77323 ], [ -58.382887, -34.772418 ], [ -58.381477, -34.771662 ], [ -58.380816, -34.771301 ], [ -58.380085, -34.770898 ], [ -58.379783, -34.770735 ], [ -58.378173, -34.769871 ], [ -58.377567, -34.76956 ], [ -58.377344, -34.769443 ], [ -58.37649, -34.768972 ], [ -58.376246, -34.768849 ], [ -58.375136, -34.76828 ], [ -58.37399, -34.767704 ], [ -58.372847, -34.767124 ], [ -58.372348, -34.766871 ], [ -58.371706, -34.766539 ], [ -58.37125, -34.766301 ], [ -58.370591, -34.765954 ], [ -58.37014, -34.765723 ], [ -58.369477, -34.765387 ], [ -58.368654, -34.764973 ], [ -58.367391, -34.764339 ], [ -58.366718, -34.764004 ], [ -58.366119, -34.763731 ], [ -58.365805, -34.763558 ], [ -58.365431, -34.763383 ], [ -58.364795999999899, -34.763059 ], [ -58.364125, -34.762725 ], [ -58.363249, -34.7623 ], [ -58.362385, -34.761882 ], [ -58.36168, -34.762884 ], [ -58.361017, -34.763808 ], [ -58.360339, -34.764743 ], [ -58.359909, -34.765362 ], [ -58.35939, -34.766076 ], [ -58.358734, -34.766912 ], [ -58.357889, -34.766466 ], [ -58.357768, -34.766406 ], [ -58.357652, -34.76635 ], [ -58.356802, -34.76591 ], [ -58.355825, -34.765412 ], [ -58.354876, -34.764922 ], [ -58.353676, -34.764308 ], [ -58.352524, -34.763725 ], [ -58.351469, -34.763178 ], [ -58.350626, -34.762726 ], [ -58.349913999999899, -34.762377 ], [ -58.34849, -34.761678 ], [ -58.347206, -34.761038 ], [ -58.345796, -34.760358 ], [ -58.345206, -34.761205 ], [ -58.344581, -34.761989 ], [ -58.343972, -34.762763 ], [ -58.343418, -34.76345 ], [ -58.342735, -34.764317 ], [ -58.342053, -34.765174 ], [ -58.341354, -34.766062 ], [ -58.341316, -34.76614 ], [ -58.341290999999899, -34.766216 ], [ -58.34076, -34.766955 ], [ -58.340137, -34.767758 ], [ -58.339501, -34.768561 ], [ -58.338868, -34.76935 ], [ -58.338258, -34.770165 ], [ -58.337636, -34.770966 ], [ -58.337024, -34.771749 ], [ -58.336403, -34.772554 ], [ -58.335754, -34.773361 ], [ -58.335407, -34.7738 ], [ -58.33535, -34.774041 ], [ -58.335195, -34.774381 ], [ -58.334406, -34.775238 ], [ -58.333696, -34.775989 ], [ -58.333605, -34.776066 ], [ -58.333493, -34.776146 ], [ -58.332856, -34.77678 ], [ -58.332856, -34.776788 ], [ -58.332799, -34.77688 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 107.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.596172, -34.53429 ], [ -58.595724, -34.533434 ], [ -58.594802999999899, -34.534163 ], [ -58.595608, -34.534882 ], [ -58.594689, -34.535594 ], [ -58.593783, -34.536316 ], [ -58.592884, -34.537016 ], [ -58.591953, -34.537733 ], [ -58.591032, -34.538426 ], [ -58.590119999999899, -34.539128 ], [ -58.589836, -34.539362 ], [ -58.589392, -34.539724 ], [ -58.588533, -34.54043 ], [ -58.588211, -34.540683 ], [ -58.587342, -34.541421 ], [ -58.587197, -34.541544 ], [ -58.586918, -34.541794 ], [ -58.586795, -34.541898 ], [ -58.586267, -34.542339 ], [ -58.585855, -34.542672 ], [ -58.585296, -34.543144 ], [ -58.58527, -34.54314 ], [ -58.585151, -34.543167 ], [ -58.584699, -34.543242 ], [ -58.583971, -34.543753 ], [ -58.583395, -34.544208 ], [ -58.582777, -34.544718 ], [ -58.582534, -34.544901 ], [ -58.582167, -34.54522 ], [ -58.581681, -34.545624 ], [ -58.582187, -34.546891 ], [ -58.582578, -34.547879 ], [ -58.582973, -34.548969 ], [ -58.583246, -34.549714 ], [ -58.583545, -34.550534 ], [ -58.5838, -34.551124 ], [ -58.583922, -34.551391 ], [ -58.584135, -34.551736 ], [ -58.584137, -34.55174 ], [ -58.584464, -34.552361 ], [ -58.584693999999899, -34.553026 ], [ -58.584749, -34.553142 ], [ -58.585157, -34.554202 ], [ -58.585244, -34.554455 ], [ -58.585509, -34.555137 ], [ -58.585656, -34.555565 ], [ -58.586071, -34.556547 ], [ -58.586436, -34.557533 ], [ -58.586745, -34.558384 ], [ -58.58682, -34.558589 ], [ -58.586971, -34.558988 ], [ -58.587282, -34.559734 ], [ -58.58764, -34.560741 ], [ -58.587875, -34.561266 ], [ -58.588029, -34.561634 ], [ -58.588397, -34.561992 ], [ -58.588588, -34.562141 ], [ -58.588721, -34.562161 ], [ -58.588974, -34.5623 ], [ -58.589502, -34.562478 ], [ -58.589678, -34.562548 ], [ -58.590006, -34.562598 ], [ -58.590176, -34.562603 ], [ -58.590983, -34.562622 ], [ -58.590969, -34.562344 ], [ -58.592231, -34.562341 ], [ -58.592933, -34.562341 ], [ -58.593486, -34.562333 ], [ -58.594083, -34.56234 ], [ -58.594734, -34.562344 ], [ -58.595992, -34.562371 ], [ -58.597207, -34.56239 ], [ -58.598769, -34.562386 ], [ -58.598423, -34.56265 ], [ -58.601029, -34.562663 ], [ -58.601605, -34.562674 ], [ -58.601999, -34.562674 ], [ -58.603361, -34.562703 ], [ -58.604453, -34.562701 ], [ -58.605603, -34.562709 ], [ -58.606758, -34.562715 ], [ -58.607561, -34.562721 ], [ -58.60844, -34.56273 ], [ -58.609009, -34.562729 ], [ -58.610086, -34.562769 ], [ -58.611434, -34.56277 ], [ -58.612871, -34.562758 ], [ -58.613402, -34.562774 ], [ -58.615369, -34.562771 ], [ -58.616979, -34.562789 ], [ -58.617474, -34.562803 ], [ -58.619724, -34.56281 ], [ -58.621173, -34.562808 ], [ -58.622784, -34.56282 ], [ -58.624178, -34.562862 ], [ -58.625902, -34.562851 ], [ -58.625891, -34.562924 ], [ -58.625647, -34.563132 ], [ -58.624946, -34.563693 ], [ -58.624308, -34.564139 ], [ -58.623514, -34.564725 ], [ -58.622815, -34.565227 ], [ -58.622573, -34.566128 ], [ -58.622566, -34.566382 ], [ -58.622533, -34.567056 ], [ -58.622502, -34.567729 ], [ -58.622405, -34.568186 ], [ -58.621994, -34.568833 ], [ -58.621977999999899, -34.568844 ], [ -58.621444, -34.569378 ], [ -58.620902, -34.569893 ], [ -58.620371, -34.570404 ], [ -58.619838, -34.570928 ], [ -58.619297, -34.571445 ], [ -58.618788, -34.571918 ], [ -58.618106, -34.572523 ], [ -58.617549, -34.573071 ], [ -58.617, -34.573599 ], [ -58.616454, -34.57414 ], [ -58.615923, -34.574655 ], [ -58.615229, -34.575325 ], [ -58.614659, -34.575841 ], [ -58.614304, -34.576177 ], [ -58.614063, -34.576429 ], [ -58.613807, -34.576646 ], [ -58.61339, -34.577068 ], [ -58.612748, -34.577643 ], [ -58.611873, -34.578528 ], [ -58.611183, -34.579197 ], [ -58.610562, -34.579654 ], [ -58.608728, -34.580991 ], [ -58.60865, -34.581047 ], [ -58.607979, -34.581609 ], [ -58.607155, -34.58217 ], [ -58.606212, -34.582946 ], [ -58.604436, -34.584288 ], [ -58.604201, -34.584483 ], [ -58.603387, -34.585042 ], [ -58.602608, -34.58569 ], [ -58.602262, -34.585922 ], [ -58.602065, -34.586079 ], [ -58.601762, -34.586321 ], [ -58.601026, -34.586854 ], [ -58.600415, -34.58729 ], [ -58.599059, -34.587357 ], [ -58.598026, -34.587401 ], [ -58.59675, -34.58746 ], [ -58.595762, -34.587445 ], [ -58.594677, -34.586497 ], [ -58.593138, -34.587591 ], [ -58.59226, -34.588342 ], [ -58.591801, -34.588715 ], [ -58.591371, -34.589054 ], [ -58.590336, -34.589869 ], [ -58.589366, -34.590601 ], [ -58.588539, -34.591207 ], [ -58.587915, -34.591732 ], [ -58.587291, -34.59218 ], [ -58.586691, -34.592611 ], [ -58.585886, -34.593186 ], [ -58.585037, -34.593821 ], [ -58.584243, -34.594462 ], [ -58.5829, -34.595442 ], [ -58.579542, -34.597967 ], [ -58.578976, -34.598447 ], [ -58.578125, -34.599085 ], [ -58.577634, -34.599461 ], [ -58.576958, -34.599979 ], [ -58.576355, -34.600411 ], [ -58.576061, -34.600595 ], [ -58.576103, -34.601613 ], [ -58.575231, -34.601803 ], [ -58.574421, -34.601778 ], [ -58.573538, -34.601807 ], [ -58.572591, -34.601826 ], [ -58.570837, -34.60189 ], [ -58.57077, -34.600819 ], [ -58.570714, -34.599779 ], [ -58.568907, -34.599881 ], [ -58.568037, -34.59992 ], [ -58.567086, -34.599959 ], [ -58.565305, -34.600075 ], [ -58.56351, -34.600113 ], [ -58.561661, -34.600189 ], [ -58.561737, -34.601206 ], [ -58.561844, -34.602242 ], [ -58.56187, -34.603292 ], [ -58.561957, -34.60429 ], [ -58.561969, -34.60462 ], [ -58.561975, -34.604782 ], [ -58.56197, -34.60499 ], [ -58.561995, -34.605882 ], [ -58.562073, -34.606921 ], [ -58.562128, -34.607938 ], [ -58.562212, -34.608977 ], [ -58.562273, -34.610026 ], [ -58.562352, -34.611059 ], [ -58.562428, -34.612111 ], [ -58.562453, -34.612881 ], [ -58.562478, -34.613161 ], [ -58.562531, -34.613709 ], [ -58.562554, -34.614167 ], [ -58.562566, -34.614459 ], [ -58.562617, -34.615248 ], [ -58.562713, -34.616244 ], [ -58.562737, -34.616675 ], [ -58.562784, -34.617291 ], [ -58.562799, -34.617939 ], [ -58.562823, -34.618334 ], [ -58.562882, -34.619362 ], [ -58.562968, -34.620401 ], [ -58.563045, -34.621464 ], [ -58.563091, -34.622465 ], [ -58.563172, -34.623512 ], [ -58.563255, -34.624593 ], [ -58.563311, -34.625612 ], [ -58.564219, -34.625567 ], [ -58.565081, -34.625529 ], [ -58.566004, -34.625485 ], [ -58.566078, -34.626394 ], [ -58.565427, -34.62691 ], [ -58.564758, -34.627441 ], [ -58.564082, -34.628027 ], [ -58.563872, -34.6282 ], [ -58.563319, -34.628596 ], [ -58.56314, -34.628725 ], [ -58.562614, -34.629077 ], [ -58.56242, -34.629242 ], [ -58.562171, -34.629447 ], [ -58.561801, -34.629754 ], [ -58.560749, -34.630614 ], [ -58.559887, -34.631445 ], [ -58.55898, -34.632276 ], [ -58.55854, -34.632691 ], [ -58.558253, -34.632917 ], [ -58.557785, -34.633316 ], [ -58.557287, -34.633731 ], [ -58.557051, -34.63393 ], [ -58.556256, -34.63456 ], [ -58.556121, -34.634675 ], [ -58.555472, -34.635191 ], [ -58.554862, -34.635682 ], [ -58.554717, -34.635798 ], [ -58.553971, -34.636393 ], [ -58.553369, -34.636853 ], [ -58.553151, -34.63702 ], [ -58.552446, -34.637455 ], [ -58.551648, -34.63806 ], [ -58.551402, -34.63828 ], [ -58.550747, -34.638726 ], [ -58.549611, -34.639561 ], [ -58.548863, -34.640062 ], [ -58.547404, -34.641197 ], [ -58.546457, -34.641933 ], [ -58.546176, -34.642155 ], [ -58.54561, -34.642507 ], [ -58.544721, -34.643168 ], [ -58.544094, -34.643647 ], [ -58.544043, -34.643681 ], [ -58.543451, -34.644115 ], [ -58.542523, -34.644776 ], [ -58.541604, -34.645479 ], [ -58.540953, -34.645969 ], [ -58.540079, -34.646586 ], [ -58.539084, -34.647274 ], [ -58.538861, -34.647434 ], [ -58.53829, -34.647883 ], [ -58.538087, -34.648034 ], [ -58.536625999999899, -34.646626 ], [ -58.535427, -34.645515 ], [ -58.534231, -34.644402 ], [ -58.533053, -34.643272 ], [ -58.531785, -34.642138 ], [ -58.531839, -34.641953 ], [ -58.53215, -34.640751 ], [ -58.53219, -34.639557 ], [ -58.531104, -34.639471 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 104.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.583887315123889, -34.639613899000395 ], [ -58.582869249750232, -34.640326544761955 ], [ -58.5826656366755, -34.64114099706088 ], [ -58.581342151689739, -34.641174932573335 ], [ -58.580391957340993, -34.640258673737044 ], [ -58.58259776565059, -34.638561898114276 ], [ -58.581952990913933, -34.637951058890081 ], [ -58.581749377839202, -34.635982799167678 ], [ -58.568243043882021, -34.636288218779775 ], [ -58.565663944935423, -34.638154671964813 ], [ -58.565120976736139, -34.640224738224589 ], [ -58.56376355623793, -34.640021125149858 ], [ -58.56447620199949, -34.637917123377626 ], [ -58.568752076568849, -34.635507701993305 ], [ -58.575064081885522, -34.631503311523588 ], [ -58.57479259778588, -34.630824601274483 ], [ -58.573910274462044, -34.630926407811849 ], [ -58.571568724102633, -34.629840471413281 ], [ -58.572552853963835, -34.628381244377707 ], [ -58.571755369421155, -34.617844267760361 ], [ -58.578949698061663, -34.617437041610899 ], [ -58.578678213962021, -34.614450716514838 ], [ -58.571483885321513, -34.61465432958957 ], [ -58.570737304047498, -34.605288128151926 ], [ -58.560386972748653, -34.605865031863665 ], [ -58.560658456848294, -34.609088905546912 ], [ -58.562423103495973, -34.608953163497091 ], [ -58.562626716570705, -34.615265168813764 ], [ -58.555669936517376, -34.615638459450771 ], [ -58.552174578734501, -34.617742461222996 ], [ -58.54494631458153, -34.618489042497011 ], [ -58.540297149375164, -34.616690460336883 ], [ -58.539482697076238, -34.617335235073533 ], [ -58.53683572710473, -34.616418976237242 ], [ -58.533476111371641, -34.618862333134018 ], [ -58.529811076026476, -34.61770852571054 ], [ -58.523431199684893, -34.613025424991719 ], [ -58.521327197912669, -34.614382845489928 ], [ -58.523295457635072, -34.615672394963227 ], [ -58.501101632489359, -34.6323686670912 ], [ -58.495196853322149, -34.628432147646393 ], [ -58.493771561799029, -34.627889179447109 ], [ -58.493228593599746, -34.629042986870587 ], [ -58.474496190724452, -34.620966334906242 ], [ -58.468862895656883, -34.61764065468563 ], [ -58.459700307293964, -34.613975619340465 ], [ -58.456646111172994, -34.619880398507675 ], [ -58.438320934447169, -34.612889682941898 ], [ -58.437642224198058, -34.614111361390286 ], [ -58.437438611123326, -34.6161474921376 ], [ -58.435266738326192, -34.620423366706959 ], [ -58.427054344312026, -34.619541043383123 ], [ -58.426443505087832, -34.621848658230078 ], [ -58.422167630518473, -34.621441432080616 ], [ -58.421081694119906, -34.628703631746042 ], [ -58.423321437941951, -34.628975115845684 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 102.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.404929999919545, -34.674374999806332 ], [ -58.405723999662825, -34.673796000085304 ], [ -58.406560000443619, -34.673152000064704 ], [ -58.407397000371247, -34.672551000228452 ], [ -58.408234000298819, -34.671929000323075 ], [ -58.40868500041239, -34.671606999863116 ], [ -58.409435999971379, -34.671049000211156 ], [ -58.409864999969727, -34.670726999751196 ], [ -58.410679999782133, -34.670104999845819 ], [ -58.411495999640636, -34.669504000009567 ], [ -58.412332999568207, -34.66888200010419 ], [ -58.413105000095641, -34.668303000383105 ], [ -58.413963000092338, -34.667680000431631 ], [ -58.41477899995084, -34.667057999626934 ], [ -58.41557299969412, -34.666456999790682 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416794000242874, -34.660447999675398 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416408999575651, -34.656629999874554 ], [ -58.416388000405846, -34.655685000362439 ], [ -58.416345000221554, -34.654676999743685 ], [ -58.416324000152429, -34.654162000276074 ], [ -58.416302000037206, -34.653325000348445 ], [ -58.416280999968137, -34.652144999891789 ], [ -58.4161310002454, -34.652165999960914 ], [ -58.415421999925343, -34.652059000422469 ], [ -58.414284999652978, -34.651780000146857 ], [ -58.414178000114589, -34.651693999778217 ], [ -58.41398500020756, -34.651650999593926 ], [ -58.412697000166361, -34.651050999803772 ], [ -58.411453000355664, -34.650729000243132 ], [ -58.410722999966424, -34.650642999874492 ], [ -58.409693000131824, -34.650536000336103 ], [ -58.407890999769791, -34.650300000244783 ], [ -58.407526000024859, -34.651372000217577 ], [ -58.407418999587094, -34.651693999778217 ], [ -58.407311000002608, -34.651973000053886 ], [ -58.406925000188551, -34.653089000257125 ], [ -58.406602999728591, -34.654054999838309 ], [ -58.406560000443619, -34.654225999630114 ], [ -58.406173999730242, -34.655363999948577 ], [ -58.405572999893991, -34.657208999595639 ], [ -58.402848000135066, -34.655942999669662 ], [ -58.402740999697357, -34.65590000038469 ], [ -58.403277000133414, -34.654419000436462 ], [ -58.403598999694054, -34.653282000164154 ], [ -58.403964000338306, -34.652165999960914 ], [ -58.404608000358905, -34.650471000036589 ], [ -58.401346000117769, -34.65107199987284 ], [ -58.400873999935129, -34.651092999941966 ], [ -58.400552000374489, -34.651050999803772 ], [ -58.399328999733484, -34.65092200015016 ], [ -58.397698000062633, -34.651330000079383 ], [ -58.396668000227976, -34.651415000401926 ], [ -58.395402000302056, -34.65147999980212 ], [ -58.394822999681651, -34.65147999980212 ], [ -58.394287000144914, -34.651457999686897 ], [ -58.393836000031342, -34.651415000401926 ], [ -58.393299999595285, -34.6513940003328 ], [ -58.392226999576337, -34.651330000079383 ], [ -58.391389999648709, -34.651286999895092 ], [ -58.390660000158846, -34.6512439997108 ], [ -58.389008000418869, -34.65115800024148 ], [ -58.388857999796812, -34.651136000126257 ], [ -58.387376999848641, -34.650835999781521 ], [ -58.386539999921013, -34.65068600005884 ], [ -58.385704000039539, -34.65051400022088 ], [ -58.383707999724379, -34.650064000153463 ], [ -58.382592000420459, -34.649849000131212 ], [ -58.381519000401511, -34.649656000224184 ], [ -58.380404000244368, -34.649441000201932 ], [ -58.380017000384214, -34.649420000132864 ], [ -58.379630999670837, -34.649354999833349 ], [ -58.378192999906958, -34.649118999742029 ], [ -58.377119999888066, -34.648947999950167 ], [ -58.37718500018758, -34.648798000227487 ], [ -58.377549999932512, -34.647831999746927 ], [ -58.376454999798341, -34.64753200030151 ], [ -58.375318000425352, -34.647230999910676 ], [ -58.374309999806599, -34.646951999635007 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.371905999562216, -34.646372999913979 ], [ -58.370833000442587, -34.646157999891727 ], [ -58.369824999823834, -34.645921999800407 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.369246000102805, -34.640106999638306 ], [ -58.369395999825485, -34.639163000172289 ], [ -58.369546000447542, -34.638239999876077 ], [ -58.369566999617291, -34.638003999784701 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.371670000370159, -34.630515999813497 ], [ -58.371948999746508, -34.630795000089165 ], [ -58.372785999674079, -34.630237000437205 ], [ -58.373665999785999, -34.629678999885869 ], [ -58.374566999967044, -34.628583999751754 ], [ -58.375575999732575, -34.627296999756709 ], [ -58.376584000351272, -34.627876000377057 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.379781000292894, -34.623670999816738 ], [ -58.379931000015574, -34.62212599961515 ], [ -58.379996000315145, -34.62092399994259 ], [ -58.380146000037826, -34.619722000270031 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.381090000403162, -34.618477999560014 ], [ -58.381090000403162, -34.617598000347414 ], [ -58.381154999803357, -34.616417999890757 ], [ -58.381219000056774, -34.61523800033342 ], [ -58.381262000241065, -34.61418600038354 ], [ -58.381283000310191, -34.613049000111232 ], [ -58.381197999987648, -34.612277999629953 ], [ -58.381219000056774, -34.611826000369604 ], [ -58.381368999779454, -34.611224999633976 ], [ -58.381390999894677, -34.610816999704753 ], [ -58.381476000217219, -34.609637000147416 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381540999617414, -34.608393000336662 ], [ -58.381604999870831, -34.607277000133422 ], [ -58.381648000055122, -34.606096999676765 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.381713000354637, -34.604829999704691 ], [ -58.381990999684831, -34.604294000167954 ], [ -58.382142000352985, -34.603715000446869 ], [ -58.382077000053471, -34.603156999895589 ], [ -58.381863000077374, -34.602512999874989 ], [ -58.381927000330734, -34.601355000432875 ], [ -58.381961000100034, -34.600768000342896 ], [ -58.381990999684831, -34.600239000229635 ], [ -58.382077000053471, -34.599036999657756 ], [ -58.382163000422111, -34.597878000169544 ], [ -58.382269999960499, -34.596740999897179 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382012999800054, -34.595260999995105 ], [ -58.381583999801705, -34.593758999977808 ], [ -58.381648000055122, -34.592793000396625 ], [ -58.381540999617414, -34.59156999975562 ], [ -58.381540999617414, -34.590711999758923 ], [ -58.381411999963802, -34.590239999576283 ], [ -58.380918999712037, -34.589317000179392 ], [ -58.379437999763866, -34.590110999922672 ], [ -58.378944000365266, -34.590390000198283 ], [ -58.377872000392472, -34.59109799957298 ], [ -58.376690999889718, -34.591870000100357 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.375018000080615, -34.593092999842042 ], [ -58.373922999946444, -34.593758999977808 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.372613999836176, -34.591636000101289 ], [ -58.372635999951399, -34.59156999975562 ], [ -58.372785999674079, -34.591441000102009 ], [ -58.372958000411359, -34.591354999733426 ], [ -58.37355900024761, -34.591076000357077 ], [ -58.373580000316736, -34.590991000034592 ], [ -58.373472999879027, -34.590819000196632 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.372464000113496, -34.589595999555684 ], [ -58.372372000367477, -34.589503999809722 ], [ -58.372271000206467, -34.589402999648655 ], [ -58.372014000046022, -34.589273999995044 ], [ -58.371777999954702, -34.589230999810752 ], [ -58.371391000094548, -34.589273999995044 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371606000116799, -34.587643000324135 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.37220699995305, -34.586141000306895 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.371712999655188, -34.585153999757267 ], [ -58.371691999586062, -34.585047000218822 ], [ -58.371777999954702, -34.58491799966589 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.373129000203164, -34.584295999760513 ], [ -58.374909999596753, -34.583394999579525 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375188999872421, -34.58500400003453 ], [ -58.375167999803296, -34.58509000040317 ], [ -58.375082000334032, -34.585153999757267 ], [ -58.373823999877629, -34.585890000423149 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 101.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.566591999621039, -34.705038000103571 ], [ -58.565990999784788, -34.704479999552291 ], [ -58.565433000132828, -34.703987000199845 ], [ -58.564896999696714, -34.703492999901982 ], [ -58.564295999860462, -34.702978000434314 ], [ -58.563716000093279, -34.702463000067382 ], [ -58.563137000372251, -34.701947999700394 ], [ -58.56245000016736, -34.701325999795017 ], [ -58.561850000377149, -34.701776999908589 ], [ -58.561248999641577, -34.702226999976006 ], [ -58.560604999620978, -34.702721000273925 ], [ -58.559982999715601, -34.703192999557245 ], [ -58.559425000063641, -34.703621999555594 ], [ -58.558759999973972, -34.704114999807359 ], [ -58.558137000022498, -34.704652000289514 ], [ -58.557214999772384, -34.705359999664211 ], [ -58.556292000375493, -34.706046999869102 ], [ -58.555369000079224, -34.706755000143119 ], [ -58.554446999829111, -34.707441000301856 ], [ -58.554059999968956, -34.707741999793427 ], [ -58.553674000154956, -34.708021000069039 ], [ -58.553566999717248, -34.708107000437678 ], [ -58.552901999627522, -34.708621999905347 ], [ -58.552794000043036, -34.708664000043541 ], [ -58.552536999882591, -34.708342999629679 ], [ -58.552128999953368, -34.708170999791776 ], [ -58.551206999703254, -34.707784999977719 ], [ -58.550970999611877, -34.707698999609079 ], [ -58.549597000101414, -34.707140999957119 ], [ -58.548867999758329, -34.706519000051742 ], [ -58.548374000359786, -34.706045999823004 ], [ -58.547881000108021, -34.705574999686462 ], [ -58.546406000436548, -34.704269999760641 ], [ -58.544898000142553, -34.702935000250022 ], [ -58.543375000056187, -34.701539999771114 ], [ -58.542795000289004, -34.701025000303503 ], [ -58.542258999852947, -34.70046799979832 ], [ -58.542215999668599, -34.700360000213777 ], [ -58.542193999553376, -34.700103000053389 ], [ -58.542236999737725, -34.699844999846846 ], [ -58.542173000383627, -34.699608999755469 ], [ -58.542087000014988, -34.699545000401429 ], [ -58.541829999854542, -34.699523000286206 ], [ -58.541529000363028, -34.699651999939817 ], [ -58.541036000111262, -34.699651999939817 ], [ -58.540520999744274, -34.699481000148012 ], [ -58.540048999561634, -34.699222999941469 ], [ -58.539770000185342, -34.69903000003444 ], [ -58.539169000349034, -34.698687000404675 ], [ -58.538588999682531, -34.698321999760424 ], [ -58.537903000423114, -34.697913999831201 ], [ -58.537023000311194, -34.697378000294407 ], [ -58.536250999783761, -34.696927000180892 ], [ -58.535478000109549, -34.696454999998195 ], [ -58.534748999766464, -34.696025999999847 ], [ -58.534212000183629, -34.695704000439207 ], [ -58.534040000345726, -34.695597000001499 ], [ -58.533375000256001, -34.69516800000315 ], [ -58.532838999819944, -34.694824000327287 ], [ -58.532710000166333, -34.694737999958704 ], [ -58.531852000169636, -34.694180000306744 ], [ -58.531593999963093, -34.694029999684687 ], [ -58.531121999780453, -34.693708000124047 ], [ -58.53039300033663, -34.693235999941407 ], [ -58.529169999695682, -34.692356999875585 ], [ -58.528975999742556, -34.692206000106751 ], [ -58.528117999745859, -34.691627000385722 ], [ -58.527903999769705, -34.691497999832791 ], [ -58.527431000440288, -34.691155000203025 ], [ -58.527002000441939, -34.690854999858288 ], [ -58.526766000350619, -34.690704000089511 ], [ -58.526058000076603, -34.690210999837745 ], [ -58.525371999917809, -34.689738999655049 ], [ -58.524684999712917, -34.689267000371728 ], [ -58.524083999876666, -34.688859000442449 ], [ -58.523375999602649, -34.688365000144586 ], [ -58.522689000297078, -34.687915000077169 ], [ -58.521937999838769, -34.687399999710181 ], [ -58.521852000369506, -34.687357000425209 ], [ -58.521251999679976, -34.686948999596609 ], [ -58.521079999842073, -34.68684200005822 ], [ -58.520586000443529, -34.686499000428455 ], [ -58.520221999845376, -34.686241000221912 ], [ -58.519942999569707, -34.686048000314941 ], [ -58.519384999917747, -34.685661999601564 ], [ -58.519256000264136, -34.685576000132244 ], [ -58.518612000243593, -34.685125000018672 ], [ -58.517776000362062, -34.684567000366712 ], [ -58.51693900043449, -34.683987999746364 ], [ -58.516337999698862, -34.683579999817084 ], [ -58.516273000298668, -34.683536999632793 ], [ -58.515801000116028, -34.68321600011825 ], [ -58.515630000324222, -34.683086999565319 ], [ -58.51528599974904, -34.682851000373319 ], [ -58.514922000050205, -34.682593000166776 ], [ -58.514729000143177, -34.682443000444096 ], [ -58.514213999776246, -34.68209999991501 ], [ -58.514085000122634, -34.682014000445747 ], [ -58.513612999939937, -34.681691999985787 ], [ -58.513505000355451, -34.681605999617148 ], [ -58.513033000172754, -34.681284000056507 ], [ -58.512862000380949, -34.681176999618799 ], [ -58.512496999736697, -34.680898000242451 ], [ -58.512218000360406, -34.680726999551325 ], [ -58.511360000363709, -34.680125999715074 ], [ -58.511166999557361, -34.679975999992337 ], [ -58.510265000229538, -34.679353000040862 ], [ -58.509127999957173, -34.678559000297582 ], [ -58.508419999683213, -34.678130000299234 ], [ -58.507797999777836, -34.67768000023176 ], [ -58.507433000032904, -34.67744400014044 ], [ -58.507283000310167, -34.677314999587509 ], [ -58.506575000036207, -34.676821000188966 ], [ -58.506446000382596, -34.676734999820326 ], [ -58.506231000360344, -34.676585000097646 ], [ -58.505415999648619, -34.676027000445686 ], [ -58.505243999810716, -34.675920000007977 ], [ -58.504536000436019, -34.675512000078697 ], [ -58.504127999607476, -34.675275999987377 ], [ -58.503592000070682, -34.674975999642641 ], [ -58.503184000141459, -34.674760999620389 ], [ -58.502647999705403, -34.674482000244097 ], [ -58.501704000239386, -34.673988999992332 ], [ -58.500694999574534, -34.673452000409441 ], [ -58.500115999853449, -34.673152000064704 ], [ -58.499751000108517, -34.672959000157675 ], [ -58.499150000272266, -34.672636999697716 ], [ -58.498936000296112, -34.672508000044104 ], [ -58.499686999855101, -34.670856000304127 ], [ -58.500480999598437, -34.669504000009567 ], [ -58.501318000425329, -34.668194999899299 ], [ -58.501961000399831, -34.667208000248991 ], [ -58.502605000420374, -34.666178000414334 ], [ -58.503055999634626, -34.665405999886957 ], [ -58.503227000325751, -34.665084000326317 ], [ -58.504213999976059, -34.66343199968702 ], [ -58.504536000436019, -34.662830999850712 ], [ -58.505179999557299, -34.661822000085181 ], [ -58.504642999974408, -34.661415000202055 ], [ -58.503871000346351, -34.660749000066232 ], [ -58.503119999888042, -34.660127000160912 ], [ -58.499794000292866, -34.658152999960919 ], [ -58.498827999812306, -34.65733800014857 ], [ -58.498249000091221, -34.656865999965873 ], [ -58.497841000161998, -34.656522000290011 ], [ -58.497241000371844, -34.656029000038302 ], [ -58.496532000051729, -34.655449000271119 ], [ -58.495739000354547, -34.654784000181394 ], [ -58.494944999711947, -34.654119000091725 ], [ -58.49415099996861, -34.653454000002057 ], [ -58.493378000294456, -34.652788999912389 ], [ -58.492562999582731, -34.652122999776566 ], [ -58.491768999839451, -34.651457999686897 ], [ -58.490996000165239, -34.650814999712395 ], [ -58.490202000421959, -34.650148999576629 ], [ -58.489386999710234, -34.649463000317155 ], [ -58.488764999804857, -34.648925999835001 ], [ -58.488163999968606, -34.648390000298207 ], [ -58.487648999601618, -34.647939000184692 ], [ -58.487134000133949, -34.647510000186344 ], [ -58.486639999836086, -34.647081000187939 ], [ -58.488099999715189, -34.646779999797104 ], [ -58.489622999801554, -34.646307999614464 ], [ -58.491426000209685, -34.645836000331087 ], [ -58.493164000318302, -34.64538600026367 ], [ -58.494837000127404, -34.644935000150099 ], [ -58.495223999987559, -34.644848999781459 ], [ -58.495095000333947, -34.644721000174002 ], [ -58.494687000404724, -34.644527000220819 ], [ -58.493614000385776, -34.644055000038179 ], [ -58.492284000206382, -34.643412000063734 ], [ -58.491640000185839, -34.643110999672842 ], [ -58.490910999842754, -34.642768000043134 ], [ -58.490160000283765, -34.642403000298202 ], [ -58.488872000242566, -34.643476000317094 ], [ -58.488228000221966, -34.643927000430665 ], [ -58.48799600031515, -34.644076000107248 ], [ -58.486425999859989, -34.645084999872779 ], [ -58.485482000393972, -34.645643000424059 ], [ -58.485053000395624, -34.645836000331087 ], [ -58.482799999920019, -34.646673000258716 ], [ -58.481669999970507, -34.647042000188094 ], [ -58.480568000412859, -34.647402999748579 ], [ -58.479988999792454, -34.647467000001996 ], [ -58.478830000304242, -34.647489000117218 ], [ -58.478186000283642, -34.64753200030151 ], [ -58.476962999642694, -34.647896000000344 ], [ -58.476821000288908, -34.647994000023061 ], [ -58.476620000012929, -34.648132000091664 ], [ -58.475675999647649, -34.648626000389584 ], [ -58.475117999995689, -34.648819000296555 ], [ -58.473508000393849, -34.649055000387932 ], [ -58.472928999773501, -34.649100999811253 ], [ -58.472435000374901, -34.649140999857195 ], [ -58.470268000267936, -34.649311999649001 ], [ -58.469000000249764, -34.649369999625719 ], [ -58.468851999719959, -34.649376999948572 ], [ -58.467606999863108, -34.649354999833349 ], [ -58.466684999612994, -34.649248000294961 ], [ -58.466040999592394, -34.648991000134515 ], [ -58.465505000055657, -34.648626000389584 ], [ -58.465411000217443, -34.64854700034374 ], [ -58.465097000126434, -34.648282999860498 ], [ -58.463638000293429, -34.646716000443007 ], [ -58.463586999740187, -34.646646999959046 ], [ -58.463100999811275, -34.645987000099922 ], [ -58.462930000019469, -34.645664999639962 ], [ -58.46273700011244, -34.645193000356642 ], [ -58.462350000252286, -34.644120000337693 ], [ -58.462221999745452, -34.643969999715694 ], [ -58.462177000368229, -34.643850999623908 ], [ -58.462028999838424, -34.643455000248025 ], [ -58.461813999816172, -34.643089999603774 ], [ -58.461641999978269, -34.642811000227425 ], [ -58.461212999979921, -34.642295999860437 ], [ -58.460634000258892, -34.641759000277602 ], [ -58.460232999753089, -34.64147499977139 ], [ -58.458939000334567, -34.64055799975182 ], [ -58.457985000407405, -34.63981599970856 ], [ -58.457587000040007, -34.639505999801997 ], [ -58.456342000183099, -34.638432999783049 ], [ -58.456080999838207, -34.638252000429418 ], [ -58.455291000279374, -34.637704000339284 ], [ -58.453723999962563, -34.636759999974004 ], [ -58.453419000286601, -34.636653000435558 ], [ -58.452801999712449, -34.636438000413364 ], [ -58.452393999783226, -34.636330999975598 ], [ -58.451428000201986, -34.636244999607015 ], [ -58.448826999866128, -34.636306999768181 ], [ -58.448724999658964, -34.636308999860432 ], [ -58.447802000262072, -34.636159000137695 ], [ -58.446878999965861, -34.635815999608667 ], [ -58.445934999600524, -34.635279000025776 ], [ -58.445705999832001, -34.635123000026397 ], [ -58.442872999589213, -34.633185999734053 ], [ -58.442544999751874, -34.63296200019613 ], [ -58.440591999621063, -34.631845999992834 ], [ -58.43984000001592, -34.631387000409688 ], [ -58.439325999695086, -34.631073000318679 ], [ -58.43891899981196, -34.630859000342525 ], [ -58.438210000391166, -34.630557999951691 ], [ -58.437845999793012, -34.630451000413302 ], [ -58.437158999588121, -34.630300999791245 ], [ -58.435699999755116, -34.630107999884217 ], [ -58.435508999940339, -34.630077000253323 ], [ -58.433961999646499, -34.629828999608605 ], [ -58.431580000416659, -34.629463999863674 ], [ -58.430860999635399, -34.629368999979306 ], [ -58.425722000070209, -34.62869200023556 ], [ -58.425386999910074, -34.628652000189618 ], [ -58.421791999601055, -34.628222000145172 ], [ -58.421237000087444, -34.628154999753406 ], [ -58.416904999965709, -34.627493999848184 ], [ -58.41589500015408, -34.627339999941 ], [ -58.4126279996824, -34.626909999896554 ], [ -58.412311000352361, -34.62686799975836 ], [ -58.410788000265939, -34.626739000104749 ], [ -58.409041999788428, -34.626668000427856 ], [ -58.407632999563248, -34.626609999551818 ], [ -58.405245000056652, -34.62630199973745 ], [ -58.40347100008654, -34.626074000015024 ], [ -58.402131000345321, -34.625866000315625 ], [ -58.401539000024798, -34.625772999624189 ], [ -58.399950999638861, -34.625429999994481 ], [ -58.398157999691875, -34.624994999719434 ], [ -58.396946999604324, -34.624700999651395 ], [ -58.394586000443553, -34.624163000022406 ], [ -58.392613000289714, -34.623712999954932 ], [ -58.391368000432806, -34.623520000047904 ], [ -58.390996000365078, -34.623475999817515 ], [ -58.386904999665944, -34.622983999611847 ], [ -58.386046999669247, -34.62292000025775 ], [ -58.384565999721076, -34.622790999704819 ], [ -58.384464999560066, -34.622788999612624 ], [ -58.383450999563934, -34.622768999589596 ], [ -58.382311000052596, -34.622768999589596 ], [ -58.382269999960499, -34.622768999589596 ], [ -58.381990999684831, -34.622726000304624 ], [ -58.381691000239414, -34.622618999866916 ], [ -58.381433000032871, -34.622447000029013 ], [ -58.381240000125842, -34.622210999937636 ], [ -58.381154999803357, -34.621974999846316 ], [ -58.381231999756949, -34.620596000105252 ], [ -58.381240000125842, -34.62045199975995 ], [ -58.381196999941551, -34.620043999830671 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.380146000037826, -34.619722000270031 ], [ -58.378687000204877, -34.619701000200962 ], [ -58.377270999656844, -34.619701000200962 ], [ -58.375789999708672, -34.619679000085739 ], [ -58.374287999691376, -34.61965800001667 ], [ -58.372936000296136, -34.619593999763254 ], [ -58.373021999765456, -34.618477999560014 ], [ -58.373086000018873, -34.6170619999113 ], [ -58.373129000203164, -34.6160320000767 ], [ -58.373193999603359, -34.614872999689169 ], [ -58.373257999856776, -34.613757000385192 ], [ -58.373322000110193, -34.612512999675175 ], [ -58.374738999804947, -34.612597999997661 ], [ -58.376155000352924, -34.612748999766495 ], [ -58.377571000001581, -34.612834000088981 ], [ -58.376218999707021, -34.611568000163061 ], [ -58.375039000149684, -34.610474000074987 ], [ -58.375039000149684, -34.610324000352307 ], [ -58.374825000173587, -34.610109000330056 ], [ -58.374653000335684, -34.610131000445278 ], [ -58.373580000316736, -34.609100999711302 ], [ -58.373450999763804, -34.60897200005769 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370340000190822, -34.601912000038737 ], [ -58.370210999637891, -34.601912000038737 ], [ -58.369137999618943, -34.601847999785321 ], [ -58.369310000356165, -34.600538999675052 ], [ -58.369482000194125, -34.599359000117715 ], [ -58.369566999617291, -34.598199999730184 ], [ -58.370017999730862, -34.597126999711236 ], [ -58.370468999844434, -34.595882999900482 ], [ -58.370522999636705, -34.59575400024687 ], [ -58.372184999837827, -34.591805999846997 ], [ -58.372334999560564, -34.59156999975562 ], [ -58.372334999560564, -34.591526999571329 ], [ -58.37229300032169, -34.591441000102009 ], [ -58.371842000208119, -34.590904999665952 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371122000280025, -34.586460999775284 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.369223999987582, -34.58476799994321 ], [ -58.370081999984279, -34.585775999662587 ], [ -58.370210999637891, -34.585927000330742 ], [ -58.370489999913502, -34.586258000306429 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 98.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.397715, -34.760998 ], [ -58.397607, -34.759845 ], [ -58.397856, -34.759807 ], [ -58.39802, -34.759798 ], [ -58.399377999999899, -34.759614 ], [ -58.400789, -34.759405 ], [ -58.402232, -34.759218 ], [ -58.402318, -34.759207 ], [ -58.403715, -34.759025 ], [ -58.40398, -34.760278 ], [ -58.405362, -34.760094 ], [ -58.406142, -34.75996 ], [ -58.406942999999899, -34.759835 ], [ -58.407979, -34.759677 ], [ -58.408407, -34.759617 ], [ -58.409835, -34.759422 ], [ -58.410604, -34.75931 ], [ -58.411219, -34.759226 ], [ -58.411926, -34.759129 ], [ -58.412611, -34.759033 ], [ -58.413537, -34.75891 ], [ -58.414178, -34.758817 ], [ -58.414988, -34.758684 ], [ -58.415847, -34.758543 ], [ -58.41727, -34.758339 ], [ -58.418648, -34.758165 ], [ -58.419199, -34.758095 ], [ -58.420086, -34.757986 ], [ -58.420657, -34.757909 ], [ -58.421592, -34.757767 ], [ -58.422407, -34.757619 ], [ -58.423089, -34.757522 ], [ -58.423815, -34.757422 ], [ -58.424518, -34.757331 ], [ -58.425636, -34.757157 ], [ -58.426151, -34.757077 ], [ -58.426949, -34.756966 ], [ -58.427435, -34.756898 ], [ -58.428001, -34.756814 ], [ -58.428935, -34.756682 ], [ -58.429755, -34.756591 ], [ -58.430245, -34.756529 ], [ -58.430994, -34.756415 ], [ -58.431549, -34.756344 ], [ -58.432172, -34.756242 ], [ -58.432345, -34.756226 ], [ -58.432987, -34.756168 ], [ -58.433135, -34.756155 ], [ -58.433297, -34.756133 ], [ -58.433941, -34.756036 ], [ -58.434368, -34.755974 ], [ -58.434575, -34.755929 ], [ -58.43516, -34.755861 ], [ -58.436263, -34.755691 ], [ -58.437152, -34.755601 ], [ -58.437375, -34.755578 ], [ -58.437987, -34.755512 ], [ -58.438862, -34.755396 ], [ -58.440235, -34.755665 ], [ -58.440781, -34.754945 ], [ -58.441532, -34.755334 ], [ -58.442384, -34.755809 ], [ -58.441561, -34.756879 ], [ -58.442969, -34.757626 ], [ -58.44343, -34.757861 ], [ -58.443887, -34.758091 ], [ -58.444504, -34.758406 ], [ -58.445463, -34.758932 ], [ -58.446582, -34.759517 ], [ -58.447726, -34.760089 ], [ -58.448864, -34.760664 ], [ -58.448025, -34.761777 ], [ -58.447192, -34.762881 ], [ -58.446373, -34.763976 ], [ -58.445545, -34.765093 ], [ -58.444671, -34.76621 ], [ -58.443834, -34.767304 ], [ -58.445005, -34.767883 ], [ -58.444143, -34.769023 ], [ -58.443301, -34.770113 ], [ -58.442896, -34.770691 ], [ -58.443663999999899, -34.771102 ], [ -58.444041, -34.771308 ], [ -58.446302, -34.77245 ], [ -58.448388, -34.773532 ], [ -58.452827, -34.775831 ], [ -58.454975, -34.776952 ], [ -58.457252, -34.77818 ], [ -58.457598, -34.778345 ], [ -58.457777, -34.778425 ], [ -58.457868, -34.778457 ], [ -58.457969, -34.778465 ], [ -58.458106, -34.778465 ], [ -58.45821, -34.778442 ], [ -58.458357, -34.778393 ], [ -58.458493, -34.778305 ], [ -58.458573, -34.778187 ], [ -58.45902, -34.777542 ], [ -58.459299, -34.777183 ], [ -58.459547, -34.776894 ], [ -58.45969, -34.776834 ], [ -58.459865, -34.776805 ], [ -58.45998, -34.776834 ], [ -58.460116, -34.776905 ], [ -58.460207, -34.776971 ], [ -58.460315, -34.777066 ], [ -58.460368, -34.777169 ], [ -58.460371, -34.777269 ], [ -58.460326, -34.777433 ], [ -58.459802, -34.778115 ], [ -58.458987, -34.779186 ], [ -58.458617, -34.77969 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 97.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.375832999892964, -34.639462999617706 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377357000025484, -34.629550000232257 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.379808999785496, -34.627239999826088 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.382957000165391, -34.623906999908058 ], [ -58.382957000165391, -34.622210999937636 ], [ -58.382957000165391, -34.620988000196007 ], [ -58.382978000234459, -34.619744000385253 ], [ -58.382957000165391, -34.618563999928597 ], [ -58.383021000418807, -34.617683999816677 ], [ -58.383063999703779, -34.616567999613437 ], [ -58.383021000418807, -34.615344999871809 ], [ -58.383085999819002, -34.6143580002215 ], [ -58.383193000256711, -34.613198999833912 ], [ -58.383299999795099, -34.612041000391798 ], [ -58.383365000094614, -34.610882000004267 ], [ -58.383408000278962, -34.609744999731902 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.383450999563934, -34.60858600024369 ], [ -58.383514999817351, -34.60747000004045 ], [ -58.383579000070768, -34.606204000114474 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.38383700027731, -34.602599000243629 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.383943999815699, -34.600753999697304 ], [ -58.383922999746574, -34.600410000021441 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.384094000437756, -34.598242999914476 ], [ -58.38407300036863, -34.598093000191739 ], [ -58.384179999907019, -34.596912999735082 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.384438000113562, -34.594401999952311 ], [ -58.384480000251756, -34.592943000119305 ], [ -58.384415999998339, -34.592835999681597 ], [ -58.386518999851944, -34.592793000396625 ], [ -58.387569999755669, -34.592813999566374 ], [ -58.388772000327492, -34.592835999681597 ], [ -58.388772000327492, -34.592750000212277 ], [ -58.389008000418869, -34.592514000120957 ], [ -58.389930999815761, -34.591699000308552 ], [ -58.390918000365389, -34.590904999665952 ], [ -58.391948000199989, -34.590088999807449 ], [ -58.393042000288062, -34.589230999810752 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.431858999792951, -34.576507000297795 ], [ -58.435506999848144, -34.574962000096207 ], [ -58.436430000144355, -34.574510999982635 ], [ -58.437116000303149, -34.574103000053356 ], [ -58.438446999629264, -34.573394999779396 ], [ -58.439648000155046, -34.572708999620602 ], [ -58.440742000243063, -34.572085999669127 ], [ -58.441966000030845, -34.571420999579402 ], [ -58.442544999751874, -34.571099000018819 ], [ -58.442952999681154, -34.57090600011179 ], [ -58.443831999746976, -34.570456000044317 ], [ -58.444111000022588, -34.570305000275482 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.474131000345324, -34.538783999981547 ], [ -58.473229000118238, -34.538376000052324 ], [ -58.472199000283581, -34.53792599998485 ], [ -58.471898999938844, -34.537797000331238 ], [ -58.470032000176616, -34.536960000403667 ], [ -58.469881999554616, -34.53689600015025 ], [ -58.469839000269587, -34.536766999597319 ], [ -58.470225000083644, -34.536187999876233 ], [ -58.470440000105896, -34.536187999876233 ], [ -58.471812999570261, -34.536746000427513 ], [ -58.472907999704375, -34.537195999595667 ], [ -58.473785999724043, -34.537478000009628 ], [ -58.474710000066409, -34.53777600026217 ], [ -58.475225000433397, -34.53801200035349 ], [ -58.47563300036262, -34.53824800044481 ], [ -58.476083000430094, -34.538441000351838 ], [ -58.477142999849548, -34.538888000280963 ], [ -58.477456999940557, -34.539020000072924 ], [ -58.477863999823683, -34.539256000164244 ], [ -58.478379000190671, -34.539620999909175 ], [ -58.479259000302591, -34.540285999998844 ], [ -58.480224999883774, -34.54075800018154 ], [ -58.480280999768297, -34.540782000388958 ], [ -58.483592999617201, -34.542173999830197 ], [ -58.484387000259801, -34.542453000105809 ], [ -58.485524999678944, -34.54290400021938 ], [ -58.486856999950533, -34.543424999963747 ], [ -58.487391000294394, -34.543632999663146 ], [ -58.488679000335537, -34.544083999776717 ], [ -58.491426000209685, -34.545286000348597 ], [ -58.492347999560479, -34.545778999701042 ], [ -58.492862999927468, -34.545908000253974 ], [ -58.49335700022533, -34.545887000184848 ], [ -58.493635999601679, -34.545800999816265 ], [ -58.493801000016106, -34.545713000254693 ], [ -58.493958000061639, -34.545628999978305 ], [ -58.494194000152959, -34.545457000140402 ], [ -58.495052000149656, -34.544319999868037 ], [ -58.495429000447984, -34.54379499993928 ], [ -58.495652999985907, -34.543482999940466 ], [ -58.49685399961237, -34.541959999854043 ], [ -58.497581999909301, -34.541220999949132 ], [ -58.498249000091221, -34.540544000205387 ], [ -58.499730000039449, -34.538697999612964 ], [ -58.500480999598437, -34.537710999962655 ], [ -58.501489000217134, -34.536208999945359 ], [ -58.501553999617329, -34.536122999576719 ], [ -58.502218999707054, -34.535179000110702 ], [ -58.5028619996815, -34.534213999676297 ], [ -58.503275999887421, -34.533483000140279 ], [ -58.503505999702099, -34.533076000257154 ], [ -58.503678000439322, -34.532775999912417 ], [ -58.504342999629671, -34.531960000053914 ], [ -58.504836999927591, -34.531251999779897 ], [ -58.505216000318114, -34.530738000358383 ], [ -58.505436999717745, -34.530436999967549 ], [ -58.505694999924287, -34.530094000337783 ], [ -58.506981999919333, -34.528377000298292 ], [ -58.508655999774533, -34.52605999956927 ], [ -58.510512999974935, -34.523526999671276 ], [ -58.511251999879846, -34.522518999951842 ], [ -58.512411000267434, -34.521124000372254 ], [ -58.514707000028011, -34.518806999643289 ], [ -58.514849000281117, -34.518642000128182 ], [ -58.515672999609194, -34.517691000339369 ], [ -58.516724000412239, -34.516833000342672 ], [ -58.517368000432839, -34.516168000252947 ], [ -58.518188999622566, -34.515391000394288 ], [ -58.518569000059244, -34.515029999934484 ], [ -58.519598999893901, -34.514150999868718 ], [ -58.519749999662736, -34.514000000099884 ], [ -58.520242999914501, -34.513421000378798 ], [ -58.520522000190113, -34.513142000103187 ], [ -58.520800999566461, -34.512928000127033 ], [ -58.521033000372654, -34.512764999804858 ], [ -58.52122999956481, -34.512626999736199 ], [ -58.525221000148974, -34.510330999975622 ], [ -58.525349999802586, -34.510266999722205 ], [ -58.526873999935106, -34.509301000141022 ], [ -58.527625000393414, -34.509000999796285 ], [ -58.528848000135042, -34.508528999613588 ], [ -58.530898000242473, -34.507526000124756 ], [ -58.532753000350624, -34.506618999667069 ], [ -58.535563999578869, -34.505267000271829 ], [ -58.536497000336283, -34.504802999558763 ], [ -58.539275999887423, -34.503421999725447 ], [ -58.541701000200931, -34.50224200016811 ], [ -58.542065999945919, -34.502091000399332 ], [ -58.544833999889136, -34.500674999851299 ], [ -58.544881000257931, -34.500652999736133 ], [ -58.545606000416569, -34.500310000106367 ], [ -58.547214999972255, -34.49945200010967 ], [ -58.548160000383689, -34.499044000180447 ], [ -58.549426000309609, -34.498486999675265 ], [ -58.550970999611877, -34.497606999563345 ], [ -58.551764000208379, -34.496877000073425 ], [ -58.551958000161562, -34.496727000350745 ], [ -58.553009000065288, -34.495804000054534 ], [ -58.554103000153304, -34.494859999689197 ], [ -58.554554000266876, -34.494666999782169 ], [ -58.555240999572447, -34.494581000312849 ], [ -58.555455000447864, -34.494494999944266 ], [ -58.556184999937784, -34.493808999785472 ], [ -58.556678000189493, -34.493251000133512 ], [ -58.556936000396036, -34.492928999673552 ], [ -58.557580000416635, -34.491942000023244 ], [ -58.558480999698361, -34.48949599964061 ], [ -58.558959000157699, -34.48803499971541 ], [ -58.559746999624281, -34.485632999563222 ], [ -58.560003999784726, -34.485140000210777 ], [ -58.560090000153366, -34.484904000119457 ], [ -58.56054100026688, -34.483702000446897 ], [ -58.560603000428102, -34.483514999917247 ], [ -58.560668999874395, -34.483315999733577 ], [ -58.561119999987966, -34.482350000152337 ], [ -58.562342999729594, -34.479625000393412 ], [ -58.562957000165397, -34.478431000190483 ], [ -58.563502000117182, -34.477371999917807 ], [ -58.566011999853856, -34.472694000028014 ], [ -58.566699000058748, -34.471450000217317 ], [ -58.567622000355016, -34.469991000384312 ], [ -58.569402999748604, -34.466835999681621 ], [ -58.569982000369009, -34.465740000400672 ], [ -58.570003999584856, -34.465699000308575 ], [ -58.570711999858872, -34.464154000106987 ], [ -58.570882999650678, -34.46368199992429 ], [ -58.571312999695124, -34.462623999697769 ], [ -58.571484000386249, -34.462202000022216 ], [ -58.572694999574537, -34.45902600014972 ], [ -58.572792999597198, -34.458767999943177 ], [ -58.574274999591523, -34.454625999590178 ], [ -58.574358999867911, -34.454391000444275 ], [ -58.575174999726414, -34.452181000153018 ], [ -58.575274999841326, -34.451938999784943 ], [ -58.575646999909054, -34.451043999880653 ], [ -58.576654999628488, -34.448984000211397 ], [ -58.577402999948447, -34.447705999732079 ], [ -58.578564999575008, -34.44572199997026 ], [ -58.579527999917218, -34.444472999928962 ], [ -58.580581999959293, -34.443103999749724 ], [ -58.581010999957641, -34.442611000397335 ], [ -58.582389999698705, -34.44102500010365 ], [ -58.583436000271149, -34.439821000338839 ], [ -58.583993999923109, -34.439005999627113 ], [ -58.584526000174719, -34.437986000253659 ], [ -58.584745000381417, -34.437567999863234 ], [ -58.585088000011126, -34.436923999842691 ], [ -58.585517000009474, -34.436409000375022 ], [ -58.586289999683686, -34.435786999570325 ], [ -58.58761999986308, -34.435014999942268 ], [ -58.587780000046905, -34.434887000334754 ], [ -58.588692999881971, -34.434155999899417 ], [ -58.589703999739754, -34.432925999834993 ], [ -58.590667000081964, -34.431752999701132 ], [ -58.591482999940467, -34.430637000397212 ], [ -58.591719000031787, -34.430036999707738 ], [ -58.591675999847496, -34.42928600014875 ], [ -58.591653999732273, -34.429114000310847 ], [ -58.591889999823593, -34.42887800021947 ], [ -58.591846999639301, -34.428706000381567 ], [ -58.591568000262953, -34.42784800038487 ], [ -58.591547000193884, -34.42776200001623 ], [ -58.591417999640953, -34.42728999983359 ], [ -58.591052999895965, -34.426539000274602 ], [ -58.590623999897616, -34.425723999562877 ], [ -58.589958999807948, -34.424736999912568 ], [ -58.589444000340279, -34.424007000422705 ], [ -58.588543000159291, -34.424565000074665 ], [ -58.588307000067971, -34.424629000328082 ], [ -58.587255000118148, -34.423749000216162 ], [ -58.588092000045719, -34.423084000126437 ], [ -58.588714999997194, -34.42263400005902 ], [ -58.589314999787348, -34.423771000331385 ], [ -58.589444000340279, -34.423792000400454 ], [ -58.590409999921519, -34.423469999940494 ], [ -58.590903000173284, -34.423019999873077 ], [ -58.591439999756119, -34.422505000405408 ], [ -58.592490999659844, -34.421561000040072 ], [ -58.592984999957764, -34.421088999857432 ], [ -58.593521000393821, -34.420594999559512 ], [ -58.594057999976656, -34.420123000276192 ], [ -58.594551000228421, -34.419630000024426 ], [ -58.595603000178301, -34.418684999612992 ], [ -58.596654000081969, -34.417720000077907 ], [ -58.597189999618763, -34.417461999871364 ], [ -58.597920000007946, -34.417119000241598 ], [ -58.599121999680506, -34.416603999874667 ], [ -58.600774000319802, -34.415832000246553 ], [ -58.602061000314848, -34.415231000410301 ], [ -58.602168999899391, -34.41518800022601 ], [ -58.603198999733991, -34.414737000112439 ], [ -58.603284000056533, -34.414629999674673 ], [ -58.604765000004704, -34.413943000369102 ], [ -58.605623000001401, -34.413556999655782 ], [ -58.606267000022001, -34.413278000279433 ], [ -58.607232999603184, -34.412827000165862 ], [ -58.608090999599938, -34.412420000282737 ], [ -58.609849999777623, -34.411625999640137 ], [ -58.611052000349503, -34.411067999988177 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 96.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.389127999657433, -34.584677000243346 ], [ -58.389894999954265, -34.584298999898863 ], [ -58.390004999631003, -34.584245000106648 ], [ -58.390178999561158, -34.584168000153056 ], [ -58.39025600041407, -34.584282000014241 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.39175500029296, -34.584724999758862 ], [ -58.391024999903777, -34.584960999850239 ], [ -58.390669999720672, -34.58525399987218 ], [ -58.390531999652012, -34.585368999779462 ], [ -58.390295999560692, -34.585840999962159 ], [ -58.390531999652012, -34.586720000027924 ], [ -58.390467000251817, -34.586870999796758 ], [ -58.390101999607566, -34.587084999772856 ], [ -58.389781000093024, -34.587277999679884 ], [ -58.389201000325841, -34.587665000439358 ], [ -58.389974, -34.588372999814055 ], [ -58.39096099965036, -34.589187999626461 ], [ -58.389951999884829, -34.590045999623158 ], [ -58.388944000165452, -34.590840000265757 ], [ -58.387956999615824, -34.591634000009037 ], [ -58.387055000288001, -34.592364000398277 ], [ -58.386518999851944, -34.592793000396625 ], [ -58.386046999669247, -34.593179000210625 ], [ -58.385831999647053, -34.594530999605922 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.381863000077374, -34.596697999712887 ], [ -58.381754999593511, -34.597857000100419 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.381631000170501, -34.599925000138626 ], [ -58.381670000170345, -34.600196000045344 ], [ -58.381604999870831, -34.601333000317652 ], [ -58.381561999686483, -34.60249199980592 ], [ -58.381540999617414, -34.602661999551572 ], [ -58.381374000010055, -34.602852000219571 ], [ -58.381283000310191, -34.602899999735143 ], [ -58.381154999803357, -34.603092999642172 ], [ -58.381069000334037, -34.603651000193452 ], [ -58.381089000357065, -34.603929000422966 ], [ -58.381111999619066, -34.604229999914537 ], [ -58.381132999688134, -34.604294000167954 ], [ -58.381342000333007, -34.60464900035106 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.381305000425414, -34.606074999561542 ], [ -58.381240000125842, -34.607255000018199 ], [ -58.381208999595628, -34.607803000108333 ], [ -58.381175999872482, -34.608371000221439 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.381090000403162, -34.60961600007829 ], [ -58.381047000218871, -34.610795999635627 ], [ -58.380960999850231, -34.611804000254381 ], [ -58.380918999712037, -34.613028000042107 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380790000058425, -34.61523800033342 ], [ -58.380746999874077, -34.616395999775534 ], [ -58.380681999574563, -34.617577000278288 ], [ -58.380640000335688, -34.618456000344111 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.381455000148094, -34.619722000270031 ], [ -58.381476000217219, -34.620988000196007 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.381411999963802, -34.622768999589596 ], [ -58.381390999894677, -34.622941000326875 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.380939999781106, -34.624615000182075 ], [ -58.380856000404037, -34.624698999559143 ], [ -58.380764999804853, -34.624902999973415 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.378690000343227, -34.630207999999129 ], [ -58.378641999928334, -34.630258999653051 ], [ -58.378443999790704, -34.630342999929439 ], [ -58.378128999653597, -34.630300999791245 ], [ -58.378, -34.630172000137634 ], [ -58.377699999655192, -34.629979000230605 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375056000034306, -34.636072999769056 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.373879999762153, -34.642360000113854 ], [ -58.373665999785999, -34.643604999970705 ], [ -58.373257999856776, -34.645664999639962 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.372978999581107, -34.647380999633356 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.372722000320039, -34.648819000296555 ], [ -58.372785999674079, -34.649184000041544 ], [ -58.372872000042719, -34.649227000225835 ], [ -58.373257999856776, -34.649376999948572 ], [ -58.373836999577804, -34.649526999671252 ], [ -58.37401899987691, -34.64964799985529 ], [ -58.374115999853473, -34.649827000015989 ], [ -58.374094999784347, -34.649955999669601 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.372805999697107, -34.651453000355616 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.371522999886508, -34.654814999812345 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371282999610685, -34.6556329997631 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.37036699963727, -34.657383000425114 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370281000168006, -34.658591000374315 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.363259000102744, -34.666779000250642 ], [ -58.362271999553116, -34.666114000160917 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.329914000230872, -34.694545000051676 ], [ -58.329398999863884, -34.69493199991183 ], [ -58.328518999752021, -34.695510999632859 ], [ -58.327532000101655, -34.696283000160292 ], [ -58.326888000081112, -34.696797999627961 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.325514999717427, -34.697849999577784 ], [ -58.324764000158439, -34.698451000313355 ], [ -58.32392700023081, -34.699094000287857 ], [ -58.32289700039621, -34.699888000031137 ], [ -58.321866999662291, -34.70070399988964 ], [ -58.320793999643342, -34.701561999886337 ], [ -58.319956999715714, -34.702249000091228 ], [ -58.3187990002736, -34.703128000157051 ], [ -58.317490000163332, -34.704136999922582 ], [ -58.318669999720669, -34.705187999826308 ], [ -58.3198290001082, -34.706132000191587 ], [ -58.320857999896759, -34.70703400041873 ], [ -58.321909999846582, -34.707934999700456 ], [ -58.32330500032549, -34.709050999903695 ], [ -58.324055999884422, -34.709693999878141 ], [ -58.325171000041564, -34.710617000174352 ], [ -58.326200999876221, -34.711497000286272 ], [ -58.327124000172432, -34.712312000098677 ], [ -58.328067999638449, -34.713171000141472 ], [ -58.3290770003033, -34.714029000138225 ], [ -58.330063999953609, -34.714887000134922 ], [ -58.331029000388014, -34.715724000062494 ], [ -58.331694999624517, -34.716281999714454 ], [ -58.332446000082768, -34.716925999735054 ], [ -58.333196999641757, -34.717568999709499 ], [ -58.334227000375733, -34.718448999821419 ], [ -58.335063000257207, -34.719179000210659 ], [ -58.335857000000487, -34.719865000369452 ], [ -58.336587000389727, -34.720488000320927 ], [ -58.337188000225979, -34.721002999788539 ], [ -58.337981999969259, -34.721688999947332 ], [ -58.338775999712595, -34.722376000152224 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 95.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.391987, -34.824035 ], [ -58.392113, -34.82299 ], [ -58.392225, -34.821972 ], [ -58.392112, -34.821967 ], [ -58.390867, -34.821324 ], [ -58.390644, -34.823315 ], [ -58.390489, -34.824635 ], [ -58.389098, -34.824543 ], [ -58.388896, -34.824503 ], [ -58.388739, -34.82447 ], [ -58.387224, -34.824273 ], [ -58.385517, -34.824058 ], [ -58.385651, -34.823223 ], [ -58.384003, -34.823041 ], [ -58.383896, -34.823122 ], [ -58.384031, -34.822308 ], [ -58.383931, -34.822351 ], [ -58.382838, -34.821782 ], [ -58.381321, -34.820965 ], [ -58.379796, -34.820153 ], [ -58.378503, -34.819457 ], [ -58.377542, -34.818925 ], [ -58.376233, -34.818203 ], [ -58.376133, -34.818144 ], [ -58.376042, -34.818093 ], [ -58.374694, -34.817363 ], [ -58.373407, -34.816656 ], [ -58.371885, -34.815834 ], [ -58.370395, -34.815031 ], [ -58.369341, -34.814473 ], [ -58.368489, -34.814014 ], [ -58.367027, -34.813212 ], [ -58.365874, -34.812576 ], [ -58.365818, -34.812097 ], [ -58.365763, -34.81157 ], [ -58.365664, -34.810671 ], [ -58.365561, -34.809612 ], [ -58.365484, -34.808701 ], [ -58.365353, -34.807693 ], [ -58.365263, -34.80658 ], [ -58.365128, -34.805225 ], [ -58.365077, -34.803977 ], [ -58.364925, -34.802667 ], [ -58.364818, -34.801563 ], [ -58.364798, -34.80137 ], [ -58.36477, -34.801184 ], [ -58.364666, -34.80047 ], [ -58.364652, -34.800364 ], [ -58.364523, -34.799523 ], [ -58.364488, -34.799204 ], [ -58.364382, -34.798627 ], [ -58.364361, -34.798267 ], [ -58.364231, -34.79734 ], [ -58.36421, -34.797232 ], [ -58.3641, -34.796586 ], [ -58.364039, -34.795955 ], [ -58.364, -34.795568 ], [ -58.363765, -34.795411 ], [ -58.363572, -34.795304 ], [ -58.362105, -34.794501 ], [ -58.360709, -34.793722 ], [ -58.359324, -34.792951 ], [ -58.357926, -34.792152 ], [ -58.356526, -34.791393 ], [ -58.35513, -34.79064 ], [ -58.35374, -34.789829 ], [ -58.353609, -34.789759 ], [ -58.352313, -34.789117 ], [ -58.350921, -34.788329 ], [ -58.349563, -34.787539 ], [ -58.349333, -34.787408 ], [ -58.348992, -34.787205 ], [ -58.348889, -34.787146 ], [ -58.348159, -34.786735 ], [ -58.346949, -34.786063 ], [ -58.346752, -34.785952 ], [ -58.346485, -34.785802 ], [ -58.346035, -34.785562 ], [ -58.345759, -34.785423 ], [ -58.345323, -34.78518 ], [ -58.345125, -34.78507 ], [ -58.344596, -34.784773 ], [ -58.344307, -34.78461 ], [ -58.343889, -34.784383 ], [ -58.343503, -34.784165 ], [ -58.34323, -34.784011 ], [ -58.342849, -34.783797 ], [ -58.342526, -34.783611 ], [ -58.342052, -34.783343 ], [ -58.341121, -34.782836 ], [ -58.340412, -34.78245 ], [ -58.339736, -34.782096 ], [ -58.339297, -34.781895 ], [ -58.339034, -34.781686 ], [ -58.338402, -34.781325 ], [ -58.337788, -34.780972 ], [ -58.336325, -34.780161 ], [ -58.335655, -34.779783 ], [ -58.33481, -34.779293 ], [ -58.334206, -34.778947 ], [ -58.33409, -34.77891 ], [ -58.333939, -34.778869 ], [ -58.333354, -34.77852 ], [ -58.332706, -34.778131 ], [ -58.3321, -34.777808 ], [ -58.331999, -34.777745 ], [ -58.331875, -34.777671 ], [ -58.33101, -34.777189 ], [ -58.330005, -34.776657 ], [ -58.329286, -34.776267 ], [ -58.328617, -34.775877 ], [ -58.327865, -34.775452 ], [ -58.327056, -34.774994 ], [ -58.326107, -34.774476 ], [ -58.325137, -34.773951 ], [ -58.324201, -34.773432 ], [ -58.323599, -34.773101 ], [ -58.323413, -34.77303 ], [ -58.323574, -34.772709 ], [ -58.323706, -34.772505 ], [ -58.324015, -34.772017 ], [ -58.324418, -34.771231 ], [ -58.324955, -34.770332 ], [ -58.325607, -34.769348 ], [ -58.326163, -34.768488 ], [ -58.326425, -34.768072 ], [ -58.326526, -34.767912 ], [ -58.32661, -34.76776 ], [ -58.32673, -34.767596 ], [ -58.326813999999899, -34.767486 ], [ -58.327193, -34.766994 ], [ -58.327347, -34.766793 ], [ -58.32757, -34.766502 ], [ -58.327907, -34.766063 ], [ -58.328112, -34.7658 ], [ -58.328473, -34.765336 ], [ -58.328602, -34.765167 ], [ -58.328964, -34.764693 ], [ -58.329109, -34.764493 ], [ -58.329473, -34.764005 ], [ -58.329604, -34.763832 ], [ -58.329954, -34.763357 ], [ -58.330204, -34.76303 ], [ -58.330422, -34.762722 ], [ -58.330843, -34.762202 ], [ -58.330981, -34.762019 ], [ -58.331468, -34.761369 ], [ -58.3316, -34.76119 ], [ -58.331975, -34.760728 ], [ -58.332091, -34.760572 ], [ -58.332566, -34.759951 ], [ -58.333054, -34.759314 ], [ -58.333216, -34.759095 ], [ -58.333511, -34.758697 ], [ -58.333831, -34.758259 ], [ -58.334055, -34.757978 ], [ -58.33452, -34.757391 ], [ -58.334783, -34.757054 ], [ -58.33512, -34.756615 ], [ -58.335198, -34.756514 ], [ -58.335759, -34.755777 ], [ -58.336092, -34.755334 ], [ -58.33644, -34.75485 ], [ -58.336702, -34.754334 ], [ -58.336964, -34.753941 ], [ -58.337508, -34.753134 ], [ -58.338005, -34.752412 ], [ -58.338231, -34.752083 ], [ -58.338391, -34.751807 ], [ -58.338743, -34.751336 ], [ -58.339351, -34.75045 ], [ -58.338142, -34.750079 ], [ -58.337683, -34.749891 ], [ -58.337405, -34.749734 ], [ -58.336707, -34.749392 ], [ -58.335988, -34.749051 ], [ -58.335262, -34.748703 ], [ -58.33475, -34.74844 ], [ -58.334601, -34.748334 ], [ -58.334314, -34.74822 ], [ -58.333867, -34.747992 ], [ -58.333183, -34.747642 ], [ -58.332846, -34.747479 ], [ -58.332452, -34.747298 ], [ -58.332391, -34.747272 ], [ -58.332352, -34.747248 ], [ -58.33168, -34.746845 ], [ -58.330899, -34.746326 ], [ -58.330043, -34.745856 ], [ -58.329018, -34.745245 ], [ -58.327927, -34.744585 ], [ -58.326981, -34.743986 ], [ -58.325944, -34.74342 ], [ -58.325108, -34.742938 ], [ -58.324211, -34.742358 ], [ -58.32314, -34.741764 ], [ -58.321379, -34.74073 ], [ -58.320488, -34.740173 ], [ -58.32011, -34.73996 ], [ -58.319897, -34.739701 ], [ -58.319807, -34.739605 ], [ -58.319782, -34.739569 ], [ -58.319758, -34.739479 ], [ -58.319739, -34.739412 ], [ -58.319732, -34.739341 ], [ -58.319728, -34.739227 ], [ -58.319762, -34.739027 ], [ -58.319807, -34.738935 ], [ -58.319878, -34.738753 ], [ -58.320077, -34.738586 ], [ -58.320511, -34.738216 ], [ -58.321263, -34.737523 ], [ -58.321775, -34.737078 ], [ -58.321843, -34.737042 ], [ -58.321903, -34.737001 ], [ -58.3225, -34.736471 ], [ -58.323323, -34.735794 ], [ -58.324061, -34.73514 ], [ -58.324391, -34.734872 ], [ -58.324977, -34.734378 ], [ -58.325528, -34.73388 ], [ -58.325562, -34.733802 ], [ -58.325573, -34.733789 ], [ -58.326232, -34.733216 ], [ -58.327101, -34.732496 ], [ -58.327801, -34.731882 ], [ -58.328537, -34.731196 ], [ -58.329313, -34.730537 ], [ -58.330097, -34.729871 ], [ -58.330835, -34.729246 ], [ -58.331218, -34.728921 ], [ -58.331722, -34.728495 ], [ -58.332645, -34.727712 ], [ -58.333476, -34.726925 ], [ -58.334275, -34.726323 ], [ -58.334614, -34.726014 ], [ -58.334888, -34.725763 ], [ -58.335468, -34.725274 ], [ -58.335741, -34.725024 ], [ -58.336372, -34.724464 ], [ -58.336598, -34.724272 ], [ -58.336846, -34.724067 ], [ -58.337308, -34.723687 ], [ -58.338096, -34.722991 ], [ -58.338581, -34.722566 ], [ -58.338791, -34.72238 ], [ -58.339465, -34.721804 ], [ -58.339898, -34.721431 ], [ -58.34027, -34.721079 ], [ -58.340405, -34.720959 ], [ -58.340872, -34.720562 ], [ -58.341161, -34.720309 ], [ -58.341702, -34.719854 ], [ -58.34193, -34.719661 ], [ -58.342524, -34.719185 ], [ -58.342688, -34.71903 ], [ -58.343356, -34.718445 ], [ -58.343924, -34.717955 ], [ -58.344334, -34.717603 ], [ -58.345544, -34.716594 ], [ -58.345972, -34.716162 ], [ -58.346615, -34.715641 ], [ -58.347535, -34.714844 ], [ -58.346793, -34.714217 ], [ -58.34677, -34.714194 ], [ -58.345734, -34.71329 ], [ -58.344563, -34.712288 ], [ -58.343483, -34.711351 ], [ -58.34235, -34.710388 ], [ -58.341034, -34.709285 ], [ -58.340021, -34.708445 ], [ -58.33898, -34.707614 ], [ -58.33798, -34.706789 ], [ -58.336974, -34.705933 ], [ -58.335973, -34.705131 ], [ -58.33506, -34.705895 ], [ -58.33414, -34.705085 ], [ -58.334063, -34.705061 ], [ -58.334993, -34.704306 ], [ -58.335895, -34.703569 ], [ -58.336816, -34.702855 ], [ -58.33774, -34.702153 ], [ -58.338636, -34.701454 ], [ -58.339572, -34.700719 ], [ -58.340367, -34.700084 ], [ -58.341125, -34.699472 ], [ -58.341928, -34.698807 ], [ -58.342812, -34.698078 ], [ -58.343742, -34.697342 ], [ -58.344389, -34.69678 ], [ -58.345187, -34.696068 ], [ -58.345907, -34.695487 ], [ -58.34681, -34.694713 ], [ -58.34758, -34.694067 ], [ -58.346577, -34.693224 ], [ -58.345461, -34.69232 ], [ -58.344432, -34.691439 ], [ -58.34342, -34.690515 ], [ -58.342427, -34.689689 ], [ -58.341362, -34.688835 ], [ -58.340467, -34.688135 ], [ -58.339462, -34.687255 ], [ -58.340379, -34.686431 ], [ -58.340681, -34.686122 ], [ -58.340926, -34.685858 ], [ -58.341275, -34.685447 ], [ -58.341422, -34.685298 ], [ -58.342181, -34.684407 ], [ -58.34235, -34.68423 ], [ -58.343074, -34.683388 ], [ -58.343185, -34.683258 ], [ -58.343391, -34.683036 ], [ -58.343819, -34.682567 ], [ -58.344037, -34.682244 ], [ -58.344358, -34.681863 ], [ -58.344643, -34.681446 ], [ -58.345182, -34.680586 ], [ -58.345479, -34.680073 ], [ -58.345564, -34.679924 ], [ -58.345843, -34.679515 ], [ -58.346134, -34.679156 ], [ -58.346743, -34.678405 ], [ -58.347264, -34.677749 ], [ -58.34786, -34.67706 ], [ -58.348012, -34.67685 ], [ -58.348705, -34.675965 ], [ -58.349431, -34.67506 ], [ -58.350113, -34.674377 ], [ -58.350791999999899, -34.673663 ], [ -58.35112, -34.673348 ], [ -58.3516, -34.672834 ], [ -58.352442, -34.671943 ], [ -58.353151, -34.671164 ], [ -58.353328, -34.670968 ], [ -58.353627, -34.670651 ], [ -58.353805, -34.670445 ], [ -58.354018, -34.670206 ], [ -58.354147, -34.670067 ], [ -58.354314, -34.669872 ], [ -58.354636, -34.669487 ], [ -58.35498, -34.669082 ], [ -58.35547, -34.668563 ], [ -58.355867, -34.668079 ], [ -58.356433, -34.667399 ], [ -58.356853, -34.666852 ], [ -58.357153, -34.666497 ], [ -58.357717, -34.666215 ], [ -58.358261, -34.665939 ], [ -58.359483, -34.665339 ], [ -58.360467, -34.664836 ], [ -58.361438, -34.664349 ], [ -58.362409, -34.663873 ], [ -58.363441, -34.663351 ], [ -58.364145, -34.662992 ], [ -58.364378, -34.662851 ], [ -58.365342, -34.662128 ], [ -58.36626, -34.661442 ], [ -58.366867, -34.660949 ], [ -58.367045, -34.660821 ], [ -58.368742, -34.659588 ], [ -58.369834, -34.658858 ], [ -58.370418, -34.658569 ], [ -58.371115, -34.658246 ], [ -58.371977999999899, -34.657845 ], [ -58.372932, -34.658724 ], [ -58.373698, -34.659447 ], [ -58.373938, -34.659802 ], [ -58.374633, -34.660606 ], [ -58.375025, -34.661107 ], [ -58.375686, -34.66204 ], [ -58.375947, -34.662421 ], [ -58.376219, -34.662802 ], [ -58.376657, -34.66344 ], [ -58.377191, -34.664202 ], [ -58.377924, -34.665307 ], [ -58.379039, -34.664352 ], [ -58.380037, -34.663541 ], [ -58.381028, -34.662702 ], [ -58.382035, -34.661882 ], [ -58.383027, -34.661037 ], [ -58.384154, -34.661947 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 94.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.693082652999919, -34.497755285999915 ], [ -58.69253032499995, -34.498432540999943 ], [ -58.692001243999925, -34.499104205999913 ], [ -58.691513369999939, -34.499829117999923 ], [ -58.691602299999943, -34.499897142999941 ], [ -58.691983064999931, -34.500188399999956 ], [ -58.692352710999899, -34.500471150999942 ], [ -58.692144823999911, -34.500644095999917 ], [ -58.691195664999952, -34.50143371799993 ], [ -58.69049672299991, -34.502029553999932 ], [ -58.689778658999899, -34.502644481999937 ], [ -58.688529722999931, -34.503710110999918 ], [ -58.688506845999939, -34.503728756999919 ], [ -58.687643934999926, -34.504432075999944 ], [ -58.686765278999928, -34.505203550999909 ], [ -58.685897821999902, -34.505994050999902 ], [ -58.685657498999944, -34.505795938999938 ], [ -58.684731645999932, -34.505032706999941 ], [ -58.684709008999903, -34.505021326999952 ], [ -58.68356891499991, -34.504109451999909 ], [ -58.683083556999918, -34.503718096999933 ], [ -58.682802400999947, -34.503481044999944 ], [ -58.682560746999911, -34.503277296999954 ], [ -58.682512062999933, -34.503212636999933 ], [ -58.681872039999917, -34.502741610999919 ], [ -58.681334034999907, -34.502304653999943 ], [ -58.680194078999932, -34.501377539999908 ], [ -58.680175231999954, -34.501366151999946 ], [ -58.679084097999919, -34.500488459999929 ], [ -58.678049364999936, -34.499660171999949 ], [ -58.677876403999903, -34.499508155999933 ], [ -58.6770639369999, -34.498827966999954 ], [ -58.676311763999934, -34.498185745999933 ], [ -58.675510356999951, -34.497539821999908 ], [ -58.67479170799993, -34.496962293999957 ], [ -58.674776720999944, -34.496943276999957 ], [ -58.673253183999918, -34.495685544999958 ], [ -58.673241882999946, -34.495677949999902 ], [ -58.672387915999934, -34.494955639999944 ], [ -58.67236125799991, -34.49493648999993 ], [ -58.671576625999933, -34.494312137999941 ], [ -58.671507960999918, -34.494208690999926 ], [ -58.671469789999946, -34.494139723999922 ], [ -58.670650786999943, -34.493505199999902 ], [ -58.669457654999917, -34.492484721999915 ], [ -58.668088471999909, -34.491496660999928 ], [ -58.666968403999931, -34.490554682999914 ], [ -58.665646155999923, -34.489435507999929 ], [ -58.664790891999928, -34.488763686999903 ], [ -58.664508285999943, -34.488756018999936 ], [ -58.663937874999931, -34.488740541999903 ], [ -58.663717640999948, -34.488724042999934 ], [ -58.663698434999901, -34.488727843999925 ], [ -58.662390842999912, -34.488733787999934 ], [ -58.662379268999928, -34.488733737999951 ], [ -58.661473892999936, -34.488722126999903 ], [ -58.661460914999907, -34.488721960999953 ], [ -58.661148744999934, -34.488987120999923 ], [ -58.660275962999947, -34.489728467999953 ], [ -58.66016886299991, -34.489819439999906 ], [ -58.659105668999928, -34.490721735999955 ], [ -58.658215704999918, -34.491450429999929 ], [ -58.657402715999922, -34.492163799999958 ], [ -58.656551390999937, -34.492892613999913 ], [ -58.655753241999946, -34.493573410999943 ], [ -58.655544619999944, -34.493760354999949 ], [ -58.654925380999941, -34.494315245999928 ], [ -58.654108734999909, -34.495037722999939 ], [ -58.653523566999922, -34.495543792999911 ], [ -58.653234335999912, -34.495788947999927 ], [ -58.65265312799994, -34.496281582999927 ], [ -58.652204483999924, -34.496672923999938 ], [ -58.651851484999952, -34.496980835999921 ], [ -58.651718434999907, -34.497092852999913 ], [ -58.651054254999906, -34.497658224999952 ], [ -58.650359200999901, -34.498234269999955 ], [ -58.64987035899992, -34.498637910999946 ], [ -58.64983598099991, -34.498666296999943 ], [ -58.6496525149999, -34.49881408199991 ], [ -58.649247076999927, -34.499142053999947 ], [ -58.648926425999946, -34.499401438999939 ], [ -58.648196527999914, -34.499984979999908 ], [ -58.647962344999939, -34.500197385999911 ], [ -58.646730709999929, -34.501314488999924 ], [ -58.646609296999941, -34.501424610999948 ], [ -58.64660549599995, -34.50142805899992 ], [ -58.646519102999946, -34.501506417999906 ], [ -58.646479774999932, -34.501543519999927 ], [ -58.645890674999919, -34.502099267999938 ], [ -58.645721242999912, -34.502242674999934 ], [ -58.6456581569999, -34.502244378999933 ], [ -58.645651656999917, -34.502244554999947 ], [ -58.645587991999946, -34.502246273999958 ], [ -58.643817499999955, -34.502294091999943 ], [ -58.643788914999902, -34.502039641999943 ], [ -58.643479119999938, -34.502066523999929 ], [ -58.641884116999904, -34.502204924999944 ], [ -58.641546639999945, -34.50223363899994 ], [ -58.640724237999905, -34.501777928999957 ], [ -58.640458709999905, -34.502121043999921 ], [ -58.640724237999905, -34.501777928999957 ], [ -58.641126777999943, -34.502000984999938 ], [ -58.641546639999945, -34.50223363899994 ], [ -58.641884116999904, -34.502204924999944 ], [ -58.643788914999902, -34.502039641999943 ], [ -58.643817499999955, -34.502294091999943 ], [ -58.645587991999946, -34.502246273999958 ], [ -58.645651656999917, -34.502244554999947 ], [ -58.6456581569999, -34.502244378999933 ], [ -58.645721242999912, -34.502242674999934 ], [ -58.645890674999919, -34.502099267999938 ], [ -58.646479774999932, -34.501543519999927 ], [ -58.646519102999946, -34.501506417999906 ], [ -58.64660549599995, -34.50142805899992 ], [ -58.646609296999941, -34.501424610999948 ], [ -58.646730709999929, -34.501314488999924 ], [ -58.646801601999925, -34.501250188999904 ], [ -58.647962344999939, -34.500197385999911 ], [ -58.648196527999914, -34.499984979999908 ], [ -58.648926425999946, -34.499401438999939 ], [ -58.649247076999927, -34.499142053999947 ], [ -58.6496525149999, -34.49881408199991 ], [ -58.64983598099991, -34.498666296999943 ], [ -58.64987035899992, -34.498637910999946 ], [ -58.650359200999901, -34.498234269999955 ], [ -58.651054254999906, -34.497658224999952 ], [ -58.651718434999907, -34.497092852999913 ], [ -58.651851484999952, -34.496980835999921 ], [ -58.652204483999924, -34.496672923999938 ], [ -58.65265312799994, -34.496281582999927 ], [ -58.653234335999912, -34.495788947999927 ], [ -58.653523566999922, -34.495543792999911 ], [ -58.654108734999909, -34.495037722999939 ], [ -58.654925380999941, -34.494315245999928 ], [ -58.655544619999944, -34.493760354999949 ], [ -58.655753241999946, -34.493573410999943 ], [ -58.655759306999926, -34.49357839399994 ], [ -58.656111832999954, -34.493867997999928 ], [ -58.656616985999904, -34.494282985999916 ], [ -58.657401795999931, -34.494906886999956 ], [ -58.658198273999915, -34.495534712999927 ], [ -58.65897967099994, -34.496181883999952 ], [ -58.659387531999926, -34.496493893999912 ], [ -58.660147924999933, -34.497116968999933 ], [ -58.660911207999902, -34.497743388999936 ], [ -58.662212423999904, -34.498824290999949 ], [ -58.663197086999901, -34.49963024099992 ], [ -58.664192273999902, -34.500512315999913 ], [ -58.664044649999937, -34.500629757999945 ], [ -58.663630245999911, -34.500959435999903 ], [ -58.663745042999949, -34.501054057999909 ], [ -58.664214126999923, -34.501440700999922 ], [ -58.664805729999955, -34.501921989999914 ], [ -58.665155937999941, -34.502203727999927 ], [ -58.665389768999944, -34.502391841999952 ], [ -58.666539222999916, -34.50143281599992 ], [ -58.666697978999935, -34.501300360999949 ], [ -58.66671320699993, -34.501315628999919 ], [ -58.667292308999947, -34.501696899999956 ], [ -58.667508791999921, -34.501839427999926 ], [ -58.667395222999914, -34.501957002999916 ], [ -58.66731269099995, -34.502063263999958 ], [ -58.667265164999947, -34.50242834799991 ], [ -58.667264689999911, -34.502462587999958 ], [ -58.667243355999915, -34.503165903999957 ], [ -58.667243341999949, -34.503166362999934 ], [ -58.667208667999944, -34.503717912999946 ], [ -58.667132661999915, -34.505022631999907 ], [ -58.667132555999899, -34.505030240999929 ], [ -58.667098942999928, -34.505783436999934 ], [ -58.667239951999932, -34.505635513999948 ], [ -58.667388264999943, -34.505636620999951 ], [ -58.668139209999936, -34.505642228999932 ], [ -58.668246859999954, -34.505673014999957 ], [ -58.66827001799993, -34.505673088999913 ], [ -58.669153309999899, -34.505717797999921 ], [ -58.669294534999949, -34.505832391999945 ], [ -58.669898137999951, -34.506283282999902 ], [ -58.669908196999927, -34.50629076599995 ], [ -58.670658404999926, -34.506848819999902 ], [ -58.670681298999909, -34.506867916999909 ], [ -58.671365696999942, -34.507431328999928 ], [ -58.67137320799992, -34.507438932999946 ], [ -58.672046789999911, -34.507970840999917 ], [ -58.672724126999924, -34.508506550999925 ], [ -58.673378760999924, -34.509038499999917 ], [ -58.673178904999929, -34.509210970999902 ], [ -58.672179368999934, -34.510073543999908 ], [ -58.670915392999916, -34.511137395999924 ], [ -58.669736085999943, -34.512118961999931 ], [ -58.668428193999944, -34.513187616999915 ], [ -58.667233289999899, -34.514180544999931 ], [ -58.667221551999944, -34.514191920999906 ], [ -58.666406683999924, -34.514902394999922 ], [ -58.666405472999941, -34.514903450999952 ], [ -58.666289558999949, -34.51500451499993 ], [ -58.666283850999946, -34.515009491999933 ], [ -58.66649218799995, -34.515142929999911 ], [ -58.666970611999943, -34.515449356999909 ], [ -58.667008730999953, -34.515472316999933 ], [ -58.667016908999926, -34.515476810999928 ], [ -58.667872918999933, -34.515947210999911 ], [ -58.668694536999908, -34.516528175999952 ], [ -58.669571980999933, -34.517086638999956 ], [ -58.67035539099993, -34.517640846999939 ], [ -58.671232923999924, -34.51820310599993 ], [ -58.671517984999923, -34.518399532999922 ], [ -58.672164958999929, -34.518845341999906 ], [ -58.672718800999917, -34.519202076999932 ], [ -58.672786448999943, -34.519245649999903 ], [ -58.673168482999927, -34.519491722999931 ], [ -58.674240628999939, -34.520180195999956 ], [ -58.675780391999922, -34.52115965899992 ], [ -58.676826462999941, -34.521825077999949 ], [ -58.676979985999935, -34.521936102999916 ], [ -58.677995347999911, -34.522670392999942 ], [ -58.678663503999928, -34.523127214999931 ], [ -58.68005418599995, -34.524078030999931 ], [ -58.680879274999938, -34.524667079999915 ], [ -58.681822765999925, -34.525328809999905 ], [ -58.682865574999937, -34.526063214999908 ], [ -58.684068826999919, -34.526920013999927 ], [ -58.68517542099994, -34.527680937999946 ], [ -58.685214751999922, -34.527707982999914 ], [ -58.685708928999929, -34.528070707999916 ], [ -58.685910262999926, -34.528218486999947 ], [ -58.686960460999899, -34.528989330999934 ], [ -58.687129171999914, -34.529108214999951 ], [ -58.687682405999908, -34.529498058999934 ], [ -58.687957441999913, -34.529700778999938 ], [ -58.687994308999919, -34.529702773999929 ], [ -58.68817121099994, -34.529712348999908 ], [ -58.688457502999938, -34.529723953999905 ], [ -58.688577636999923, -34.529718543999934 ], [ -58.688793389999944, -34.529708826999922 ], [ -58.688927361999902, -34.529678947999912 ], [ -58.689202913999907, -34.529617493999922 ], [ -58.68925515299992, -34.529605842999956 ], [ -58.689339054999948, -34.529533257999958 ], [ -58.69149376799993, -34.527626910999913 ], [ -58.692253324999911, -34.526967021999951 ], [ -58.692729409999913, -34.526553407999927 ], [ -58.692732581999906, -34.526550565999912 ], [ -58.693116624999902, -34.526206504999948 ], [ -58.693198483999936, -34.526133167999944 ], [ -58.693396781999922, -34.525945964999949 ], [ -58.69367047399993, -34.525685754999927 ], [ -58.693770493999921, -34.52559066099991 ], [ -58.693777346999923, -34.525597002999916 ], [ -58.693949424999914, -34.525756247999936 ], [ -58.694175485999949, -34.525965450999934 ], [ -58.694210342999952, -34.526009835999957 ], [ -58.694553866999911, -34.526447257999905 ], [ -58.69672021699995, -34.528478 ], [ -58.696769884999924, -34.528523893999932 ], [ -58.697564611999951, -34.529284935999954 ], [ -58.697736542999905, -34.529445559999942 ], [ -58.701335626999935, -34.532784257999936 ], [ -58.701404747999902, -34.532740625999907 ], [ -58.70147484499995, -34.532696377999912 ], [ -58.701511099999948, -34.532673491999958 ], [ -58.701624197999934, -34.532590311999911 ], [ -58.701999321999949, -34.532314419999921 ], [ -58.70237693699994, -34.532043209999927 ], [ -58.703189373999919, -34.531451126999912 ], [ -58.704593021999926, -34.530431218999922 ], [ -58.704658624999922, -34.530385811999906 ], [ -58.704852400999926, -34.530251689999943 ], [ -58.705049530999929, -34.530109927999945 ], [ -58.705569487999924, -34.529736008999919 ], [ -58.705771641999945, -34.529587032999927 ], [ -58.706217913999922, -34.52926616499991 ], [ -58.706839643999899, -34.52881924199994 ], [ -58.707320246999927, -34.52847545599991 ], [ -58.707926700999906, -34.528020880999918 ], [ -58.708259559999931, -34.527788440999927 ], [ -58.708781315999943, -34.527424090999943 ], [ -58.709137747999932, -34.527177618999929 ], [ -58.709268036999902, -34.527085241999941 ], [ -58.71021468899994, -34.526430553999944 ], [ -58.710368645999949, -34.526576195999951 ], [ -58.711661404999916, -34.527799131999927 ], [ -58.713200384999936, -34.529335373999913 ], [ -58.713875279999911, -34.52997290199994 ], [ -58.71444979499995, -34.530474174999938 ], [ -58.715043306999917, -34.530979048999939 ], [ -58.715606700999899, -34.531537401999913 ], [ -58.716223742999944, -34.532095184999946 ], [ -58.716319558999942, -34.532197119999921 ], [ -58.716760305999912, -34.53260806499992 ], [ -58.717097566999939, -34.532886650999956 ], [ -58.717377345999921, -34.533154408999906 ], [ -58.717971395999939, -34.533708621999949 ], [ -58.718990860999952, -34.534662504999915 ], [ -58.719140333999917, -34.534813440999926 ], [ -58.719696056999908, -34.535333743999956 ], [ -58.720504724999955, -34.536049639999931 ], [ -58.720516222999947, -34.536060956999904 ], [ -58.721286570999951, -34.536784887999943 ], [ -58.721167185999946, -34.536874609999927 ], [ -58.720236701999909, -34.537573904999931 ], [ -58.719094870999925, -34.538424909999947 ], [ -58.717891731999941, -34.539307068999904 ], [ -58.716895503999922, -34.540042133999918 ], [ -58.715788150999913, -34.540816509999956 ], [ -58.714412593999953, -34.541872088999924 ], [ -58.715037308999911, -34.542483173999926 ], [ -58.71489719099992, -34.542585866999957 ], [ -58.713611932999925, -34.543527841999946 ], [ -58.712535227999922, -34.544237070999941 ], [ -58.712370065999949, -34.544088108999915 ], [ -58.711933515999931, -34.543694377999941 ], [ -58.711063526999908, -34.542921935999914 ], [ -58.711164276999909, -34.54285111899992 ], [ -58.712121067999931, -34.542178593999949 ], [ -58.713573260999908, -34.541099321999923 ], [ -58.714979475999939, -34.540058669999951 ], [ -58.716079162999904, -34.539272934999929 ], [ -58.717083057999901, -34.538549228999955 ], [ -58.718282364999936, -34.537670921999904 ], [ -58.719439524999927, -34.536823568999921 ], [ -58.720477903999949, -34.536068990999922 ], [ -58.720504724999955, -34.536049639999931 ], [ -58.72027298799992, -34.535844488999942 ], [ -58.719696056999908, -34.535333743999956 ], [ -58.719140333999917, -34.534813440999926 ], [ -58.718990860999952, -34.534662504999915 ], [ -58.717971395999939, -34.533708621999949 ], [ -58.717377345999921, -34.533154408999906 ], [ -58.717097566999939, -34.532886650999956 ], [ -58.716760305999912, -34.53260806499992 ], [ -58.716319558999942, -34.532197119999921 ], [ -58.716223742999944, -34.532095184999946 ], [ -58.715606700999899, -34.531537401999913 ], [ -58.715043306999917, -34.530979048999939 ], [ -58.71444979499995, -34.530474174999938 ], [ -58.713875279999911, -34.52997290199994 ], [ -58.713200384999936, -34.529335373999913 ], [ -58.711661404999916, -34.527799131999927 ], [ -58.71021468899994, -34.526430553999944 ], [ -58.710382710999909, -34.526315809999915 ], [ -58.710513653999953, -34.526226387999941 ], [ -58.710850875999938, -34.525987737999912 ], [ -58.711712740999928, -34.525338070999908 ], [ -58.712157139999931, -34.525007352999921 ], [ -58.712417713999912, -34.524811156999931 ], [ -58.71301933399991, -34.524353400999928 ], [ -58.713889660999939, -34.523704986999917 ], [ -58.714103778999913, -34.523545463999938 ], [ -58.714885500999912, -34.522953055999949 ], [ -58.714965972999948, -34.522891511999944 ], [ -58.715952433999917, -34.522154388999923 ], [ -58.715969946999905, -34.522141302999955 ], [ -58.716005342999949, -34.522115753999913 ], [ -58.716215190999947, -34.521964281999942 ], [ -58.71631876899994, -34.521886881999933 ], [ -58.716515531999903, -34.521739849999904 ], [ -58.71705439099992, -34.521337183999947 ], [ -58.7179434009999, -34.520686893999937 ], [ -58.718378359999917, -34.52038148999992 ], [ -58.718429244999925, -34.52034576199992 ], [ -58.719089141999916, -34.519882419999931 ], [ -58.719924506999917, -34.519266796999943 ], [ -58.720314730999917, -34.518878522999955 ], [ -58.720476349999899, -34.518717710999908 ], [ -58.720894055999906, -34.518333549999909 ], [ -58.720970823999949, -34.518264826999939 ], [ -58.721001355999931, -34.518237493999948 ], [ -58.721633660999942, -34.517661219999923 ], [ -58.722239145999936, -34.517092735999938 ], [ -58.722380935999922, -34.516962121999939 ], [ -58.722902112999918, -34.516474292999931 ], [ -58.723097553999935, -34.51628992499991 ], [ -58.72350376299994, -34.515917283999954 ], [ -58.723555286999954, -34.515860714999917 ], [ -58.723821849999922, -34.51556805599995 ], [ -58.724268042999938, -34.515044975999956 ], [ -58.724435985999946, -34.514848092999955 ], [ -58.724538518999907, -34.514727891999939 ], [ -58.724649660999944, -34.514597455999933 ], [ -58.724856876999922, -34.514288523999937 ], [ -58.725048017999939, -34.514003557999956 ], [ -58.725078936999921, -34.513957460999904 ], [ -58.725161770999932, -34.513843919999942 ], [ -58.725182418999907, -34.513815616999921 ], [ -58.72548168499992, -34.513417734999905 ], [ -58.725680190999924, -34.513152742999921 ], [ -58.725875384999938, -34.512892170999919 ], [ -58.726219884999921, -34.512436129999912 ], [ -58.726499916999899, -34.512023020999948 ], [ -58.72673311099993, -34.511674935999906 ], [ -58.726859401999945, -34.511486422999951 ], [ -58.726885902999925, -34.511451636999936 ], [ -58.727358109999955, -34.510788699999921 ], [ -58.727570973999946, -34.510489856999925 ], [ -58.727677596999911, -34.510340443999951 ], [ -58.728078156999914, -34.509779131999949 ], [ -58.728283785999906, -34.509469809999928 ], [ -58.728489940999907, -34.509159695999926 ], [ -58.728524662999916, -34.509107463999953 ], [ -58.728257900999949, -34.508992131999946 ], [ -58.727399026999933, -34.508620807999932 ], [ -58.727338172999907, -34.508590985999945 ], [ -58.72626198599994, -34.508130472999937 ], [ -58.725242883999954, -34.507711311999913 ], [ -58.724459494999905, -34.507369443999949 ], [ -58.723634330999914, -34.507031947999906 ], [ -58.723280691999946, -34.506885300999954 ], [ -58.723025907999954, -34.506779646999917 ], [ -58.723003097999936, -34.506772289999958 ], [ -58.722944840999901, -34.506742853999924 ], [ -58.722877580999921, -34.506708867999919 ], [ -58.722828141999912, -34.506686550999916 ], [ -58.722146615999918, -34.50637772999994 ], [ -58.722268576999909, -34.506209898999941 ], [ -58.7225789069999, -34.505782851999925 ], [ -58.722601619999921, -34.505751941999904 ], [ -58.723108851999939, -34.505060349999951 ], [ -58.72313534299991, -34.505021738999915 ], [ -58.723453408999944, -34.504627267999922 ], [ -58.723476131999917, -34.504600185999948 ], [ -58.7238811389999, -34.504040033999956 ], [ -58.723888697999939, -34.504024628999957 ], [ -58.724282525999911, -34.503548811999906 ], [ -58.724290092999922, -34.503537232999918 ], [ -58.724373423999907, -34.503444305999949 ], [ -58.724380990999919, -34.503432726999904 ], [ -58.724808868999901, -34.502902891999952 ], [ -58.724820244999933, -34.502895089999924 ], [ -58.725283003999948, -34.502299904999916 ], [ -58.725294622999911, -34.502284669999938 ], [ -58.725534885999934, -34.501934313999925 ], [ -58.725546537999946, -34.501911470999914 ], [ -58.726258754999947, -34.501054416999921 ], [ -58.726475679999908, -34.500757354999905 ], [ -58.726889869999923, -34.500254554999913 ], [ -58.726901487999953, -34.500239319999935 ], [ -58.727102704999936, -34.500010753999902 ], [ -58.72711430499993, -34.49999932299994 ], [ -58.727346817999944, -34.499660390999907 ], [ -58.727796288999912, -34.499016787999949 ], [ -58.727970385999924, -34.498826305999955 ], [ -58.728234039999904, -34.498411243999954 ], [ -58.728803265999943, -34.497676149999904 ], [ -58.728746636999915, -34.49749044999993 ], [ -58.728287315999921, -34.495984239999927 ], [ -58.728249005999942, -34.495942459999924 ], [ -58.728245225999899, -34.495927250999955 ], [ -58.727817751999908, -34.494250410999939 ], [ -58.727378831999943, -34.492550767999944 ], [ -58.727371184999924, -34.492539367999939 ], [ -58.726933445999919, -34.490577250999934 ], [ -58.726520121999954, -34.489178075999916 ], [ -58.726462339999955, -34.489185777999921 ], [ -58.726373914999954, -34.489159295999912 ], [ -58.72630085499992, -34.489140395999925 ], [ -58.726220179999927, -34.489102487999958 ], [ -58.726174324999931, -34.489026484999954 ], [ -58.726139882999917, -34.488980893999951 ], [ -58.726139222999905, -34.488979579999921 ], [ -58.72611317399992, -34.48892768199994 ], [ -58.726105731999951, -34.488870635999945 ], [ -58.726129189999938, -34.488790713999947 ], [ -58.726133363999907, -34.488718432999917 ], [ -58.726156651999929, -34.488676550999912 ], [ -58.726203071999919, -34.488627023999925 ], [ -58.726257191999935, -34.488577483999904 ], [ -58.726315075999935, -34.488546956999926 ], [ -58.726392208999926, -34.488516399999924 ], [ -58.726026358999945, -34.487311663999947 ], [ -58.725952701999915, -34.487069113999951 ], [ -58.725822184999913, -34.486993328999915 ], [ -58.724461857999927, -34.486232750999932 ], [ -58.724263460999907, -34.486121823999952 ], [ -58.723579727999947, -34.485799786999905 ], [ -58.72360290599994, -34.485788401999912 ], [ -58.723853088999931, -34.485686453999904 ], [ -58.724981305999904, -34.485226711999928 ], [ -58.726159254999914, -34.484691637999902 ], [ -58.727333307999913, -34.484164149999913 ], [ -58.728599670999927, -34.483659375999935 ], [ -58.72880435299993, -34.483568298999955 ], [ -58.728884794999942, -34.483463891999918 ], [ -58.729312816999936, -34.482908350999935 ], [ -58.729933831999915, -34.482104275999916 ], [ -58.730577888999903, -34.48131156799991 ], [ -58.731210303999944, -34.480534030999934 ], [ -58.73183107299991, -34.47977166599992 ], [ -58.732456049999939, -34.478948629999934 ], [ -58.73258796999994, -34.478785536999908 ], [ -58.733107655999902, -34.478182460999903 ], [ -58.733425843999953, -34.477784211999904 ], [ -58.733437466999931, -34.477772832999904 ], [ -58.733716623999953, -34.47746180799993 ], [ -58.733732187999919, -34.477435260999926 ], [ -58.734356942999909, -34.476650142999915 ], [ -58.734368587999938, -34.476634971999943 ], [ -58.734859784999912, -34.475997328999938 ], [ -58.7349003409999, -34.47594468199992 ], [ -58.734908089999919, -34.475937095999939 ], [ -58.73553662899991, -34.475163350999935 ], [ -58.736165479999954, -34.47433652299992 ], [ -58.736840486999938, -34.473521052999956 ], [ -58.73765545099991, -34.472485611999957 ], [ -58.737667072999955, -34.472474231999911 ], [ -58.738327050999942, -34.471594308999954 ], [ -58.739064777999943, -34.470593020999956 ], [ -58.739872304999949, -34.469512081999937 ], [ -58.740147633999925, -34.469197267999903 ], [ -58.741311890999953, -34.467714273999945 ], [ -58.742122847999951, -34.466705374999947 ], [ -58.7429608999999, -34.465673716999902 ], [ -58.743104463999941, -34.465495452999903 ], [ -58.743321636999951, -34.465245117999928 ], [ -58.743756337999912, -34.464683782999941 ], [ -58.744511204999924, -34.463689043999921 ], [ -58.744513301999916, -34.463686279999934 ], [ -58.744469143999936, -34.463425384999937 ], [ -58.744455227999936, -34.463343163999923 ], [ -58.74383970699995, -34.459706540999946 ], [ -58.743839697999931, -34.459706489999917 ], [ -58.743839486999946, -34.459705241999927 ], [ -58.743709408999905, -34.459644442999945 ], [ -58.743670142999918, -34.459626089999915 ], [ -58.743608015999939, -34.459597051999936 ], [ -58.74179188599993, -34.458748193999952 ], [ -58.738636615999951, -34.457248841999956 ], [ -58.738139428999943, -34.457012787999929 ], [ -58.73764862999991, -34.456779765999954 ], [ -58.737636461999955, -34.456773988999942 ], [ -58.737299096999948, -34.456613205999929 ], [ -58.736715605999905, -34.456332748999955 ], [ -58.736423149999951, -34.456199740999921 ], [ -58.73637045299995, -34.456175773999917 ], [ -58.735953790999929, -34.455981376999944 ], [ -58.735501373999909, -34.455768268999918 ], [ -58.734703729999922, -34.455394411999919 ], [ -58.733945844999937, -34.455043021999927 ], [ -58.732478809999918, -34.454353769999955 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 93.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.396225999999899, -34.744032 ], [ -58.396024, -34.742849 ], [ -58.395815, -34.741703 ], [ -58.395557, -34.740458 ], [ -58.396961, -34.740253 ], [ -58.398342, -34.740056 ], [ -58.398431, -34.740042 ], [ -58.399776, -34.739831 ], [ -58.401212, -34.739665 ], [ -58.402696, -34.739416 ], [ -58.404105, -34.739204 ], [ -58.405541, -34.738974 ], [ -58.406905, -34.738766 ], [ -58.408309, -34.738554 ], [ -58.40994, -34.738305 ], [ -58.410786, -34.738176 ], [ -58.411343, -34.738106 ], [ -58.412297, -34.737975 ], [ -58.412581, -34.737933 ], [ -58.414108, -34.737699 ], [ -58.41558, -34.737469 ], [ -58.416359, -34.737375 ], [ -58.417096999999899, -34.737257 ], [ -58.417789, -34.737161 ], [ -58.417949, -34.738328 ], [ -58.41865, -34.738261 ], [ -58.419362, -34.738195 ], [ -58.420065, -34.738133 ], [ -58.42077, -34.738066 ], [ -58.421475, -34.738002 ], [ -58.422187, -34.737941 ], [ -58.422902, -34.737869 ], [ -58.423681, -34.73781 ], [ -58.423589, -34.737765 ], [ -58.423481, -34.737147 ], [ -58.423246, -34.737039 ], [ -58.423564, -34.736647 ], [ -58.423834, -34.736292 ], [ -58.424266, -34.735772 ], [ -58.424698, -34.735199 ], [ -58.425133, -34.734661 ], [ -58.425567, -34.734124 ], [ -58.426013, -34.733581 ], [ -58.426419, -34.733067 ], [ -58.426832, -34.732509 ], [ -58.427277, -34.73195 ], [ -58.427337, -34.731539 ], [ -58.42764, -34.731165 ], [ -58.428222, -34.730459 ], [ -58.42881, -34.729702 ], [ -58.429107, -34.729323 ], [ -58.429404, -34.728942 ], [ -58.429979, -34.728187 ], [ -58.430265, -34.727799 ], [ -58.43064, -34.727321 ], [ -58.431104, -34.726714 ], [ -58.431653, -34.725975 ], [ -58.432129, -34.726198 ], [ -58.432755, -34.726508 ], [ -58.433109, -34.725973 ], [ -58.433561, -34.726201 ], [ -58.434286, -34.726561 ], [ -58.434742, -34.72679 ], [ -58.435454, -34.727161 ], [ -58.435914, -34.727399 ], [ -58.436598, -34.727742 ], [ -58.437057, -34.727984 ], [ -58.437719, -34.728342 ], [ -58.437181, -34.729072 ], [ -58.436883, -34.729455 ], [ -58.436019, -34.730551 ], [ -58.43648, -34.730787 ], [ -58.437164, -34.731138 ], [ -58.437923, -34.731561 ], [ -58.437989, -34.731471 ], [ -58.438227, -34.731174 ], [ -58.438697, -34.730544 ], [ -58.438781, -34.730449 ], [ -58.438916, -34.730519 ], [ -58.438841, -34.730602 ], [ -58.438354, -34.731221 ], [ -58.438083, -34.731529 ], [ -58.438018, -34.731613 ], [ -58.438485, -34.73185 ], [ -58.438983, -34.732101 ], [ -58.439536, -34.732391 ], [ -58.440008, -34.732637 ], [ -58.440792, -34.73304 ], [ -58.441261, -34.733282 ], [ -58.442029, -34.733682 ], [ -58.442494, -34.733927 ], [ -58.443276, -34.73433 ], [ -58.443738, -34.734564 ], [ -58.444516, -34.734967 ], [ -58.444967, -34.73521 ], [ -58.445756, -34.735605 ], [ -58.446215, -34.735844 ], [ -58.446997, -34.736252 ], [ -58.447255, -34.735862 ], [ -58.447872, -34.735146 ], [ -58.448117, -34.73476 ], [ -58.448655, -34.734068 ], [ -58.449119, -34.734307 ], [ -58.449894, -34.734711 ], [ -58.45036, -34.734954 ], [ -58.451142, -34.735339 ], [ -58.45161, -34.735557 ], [ -58.452401, -34.735984 ], [ -58.452902, -34.736238 ], [ -58.453672, -34.736635 ], [ -58.453965, -34.736255 ], [ -58.454484, -34.735553 ], [ -58.455015, -34.734889 ], [ -58.4554, -34.734376 ], [ -58.455853, -34.733796 ], [ -58.456316, -34.733191 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 91.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.530032717342252, -34.603610971496678 ], [ -58.526503424046894, -34.60459510135788 ], [ -58.525655036235513, -34.603203745347209 ], [ -58.524704841886766, -34.603203745347209 ], [ -58.525281745598505, -34.60459510135788 ], [ -58.517069351584311, -34.610703493599843 ], [ -58.518358901057617, -34.611280397311582 ], [ -58.519343030918819, -34.610737429112298 ], [ -58.520157483217751, -34.611110719749306 ], [ -58.50035611170005, -34.626483506891574 ], [ -58.494943397463423, -34.624040149994791 ], [ -58.486900681011505, -34.617337886284858 ], [ -58.479400932758878, -34.623174794427186 ], [ -58.47974028788343, -34.623412343014373 ], [ -58.47817925431049, -34.626738023234992 ], [ -58.470713441570318, -34.624735828000127 ], [ -58.470272279908393, -34.625957506448522 ], [ -58.47169757143152, -34.626296861573074 ], [ -58.469627505171744, -34.630640607167358 ], [ -58.457546462737632, -34.627213120409365 ], [ -58.439153414986841, -34.619475823569545 ], [ -58.43766025243881, -34.623140858914724 ], [ -58.433452248894348, -34.623072987889813 ], [ -58.433248635819616, -34.624226795313291 ], [ -58.434402443243094, -34.624430408388022 ], [ -58.431144634047385, -34.641466035640605 ], [ -58.391032858325183, -34.634339578024978 ], [ -58.391372213449742, -34.631760479078373 ], [ -58.382616851236264, -34.630946026779441 ], [ -58.382413238161533, -34.634543191099709 ], [ -58.380784333563675, -34.63997287309256 ], [ -58.380716462538764, -34.641941132814971 ], [ -58.379902010239839, -34.642144745889702 ], [ -58.376983556168675, -34.64031222821712 ], [ -58.377662266417786, -34.638004613370157 ], [ -58.364834642709667, -34.636918676971582 ], [ -58.359269218666995, -34.634543191099709 ], [ -58.360762381215032, -34.632167705227836 ], [ -58.366395676282615, -34.628434798857754 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 90.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.34680100016601, -34.714157999791837 ], [ -58.34750900043997, -34.713600000139877 ], [ -58.34791700036925, -34.713513999771237 ], [ -58.348346000367599, -34.713149000026306 ], [ -58.348881999904336, -34.712676999843609 ], [ -58.349461999671519, -34.712183000445066 ], [ -58.350213000129827, -34.711560999640369 ], [ -58.349654999578547, -34.711068000287923 ], [ -58.34918300029517, -34.7106600003587 ], [ -58.348131000345347, -34.709737000062432 ], [ -58.347122999726594, -34.708857999996667 ], [ -58.346070999776771, -34.707934999700456 ], [ -58.345834999685451, -34.707719999678204 ], [ -58.345363000402131, -34.707312999795079 ], [ -58.344483000290211, -34.706540000120867 ], [ -58.344096999576834, -34.706196999591839 ], [ -58.343582000109166, -34.70576799959349 ], [ -58.343517999855749, -34.70568200012417 ], [ -58.343023999557886, -34.705274000194891 ], [ -58.34253100020544, -34.704823000081319 ], [ -58.342401999652509, -34.704737999758834 ], [ -58.341930000369189, -34.704308999760485 ], [ -58.341887000184897, -34.704265999576194 ], [ -58.341436000071326, -34.703857999646914 ], [ -58.340963999888629, -34.703471999832857 ], [ -58.340470999636864, -34.703020999719342 ], [ -58.339956000169252, -34.702569999605771 ], [ -58.339763000262224, -34.702419999883034 ], [ -58.338647000058984, -34.701433000232726 ], [ -58.337638000293452, -34.700553000120806 ], [ -58.336587000389727, -34.699630999870692 ], [ -58.335686000208682, -34.698858000196481 ], [ -58.335106000441499, -34.698342999829549 ], [ -58.334505999752025, -34.697828000361881 ], [ -58.334033000422608, -34.697399000363532 ], [ -58.333519000101717, -34.696949000296058 ], [ -58.333003999734785, -34.696519000251612 ], [ -58.332489000267117, -34.696069000184195 ], [ -58.331673000408614, -34.695360999910179 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.346693999728245, -34.676027000445686 ], [ -58.346027999592479, -34.675577000378212 ], [ -58.345728000147062, -34.67536200035596 ], [ -58.345921000054091, -34.675169000448989 ], [ -58.344783999781725, -34.674417999990681 ], [ -58.345663999893645, -34.673516999809635 ], [ -58.346565000074634, -34.672573000343675 ], [ -58.347423000071331, -34.671627999932184 ], [ -58.347294000417719, -34.671563999678824 ], [ -58.346242999614674, -34.670856000304127 ], [ -58.345578000424325, -34.670448000374847 ], [ -58.344934000403782, -34.670061999661527 ], [ -58.345427999802325, -34.669547000193859 ], [ -58.345792000400479, -34.669161000379802 ], [ -58.346651000443273, -34.668217000014522 ], [ -58.347080000441622, -34.667744999831825 ], [ -58.347529999609776, -34.667272999649185 ], [ -58.348409999721696, -34.666350000252294 ], [ -58.349310999902684, -34.665405999886957 ], [ -58.349654999578547, -34.665062000211094 ], [ -58.350041000291867, -34.664546999844106 ], [ -58.350963999688815, -34.663474999871312 ], [ -58.351479000055747, -34.662830999850712 ], [ -58.352100999961124, -34.662014999992209 ], [ -58.352915999773529, -34.660985000157609 ], [ -58.35360299997842, -34.660062999907495 ], [ -58.354846999789174, -34.660920999904192 ], [ -58.3560709995769, -34.661778999900889 ], [ -58.356221000198957, -34.661887000384695 ], [ -58.356499999575306, -34.661585999993861 ], [ -58.356713999551403, -34.661521999740444 ], [ -58.357251000033557, -34.661478999556152 ], [ -58.357337000402197, -34.661393000086832 ], [ -58.358022999661671, -34.661887000384695 ], [ -58.359246000302619, -34.662765999551198 ], [ -58.360748000319916, -34.663881999754437 ], [ -58.361349000156167, -34.664289999683717 ], [ -58.362873000288687, -34.665405999886957 ], [ -58.363837999823772, -34.666114000160917 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371158000141577, -34.655937000292283 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.372216000368098, -34.652665999636156 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.373836999577804, -34.648347000113915 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.371606000116799, -34.647939000184692 ], [ -58.370512000028725, -34.647746000277664 ], [ -58.369503000263194, -34.647553000370635 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.369246000102805, -34.640106999638306 ], [ -58.369395999825485, -34.639163000172289 ], [ -58.369546000447542, -34.638239999876077 ], [ -58.369566999617291, -34.638003999784701 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.371670000370159, -34.630515999813497 ], [ -58.371991999930799, -34.629378000394354 ], [ -58.372078000299439, -34.629034999865326 ], [ -58.372314000390759, -34.628197999937697 ], [ -58.372420999929147, -34.627790000008474 ], [ -58.372570999651884, -34.626739000104749 ], [ -58.373858999693027, -34.626760000173817 ], [ -58.374566999967044, -34.626803000358109 ], [ -58.375575999732575, -34.627296999756709 ], [ -58.376584000351272, -34.627876000377057 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.380767999943203, -34.624893999558367 ], [ -58.380854000311842, -34.624700999651395 ], [ -58.380939999781106, -34.624615000182075 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381390999894677, -34.622941000326875 ], [ -58.381411999963802, -34.622768999589596 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.381476000217219, -34.620988000196007 ], [ -58.381455000148094, -34.619722000270031 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.380640000335688, -34.618456000344111 ], [ -58.380681999574563, -34.617577000278288 ], [ -58.380746999874077, -34.616395999775534 ], [ -58.380790000058425, -34.61523800033342 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380918999712037, -34.613028000042107 ], [ -58.380960999850231, -34.611804000254381 ], [ -58.381047000218871, -34.610795999635627 ], [ -58.381090000403162, -34.60961600007829 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.381175999872482, -34.608371000221439 ], [ -58.381208000448794, -34.60780700029278 ], [ -58.381240000125842, -34.607255000018199 ], [ -58.381305000425414, -34.606074999561542 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.381345999618134, -34.604656999820634 ], [ -58.381111999619066, -34.604228999868383 ], [ -58.381089000357065, -34.603925000238519 ], [ -58.381069000334037, -34.603651000193452 ], [ -58.381154999803357, -34.603092999642172 ], [ -58.381282000264036, -34.602901999827395 ], [ -58.381364000448229, -34.602858999643104 ], [ -58.381540999617414, -34.602661000404794 ], [ -58.381561999686483, -34.60249199980592 ], [ -58.381604999870831, -34.601333000317652 ], [ -58.381670000170345, -34.600196000045344 ], [ -58.381626999985997, -34.599893999608355 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.381754999593511, -34.597857000100419 ], [ -58.381863000077374, -34.596697999712887 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.389974, -34.595776000362093 ], [ -58.390059000322594, -34.595045999972854 ], [ -58.390059000322594, -34.594703000343145 ], [ -58.39008100043776, -34.594274000344797 ], [ -58.390038000253469, -34.593264999679946 ], [ -58.390853000065874, -34.592557000305248 ], [ -58.391861999831406, -34.591762999662649 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397548000339896, -34.587150000072427 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.404027999692403, -34.583436999717719 ], [ -58.405252000379448, -34.583458999832942 ], [ -58.406173999730242, -34.583373000363622 ], [ -58.406925000188551, -34.583222999741622 ], [ -58.407203999564899, -34.583137000272302 ], [ -58.40821300022975, -34.582814999812342 ], [ -58.409199999880059, -34.582515000366925 ], [ -58.41003699980763, -34.582236000091314 ], [ -58.410207999599436, -34.582192999906965 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.412697000166361, -34.581828000162034 ], [ -58.414242000368006, -34.581720999724325 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.421710000316239, -34.580926999981045 ], [ -58.421623999947599, -34.5808200004426 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.418748000419839, -34.57890999959676 ], [ -58.417267999618446, -34.577365000294492 ], [ -58.417032000426445, -34.577129000203172 ], [ -58.415701000200954, -34.575691000439292 ], [ -58.4153369996028, -34.575111999818887 ], [ -58.415400999856217, -34.575005000280498 ], [ -58.416194999599497, -34.574467999798287 ], [ -58.416581000312874, -34.574146000237704 ], [ -58.417932999708114, -34.573566999617299 ], [ -58.419177999564965, -34.573008999965339 ], [ -58.419993000276691, -34.572601000036059 ], [ -58.420507999744359, -34.572387000059962 ], [ -58.421751999555113, -34.57178600022371 ], [ -58.423212000333535, -34.571206999603305 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 89.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.223074, -34.740536 ], [ -58.224116, -34.741105 ], [ -58.225165, -34.741682 ], [ -58.226244, -34.742272 ], [ -58.226997, -34.741336 ], [ -58.228026, -34.741913 ], [ -58.228588, -34.741237 ], [ -58.229734, -34.741886 ], [ -58.230279, -34.741228 ], [ -58.230845, -34.740542 ], [ -58.231316, -34.739955 ], [ -58.231399, -34.739925 ], [ -58.232375, -34.740446 ], [ -58.232468, -34.740412 ], [ -58.233436, -34.739956 ], [ -58.234519, -34.739498 ], [ -58.235547, -34.739042 ], [ -58.236519, -34.738631 ], [ -58.236603, -34.73858 ], [ -58.236678, -34.738525 ], [ -58.237334, -34.737805 ], [ -58.236373, -34.737225 ], [ -58.2354, -34.736621 ], [ -58.235331, -34.73659 ], [ -58.235814, -34.735965 ], [ -58.236396, -34.735222 ], [ -58.236537, -34.735229 ], [ -58.236726, -34.735246 ], [ -58.237222, -34.734676 ], [ -58.237761, -34.734059 ], [ -58.23806, -34.733719 ], [ -58.238454, -34.733268 ], [ -58.238998, -34.732593 ], [ -58.239638, -34.7319 ], [ -58.239617, -34.731804 ], [ -58.239014, -34.731472 ], [ -58.238667, -34.731286 ], [ -58.23835, -34.731131 ], [ -58.237887, -34.730882 ], [ -58.236977, -34.730385 ], [ -58.236018, -34.729899 ], [ -58.236579, -34.729188 ], [ -58.235673, -34.728736 ], [ -58.236223, -34.728089 ], [ -58.236492, -34.727782 ], [ -58.237944, -34.726129 ], [ -58.239313, -34.72691 ], [ -58.241722, -34.728283 ], [ -58.243071, -34.729039 ], [ -58.243987, -34.729561 ], [ -58.244933, -34.730096 ], [ -58.245857, -34.730605 ], [ -58.246378, -34.730904 ], [ -58.246515, -34.730966 ], [ -58.246551, -34.730917 ], [ -58.246581, -34.730895 ], [ -58.24751, -34.729846 ], [ -58.248426, -34.728783 ], [ -58.249244, -34.727793 ], [ -58.249311, -34.727719 ], [ -58.24936, -34.727662 ], [ -58.249904999999899, -34.726946 ], [ -58.250419, -34.726211 ], [ -58.250445, -34.72618 ], [ -58.250489, -34.726141 ], [ -58.250565, -34.726074 ], [ -58.251079, -34.72538 ], [ -58.251673, -34.724567 ], [ -58.252242, -34.723771 ], [ -58.252815, -34.722969 ], [ -58.253747, -34.72345 ], [ -58.254662, -34.723923 ], [ -58.255617, -34.724413 ], [ -58.256531, -34.724889 ], [ -58.257484, -34.725375 ], [ -58.258325, -34.725802 ], [ -58.258417, -34.725855 ], [ -58.259026, -34.725058 ], [ -58.259575, -34.724308 ], [ -58.260131, -34.723545 ], [ -58.260492, -34.723067 ], [ -58.260753, -34.72273 ], [ -58.261071, -34.722312 ], [ -58.261337, -34.721947 ], [ -58.261658, -34.721489 ], [ -58.261709, -34.721435 ], [ -58.261785, -34.721369 ], [ -58.261943, -34.721146 ], [ -58.262268, -34.720682 ], [ -58.262479, -34.720392 ], [ -58.262825, -34.719928 ], [ -58.263047, -34.719632 ], [ -58.263454, -34.719097 ], [ -58.263899, -34.718506 ], [ -58.264151, -34.718174 ], [ -58.265159, -34.718684 ], [ -58.266154, -34.719194 ], [ -58.26555, -34.720024 ], [ -58.26492, -34.720878 ], [ -58.264295, -34.721714 ], [ -58.263707, -34.722538 ], [ -58.263072, -34.723352 ], [ -58.26252, -34.7241 ], [ -58.262486, -34.724146 ], [ -58.263437, -34.724666 ], [ -58.264123, -34.725032 ], [ -58.264216, -34.7251 ], [ -58.264297, -34.72515 ], [ -58.265166, -34.725602 ], [ -58.266123, -34.726111 ], [ -58.267086, -34.72662 ], [ -58.267928, -34.727049 ], [ -58.268033, -34.727091 ], [ -58.268095, -34.727115 ], [ -58.269057, -34.727556 ], [ -58.269953, -34.727969 ], [ -58.270015, -34.727997 ], [ -58.270059, -34.728012 ], [ -58.270949, -34.728429 ], [ -58.271926, -34.728875 ], [ -58.272033, -34.728937 ], [ -58.272136, -34.728995 ], [ -58.272974, -34.729431 ], [ -58.273914, -34.729931 ], [ -58.274833, -34.730433 ], [ -58.275972, -34.731001 ], [ -58.277135, -34.731591 ], [ -58.278117, -34.732107 ], [ -58.279879, -34.733056 ], [ -58.280005, -34.733135 ], [ -58.280112, -34.733215 ], [ -58.2811, -34.73368 ], [ -58.282231, -34.734189 ], [ -58.283235, -34.73468 ], [ -58.284273, -34.735178 ], [ -58.285296, -34.735659 ], [ -58.286296, -34.736128 ], [ -58.287384, -34.736622 ], [ -58.288421, -34.737106 ], [ -58.289416, -34.73757 ], [ -58.290418, -34.738046 ], [ -58.291431, -34.738539 ], [ -58.292381, -34.738986 ], [ -58.292499, -34.739064 ], [ -58.291908, -34.739912 ], [ -58.291552, -34.740417 ], [ -58.29131, -34.74076 ], [ -58.290712, -34.741598 ], [ -58.290083, -34.742489 ], [ -58.289454, -34.743324 ], [ -58.288857, -34.74412 ], [ -58.288329, -34.74483 ], [ -58.288298, -34.74486 ], [ -58.288244, -34.744923 ], [ -58.287629, -34.745737 ], [ -58.287554, -34.745832 ], [ -58.287156, -34.746673 ], [ -58.287061, -34.74686 ], [ -58.286871, -34.74743 ], [ -58.286622, -34.748203 ], [ -58.286385, -34.749069 ], [ -58.286189, -34.749767 ], [ -58.285999, -34.750441 ], [ -58.285941, -34.750534 ], [ -58.285875, -34.750641 ], [ -58.285458, -34.751162 ], [ -58.285, -34.751745 ], [ -58.284547, -34.752333 ], [ -58.284057, -34.752972 ], [ -58.283612, -34.753549 ], [ -58.283081, -34.75422 ], [ -58.282622, -34.754803 ], [ -58.282124, -34.755485 ], [ -58.281613, -34.756111 ], [ -58.281435, -34.756348 ], [ -58.280506, -34.757561 ], [ -58.28005, -34.758119 ], [ -58.279811, -34.758448 ], [ -58.279607, -34.75867 ], [ -58.279334, -34.758968 ], [ -58.279141, -34.759232 ], [ -58.278511, -34.760087 ], [ -58.277682, -34.761148 ], [ -58.277094, -34.761916 ], [ -58.276535, -34.762587 ], [ -58.276112, -34.763137 ], [ -58.275498, -34.763887 ], [ -58.274688, -34.764992 ], [ -58.274803, -34.765041 ], [ -58.274915, -34.76508 ], [ -58.275758, -34.76554 ], [ -58.276675, -34.766037 ], [ -58.277463, -34.76644 ], [ -58.278205, -34.766813 ], [ -58.27897, -34.767223 ], [ -58.279701, -34.767618 ], [ -58.280473, -34.768028 ], [ -58.281235, -34.76841 ], [ -58.282032999999899, -34.768822 ], [ -58.283364, -34.769507 ], [ -58.284643, -34.770175 ], [ -58.285431, -34.770602 ], [ -58.2862, -34.770985 ], [ -58.286997, -34.771417 ], [ -58.287745, -34.771827 ], [ -58.288473, -34.772203 ], [ -58.289182, -34.772568 ], [ -58.289261, -34.772602 ], [ -58.289339, -34.772635 ], [ -58.290052, -34.773017 ], [ -58.29081, -34.773449 ], [ -58.291658, -34.773916 ], [ -58.292371, -34.774308 ], [ -58.293117, -34.774724 ], [ -58.293856, -34.775125 ], [ -58.294635, -34.77555 ], [ -58.295493, -34.776021 ], [ -58.296374, -34.77651 ], [ -58.297285, -34.777002 ], [ -58.298269, -34.777545 ], [ -58.299191, -34.778055 ], [ -58.300172, -34.778575 ], [ -58.301091, -34.779091 ], [ -58.301978, -34.779132 ], [ -58.302262, -34.779308 ], [ -58.302746, -34.778791 ], [ -58.303251, -34.778239 ], [ -58.303682, -34.777786 ], [ -58.303753, -34.777718 ], [ -58.304246, -34.777157 ], [ -58.304269, -34.777078 ], [ -58.304713, -34.776611 ], [ -58.30524, -34.776035 ], [ -58.306685, -34.776907 ], [ -58.307977, -34.77775 ], [ -58.308132, -34.777847 ], [ -58.30828, -34.777929 ], [ -58.309642, -34.778779 ], [ -58.311091, -34.779649 ], [ -58.312539999999899, -34.780537 ], [ -58.313961, -34.781442 ], [ -58.315333, -34.782324 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 88.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.337861, -34.80067 ], [ -58.337081, -34.800863 ], [ -58.336299, -34.801035 ], [ -58.335521, -34.80118 ], [ -58.334713, -34.80134 ], [ -58.334106, -34.801452 ], [ -58.333977, -34.801513 ], [ -58.333841, -34.801574 ], [ -58.331874, -34.801966 ], [ -58.331063, -34.802126 ], [ -58.330698, -34.801915 ], [ -58.32869, -34.800793 ], [ -58.328105, -34.800478 ], [ -58.327027, -34.799888 ], [ -58.326765, -34.799771 ], [ -58.326366, -34.799598 ], [ -58.325723, -34.799239 ], [ -58.325182, -34.798929 ], [ -58.324409, -34.798501 ], [ -58.323376, -34.797923 ], [ -58.323345, -34.797904 ], [ -58.322258, -34.79732 ], [ -58.322204, -34.797443 ], [ -58.321483, -34.798336 ], [ -58.320743, -34.799264 ], [ -58.320033, -34.800156 ], [ -58.318912, -34.799541 ], [ -58.317557, -34.79883 ], [ -58.31604, -34.797962 ], [ -58.316729, -34.797088 ], [ -58.317359, -34.796547 ], [ -58.317669, -34.796287 ], [ -58.318013, -34.795981 ], [ -58.318611, -34.795467 ], [ -58.318721, -34.795384 ], [ -58.318576, -34.795256 ], [ -58.31737, -34.794602 ], [ -58.315848, -34.793782 ], [ -58.314334, -34.792952 ], [ -58.312835, -34.792122 ], [ -58.311301, -34.791257 ], [ -58.311555, -34.790915 ], [ -58.311966, -34.79029 ], [ -58.312406, -34.78973 ], [ -58.312811, -34.789155 ], [ -58.313262, -34.788567 ], [ -58.313671, -34.787997 ], [ -58.314075, -34.787438 ], [ -58.314513, -34.786829 ], [ -58.31492, -34.786263 ], [ -58.315353, -34.785674 ], [ -58.31577, -34.78511 ], [ -58.31618, -34.784566 ], [ -58.316611, -34.784003 ], [ -58.316988, -34.783435 ], [ -58.317025, -34.783325 ], [ -58.317054, -34.783244 ], [ -58.317475, -34.782567 ], [ -58.317843, -34.781966 ], [ -58.318336, -34.781143 ], [ -58.318767, -34.780436 ], [ -58.319145, -34.779801 ], [ -58.319598, -34.779192 ], [ -58.320422, -34.778685 ], [ -58.320621, -34.778501 ], [ -58.321289, -34.777825 ], [ -58.322165, -34.776984 ], [ -58.322244, -34.776907 ], [ -58.322315, -34.776822 ], [ -58.323191, -34.775965 ], [ -58.324092, -34.77501 ], [ -58.325137, -34.773951 ], [ -58.326107, -34.774476 ], [ -58.327056, -34.774994 ], [ -58.327865, -34.775452 ], [ -58.328617, -34.775877 ], [ -58.329286, -34.776267 ], [ -58.330005, -34.776657 ], [ -58.33101, -34.777189 ], [ -58.331875, -34.777671 ], [ -58.331999, -34.777745 ], [ -58.3321, -34.777808 ], [ -58.332706, -34.778131 ], [ -58.333354, -34.77852 ], [ -58.333939, -34.778869 ], [ -58.33409, -34.77891 ], [ -58.334206, -34.778947 ], [ -58.33481, -34.779293 ], [ -58.335655, -34.779783 ], [ -58.336325, -34.780161 ], [ -58.337788, -34.780972 ], [ -58.338402, -34.781325 ], [ -58.339034, -34.781686 ], [ -58.339297, -34.781895 ], [ -58.339736, -34.782096 ], [ -58.340412, -34.78245 ], [ -58.341121, -34.782836 ], [ -58.342052, -34.783343 ], [ -58.342526, -34.783611 ], [ -58.342849, -34.783797 ], [ -58.34323, -34.784011 ], [ -58.343503, -34.784165 ], [ -58.343889, -34.784383 ], [ -58.344307, -34.78461 ], [ -58.344596, -34.784773 ], [ -58.345125, -34.78507 ], [ -58.345323, -34.78518 ], [ -58.345759, -34.785423 ], [ -58.346035, -34.785562 ], [ -58.346485, -34.785802 ], [ -58.346752, -34.785952 ], [ -58.346949, -34.786063 ], [ -58.348159, -34.786735 ], [ -58.348889, -34.787146 ], [ -58.348992, -34.787205 ], [ -58.349333, -34.787408 ], [ -58.349563, -34.787539 ], [ -58.350921, -34.788329 ], [ -58.352313, -34.789117 ], [ -58.353609, -34.789759 ], [ -58.35374, -34.789829 ], [ -58.35513, -34.79064 ], [ -58.356526, -34.791393 ], [ -58.357926, -34.792152 ], [ -58.359324, -34.792951 ], [ -58.360709, -34.793722 ], [ -58.362105, -34.794501 ], [ -58.363572, -34.795304 ], [ -58.363765, -34.795411 ], [ -58.364, -34.795568 ], [ -58.364308, -34.795739 ], [ -58.364505, -34.795842 ], [ -58.36537, -34.796337 ], [ -58.365908, -34.796632 ], [ -58.366022, -34.796694 ], [ -58.36668, -34.797055 ], [ -58.367074, -34.79727 ], [ -58.367379, -34.797451 ], [ -58.368166, -34.797894 ], [ -58.36875, -34.798219 ], [ -58.369425, -34.798588 ], [ -58.370229, -34.799015 ], [ -58.370608, -34.799218 ], [ -58.371476, -34.798234 ], [ -58.372307, -34.797261 ], [ -58.373331, -34.79609 ], [ -58.373316, -34.79598 ], [ -58.373955, -34.79636 ], [ -58.374762, -34.79533 ], [ -58.375408, -34.794528 ], [ -58.375938, -34.793865 ], [ -58.376397, -34.793301 ], [ -58.376406, -34.793449 ], [ -58.377246, -34.793898 ], [ -58.378207, -34.794406 ], [ -58.379671, -34.792592 ], [ -58.37969, -34.792531 ], [ -58.379738, -34.792429 ], [ -58.382029, -34.791954 ], [ -58.38318, -34.792589 ], [ -58.383631, -34.79456 ], [ -58.383672, -34.794554 ], [ -58.383737, -34.794567 ], [ -58.383786, -34.794584 ], [ -58.383849, -34.794626 ], [ -58.383883, -34.794686 ], [ -58.383901, -34.794748 ], [ -58.38389, -34.794799 ], [ -58.383867, -34.794848 ], [ -58.383818, -34.794891 ], [ -58.383748, -34.794925 ], [ -58.384295, -34.797473 ], [ -58.384568, -34.797445 ], [ -58.384782, -34.797565 ], [ -58.38497, -34.797705 ], [ -58.385044, -34.797906 ], [ -58.388116, -34.79744 ], [ -58.388124, -34.797401 ], [ -58.388137, -34.797335 ], [ -58.388169, -34.797266 ], [ -58.388265, -34.79717 ], [ -58.388356, -34.797131 ], [ -58.388456, -34.797105 ], [ -58.388546, -34.797107 ], [ -58.388662, -34.797134 ], [ -58.388723, -34.797171 ], [ -58.388798, -34.797224 ], [ -58.388856, -34.797306 ], [ -58.388878, -34.797367 ], [ -58.390129, -34.797126 ], [ -58.390962, -34.796979 ], [ -58.391402, -34.797203 ], [ -58.39337, -34.798284 ], [ -58.394319, -34.798844 ], [ -58.394399, -34.797444 ], [ -58.394443, -34.797205 ], [ -58.394754, -34.796731 ], [ -58.395395, -34.795975 ], [ -58.396179, -34.795024 ], [ -58.396877, -34.795405 ], [ -58.39724, -34.795606 ], [ -58.397899, -34.795955 ], [ -58.398125, -34.796066 ], [ -58.398755, -34.796377 ], [ -58.399411, -34.796719 ], [ -58.399841, -34.796957 ], [ -58.400216, -34.797155 ], [ -58.400574, -34.797342 ], [ -58.400855, -34.797476 ], [ -58.401987, -34.798098 ], [ -58.402393, -34.798311 ], [ -58.403192, -34.798763 ], [ -58.404382, -34.799386 ], [ -58.405591, -34.80002 ], [ -58.40657, -34.800526 ], [ -58.406645, -34.800563 ], [ -58.407682, -34.801104 ], [ -58.407815, -34.80113 ], [ -58.407365, -34.801683 ], [ -58.40677, -34.802487 ], [ -58.406063, -34.803431 ], [ -58.405624, -34.80402 ], [ -58.405143, -34.804654 ], [ -58.404552, -34.805425 ], [ -58.403911, -34.806256 ], [ -58.403164, -34.807247 ], [ -58.403037, -34.80743 ], [ -58.402898, -34.807625 ], [ -58.402545, -34.808099 ], [ -58.402131, -34.808656 ], [ -58.40144, -34.809597 ], [ -58.401279, -34.80981 ], [ -58.400841, -34.810397 ], [ -58.400519, -34.810833 ], [ -58.399692, -34.81194 ], [ -58.399499, -34.812174 ], [ -58.400522, -34.812716 ], [ -58.40159, -34.81326 ], [ -58.402712, -34.813802 ], [ -58.404074, -34.811973 ], [ -58.40467, -34.811178 ], [ -58.404751, -34.811233 ], [ -58.405911, -34.811565 ], [ -58.406832, -34.811836 ], [ -58.406942999999899, -34.811878 ], [ -58.407059, -34.811916 ], [ -58.4079, -34.812349 ], [ -58.408833999999899, -34.8128 ], [ -58.410033, -34.813396 ], [ -58.410317, -34.813538 ], [ -58.411117, -34.813938 ], [ -58.411940999999899, -34.814353 ], [ -58.412726, -34.814752 ], [ -58.413505, -34.815153 ], [ -58.4143, -34.815555 ], [ -58.415584, -34.816202 ], [ -58.416331, -34.816579 ], [ -58.416947, -34.816881 ], [ -58.417051999999899, -34.816938 ], [ -58.4171, -34.816822 ], [ -58.417871, -34.815819 ], [ -58.417999, -34.815885 ], [ -58.418654, -34.816215 ], [ -58.419384, -34.816573 ], [ -58.420142, -34.81695 ], [ -58.420778, -34.81726 ], [ -58.420816, -34.817397 ], [ -58.420859, -34.817532 ], [ -58.422259, -34.818209 ], [ -58.423369, -34.818779 ], [ -58.424961, -34.819572 ], [ -58.425054, -34.81924 ], [ -58.425245, -34.818883 ], [ -58.425695, -34.818262 ], [ -58.426143, -34.81766 ], [ -58.426632, -34.817025 ], [ -58.427067, -34.816428 ], [ -58.42756, -34.815803 ], [ -58.428351, -34.816196 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 87.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.22193, -34.740708 ], [ -58.222168, -34.740706 ], [ -58.222294, -34.740908 ], [ -58.222294, -34.74119 ], [ -58.222218, -34.741639 ], [ -58.223074, -34.740536 ], [ -58.224116, -34.741105 ], [ -58.225165, -34.741682 ], [ -58.226244, -34.742272 ], [ -58.226997, -34.741336 ], [ -58.228026, -34.741913 ], [ -58.228588, -34.741237 ], [ -58.229131, -34.740576 ], [ -58.229693, -34.739904 ], [ -58.230159, -34.739342 ], [ -58.230228, -34.7393 ], [ -58.230289, -34.739258 ], [ -58.230774, -34.738613 ], [ -58.231294, -34.737857 ], [ -58.231870999999899, -34.73714 ], [ -58.232442, -34.736401 ], [ -58.231499, -34.735933 ], [ -58.230798, -34.735584 ], [ -58.230109, -34.735234 ], [ -58.229403, -34.734861 ], [ -58.230124, -34.733906 ], [ -58.230592, -34.733254 ], [ -58.231199, -34.732457 ], [ -58.231842, -34.731607 ], [ -58.232173, -34.731147 ], [ -58.232775, -34.730401 ], [ -58.233304, -34.729618 ], [ -58.23392, -34.728834 ], [ -58.234529, -34.728125 ], [ -58.235673, -34.728736 ], [ -58.236223, -34.728089 ], [ -58.236492, -34.727782 ], [ -58.237944, -34.726129 ], [ -58.236768, -34.725463 ], [ -58.235622, -34.724832 ], [ -58.235212, -34.724591 ], [ -58.23532, -34.724497 ], [ -58.235455, -34.72438 ], [ -58.236278, -34.723664 ], [ -58.236935, -34.722963 ], [ -58.237649, -34.722294 ], [ -58.238351, -34.721679 ], [ -58.238408, -34.721614 ], [ -58.23833, -34.721557 ], [ -58.237901, -34.721301 ], [ -58.236992, -34.720781 ], [ -58.236109, -34.720272 ], [ -58.235179, -34.719745 ], [ -58.234307, -34.719215 ], [ -58.234952, -34.718503 ], [ -58.235596, -34.717729 ], [ -58.236506, -34.718245 ], [ -58.237406, -34.718744 ], [ -58.238326, -34.719278 ], [ -58.23894, -34.718577 ], [ -58.239808, -34.719069 ], [ -58.240666, -34.719542 ], [ -58.240384, -34.719792 ], [ -58.240782, -34.72002 ], [ -58.241426, -34.720362 ], [ -58.241672, -34.720489 ], [ -58.2426, -34.720977 ], [ -58.243452, -34.721386 ], [ -58.243541, -34.721426 ], [ -58.243623, -34.72147 ], [ -58.244494, -34.721935 ], [ -58.245404, -34.722405 ], [ -58.24595, -34.721696 ], [ -58.245984, -34.721625 ], [ -58.246019, -34.721551 ], [ -58.246528, -34.72091 ], [ -58.245671, -34.720353 ], [ -58.244814, -34.719824 ], [ -58.243887, -34.719287 ], [ -58.244875, -34.718744 ], [ -58.245792, -34.718189 ], [ -58.246717, -34.717652 ], [ -58.247618, -34.717119 ], [ -58.247746, -34.717034 ], [ -58.247851, -34.716934 ], [ -58.248547, -34.716454 ], [ -58.249392, -34.71587 ], [ -58.250254, -34.715299 ], [ -58.251121, -34.714694 ], [ -58.252114, -34.714054 ], [ -58.253477, -34.713172 ], [ -58.253483, -34.713169 ], [ -58.253619, -34.71325 ], [ -58.25451, -34.713676 ], [ -58.255449, -34.714156 ], [ -58.256405, -34.714629 ], [ -58.257337, -34.715066 ], [ -58.257258, -34.715125 ], [ -58.256417, -34.716209 ], [ -58.255809, -34.71706 ], [ -58.255259, -34.717812 ], [ -58.254736, -34.718594 ], [ -58.254181, -34.719357 ], [ -58.255146, -34.719872 ], [ -58.256056, -34.720346 ], [ -58.256941, -34.720817 ], [ -58.257892, -34.72129 ], [ -58.258796, -34.721726 ], [ -58.258858, -34.721774 ], [ -58.258943, -34.721833 ], [ -58.259763, -34.722229 ], [ -58.260753, -34.72273 ], [ -58.260492, -34.723067 ], [ -58.260131, -34.723545 ], [ -58.259575, -34.724308 ], [ -58.259026, -34.725058 ], [ -58.258417, -34.725855 ], [ -58.258517, -34.725911 ], [ -58.25937, -34.72634 ], [ -58.25953, -34.726432 ], [ -58.260367, -34.726833 ], [ -58.260471, -34.726873 ], [ -58.260579, -34.726909 ], [ -58.261475, -34.727352 ], [ -58.262081, -34.72652 ], [ -58.262679, -34.726823 ], [ -58.262787, -34.726869 ], [ -58.262898, -34.726911 ], [ -58.263753, -34.727331 ], [ -58.264783, -34.727826 ], [ -58.265793, -34.728286 ], [ -58.266673, -34.728706 ], [ -58.266814, -34.728762 ], [ -58.266856, -34.728781 ], [ -58.267823, -34.72921 ], [ -58.268762, -34.729624 ], [ -58.2688, -34.729651 ], [ -58.26883, -34.729671 ], [ -58.269757, -34.730071 ], [ -58.270732, -34.730515 ], [ -58.270838, -34.730571 ], [ -58.270945, -34.730622 ], [ -58.271774, -34.731058 ], [ -58.272718, -34.73155 ], [ -58.273637, -34.73205 ], [ -58.274705, -34.732626 ], [ -58.274059, -34.73349 ], [ -58.273484, -34.734258 ], [ -58.273412, -34.734343 ], [ -58.273343, -34.734429 ], [ -58.272846, -34.735156 ], [ -58.27231, -34.735914 ], [ -58.272414, -34.73599 ], [ -58.273357, -34.73655 ], [ -58.274309, -34.737106 ], [ -58.275237, -34.737653 ], [ -58.275345, -34.737717 ], [ -58.275469, -34.73779 ], [ -58.276285, -34.738254 ], [ -58.276388, -34.738344 ], [ -58.275844, -34.739094 ], [ -58.275151, -34.740098 ], [ -58.274488, -34.741048 ], [ -58.273876, -34.741962 ], [ -58.273341, -34.742748 ], [ -58.272864, -34.743446 ], [ -58.272793, -34.743549 ], [ -58.272736, -34.743626 ], [ -58.272317, -34.74427 ], [ -58.27185, -34.74496 ], [ -58.271378, -34.745655 ], [ -58.270981, -34.746238 ], [ -58.270582, -34.746828 ], [ -58.269928, -34.747797 ], [ -58.269896, -34.747882 ], [ -58.268832, -34.749441 ], [ -58.267529, -34.751318 ], [ -58.267482, -34.751387 ], [ -58.267477, -34.751429 ], [ -58.267258, -34.752133 ], [ -58.267092, -34.752395 ], [ -58.26701, -34.752521 ], [ -58.266212, -34.75353 ], [ -58.265547, -34.754343 ], [ -58.26478, -34.755291 ], [ -58.265574, -34.755732 ], [ -58.266276, -34.756126 ], [ -58.266992, -34.75653 ], [ -58.267718, -34.756929 ], [ -58.268475, -34.757345 ], [ -58.269182, -34.757729 ], [ -58.269863, -34.758096 ], [ -58.269925, -34.758127 ], [ -58.270088, -34.758218 ], [ -58.270244, -34.758312 ], [ -58.27033, -34.758373 ], [ -58.270622, -34.75862 ], [ -58.270734, -34.758707 ], [ -58.270711, -34.758825 ], [ -58.269934, -34.759777 ], [ -58.269233, -34.760635 ], [ -58.268432, -34.761716 ], [ -58.267594, -34.762825 ], [ -58.267026, -34.763543 ], [ -58.266581, -34.764112 ], [ -58.266148, -34.764703 ], [ -58.264979, -34.764077 ], [ -58.264549, -34.764646 ], [ -58.264058, -34.765294 ], [ -58.263631, -34.765876 ], [ -58.263161, -34.766473 ], [ -58.262725, -34.767026 ], [ -58.262286, -34.7676 ], [ -58.2611, -34.766949 ], [ -58.26067, -34.767509 ], [ -58.26021, -34.768088 ], [ -58.259759, -34.768657 ], [ -58.25917, -34.769418 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 86.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.730664521437568, -34.442959705173664 ], [ -58.72708392304169, -34.447587614892051 ], [ -58.732671411196968, -34.450576016309739 ], [ -58.730765962586602, -34.45312849495182 ], [ -58.740274014069712, -34.450563678872719 ], [ -58.740986843765675, -34.450201780719382 ], [ -58.742094471447089, -34.449368318305645 ], [ -58.742489269432546, -34.449138019480792 ], [ -58.742971800303664, -34.449148986091501 ], [ -58.753233806272853, -34.435956153410856 ], [ -58.749252926586159, -34.433864272418475 ], [ -58.749930114797323, -34.432948560424428 ], [ -58.734055945798758, -34.424378154156813 ], [ -58.735130673648058, -34.423067644177308 ], [ -58.735026490846337, -34.422947011459527 ], [ -58.734335594371792, -34.42320472681115 ], [ -58.733474715431285, -34.421724234365684 ], [ -58.734286244623604, -34.421400719349819 ], [ -58.727881743970656, -34.41788592061819 ], [ -58.726768632983841, -34.417304690250702 ], [ -58.72610241138338, -34.418187502412621 ], [ -58.72433404540687, -34.417222440670393 ], [ -58.723325117221798, -34.416613793776136 ], [ -58.730968844884664, -34.407138642125183 ], [ -58.737175946544895, -34.398957550537673 ], [ -58.754064527033862, -34.376772097077179 ], [ -58.787852654622498, -34.355077399445818 ], [ -58.788614834066642, -34.354490685772987 ], [ -58.790725906627763, -34.353070509686418 ], [ -58.791170054361402, -34.353421441229045 ], [ -58.792277682042823, -34.352681195006312 ], [ -58.795649914835273, -34.350235640818617 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 85.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.449153999657312, -34.55895400022689 ], [ -58.449410999817758, -34.559126000064794 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.446406999783164, -34.560435000175062 ], [ -58.44477700015841, -34.561206999803176 ], [ -58.444176000322102, -34.561442999894496 ], [ -58.443574999586531, -34.561635999801524 ], [ -58.443166999657251, -34.561786999570359 ], [ -58.442481000397834, -34.561915000077136 ], [ -58.441579000170691, -34.562173000283678 ], [ -58.439325999695086, -34.562559000097735 ], [ -58.438790000158349, -34.562774000119987 ], [ -58.438210000391166, -34.562923999842667 ], [ -58.437458999932858, -34.563181000003112 ], [ -58.436772999774064, -34.563460000278724 ], [ -58.436343999775715, -34.563653000185752 ], [ -58.435506999848144, -34.564276000137227 ], [ -58.434454999898264, -34.564919000111729 ], [ -58.433339999741179, -34.565563000132329 ], [ -58.432266999722231, -34.566185000037706 ], [ -58.433018000180539, -34.567065000149569 ], [ -58.433781000292868, -34.567937999938692 ], [ -58.434498000082613, -34.568782000189117 ], [ -58.435248999641601, -34.569662000301037 ], [ -58.435720999824241, -34.570241000022065 ], [ -58.434927000080961, -34.571099000018819 ], [ -58.434091000199487, -34.571979000130682 ], [ -58.433511000432304, -34.57257999996699 ], [ -58.43338299992547, -34.572708999620602 ], [ -58.432523999882676, -34.57360999980159 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.430250000237265, -34.575712999655138 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.426287000044965, -34.578230999760763 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420528999813428, -34.581892000415451 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.414992999926938, -34.585775999662587 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.413169000349058, -34.586999000303592 ], [ -58.412353999637332, -34.587556999955552 ], [ -58.412203999914595, -34.587643000324135 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.407183000395094, -34.591634000009037 ], [ -58.406131000445271, -34.592578000374374 ], [ -58.405100999711351, -34.593372000117654 ], [ -58.403620999809277, -34.594080000391671 ], [ -58.403063000157317, -34.592922000050237 ], [ -58.402783999881649, -34.592106000191734 ], [ -58.401495999840506, -34.592535000190082 ], [ -58.401860999585438, -34.593351000048585 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.402891000319357, -34.595818999647065 ], [ -58.40314899962658, -34.596570000105373 ], [ -58.40347100008654, -34.597556999755682 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.404586000243683, -34.610066000145764 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.401818000300409, -34.609895000353958 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.399114999757387, -34.609722999616679 ], [ -58.397569999555799, -34.60961600007829 ], [ -58.396282000413919, -34.609508999640582 ], [ -58.394865999865942, -34.609401000056039 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.388256999960561, -34.609100999711302 ], [ -58.388133999684271, -34.60917000019532 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.386260999645401, -34.60937999998697 ], [ -58.384844999996687, -34.609272000402427 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.381969999615762, -34.609078999596136 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.380681999574563, -34.608994000172913 ], [ -58.379179999557266, -34.608885999689107 ], [ -58.377786000023832, -34.60882200033501 ], [ -58.376391000444301, -34.60873599996637 ], [ -58.374931999711976, -34.608629000427982 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370104000099502, -34.606676000297114 ], [ -58.369889000077251, -34.606568999859405 ], [ -58.369439000009777, -34.606503999559891 ], [ -58.368944999711914, -34.606655000228045 ], [ -58.368816000058303, -34.606739999651211 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368300999691314, -34.606891000319365 ], [ -58.368138000268459, -34.607041000042102 ], [ -58.368044000430245, -34.607127000410685 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368601000036108, -34.609071000126505 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.369352999641194, -34.60952999970965 ], [ -58.369331000425291, -34.609916000423027 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.369180999803234, -34.612297999652924 ], [ -58.369117000449194, -34.613584999647969 ], [ -58.368944999711914, -34.614766000150723 ], [ -58.368859000242651, -34.61579599998538 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.368687999551526, -34.617834000438734 ], [ -58.368602000082205, -34.618284999652985 ], [ -58.368494999644497, -34.619400999856225 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.368001000245897, -34.62686799975836 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.363387999756355, -34.630343999975594 ], [ -58.362401000106047, -34.630965999880971 ], [ -58.360855999904459, -34.632038999899862 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.359890000323219, -34.63366999957077 ], [ -58.35978299988551, -34.63384200030805 ], [ -58.359632000116676, -34.634119999638244 ], [ -58.359396000025356, -34.634507000397718 ], [ -58.358880999658368, -34.635301000140998 ], [ -58.358388000305922, -34.636115999953404 ], [ -58.357916000123282, -34.636867000411712 ], [ -58.357400999756294, -34.637767999693381 ], [ -58.357228999918391, -34.637960999600409 ], [ -58.357036000011362, -34.638196999691729 ], [ -58.357143000449071, -34.638411999713981 ], [ -58.358044999776894, -34.638819999643204 ], [ -58.358473999775242, -34.63897000026526 ], [ -58.36034100043679, -34.63897000026526 ], [ -58.361413000409584, -34.639248999641552 ], [ -58.361564000178419, -34.639484999732929 ], [ -58.36160700036271, -34.639741999893317 ], [ -58.361649999647739, -34.640193000006889 ], [ -58.361477999809779, -34.64055799975182 ], [ -58.361069999880556, -34.64088000021178 ], [ -58.362465000359464, -34.641673999955117 ], [ -58.363709000170161, -34.642124000022534 ], [ -58.364266999822121, -34.641137000372225 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 84.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.697718096095748, -34.394375053451235 ], [ -58.697615956382961, -34.394373573165538 ], [ -58.697525658955719, -34.394355809737228 ], [ -58.697466447528015, -34.394312881452144 ], [ -58.697481250384939, -34.39410712174088 ], [ -58.697521218098643, -34.393996100313942 ], [ -58.697617436668658, -34.39389840145823 ], [ -58.697732898952673, -34.393828828030678 ], [ -58.697829117522694, -34.393777018031443 ], [ -58.697953461520868, -34.3936260288908 ], [ -58.69804375894811, -34.39349872432124 ], [ -58.698364980943396, -34.392939176329456 ], [ -58.698542615226508, -34.392702330618647 ], [ -58.698814987793938, -34.392545420335232 ], [ -58.699116966075216, -34.392441800336755 ], [ -58.699344930071867, -34.392373707194899 ], [ -58.699596578639607, -34.392267126625036 ], [ -58.699966650062741, -34.392056926056689 ], [ -58.700167968916929, -34.391968108915137 ], [ -58.700369287771117, -34.391885212916357 ], [ -58.700546922054222, -34.391746066061252 ], [ -58.701295946614657, -34.391290138067959 ], [ -58.701494304897459, -34.391230926640254 ], [ -58.701908784891373, -34.391091779785157 ], [ -58.702187078601575, -34.390976317501135 ], [ -58.702497938597006, -34.390849012931575 ], [ -58.702983472304169, -34.390375321509957 ], [ -58.703202554586667, -34.390150318084693 ], [ -58.703318016870682, -34.38995492037327 ], [ -58.703338740870379, -34.38968254780584 ], [ -58.70330913515653, -34.389463465523342 ], [ -58.703128540302039, -34.389191092955912 ], [ -58.703013078018017, -34.389066748957738 ], [ -58.702965708875858, -34.388933523245413 ], [ -58.702939063733389, -34.388664111249362 ], [ -58.703051565446025, -34.387396986696537 ], [ -58.703347622584538, -34.386852241561677 ], [ -58.703679206579672, -34.386277890712968 ], [ -58.703933815718791, -34.385916701003985 ], [ -58.704075923145275, -34.385312744441421 ], [ -58.704129213430207, -34.384880501019197 ], [ -58.704058159716965, -34.384365361598185 ], [ -58.703975263718185, -34.384211411886156 ], [ -58.702862088877382, -34.382778495335764 ], [ -58.702246290029279, -34.382162696487661 ], [ -58.701796283178744, -34.381238998215501 ], [ -58.701796283178744, -34.380410038227673 ], [ -58.702187078601575, -34.378953437106198 ], [ -58.702246290029279, -34.377923158264181 ], [ -58.701547595182397, -34.377177094275133 ], [ -58.700991007761992, -34.377094198276346 ], [ -58.700552843196995, -34.376963933135407 ], [ -58.699948886634431, -34.376928406278786 ], [ -58.699143611217686, -34.376513926284865 ], [ -58.69893045007796, -34.376312607430677 ], [ -58.698551496940659, -34.376134973147572 ], [ -58.698125174661207, -34.376040234863247 ], [ -58.69776990609499, -34.375969181150005 ], [ -58.696929103821624, -34.376277080574056 ], [ -58.696573835255407, -34.376383661143926 ], [ -58.696029090120547, -34.376869194851082 ], [ -58.695626452412171, -34.376999459992028 ], [ -58.695200130132719, -34.37715340970405 ], [ -58.694785650138805, -34.377236305702837 ], [ -58.694406697001504, -34.377378413129321 ], [ -58.694027743864211, -34.377591574269047 ], [ -58.693246153018542, -34.377852104550939 ], [ -58.692985622736657, -34.377946842835264 ], [ -58.692405350745169, -34.378503430255662 ], [ -58.690250054776811, -34.379592920525383 ], [ -58.688900034225199, -34.380256088515651 ], [ -58.687680278814533, -34.380942941076995 ], [ -58.686318415977382, -34.381677162780498 ], [ -58.685015764567936, -34.382517965053871 ], [ -58.683594690303082, -34.383192975329678 ], [ -58.664647033438357, -34.393661555747435 ], [ -58.664374660870934, -34.393620107748042 ], [ -58.664111170017655, -34.393543132892027 ], [ -58.661766397480648, -34.392308574624451 ], [ -58.661280863773484, -34.392474366622011 ], [ -58.65599920442245, -34.399378419092095 ], [ -58.655969598708602, -34.399594540803186 ], [ -58.655863018138739, -34.399671515659193 ], [ -58.655694265569785, -34.399742569372435 ], [ -58.655472222715908, -34.399724805944125 ], [ -58.655102151292766, -34.399606383088724 ], [ -58.654370890160642, -34.399200784808961 ], [ -58.651306698777042, -34.397602076261009 ], [ -58.650838928498189, -34.397489574548374 ], [ -58.650098785651913, -34.397797473972425 ], [ -58.649299431377926, -34.398105373396476 ], [ -58.648517840532257, -34.398140900253097 ], [ -58.644870416585796, -34.399206705951741 ], [ -58.639221646383007, -34.400911995069563 ], [ -58.638522951536117, -34.40116068306591 ], [ -58.638132156113286, -34.401302790492394 ], [ -58.637480830408563, -34.401326475063478 ], [ -58.625993813434334, -34.404571261301534 ], [ -58.624241155174346, -34.404973899009903 ], [ -58.6229385037649, -34.405660751571254 ], [ -58.621375322073561, -34.406513396130165 ], [ -58.61997793237979, -34.407176564120427 ], [ -58.618580542686018, -34.408195000676905 ], [ -58.617798951840349, -34.408455530958797 ], [ -58.616946307281438, -34.408431846387714 ], [ -58.616093662722527, -34.408739745811765 ], [ -58.611404117648505, -34.410989780064455 ], [ -58.608396177121236, -34.412268746902818 ], [ -58.60503296802775, -34.413997720591723 ], [ -58.601740812647506, -34.415253002859011 ], [ -58.598188126985377, -34.416958291976833 ], [ -58.596399941868768, -34.417822778821304 ], [ -58.591698554509207, -34.422334689612214 ], [ -58.591011701947863, -34.42290311931815 ], [ -58.590064319104627, -34.423649183307198 ], [ -58.589661681396251, -34.423921555874628 ], [ -58.588311660844646, -34.421849155905051 ], [ -58.588145868847079, -34.421316253055736 ], [ -58.58790902313627, -34.420368870212499 ], [ -58.587684019710998, -34.419610963937913 ], [ -58.587684019710998, -34.419101745659674 ], [ -58.587530069998977, -34.418876742234403 ], [ -58.586653740868982, -34.419303064513862 ], [ -58.585587935170345, -34.41967017536561 ], [ -58.583882646052515, -34.420735981064254 ], [ -58.583018159208066, -34.421268883913569 ], [ -58.581952353509429, -34.421884682761672 ], [ -58.581360239232403, -34.422239951327889 ], [ -58.581188526092077, -34.422601141036843 ], [ -58.581253658662547, -34.422719563892251 ], [ -58.581070103236669, -34.423015621030757 ], [ -58.580762203812618, -34.423092595886772 ], [ -58.580495752387961, -34.42295640960306 ], [ -58.580294433533773, -34.422393901039889 ], [ -58.580110878107895, -34.42196757876043 ], [ -58.579370735261605, -34.422234030185095 ], [ -58.577547023288375, -34.423228782170497 ], [ -58.576090422166907, -34.423903792446303 ], [ -58.574633821045431, -34.424614329578731 ], [ -58.573615384488953, -34.425064336429266 ], [ -58.572893005070988, -34.425443289566559 ], [ -58.57199299136991, -34.425928823273715 ], [ -58.561974417802695, -34.430902583200691 ], [ -58.566178429169554, -34.434218423152018 ], [ -58.567185023440494, -34.434988171712142 ], [ -58.567552134292249, -34.435414493991601 ], [ -58.567871876001838, -34.435888185413219 ], [ -58.568428463422237, -34.436243453979429 ], [ -58.56945874226426, -34.437013202539561 ], [ -58.569873222258174, -34.437143467680507 ], [ -58.570264017681005, -34.437297417392529 ], [ -58.570950870242356, -34.437818477956313 ], [ -58.571258769666407, -34.437972427668335 ], [ -58.571542984519375, -34.438102692809281 ], [ -58.572052202797614, -34.438386907662249 ], [ -58.572336417650583, -34.438517172803195 ], [ -58.572715370787883, -34.438801387656163 ], [ -58.573011427926389, -34.439050075652517 ], [ -58.573224589066122, -34.439334290505485 ], [ -58.573662753631119, -34.439393501933189 ], [ -58.581520110087212, -34.440820497340802 ], [ -58.583811592339288, -34.441388927046745 ], [ -58.586286630017234, -34.441850776182818 ], [ -58.595476243596622, -34.443692251584359 ], [ -58.5972111384283, -34.444361340717393 ], [ -58.597388772711405, -34.444349498431855 ], [ -58.597539761852047, -34.444337656146317 ], [ -58.597702593278228, -34.444470881858642 ], [ -58.597797331562546, -34.444630752713437 ], [ -58.597850621847478, -34.44473437271192 ], [ -58.598448657267276, -34.444938652137495 ], [ -58.615187727878677, -34.452328238314728 ], [ -58.617650923271093, -34.453370359442282 ], [ -58.620374648945393, -34.453915104577142 ], [ -58.631245867071506, -34.458533595937915 ], [ -58.623619435183464, -34.468789015215933 ], [ -58.626153684289129, -34.474141728280216 ], [ -58.619320685532301, -34.487748514366203 ], [ -58.643147364039663, -34.500621078748658 ], [ -58.642004583485011, -34.502116167298134 ], [ -58.643869743457635, -34.502036231870733 ], [ -58.643967442313333, -34.502332289009253 ], [ -58.645474373148353, -34.502255314153238 ], [ -58.646164186281084, -34.501731293018075 ], [ -58.673469536165918, -34.478473044216656 ], [ -58.6669918059753, -34.477750664798684 ], [ -58.662941744320463, -34.475713791685727 ], [ -58.634887369875159, -34.460591193050568 ], [ -58.636651870420685, -34.459122749643541 ], [ -58.636900558417032, -34.458779323362869 ], [ -58.637587410978384, -34.458341158797872 ], [ -58.63853479382162, -34.457512198810043 ], [ -58.639541388092553, -34.456683238822215 ], [ -58.640370348080388, -34.455439798840466 ], [ -58.640974304642945, -34.45449241599723 ], [ -58.641329573209163, -34.453959513147908 ], [ -58.64176773777416, -34.453592402296159 ], [ -58.642217744624695, -34.453485821726289 ], [ -58.643200654324552, -34.453616086867235 ], [ -58.644917785727912, -34.45362792915278 ], [ -58.646315175421691, -34.453663456009402 ], [ -58.647665195973296, -34.453734509722644 ], [ -58.648411259962344, -34.453722667437098 ], [ -58.660679867782243, -34.450181824060493 ], [ -58.676169577269143, -34.44649887325744 ], [ -58.70180220432141, -34.413304946887571 ], [ -58.688781611369677, -34.40651931727291 ], [ -58.714763585845404, -34.392421076336994 ], [ -58.714710295560472, -34.39175790834674 ], [ -58.714283973281013, -34.391242768925729 ], [ -58.713934625857569, -34.391071055785396 ], [ -58.713218167582376, -34.39068618150533 ], [ -58.712785924160151, -34.390484862651142 ], [ -58.712383286451775, -34.390182884369857 ], [ -58.711986569886172, -34.390028934657835 ], [ -58.711708276175969, -34.389880906088578 ], [ -58.711548405321174, -34.389874984945806 ], [ -58.711341165324214, -34.389827615803647 ], [ -58.711151688755564, -34.389845379231957 ], [ -58.710920764187527, -34.389993407801214 ], [ -58.71067207619118, -34.390064461514456 ], [ -58.710447072765909, -34.390159199798781 ], [ -58.710204305912335, -34.390242095797561 ], [ -58.709931933344905, -34.390307228368037 ], [ -58.709825352775034, -34.390319070653575 ], [ -58.709416793923893, -34.390384203224045 ], [ -58.709067446500448, -34.390390124366817 ], [ -58.708729941362549, -34.390378282081279 ], [ -58.708410199652953, -34.390301307225265 ], [ -58.708084536800591, -34.390218411226485 ], [ -58.70777663737654, -34.390094067228304 ], [ -58.707510185951882, -34.390034855800607 ], [ -58.706006215688248, -34.389501952951285 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 82.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.775648187731797, -34.342964777919619 ], [ -58.779977257308431, -34.345300666000234 ], [ -58.780509137927737, -34.344851034961223 ], [ -58.781737398326932, -34.345530964825059 ], [ -58.785389279692403, -34.340727589335344 ], [ -58.789987031231369, -34.343384250779167 ], [ -58.790793077118344, -34.342325972845927 ], [ -58.792761583740273, -34.343578908119198 ], [ -58.797965240520803, -34.348541299464181 ], [ -58.79570063540978, -34.350224674207716 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 81.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.378615999628664, -34.629011999704005 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389479999702189, -34.626739000104749 ], [ -58.39119699974168, -34.627039000449486 ], [ -58.391239999926029, -34.6263100001064 ], [ -58.391325000248514, -34.625237000087452 ], [ -58.391432999833057, -34.623992000230601 ], [ -58.391453999902126, -34.623498999978835 ], [ -58.391497000086417, -34.622726000304624 ], [ -58.391562000385989, -34.621545999847967 ], [ -58.391625999740029, -34.620215999668631 ], [ -58.391668999924377, -34.619100000364654 ], [ -58.391689999993446, -34.618112999815025 ], [ -58.391689999993446, -34.616911000142522 ], [ -58.391646999809154, -34.61570999961674 ], [ -58.391689999993446, -34.614936999942529 ], [ -58.391689999993446, -34.614936999942529 ], [ -58.393192000010743, -34.615065999596141 ], [ -58.394629999774622, -34.615129999849557 ], [ -58.396110999722794, -34.61523800033342 ], [ -58.397805999647119, -34.615365999940877 ], [ -58.397869999900536, -34.614809000335072 ], [ -58.399243000264221, -34.615129999849557 ], [ -58.401259999749129, -34.615494999594489 ], [ -58.402870000250289, -34.615452000309517 ], [ -58.404565000174557, -34.615817000054449 ], [ -58.405808999985311, -34.616075000260992 ], [ -58.406947000303774, -34.616332000421437 ], [ -58.40821300022975, -34.616482000144174 ], [ -58.409457000040504, -34.61658999972866 ], [ -58.411002000242092, -34.616610999797786 ], [ -58.412740000350709, -34.616610999797786 ], [ -58.412697000166361, -34.618069999630734 ], [ -58.414091999745949, -34.618220000252791 ], [ -58.415357999671926, -34.618371000021568 ], [ -58.416731000035554, -34.618541999813374 ], [ -58.418233000052851, -34.618649000251139 ], [ -58.418983999611839, -34.618713999651334 ], [ -58.419627999632439, -34.618756999835625 ], [ -58.420528999813428, -34.618821000089042 ], [ -58.421537999578959, -34.618906999558362 ], [ -58.422460999875227, -34.618970999811722 ], [ -58.424284000306329, -34.619100000364654 ], [ -58.424928000326929, -34.619142999649682 ], [ -58.425593000416598, -34.619206999903099 ], [ -58.426343999975586, -34.619250000087391 ], [ -58.427116999649797, -34.619315000386905 ], [ -58.42831900022162, -34.619400999856225 ], [ -58.429734999870334, -34.619593999763254 ], [ -58.431323000256214, -34.619829999854574 ], [ -58.432996000065316, -34.620043999830671 ], [ -58.434134000383779, -34.620193999553408 ], [ -58.435484999732921, -34.620408999575602 ], [ -58.435914999777367, -34.619357999671877 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.437095000234024, -34.617082999980425 ], [ -58.437331000325344, -34.616631999866854 ], [ -58.437416999794664, -34.616461000075049 ], [ -58.437609999701692, -34.615923999592837 ], [ -58.437760000323692, -34.614615000381946 ], [ -58.437823999677789, -34.614078999945832 ], [ -58.438404000344292, -34.612813000019912 ], [ -58.440077000153394, -34.613563999578901 ], [ -58.440893000011897, -34.613863999923637 ], [ -58.441085999918926, -34.613929000223152 ], [ -58.442416000098262, -34.61450799994418 ], [ -58.443747000323754, -34.614980000126877 ], [ -58.44524900034105, -34.615602000032254 ], [ -58.445871000246427, -34.615881000307866 ], [ -58.445934999600524, -34.615988999892409 ], [ -58.446686000058833, -34.615966999777186 ], [ -58.446686000058833, -34.61658999972866 ], [ -58.448509999636713, -34.616996999611786 ], [ -58.449367999633409, -34.617319000071745 ], [ -58.45078500022754, -34.617876999723705 ], [ -58.452007999969169, -34.618348999906402 ], [ -58.453230999710854, -34.618821000089042 ], [ -58.454517999705899, -34.619272000202614 ], [ -58.455183999841665, -34.617876999723705 ], [ -58.455656000024362, -34.616803999704757 ], [ -58.456171000391294, -34.615730999685866 ], [ -58.457328999833408, -34.613028000042107 ], [ -58.459474999871304, -34.613886000038804 ], [ -58.460677000443184, -34.614336000106277 ], [ -58.461900000184812, -34.614766000150723 ], [ -58.463057999626926, -34.615216000218197 ], [ -58.464453000105834, -34.615752999801032 ], [ -58.465697999962686, -34.61626800016802 ], [ -58.466727999797286, -34.616718000235494 ], [ -58.467951000438291, -34.617254999818329 ], [ -58.468809000434987, -34.61761999956326 ], [ -58.469130999995627, -34.617791000254442 ], [ -58.470417999990673, -34.618477999560014 ], [ -58.471641999778399, -34.619163999718751 ], [ -58.472949999842569, -34.619850999923642 ], [ -58.474215999768546, -34.620516000013367 ], [ -58.475052999696118, -34.619465000109642 ], [ -58.475868999554621, -34.618456000344111 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.476641000082054, -34.617447999725357 ], [ -58.477478000009626, -34.616461000075049 ], [ -58.478228999568614, -34.615452000309517 ], [ -58.479023000211271, -34.614421999575598 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.480653999882122, -34.612427000205855 ], [ -58.481468999694528, -34.611418000440324 ], [ -58.481855000407904, -34.610903000073336 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.482628000082116, -34.60993799963893 ], [ -58.482992999827047, -34.60946600035561 ], [ -58.483508000194036, -34.608864999619982 ], [ -58.484451999659996, -34.607770000385187 ], [ -58.485203000118304, -34.60691200038849 ], [ -58.486210999837738, -34.605753000000902 ], [ -58.487069999880532, -34.604808999635566 ], [ -58.488207000152897, -34.603479000355549 ], [ -58.487047999765309, -34.60281400026588 ], [ -58.487799000223617, -34.601847999785321 ], [ -58.489000999896177, -34.602578000174503 ], [ -58.490030999730834, -34.603156999895589 ], [ -58.491339999841102, -34.6039299995698 ], [ -58.492133999584382, -34.6030500003572 ], [ -58.492862999927468, -34.602127000060989 ], [ -58.494172000037736, -34.602920999804269 ], [ -58.495502000217073, -34.603735999616617 ], [ -58.496274999891284, -34.604207999799314 ], [ -58.497219000256621, -34.604745000281468 ], [ -58.498077000253318, -34.605259999749137 ], [ -58.498591999720986, -34.604573000443565 ], [ -58.499235999741529, -34.603715000446869 ], [ -58.499794000292866, -34.60296399998856 ], [ -58.500609000105214, -34.601955000223029 ], [ -58.502025999800026, -34.602771000081532 ], [ -58.503227000325751, -34.603392999986909 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 80.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.476100314798046, -34.538294094970325 ], [ -58.477029812460579, -34.538879046782469 ], [ -58.47773415230423, -34.53918341032724 ], [ -58.481094199755155, -34.541287768451944 ], [ -58.483114846847606, -34.542162785322937 ], [ -58.492444463137417, -34.546499689675265 ], [ -58.494476656784698, -34.545738845608589 ], [ -58.496093174458686, -34.543988877857963 ], [ -58.497201643720835, -34.541858432672008 ], [ -58.499141464929615, -34.540146428274547 ], [ -58.500388492849545, -34.538662662648029 ], [ -58.501635520769469, -34.536912546120796 ], [ -58.510780392182284, -34.523290816685972 ], [ -58.515907062519751, -34.518153552474537 ], [ -58.519786704937303, -34.514347967323488 ], [ -58.522742622969709, -34.512407051965333 ], [ -58.525790913440638, -34.510351915837987 ], [ -58.529208693665623, -34.508715382302483 ], [ -58.548653091972611, -34.49912388857733 ], [ -58.552209430855356, -34.497449070149223 ], [ -58.554657300475959, -34.495621957128982 ], [ -58.557751777166125, -34.492500546428801 ], [ -58.55922973618236, -34.487742073594113 ], [ -58.560430577883025, -34.484201593662505 ], [ -58.561123371171874, -34.481688903832826 ], [ -58.563709799450237, -34.476777518819638 ], [ -58.565511062001228, -34.473731553412307 ], [ -58.566527158824883, -34.471408930077068 ], [ -58.571191966969764, -34.463526759193371 ], [ -58.571515270504577, -34.46196546795079 ], [ -58.5727622984245, -34.459337863111188 ], [ -58.573686022809632, -34.455072589344766 ], [ -58.574702119633258, -34.45358730894467 ], [ -58.576549568403529, -34.448902790031227 ], [ -58.577888968761968, -34.44608433498982 ], [ -58.579043624243383, -34.444522717606489 ], [ -58.580706328136628, -34.442580177193946 ], [ -58.583223477086079, -34.440028143692366 ], [ -58.584770715431183, -34.437799811890329 ], [ -58.585117112075622, -34.436961791391887 ], [ -58.585163298294873, -34.435228585968886 ], [ -58.585255670733382, -34.434257213364795 ], [ -58.585255670733382, -34.433685812441112 ], [ -58.585186391404505, -34.433362016850189 ], [ -58.584886180979325, -34.431990633380607 ], [ -58.584239573909734, -34.430771606961038 ], [ -58.58389317726531, -34.429381133245577 ], [ -58.583685339278645, -34.428428740640996 ], [ -58.583639153059401, -34.427952540269409 ], [ -58.583592966840136, -34.427552529860804 ], [ -58.583454408182376, -34.42715251753804 ], [ -58.583777711717168, -34.426847744959709 ], [ -58.584147201471225, -34.426752503301103 ], [ -58.584401225677141, -34.426600116421639 ], [ -58.585001646527466, -34.426314390273916 ], [ -58.585463508720018, -34.426219148007654 ], [ -58.586941467736239, -34.425381011385554 ], [ -58.587922924895437, -34.424857171729592 ], [ -58.58920459247981, -34.424123790696861 ], [ -58.590139863419743, -34.423552320497386 ], [ -58.591352251675239, -34.422676058604729 ], [ -58.592033498409258, -34.421837886461574 ], [ -58.593118874561796, -34.420980656260355 ], [ -58.596629027225291, -34.417799302907724 ], [ -58.607247527696231, -34.412881778355128 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 78.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.420555693676882, -34.69850898086635 ], [ -58.427478538217748, -34.702377629286246 ], [ -58.430057637164346, -34.698916207015813 ], [ -58.420419951627061, -34.693825880147521 ], [ -58.431075702538003, -34.679437222866504 ], [ -58.43664112658066, -34.681032191951907 ], [ -58.439898935776363, -34.67960690042878 ], [ -58.444480229957826, -34.684832969346893 ], [ -58.472477027733397, -34.662910628300807 ], [ -58.462533922584008, -34.644076418888154 ], [ -58.452217526797618, -34.636135508973631 ], [ -58.446244876605498, -34.636135508973631 ], [ -58.438236095666056, -34.630298600831324 ], [ -58.385228825210973, -34.622866723603636 ], [ -58.383192694463659, -34.622832788091181 ], [ -58.379731272193226, -34.627448017785092 ], [ -58.378441722719927, -34.627617695347368 ], [ -58.380715402054427, -34.620796657343867 ], [ -58.381292305766166, -34.613873812803 ], [ -58.38183527396545, -34.599111864884968 ], [ -58.371281329591874, -34.598195606048677 ], [ -58.373792557513561, -34.59354644084231 ], [ -58.375387526598956, -34.592494439956198 ], [ -58.371688555741336, -34.588252500899294 ], [ -58.372401201502896, -34.586419983226712 ], [ -58.374742751862307, -34.58543585336551 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 77.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.606326000044817, -34.671428999748514 ], [ -58.605944999562041, -34.671071000326378 ], [ -58.605473000278721, -34.670641000281876 ], [ -58.605129999749636, -34.670340999937139 ], [ -58.604914999727441, -34.67014800003011 ], [ -58.604572000097676, -34.669825999570207 ], [ -58.604357000075424, -34.669632999663179 ], [ -58.604056999730687, -34.66935400028683 ], [ -58.603627999732339, -34.668946000357607 ], [ -58.603520000147853, -34.668859999988968 ], [ -58.603047999965213, -34.668430999990619 ], [ -58.602833999989059, -34.668238000083591 ], [ -58.602339999691196, -34.667788000016117 ], [ -58.601997000061488, -34.667465999556214 ], [ -58.601545999947916, -34.667057999626934 ], [ -58.600988000295956, -34.666564000228391 ], [ -58.600472999928968, -34.666070999976625 ], [ -58.5998079998393, -34.66549200025554 ], [ -58.599743999585883, -34.665619999863054 ], [ -58.599550999678854, -34.666758000181517 ], [ -58.59948600027866, -34.666972000157614 ], [ -58.599357999771826, -34.667121999880351 ], [ -58.598949999842603, -34.667486999625282 ], [ -58.598220000352683, -34.668109000429979 ], [ -58.596439000059775, -34.669569000309082 ], [ -58.595881000407815, -34.670040999592402 ], [ -58.595129999949506, -34.670663000397099 ], [ -58.594443999790712, -34.671242000118184 ], [ -58.593478000209529, -34.672035999861464 ], [ -58.592082999730621, -34.673195000248995 ], [ -58.591375000355924, -34.673773999970081 ], [ -58.590580999713325, -34.674439000059749 ], [ -58.589958999807948, -34.674954000426737 ], [ -58.589015000341931, -34.675748000170017 ], [ -58.587598999793954, -34.676928999773452 ], [ -58.58673999975116, -34.677637000047469 ], [ -58.586139999961006, -34.678109000230108 ], [ -58.585517000009474, -34.678623999697777 ], [ -58.585131000195474, -34.678946000157737 ], [ -58.584615999828486, -34.679353000040862 ], [ -58.584358999668041, -34.679481999694474 ], [ -58.583844000200429, -34.679654000431754 ], [ -58.583693999578372, -34.679717999785794 ], [ -58.582320000067909, -34.680018000130531 ], [ -58.58143999995599, -34.680212000083714 ], [ -58.580581999959293, -34.680426000059811 ], [ -58.579637999593956, -34.680641000082062 ], [ -58.578779999597259, -34.68083399998909 ], [ -58.577556999855631, -34.681113000264702 ], [ -58.576654999628488, -34.68130600017173 ], [ -58.575775999562666, -34.681520000147827 ], [ -58.574853000165774, -34.681735000170079 ], [ -58.573802000262049, -34.681971000261399 ], [ -58.572772000427449, -34.68218600028365 ], [ -58.572342000382946, -34.682292999822039 ], [ -58.572128000406849, -34.682292999822039 ], [ -58.571569999855569, -34.682207000352719 ], [ -58.570861999581552, -34.68186399982369 ], [ -58.570583000205261, -34.681585000447342 ], [ -58.570324999998718, -34.681349000356022 ], [ -58.569746000277632, -34.680855000058159 ], [ -58.569187999726353, -34.680318999622102 ], [ -58.568480000351713, -34.679717999785794 ], [ -58.567878999616084, -34.679160000133834 ], [ -58.567193000356667, -34.678581000412805 ], [ -58.566419999783136, -34.677851000023566 ], [ -58.565669000224148, -34.677185999933897 ], [ -58.564938999834908, -34.676541999913297 ], [ -58.564210000391142, -34.675833999639337 ], [ -58.562986999750194, -34.676713999751257 ], [ -58.561871000446274, -34.677550999678829 ], [ -58.560755000243034, -34.678366000390554 ], [ -58.559682000224086, -34.679182000249057 ], [ -58.558609000205138, -34.680061000314879 ], [ -58.557471999932829, -34.680898000242451 ], [ -58.556334999660464, -34.681735000170079 ], [ -58.555240999572447, -34.682572000097707 ], [ -58.554896999896584, -34.682786000073804 ], [ -58.554082000084179, -34.682164000168427 ], [ -58.553201999972259, -34.681563000332176 ], [ -58.552365000044688, -34.680983999711771 ], [ -58.551463999863643, -34.680404999990685 ], [ -58.550562999682654, -34.679738999854919 ], [ -58.549725999755026, -34.679139000064765 ], [ -58.548760000173843, -34.678430999790749 ], [ -58.548652999736134, -34.678366000390554 ], [ -58.548331000175494, -34.678130000299234 ], [ -58.547645000016701, -34.67768000023176 ], [ -58.546785999973906, -34.677079000395509 ], [ -58.545906999908084, -34.676477999659937 ], [ -58.545219999703193, -34.67600600037656 ], [ -58.544854999958261, -34.67577000028524 ], [ -58.544554999613524, -34.675555000262989 ], [ -58.543890000423119, -34.675105000195572 ], [ -58.543203000218227, -34.674654000082 ], [ -58.542559000197684, -34.674246000152721 ], [ -58.541829999854542, -34.673796000085304 ], [ -58.541057000180388, -34.673280999718315 ], [ -58.540177000068468, -34.672723000066355 ], [ -58.539319000071771, -34.672165000414395 ], [ -58.538438999959851, -34.67158599979399 ], [ -58.537580999963154, -34.671049000211156 ], [ -58.536744000035526, -34.670512999775099 ], [ -58.535863999923606, -34.669955000123139 ], [ -58.535005999926909, -34.669396999571802 ], [ -58.533998000207475, -34.668732000381453 ], [ -58.533332000071709, -34.668474000174911 ], [ -58.53285999988907, -34.668260000198813 ], [ -58.532689000097264, -34.668194999899299 ], [ -58.531980999823247, -34.667873000338659 ], [ -58.531487000424704, -34.667659000362505 ], [ -58.531336999802647, -34.667594000062991 ], [ -58.530692999782048, -34.667314999787379 ], [ -58.530048999761505, -34.667036999557865 ], [ -58.528782999835528, -34.666522000090197 ], [ -58.527495999840482, -34.665964000438237 ], [ -58.526123000376117, -34.665405999886957 ], [ -58.524898999689071, -34.664891000419289 ], [ -58.524705999782043, -34.664826000119774 ], [ -58.524148000130083, -34.664590000028454 ], [ -58.523461999971289, -34.664353999937077 ], [ -58.523160999580398, -34.664247000398689 ], [ -58.522152999861021, -34.663881999754437 ], [ -58.521638000393352, -34.663688999847409 ], [ -58.521402000302032, -34.663624999593992 ], [ -58.521058999773004, -34.66349599994038 ], [ -58.520544000305335, -34.663303000033409 ], [ -58.519985999754056, -34.663088000011157 ], [ -58.519449000171164, -34.662895000104129 ], [ -58.518999000103747, -34.662724000312323 ], [ -58.518655000427884, -34.662594999759392 ], [ -58.517518000155519, -34.661993999923141 ], [ -58.516703000343171, -34.661521999740444 ], [ -58.516573999790239, -34.661458000386347 ], [ -58.515565000024708, -34.660899999835067 ], [ -58.514899999934983, -34.660512999974912 ], [ -58.514535000190051, -34.660298999998815 ], [ -58.514191999661023, -34.660106000091787 ], [ -58.512496999736697, -34.661521999740444 ], [ -58.511295000064138, -34.662530000359197 ], [ -58.510094000437732, -34.663517000009506 ], [ -58.508655999774533, -34.664718999682066 ], [ -58.507862000031253, -34.664074999661466 ], [ -58.507068000287916, -34.663389000401992 ], [ -58.506273999645316, -34.662745000381392 ], [ -58.505458999832911, -34.662080000291724 ], [ -58.505179999557299, -34.661822000085181 ], [ -58.504642999974408, -34.661415000202055 ], [ -58.503871000346351, -34.660749000066232 ], [ -58.503119999888042, -34.660127000160912 ], [ -58.500395000129117, -34.65851799970585 ], [ -58.499794000292866, -34.658152999960919 ], [ -58.498827999812306, -34.65733800014857 ], [ -58.498249000091221, -34.656865999965873 ], [ -58.497841000161998, -34.656522000290011 ], [ -58.497241000371844, -34.656029000038302 ], [ -58.496532000051729, -34.655449000271119 ], [ -58.495739000354547, -34.654784000181394 ], [ -58.494944999711947, -34.654119000091725 ], [ -58.49415099996861, -34.653454000002057 ], [ -58.493378000294456, -34.652788999912389 ], [ -58.492562999582731, -34.652122999776566 ], [ -58.491768999839451, -34.651457999686897 ], [ -58.490996000165239, -34.650814999712395 ], [ -58.490202000421959, -34.650148999576629 ], [ -58.489386999710234, -34.649463000317155 ], [ -58.488764999804857, -34.648925999835001 ], [ -58.488163999968606, -34.648390000298207 ], [ -58.487648999601618, -34.647939000184692 ], [ -58.487134000133949, -34.647510000186344 ], [ -58.486639999836086, -34.647081000187939 ], [ -58.488099999715189, -34.646779999797104 ], [ -58.489622999801554, -34.646307999614464 ], [ -58.491426000209685, -34.645836000331087 ], [ -58.493164000318302, -34.64538600026367 ], [ -58.494837000127404, -34.644935000150099 ], [ -58.494902000426919, -34.64482799971239 ], [ -58.494902000426919, -34.644763000312196 ], [ -58.494687000404724, -34.644527000220819 ], [ -58.493614000385776, -34.644055000038179 ], [ -58.492284000206382, -34.643412000063734 ], [ -58.491640000185839, -34.643110999672842 ], [ -58.490910999842754, -34.642768000043134 ], [ -58.490160000283765, -34.642403000298202 ], [ -58.489559000447457, -34.642102999953465 ], [ -58.488721999620566, -34.641716000093311 ], [ -58.487799000223617, -34.641287000094962 ], [ -58.486962000296046, -34.64088000021178 ], [ -58.486083000230224, -34.640450000167334 ], [ -58.485309999656693, -34.640106999638306 ], [ -58.484880999658344, -34.639892999662152 ], [ -58.484602000282052, -34.63976400000854 ], [ -58.483894000008036, -34.639421000378832 ], [ -58.482885000242504, -34.63897000026526 ], [ -58.481747999970196, -34.638432999783049 ], [ -58.481468999694528, -34.63832600024466 ], [ -58.480417999790802, -34.637832999992895 ], [ -58.480053000045871, -34.637661000154992 ], [ -58.478551000028574, -34.636973999950101 ], [ -58.477349000356014, -34.636480999698335 ], [ -58.476404999990734, -34.636072999769056 ], [ -58.4753970002713, -34.635643999770707 ], [ -58.4743670004367, -34.635214999772359 ], [ -58.473357999771849, -34.634850000027427 ], [ -58.472284999752901, -34.63446400021337 ], [ -58.472885999589153, -34.633132999987936 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.474108000184003, -34.630429000298079 ], [ -58.472993000026861, -34.630107999884217 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.437760000323692, -34.618864000273334 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.437095000234024, -34.617082999980425 ], [ -58.437331000325344, -34.616631999866854 ], [ -58.437416999794664, -34.616461000075049 ], [ -58.437609999701692, -34.615923999592837 ], [ -58.437760000323692, -34.614615000381946 ], [ -58.437823999677789, -34.614078999945832 ], [ -58.438404000344292, -34.612813000019912 ], [ -58.439304999626017, -34.610816999704753 ], [ -58.43836100016, -34.61040999982157 ], [ -58.438811000227417, -34.608928999873399 ], [ -58.438790000158349, -34.608800000219787 ], [ -58.438746999974001, -34.608629000427982 ], [ -58.438724999858835, -34.607728000246993 ], [ -58.438724999858835, -34.607062000111171 ], [ -58.438724999858835, -34.606462000321017 ], [ -58.438724999858835, -34.606310999652862 ], [ -58.439304999626017, -34.605603000278222 ], [ -58.440033999969103, -34.604509000190149 ], [ -58.440700000104869, -34.603542999709646 ], [ -58.441299999895023, -34.602684999712949 ], [ -58.441429000447954, -34.602621000358852 ], [ -58.442351999844902, -34.602233999599378 ], [ -58.442544999751874, -34.60217000024528 ], [ -58.443296000210182, -34.601847999785321 ], [ -58.444690999789771, -34.601355000432875 ], [ -58.446149999622719, -34.600883000250235 ], [ -58.446300000244776, -34.600840000065887 ], [ -58.447609000355044, -34.600410000021441 ], [ -58.447995000169101, -34.600282000413927 ], [ -58.448682000373992, -34.599658999563133 ], [ -58.447672999709141, -34.598822999681659 ], [ -58.446664999989707, -34.598006999823156 ], [ -58.445656000224176, -34.597169999895527 ], [ -58.444668999674548, -34.596376000152247 ], [ -58.443532000301559, -34.595474999971202 ], [ -58.442716999589834, -34.595024999903785 ], [ -58.441879999662206, -34.594552999721088 ], [ -58.440849999827606, -34.593951999884837 ], [ -58.43971299955524, -34.593307999864237 ], [ -58.43859700025132, -34.59268599995886 ], [ -58.437458999932858, -34.592020999869192 ], [ -58.436343999775715, -34.591397999917717 ], [ -58.435335000010184, -34.590840000265757 ], [ -58.434369999575779, -34.590197000291312 ], [ -58.433082000433956, -34.589360000363683 ], [ -58.432202000322036, -34.588779999697181 ], [ -58.431795000438854, -34.588480000251764 ], [ -58.431171999588059, -34.588051000253415 ], [ -58.430571999797905, -34.587685999609164 ], [ -58.430120999684334, -34.587364000048524 ], [ -58.429585000147597, -34.587021000418815 ], [ -58.429155000103151, -34.586720000027924 ], [ -58.427996999761717, -34.585968999569616 ], [ -58.426987999996186, -34.585304000379267 ], [ -58.426322999906461, -34.584832000196627 ], [ -58.425185999634152, -34.583931000015582 ], [ -58.424027000145884, -34.583007999719371 ], [ -58.422889999873576, -34.582107000437702 ], [ -58.421751999555113, -34.581184000141434 ], [ -58.422610999597907, -34.580605000420405 ], [ -58.423619000216661, -34.579897000146389 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.429090999849734, -34.577042999834532 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.430250000237265, -34.575712999655138 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.432523999882676, -34.57360999980159 ], [ -58.43338299992547, -34.572708999620602 ], [ -58.433511000432304, -34.57257999996699 ], [ -58.434091000199487, -34.571979000130682 ], [ -58.434927000080961, -34.571099000018819 ], [ -58.435720999824241, -34.570241000022065 ], [ -58.436557999751869, -34.569317999725854 ], [ -58.437008999865384, -34.568782000189117 ], [ -58.437373999610372, -34.568287999891254 ], [ -58.438102999953458, -34.567301000240946 ], [ -58.439325999695086, -34.566207000152872 ], [ -58.439434000178949, -34.566120999784289 ], [ -58.440356000429063, -34.5653700002253 ], [ -58.441256999710731, -34.564597999697867 ], [ -58.442609000005291, -34.563653000185752 ], [ -58.443638999839948, -34.562838000373347 ], [ -58.44460500032045, -34.562043999730747 ], [ -58.445591999970759, -34.56110000026473 ], [ -58.446493000151804, -34.56054199971345 ], [ -58.446708000174056, -34.560369999875547 ], [ -58.448188000076129, -34.559855000407879 ], [ -58.449410999817758, -34.559126000064794 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 76.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.369522000240067, -34.597470000240264 ], [ -58.369180999803234, -34.598286000098767 ], [ -58.369031000080554, -34.598329000283115 ], [ -58.368987999896262, -34.598371999568087 ], [ -58.368987999896262, -34.598501000121018 ], [ -58.369137999618943, -34.599209000395035 ], [ -58.369095000333971, -34.599315999933424 ], [ -58.368645000266497, -34.600453000205732 ], [ -58.368409000175177, -34.600989999788624 ], [ -58.368279999622246, -34.601784000431223 ], [ -58.368173000083857, -34.60281400026588 ], [ -58.368258000406342, -34.60281400026588 ], [ -58.369008999965331, -34.602877999619921 ], [ -58.370104000099502, -34.60296399998856 ], [ -58.370253999822182, -34.60296399998856 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.371068999634588, -34.603007000172852 ], [ -58.37244300004437, -34.603092999642172 ], [ -58.373836999577804, -34.60320000007988 ], [ -58.375188999872421, -34.603264000333297 ], [ -58.376647999705369, -34.603392999986909 ], [ -58.3780650002995, -34.603457000240326 ], [ -58.379458999832934, -34.603542999709646 ], [ -58.381069000334037, -34.603651000193452 ], [ -58.381132999688134, -34.603735999616617 ], [ -58.381325999595163, -34.603800999916189 ], [ -58.381906000261665, -34.603821999985257 ], [ -58.382033999869179, -34.603800999916189 ], [ -58.382142000352985, -34.603715000446869 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.385124000272356, -34.603887000284772 ], [ -58.386562000036236, -34.603950999638869 ], [ -58.386648000404875, -34.60272799989724 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.386733999874139, -34.600625000043692 ], [ -58.388085000122601, -34.600689000297109 ], [ -58.389587000139898, -34.600731999582081 ], [ -58.389995000069177, -34.600731999582081 ], [ -58.391024999903777, -34.600731999582081 ], [ -58.391432999833057, -34.600774999766372 ], [ -58.392785000127617, -34.600817999950721 ], [ -58.394200999776274, -34.600840000065887 ], [ -58.395659999609279, -34.600925000388429 ], [ -58.397098000272479, -34.601010999857692 ], [ -58.397225999879936, -34.599767000046995 ], [ -58.397334000363799, -34.598586999590339 ], [ -58.399007000172901, -34.59830800021399 ], [ -58.400681000028101, -34.598050000007447 ], [ -58.402096999676758, -34.597770999731836 ], [ -58.40347100008654, -34.597556999755682 ], [ -58.405187000079934, -34.597256000264167 ], [ -58.406518000305425, -34.596999000103722 ], [ -58.406968000372899, -34.596806000196693 ], [ -58.407376000302122, -34.596612000243567 ], [ -58.408470000390139, -34.596140000060927 ], [ -58.409606999763184, -34.595646999809162 ], [ -58.410981000172967, -34.595068000088077 ], [ -58.411151999964773, -34.595410999717842 ], [ -58.411624000147469, -34.596247999645414 ], [ -58.411752999801081, -34.59686999955079 ], [ -58.412997999657932, -34.596827000265819 ], [ -58.414242000368006, -34.596763000012402 ], [ -58.415530000409149, -34.596697999712887 ], [ -58.416989000242154, -34.59663400035879 ], [ -58.418727000350771, -34.59654799999015 ], [ -58.419971000161468, -34.596483999736733 ], [ -58.421516000363113, -34.596419000336539 ], [ -58.423169000149187, -34.596355000083122 ], [ -58.423405000240507, -34.597770999731836 ], [ -58.423576000032313, -34.599123000026395 ], [ -58.423768999939341, -34.600410000021441 ], [ -58.423940999777301, -34.601590999624875 ], [ -58.424155999799495, -34.602856999550852 ], [ -58.425657999816792, -34.602705999782017 ], [ -58.427116999649797, -34.602578000174503 ], [ -58.428596999551871, -34.602427000405726 ], [ -58.430163999868682, -34.602233999599378 ], [ -58.431065000049671, -34.602149000176155 ], [ -58.431901999977299, -34.602105999991863 ], [ -58.432181000252911, -34.602083999876641 ], [ -58.43361900001679, -34.601569000408972 ], [ -58.434841999758419, -34.601160999580429 ], [ -58.436215000122104, -34.600711000412275 ], [ -58.437587999586469, -34.600260000298704 ], [ -58.438746999974001, -34.599873999585384 ], [ -58.439754999693434, -34.598973000303658 ], [ -58.440700000104869, -34.598093000191739 ], [ -58.441772000077719, -34.598951000188492 ], [ -58.442780999843251, -34.599788000116064 ], [ -58.443810999677851, -34.600603999974567 ], [ -58.444690999789771, -34.601355000432875 ], [ -58.446149999622719, -34.600883000250235 ], [ -58.446300000244776, -34.600840000065887 ], [ -58.447609000355044, -34.600410000021441 ], [ -58.447995000169101, -34.600282000413927 ], [ -58.448682000373992, -34.599658999563133 ], [ -58.449840999862204, -34.598607999659407 ], [ -58.450891999765929, -34.599315999933424 ], [ -58.451214000225889, -34.599530999955618 ], [ -58.451985999853946, -34.600003000138315 ], [ -58.452115000406877, -34.600109999676704 ], [ -58.452694000127963, -34.600538999675052 ], [ -58.453102000057243, -34.600796999881595 ], [ -58.454088999707551, -34.601439999856041 ], [ -58.455055000188054, -34.602127000060989 ], [ -58.455998999654071, -34.602792000150657 ], [ -58.45743700031727, -34.60375799973184 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.459624999594041, -34.605216999564846 ], [ -58.46052599977503, -34.605860999585445 ], [ -58.460655000327961, -34.605645999563194 ], [ -58.461191999910852, -34.604509000190149 ], [ -58.461514000370755, -34.603865000169606 ], [ -58.461492000255589, -34.603715000446869 ], [ -58.462157000345258, -34.603542999709646 ], [ -58.462907999904246, -34.603349999802617 ], [ -58.464366999737194, -34.602985000057686 ], [ -58.464947000403697, -34.602835000334949 ], [ -58.465805000400394, -34.602621000358852 ], [ -58.466020000422645, -34.602556000059337 ], [ -58.466255999614646, -34.602599000243629 ], [ -58.466856000304119, -34.602877999619921 ], [ -58.468272999998931, -34.603479000355549 ], [ -58.469603000178267, -34.604058000076577 ], [ -58.471084000126439, -34.604681000028108 ], [ -58.472456999590804, -34.605259999749137 ], [ -58.473593999863169, -34.605860999585445 ], [ -58.474022999861518, -34.605302999933429 ], [ -58.474946000157729, -34.604144000445217 ], [ -58.475717999785843, -34.60320000007988 ], [ -58.476255000267997, -34.603479000355549 ], [ -58.476812999919957, -34.603800999916189 ], [ -58.477929000123197, -34.604422999821566 ], [ -58.478615000281991, -34.604787999566497 ], [ -58.479216000118242, -34.605131000095525 ], [ -58.479838000023619, -34.605452999656166 ], [ -58.480482000044219, -34.605818000300417 ], [ -58.481232999603208, -34.606160999930182 ], [ -58.481919999808099, -34.606462000321017 ], [ -58.483228999918367, -34.607127000410685 ], [ -58.484451999659996, -34.607770000385187 ], [ -58.485653000185778, -34.608435999621634 ], [ -58.486898000042629, -34.609100999711302 ], [ -58.488120999784257, -34.609786999870096 ], [ -58.488486000428509, -34.609401000056039 ], [ -58.488894000357789, -34.608950999988622 ], [ -58.490138000168542, -34.609637000147416 ], [ -58.491060999565434, -34.610151999615027 ], [ -58.491683000370131, -34.61049600019021 ], [ -58.492197999837799, -34.610774999566559 ], [ -58.492734000273856, -34.611074999911295 ], [ -58.493400000409679, -34.611439999656227 ], [ -58.494321999760416, -34.611932999907992 ], [ -58.494902000426919, -34.611267999818267 ], [ -58.495288000240976, -34.610816999704753 ], [ -58.495995999615673, -34.60993799963893 ], [ -58.496467999798313, -34.609272000402427 ], [ -58.496939999980953, -34.608564000128467 ], [ -58.497627000185844, -34.607576999578839 ], [ -58.498271000206444, -34.606633000112822 ], [ -58.498591999720986, -34.606826000019851 ], [ -58.498978999581141, -34.607062000111171 ], [ -58.499815000361934, -34.607556000409033 ], [ -58.500952999781077, -34.608242999714605 ], [ -58.502239999776123, -34.609015000242039 ], [ -58.503119999888042, -34.60952999970965 ], [ -58.503956999815671, -34.610045000076639 ], [ -58.504428999998311, -34.610324000352307 ], [ -58.504879000065785, -34.610602999728599 ], [ -58.505265999925939, -34.610838999819919 ], [ -58.506167000106927, -34.611375000256032 ], [ -58.507840999962127, -34.612340999837215 ], [ -58.508313000144824, -34.612620000112884 ], [ -58.508655999774533, -34.612834000088981 ], [ -58.509127999957173, -34.613113000364649 ], [ -58.509535999886452, -34.613370999671872 ], [ -58.509858000346412, -34.613543000409095 ], [ -58.510393999883149, -34.613863999923637 ], [ -58.510844999996721, -34.61412200013018 ], [ -58.511251999879846, -34.6143580002215 ], [ -58.511681999924292, -34.614636999597792 ], [ -58.512154000106989, -34.61491599987346 ], [ -58.512474999621475, -34.615087999711363 ], [ -58.512947999850269, -34.615344999871809 ], [ -58.513397999917743, -34.615602000032254 ], [ -58.51401999982312, -34.615966999777186 ], [ -58.514642999774594, -34.61658999972866 ], [ -58.51528599974904, -34.617190000418134 ], [ -58.515823000231251, -34.617748000070094 ], [ -58.516530999605891, -34.618435000274985 ], [ -58.517346000317616, -34.619206999903099 ], [ -58.517776000362062, -34.619593999763254 ], [ -58.518268999714508, -34.620087000015019 ], [ -58.518676999643787, -34.620516000013367 ], [ -58.519126999711204, -34.620967000126939 ], [ -58.519598999893901, -34.621418000240453 ], [ -58.520072000122639, -34.621825000123636 ], [ -58.520607999659433, -34.622297000306276 ], [ -58.521079999842073, -34.622575999682624 ], [ -58.521638000393352, -34.622854999958236 ], [ -58.522217000114438, -34.62315600034907 ], [ -58.522840000065912, -34.623476999863612 ], [ -58.523054000042009, -34.623585000347418 ], [ -58.523290000133386, -34.623691999885864 ], [ -58.523611999693969, -34.623863999723767 ], [ -58.524127000060957, -34.624120999884212 ], [ -58.525306999618294, -34.624721999720464 ], [ -58.525844000100506, -34.625000999996132 ], [ -58.526337000352271, -34.625258000156521 ], [ -58.526873999935106, -34.625516000363064 ], [ -58.527881999654539, -34.626030999830732 ], [ -58.527367000186871, -34.627619000216669 ], [ -58.526938000188522, -34.6290139997962 ], [ -58.526509000190174, -34.630408000229011 ], [ -58.526101000260894, -34.631845999992834 ], [ -58.525821999985283, -34.632896999896559 ], [ -58.525715000446894, -34.633884000446244 ], [ -58.525585999893963, -34.634570999751816 ], [ -58.525500000424643, -34.635515000117095 ], [ -58.525436000171226, -34.636094999884278 ], [ -58.525306999618294, -34.637145999788004 ], [ -58.525200000079906, -34.638196999691729 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 75.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.562605, -34.670653 ], [ -58.561459, -34.671521 ], [ -58.560343, -34.672379 ], [ -58.559193, -34.673261 ], [ -58.559977, -34.673946 ], [ -58.558862, -34.674751 ], [ -58.558312, -34.675175 ], [ -58.557751, -34.675619 ], [ -58.558532, -34.676281 ], [ -58.557433, -34.677133 ], [ -58.556347, -34.677964 ], [ -58.555204, -34.678825 ], [ -58.554055, -34.67967 ], [ -58.552937, -34.68047 ], [ -58.553682, -34.681165 ], [ -58.554442, -34.681809 ], [ -58.555199, -34.682524 ], [ -58.555644, -34.682896 ], [ -58.555934, -34.683201 ], [ -58.555769, -34.683337 ], [ -58.55432, -34.684415 ], [ -58.555099, -34.685118 ], [ -58.553727, -34.686126 ], [ -58.552618, -34.686978 ], [ -58.552539, -34.686904 ], [ -58.551453, -34.687745 ], [ -58.550362, -34.688589 ], [ -58.549283, -34.689381 ], [ -58.548561, -34.688729 ], [ -58.547932, -34.688161 ], [ -58.547257, -34.688664 ], [ -58.546585, -34.689148 ], [ -58.545795, -34.689764 ], [ -58.545716, -34.689829 ], [ -58.545084, -34.690297 ], [ -58.544467, -34.690753 ], [ -58.542353, -34.69236 ], [ -58.542054, -34.692589 ], [ -58.541797, -34.692784 ], [ -58.541078, -34.693331 ], [ -58.541021, -34.693376 ], [ -58.539888, -34.69422 ], [ -58.539447, -34.694557 ], [ -58.538729, -34.695083 ], [ -58.539386, -34.695654 ], [ -58.538512, -34.696295 ], [ -58.537161, -34.697328 ], [ -58.537033, -34.697432 ], [ -58.536254, -34.696961 ], [ -58.534239, -34.695709 ], [ -58.532831, -34.694869 ], [ -58.532147, -34.695392 ], [ -58.531511, -34.695875 ], [ -58.53127, -34.696015 ], [ -58.530891, -34.696292 ], [ -58.530776, -34.696371 ], [ -58.530204, -34.696782 ], [ -58.529511, -34.69729 ], [ -58.528821, -34.697792 ], [ -58.528128, -34.698288 ], [ -58.527521, -34.698741 ], [ -58.526888, -34.699183 ], [ -58.526281, -34.699623 ], [ -58.525674, -34.700076 ], [ -58.525052, -34.700525 ], [ -58.524419, -34.700984 ], [ -58.523843, -34.701434 ], [ -58.523208, -34.70187 ], [ -58.522383, -34.702479 ], [ -58.522207, -34.702603 ], [ -58.522256, -34.70265 ], [ -58.522274, -34.702688 ], [ -58.522274, -34.702726 ], [ -58.522266, -34.702763 ], [ -58.522246, -34.702791 ], [ -58.522209, -34.702832 ], [ -58.522177, -34.702846 ], [ -58.522117, -34.702866 ], [ -58.522068, -34.702864 ], [ -58.522033, -34.702856 ], [ -58.522006, -34.70285 ], [ -58.521954, -34.702822 ], [ -58.521845, -34.702789 ], [ -58.521723, -34.703207 ], [ -58.521537, -34.70369 ], [ -58.521233, -34.704584 ], [ -58.520928, -34.705472 ], [ -58.520581, -34.706402 ], [ -58.520275, -34.70728 ], [ -58.519966, -34.708156 ], [ -58.519658, -34.709019 ], [ -58.520712, -34.709268 ], [ -58.520752, -34.709279 ], [ -58.521805, -34.709517 ], [ -58.52234, -34.709676 ], [ -58.523034, -34.710284 ], [ -58.523726, -34.710898 ], [ -58.524412, -34.711519 ], [ -58.525054, -34.712154 ], [ -58.52544, -34.712101 ], [ -58.526185, -34.711549 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 74.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.458987, -34.779186 ], [ -58.457353, -34.778277 ], [ -58.457207, -34.778238 ], [ -58.454906, -34.777009 ], [ -58.453274, -34.776158 ], [ -58.452763, -34.775895 ], [ -58.450566, -34.774761 ], [ -58.448336, -34.773609 ], [ -58.448325, -34.773603 ], [ -58.446245, -34.772527 ], [ -58.444002, -34.771407 ], [ -58.443745, -34.771269 ], [ -58.443604, -34.771189 ], [ -58.442830999999899, -34.770772 ], [ -58.441983, -34.770339 ], [ -58.44175, -34.770216 ], [ -58.441676, -34.77018 ], [ -58.441638, -34.77016 ], [ -58.441116, -34.769892 ], [ -58.44056, -34.769597 ], [ -58.44051, -34.769571 ], [ -58.440243, -34.769441 ], [ -58.439503, -34.769045 ], [ -58.439352, -34.768963 ], [ -58.43841, -34.768482 ], [ -58.438316, -34.768431 ], [ -58.437543, -34.768024 ], [ -58.437384, -34.767902 ], [ -58.437278, -34.768033 ], [ -58.436692, -34.768722 ], [ -58.43585, -34.768275 ], [ -58.435318, -34.767994 ], [ -58.434995999999899, -34.767779 ], [ -58.434268, -34.767387 ], [ -58.433746, -34.767127 ], [ -58.433836, -34.766992 ], [ -58.43423, -34.766483 ], [ -58.434493, -34.766137 ], [ -58.434234, -34.765923 ], [ -58.43396, -34.765558 ], [ -58.433457, -34.765013 ], [ -58.433373, -34.764922 ], [ -58.433295, -34.764856 ], [ -58.432961, -34.764534 ], [ -58.432346, -34.76411 ], [ -58.432282, -34.764067 ], [ -58.432219, -34.76402 ], [ -58.431661, -34.763634 ], [ -58.431469, -34.763496 ], [ -58.431311, -34.763393 ], [ -58.43109, -34.763247 ], [ -58.430759, -34.763031 ], [ -58.430669, -34.762956 ], [ -58.430579, -34.762844 ], [ -58.430543, -34.762774 ], [ -58.430472, -34.762691 ], [ -58.430425, -34.762544 ], [ -58.430395, -34.762332 ], [ -58.430425, -34.762163 ], [ -58.430466, -34.761976 ], [ -58.430521, -34.761796 ], [ -58.430546, -34.761701 ], [ -58.430573, -34.761636 ], [ -58.430635, -34.761448 ], [ -58.430753, -34.761099 ], [ -58.430817, -34.76092 ], [ -58.430848, -34.760829 ], [ -58.430904, -34.760658 ], [ -58.431115, -34.760014 ], [ -58.431159, -34.759888 ], [ -58.431184, -34.759812 ], [ -58.431215, -34.759725 ], [ -58.431378, -34.759278 ], [ -58.431423, -34.759149 ], [ -58.43144, -34.759101 ], [ -58.431571, -34.75868 ], [ -58.431876, -34.757949 ], [ -58.431897, -34.757896 ], [ -58.431921, -34.757841 ], [ -58.432052, -34.757532 ], [ -58.432208, -34.757266 ], [ -58.432269, -34.757172 ], [ -58.432615, -34.756685 ], [ -58.432733, -34.756503 ], [ -58.432925, -34.756245 ], [ -58.432987, -34.756168 ], [ -58.433014, -34.756128 ], [ -58.433047, -34.756065 ], [ -58.43317, -34.755888 ], [ -58.433402, -34.755537 ], [ -58.433609, -34.755238 ], [ -58.433722, -34.755078 ], [ -58.433955, -34.754736 ], [ -58.434095, -34.754536 ], [ -58.43435, -34.754185 ], [ -58.434642, -34.753767 ], [ -58.434831, -34.753496 ], [ -58.434878, -34.753411 ], [ -58.435071, -34.75314 ], [ -58.435453, -34.752613 ], [ -58.435539, -34.752485 ], [ -58.435615, -34.752366 ], [ -58.435755, -34.752174 ], [ -58.435853, -34.751983 ], [ -58.435879, -34.751818 ], [ -58.435893, -34.751756 ], [ -58.435889, -34.751648 ], [ -58.435843, -34.751394 ], [ -58.435757, -34.751159 ], [ -58.435625, -34.750991 ], [ -58.435564, -34.750929 ], [ -58.435492, -34.750877 ], [ -58.435223, -34.750652 ], [ -58.43453, -34.750291 ], [ -58.434393, -34.750229 ], [ -58.434308, -34.750183 ], [ -58.433369, -34.749698 ], [ -58.433284, -34.749649 ], [ -58.432546, -34.749273 ], [ -58.431203, -34.74856 ], [ -58.431148, -34.748521 ], [ -58.430921, -34.748394 ], [ -58.43078, -34.748279 ], [ -58.430582, -34.748063 ], [ -58.430401, -34.74783 ], [ -58.430318, -34.747672 ], [ -58.430237, -34.747476 ], [ -58.430215, -34.747358 ], [ -58.430051, -34.746629 ], [ -58.430035, -34.746557 ], [ -58.430018, -34.746489 ], [ -58.429929999999899, -34.746139 ], [ -58.429773, -34.7455 ], [ -58.429596, -34.744699 ], [ -58.429574, -34.74461 ], [ -58.429557, -34.744559 ], [ -58.429519, -34.744336 ], [ -58.429498, -34.744159 ], [ -58.429495, -34.743975 ], [ -58.429512, -34.743803 ], [ -58.42954, -34.743671 ], [ -58.429633, -34.743475 ], [ -58.429871, -34.743162 ], [ -58.430052, -34.74292 ], [ -58.430133, -34.742804 ], [ -58.43054, -34.7422 ], [ -58.430942, -34.741694 ], [ -58.431009, -34.74161 ], [ -58.431403, -34.741102 ], [ -58.431463, -34.741028 ], [ -58.43184, -34.740516 ], [ -58.431896, -34.740447 ], [ -58.432311, -34.739913 ], [ -58.432365, -34.739844 ], [ -58.432379, -34.739825 ], [ -58.432755, -34.739315 ], [ -58.432774, -34.739291 ], [ -58.432825, -34.739222 ], [ -58.433075, -34.738888 ], [ -58.433309, -34.738577 ], [ -58.433364, -34.73849 ], [ -58.433577, -34.738081 ], [ -58.433811, -34.737583 ], [ -58.433842, -34.737526 ], [ -58.433869999999899, -34.737466 ], [ -58.434053, -34.737102 ], [ -58.434205, -34.736813 ], [ -58.434259, -34.736689 ], [ -58.4345, -34.736222 ], [ -58.434659, -34.735975 ], [ -58.434702, -34.735917 ], [ -58.434753, -34.735836 ], [ -58.434984, -34.735481 ], [ -58.435413, -34.734886 ], [ -58.435439, -34.734849 ], [ -58.435493, -34.734778 ], [ -58.43575, -34.734441 ], [ -58.436198, -34.733835 ], [ -58.436241, -34.733777 ], [ -58.436301, -34.733695 ], [ -58.437015, -34.732744 ], [ -58.437086, -34.732654 ], [ -58.437141, -34.73258 ], [ -58.437352, -34.73231 ], [ -58.437796, -34.731726 ], [ -58.437923, -34.731561 ], [ -58.437989, -34.731471 ], [ -58.438227, -34.731174 ], [ -58.438697, -34.730544 ], [ -58.438781, -34.730449 ], [ -58.438822, -34.730396 ], [ -58.439068, -34.730071 ], [ -58.439588, -34.729424 ], [ -58.439631, -34.729361 ], [ -58.439676, -34.729308 ], [ -58.439903999999899, -34.729014 ], [ -58.440403, -34.728371 ], [ -58.440466999999899, -34.728279 ], [ -58.440519, -34.728215 ], [ -58.440966, -34.727664 ], [ -58.441019, -34.727595 ], [ -58.441087, -34.727502 ], [ -58.441569999999899, -34.726877 ], [ -58.441638, -34.726808 ], [ -58.441898, -34.726476 ], [ -58.442304, -34.72595 ], [ -58.442356, -34.725892 ], [ -58.442733, -34.725391 ], [ -58.44281, -34.72528 ], [ -58.442856, -34.725238 ], [ -58.443188, -34.724816 ], [ -58.443349, -34.724623 ], [ -58.443391, -34.724571 ], [ -58.443685, -34.724196 ], [ -58.443801, -34.724056 ], [ -58.443837, -34.724012 ], [ -58.444079, -34.723699 ], [ -58.44416, -34.723591 ], [ -58.444275, -34.723442 ], [ -58.444341, -34.723367 ], [ -58.444387, -34.723307 ], [ -58.444612, -34.723009 ], [ -58.444895, -34.722652 ], [ -58.444934, -34.722598 ], [ -58.44498, -34.722537 ], [ -58.445696, -34.721616 ], [ -58.445778, -34.72151 ], [ -58.447583, -34.719211 ], [ -58.448252, -34.718405 ], [ -58.448327, -34.718315 ], [ -58.449252, -34.717135 ], [ -58.449307, -34.717066 ], [ -58.449605, -34.716618 ], [ -58.449759, -34.716334 ], [ -58.449892, -34.716114 ], [ -58.450263, -34.715621 ], [ -58.45052, -34.715302 ], [ -58.450748, -34.714995 ], [ -58.451123, -34.714638 ], [ -58.451603, -34.7143 ], [ -58.452218, -34.713514 ], [ -58.452252, -34.713467 ], [ -58.452291, -34.713424 ], [ -58.452749, -34.712883 ], [ -58.453133, -34.712405 ], [ -58.45428, -34.710983 ], [ -58.45468, -34.710451 ], [ -58.455708, -34.709174 ], [ -58.456169, -34.708729 ], [ -58.456513, -34.708458 ], [ -58.456665, -34.708349 ], [ -58.457644, -34.707574 ], [ -58.458056, -34.70725 ], [ -58.458172, -34.707155 ], [ -58.458232, -34.707028 ], [ -58.458251, -34.706948 ], [ -58.458268, -34.70687 ], [ -58.458264, -34.706809 ], [ -58.458261, -34.706698 ], [ -58.458261, -34.706588 ], [ -58.458288, -34.70649 ], [ -58.458326, -34.70643 ], [ -58.45839, -34.706356 ], [ -58.45841, -34.706335 ], [ -58.458485, -34.706271 ], [ -58.458529, -34.706239 ], [ -58.45864, -34.706177 ], [ -58.458518, -34.706152 ], [ -58.458449, -34.706074 ], [ -58.458478, -34.705969 ], [ -58.458609, -34.705808 ], [ -58.458758, -34.705718 ], [ -58.459049, -34.705536 ], [ -58.459529, -34.705237 ], [ -58.459933, -34.704983 ], [ -58.460008, -34.704905 ], [ -58.460017, -34.704819 ], [ -58.459296, -34.703967 ], [ -58.45825, -34.702826 ], [ -58.458015, -34.702573 ], [ -58.456261, -34.700536 ], [ -58.454920999999899, -34.698942 ], [ -58.454705, -34.698701 ], [ -58.450206, -34.693369 ], [ -58.44933, -34.692371 ], [ -58.448562, -34.691463 ], [ -58.448271, -34.69112 ], [ -58.447815, -34.69054 ], [ -58.447446, -34.690059 ], [ -58.446483, -34.689048 ], [ -58.446445, -34.689002 ], [ -58.444865, -34.687089 ], [ -58.442114, -34.683758 ], [ -58.442103, -34.683745 ], [ -58.4414, -34.682889 ], [ -58.441229, -34.682726 ], [ -58.441017, -34.682661 ], [ -58.440168, -34.68254 ], [ -58.439788, -34.682476 ], [ -58.439497, -34.682378 ], [ -58.439316, -34.682179 ], [ -58.43897, -34.681785 ], [ -58.438928, -34.681679 ], [ -58.438642, -34.681609 ], [ -58.437473, -34.681311 ], [ -58.436674, -34.681102 ], [ -58.435332, -34.680729 ], [ -58.435218, -34.680696 ], [ -58.434329, -34.680448 ], [ -58.433954, -34.680366 ], [ -58.433872, -34.680341 ], [ -58.432987, -34.680113 ], [ -58.432547, -34.680002 ], [ -58.432111, -34.679867 ], [ -58.431968, -34.679823 ], [ -58.431165, -34.679622 ], [ -58.429943, -34.67931 ], [ -58.428692, -34.678945 ], [ -58.427453, -34.678613 ], [ -58.42618, -34.678276 ], [ -58.424967, -34.677956 ], [ -58.423701, -34.677616 ], [ -58.422427, -34.677267 ], [ -58.421333, -34.676994 ], [ -58.421312, -34.677165 ], [ -58.421195, -34.678111 ], [ -58.420487, -34.678031 ], [ -58.419889, -34.67791 ], [ -58.419412, -34.677771 ], [ -58.419224, -34.677615 ], [ -58.419061, -34.677481 ], [ -58.41853, -34.676961 ], [ -58.418037, -34.676454 ], [ -58.417698, -34.676214 ], [ -58.417498, -34.676064 ], [ -58.417099, -34.675838 ], [ -58.416924, -34.675763 ], [ -58.41557, -34.675198 ], [ -58.415252, -34.675095 ], [ -58.41505, -34.675029 ], [ -58.41439, -34.674827 ], [ -58.414074, -34.674712 ], [ -58.413647, -34.674593 ], [ -58.412889, -34.674323 ], [ -58.411746, -34.67395 ], [ -58.410626, -34.673591 ], [ -58.410343, -34.673892 ], [ -58.409673, -34.674658 ], [ -58.409004, -34.675464 ], [ -58.408387, -34.676216 ], [ -58.407688, -34.676949 ], [ -58.40692, -34.677575 ], [ -58.406119, -34.678189 ], [ -58.405293, -34.678797 ], [ -58.404538, -34.679427 ], [ -58.404388, -34.67956 ], [ -58.404287, -34.679669 ], [ -58.40407, -34.679518 ], [ -58.40347, -34.679133 ], [ -58.402652, -34.678628 ], [ -58.402586, -34.678549 ], [ -58.402177, -34.678279 ], [ -58.401719, -34.677983 ], [ -58.400853, -34.677408 ], [ -58.400032, -34.67682 ], [ -58.399123, -34.676205 ], [ -58.398484, -34.675779 ], [ -58.397941, -34.675427 ], [ -58.397038, -34.674594 ], [ -58.396317, -34.673905 ], [ -58.395908, -34.67353 ], [ -58.395529, -34.673154 ], [ -58.394772, -34.672416 ], [ -58.394593, -34.672235 ], [ -58.393661, -34.673051 ], [ -58.392588, -34.672226 ], [ -58.391574, -34.671429 ], [ -58.390754999999899, -34.67067 ], [ -58.390659, -34.670546 ], [ -58.390592, -34.6704 ], [ -58.389683, -34.669646 ], [ -58.38924, -34.669259 ], [ -58.388884, -34.668916 ], [ -58.387761, -34.668063 ], [ -58.385963, -34.667425 ], [ -58.385148, -34.667168 ], [ -58.384932, -34.667117 ], [ -58.384725, -34.667065 ], [ -58.384679, -34.667046 ], [ -58.384621, -34.667047 ], [ -58.384574, -34.667044 ], [ -58.384372, -34.667059 ], [ -58.383858, -34.667085 ], [ -58.382587, -34.667162 ], [ -58.382471, -34.667172 ], [ -58.382354, -34.667096 ], [ -58.381497, -34.667832 ], [ -58.381355, -34.667936 ], [ -58.381091, -34.668174 ], [ -58.380295, -34.668819 ], [ -58.379852, -34.668189 ], [ -58.379441, -34.667572 ], [ -58.379069, -34.667038 ], [ -58.378718, -34.666491 ], [ -58.378201, -34.665712 ], [ -58.377924, -34.665307 ], [ -58.377191, -34.664202 ], [ -58.376657, -34.66344 ], [ -58.376219, -34.662802 ], [ -58.375947, -34.662421 ], [ -58.375686, -34.66204 ], [ -58.375025, -34.661107 ], [ -58.374633, -34.660606 ], [ -58.373938, -34.659802 ], [ -58.373698, -34.659447 ], [ -58.372932, -34.658724 ], [ -58.371977999999899, -34.657845 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 73.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.225224038999954, -34.741714223999907 ], [ -58.226243696999916, -34.742272385999911 ], [ -58.226265350999938, -34.742245110999932 ], [ -58.22699192999994, -34.741329929999949 ], [ -58.227130511999917, -34.741407993999928 ], [ -58.228004004999946, -34.741900035999947 ], [ -58.229192164999915, -34.742551784999932 ], [ -58.229215301999943, -34.742523030999905 ], [ -58.229742181999939, -34.741868256999908 ], [ -58.230280723999954, -34.741203820999942 ], [ -58.230842190999908, -34.740508835999947 ], [ -58.231319618999919, -34.739920770999902 ], [ -58.231403407999949, -34.739890178999929 ], [ -58.231456279999918, -34.739918258999921 ], [ -58.232379344999913, -34.740408498999955 ], [ -58.232457222999926, -34.740382427999918 ], [ -58.232470741999919, -34.740377901999921 ], [ -58.233426952999935, -34.739949777999925 ], [ -58.234466452999925, -34.739490914999919 ], [ -58.235523594999904, -34.739025917999925 ], [ -58.236493960999951, -34.73860082199991 ], [ -58.236575764999941, -34.738547608999909 ], [ -58.236590626999941, -34.738536961999955 ], [ -58.236650060999921, -34.738494381999942 ], [ -58.236682992999931, -34.738459524999939 ], [ -58.237304310999946, -34.737801880999939 ], [ -58.237900849999903, -34.737212420999924 ], [ -58.237858062999919, -34.737186746999953 ], [ -58.2369388649999, -34.736635178999904 ], [ -58.23588110299994, -34.735999446999926 ], [ -58.235808203999909, -34.735972168999922 ], [ -58.235742961999904, -34.735941104999938 ], [ -58.235108302999947, -34.735607585999958 ], [ -58.234325048999949, -34.735196377999955 ], [ -58.233641114999955, -34.734826648999956 ], [ -58.23272285999991, -34.734341224999923 ], [ -58.23279135599995, -34.734250202999931 ], [ -58.233316785999932, -34.733551974999955 ], [ -58.233986893999941, -34.732666557999949 ], [ -58.234302336999917, -34.732239717999903 ], [ -58.234835479999902, -34.731480250999937 ], [ -58.235401138999919, -34.730724964999922 ], [ -58.236039712999911, -34.729941488999941 ], [ -58.236604797999917, -34.729206450999925 ], [ -58.236592174999942, -34.729199889999904 ], [ -58.235696798999925, -34.728734509999924 ], [ -58.235757857999943, -34.728666387999908 ], [ -58.236287077999918, -34.728075946999923 ], [ -58.2379440119999, -34.726128659999915 ], [ -58.23802923799991, -34.726177262999954 ], [ -58.241722073999938, -34.728283219999923 ], [ -58.243128604999924, -34.729071156999908 ], [ -58.244015679999904, -34.729577862999918 ], [ -58.244933126999911, -34.73009572199993 ], [ -58.245832474999929, -34.730602881999914 ], [ -58.246359657999903, -34.730902583999921 ], [ -58.246499357999937, -34.730963964999944 ], [ -58.246534557999951, -34.730913951999923 ], [ -58.246551732999933, -34.730901304999918 ], [ -58.246565404999899, -34.730891236999923 ], [ -58.247508435999919, -34.729821366999943 ], [ -58.248435560999951, -34.728747245999955 ], [ -58.249259726999924, -34.727782451999929 ], [ -58.2493271539999, -34.727710298999909 ], [ -58.249376555999902, -34.727652771999942 ], [ -58.24991601499994, -34.726918234999914 ], [ -58.250440359999914, -34.726204075999931 ], [ -58.250467089999916, -34.726173396999911 ], [ -58.250512735999905, -34.726135007999915 ], [ -58.250585065999928, -34.726069762999941 ], [ -58.251075293999918, -34.725391367999919 ], [ -58.251672297999903, -34.724571565999952 ], [ -58.252253285999927, -34.723778970999945 ], [ -58.2528265709999, -34.722987133999936 ], [ -58.25289893799993, -34.723023543999943 ], [ -58.253746669999941, -34.723450056999923 ], [ -58.254661120999913, -34.723922109999933 ], [ -58.255616997999937, -34.724413519999928 ], [ -58.256531432999907, -34.724889403999953 ], [ -58.257455227999912, -34.725361841999927 ], [ -58.258321792999936, -34.725799509999945 ], [ -58.258417197999904, -34.725853643999926 ], [ -58.258450296999911, -34.725811333999957 ], [ -58.259048126999915, -34.725047136999933 ], [ -58.259601180999937, -34.724311583999906 ], [ -58.260148181999909, -34.723574408999923 ], [ -58.26053049199993, -34.723092240999904 ], [ -58.260757608999938, -34.722790910999947 ], [ -58.261053624999931, -34.722387828999956 ], [ -58.261331095999935, -34.722022506999906 ], [ -58.261667992999946, -34.721557718999918 ], [ -58.261720680999929, -34.721504157999902 ], [ -58.26179990299994, -34.721435381999925 ], [ -58.261964558999921, -34.721209225999928 ], [ -58.26230503599993, -34.72073772899995 ], [ -58.262522255999954, -34.720450301999904 ], [ -58.262866496999948, -34.719974978999915 ], [ -58.26308550899995, -34.719666444999916 ], [ -58.263486402999945, -34.719107525999902 ], [ -58.263931648999915, -34.718489765999948 ], [ -58.263803505999931, -34.71842614399992 ], [ -58.26293383299992, -34.717994357999942 ], [ -58.2629547169999, -34.717966004999937 ], [ -58.263531491999913, -34.717182925999907 ], [ -58.263581449999947, -34.71720730699991 ], [ -58.264540760999921, -34.717675484999916 ], [ -58.264478752999935, -34.717757669999912 ], [ -58.264136046999909, -34.718211887999928 ], [ -58.264220525999917, -34.718251086999942 ], [ -58.26512368899995, -34.71867016099992 ], [ -58.265168908999954, -34.718691142999944 ], [ -58.266151786999899, -34.719176005999941 ], [ -58.266103203999933, -34.719244433999904 ], [ -58.26554964099995, -34.720024112999909 ], [ -58.264930229999948, -34.720880709999904 ], [ -58.264986423999915, -34.720908234999911 ], [ -58.265802502999918, -34.721307974999945 ], [ -58.266655641999932, -34.721726346999958 ], [ -58.266784689999952, -34.72177623999994 ], [ -58.267658136999955, -34.722229645999903 ], [ -58.268577138999945, -34.722702248999951 ], [ -58.269496139999944, -34.723174851999943 ], [ -58.270489029999908, -34.723663869999939 ], [ -58.271532484999909, -34.724128800999949 ], [ -58.272502605999932, -34.724567627999932 ], [ -58.273426447999952, -34.725000841999929 ], [ -58.274399190999929, -34.725464938999949 ], [ -58.274516151999933, -34.725515256999927 ], [ -58.274629373999915, -34.725561723999931 ], [ -58.275484411999912, -34.726025405999906 ], [ -58.276393532999919, -34.72652715299995 ], [ -58.277320264999901, -34.727042442999903 ], [ -58.278319307999936, -34.727557881999928 ], [ -58.278415841999902, -34.727598916999909 ], [ -58.278512502999945, -34.727640055999927 ], [ -58.279456428999936, -34.728129117999913 ], [ -58.280490625999903, -34.728671152999937 ], [ -58.281522569999936, -34.729222174999904 ], [ -58.282464687999948, -34.729706323999949 ], [ -58.28258791199994, -34.729768689999958 ], [ -58.282712545999914, -34.729838503999929 ], [ -58.283663735999937, -34.730290208999918 ], [ -58.284675333999928, -34.730773001999921 ], [ -58.28573154399993, -34.731249959999957 ], [ -58.286645644999908, -34.731671716999927 ], [ -58.286737114999937, -34.731736456999954 ], [ -58.286832404999927, -34.731793603999904 ], [ -58.287815900999931, -34.73225872799992 ], [ -58.288810837999904, -34.732723868999926 ], [ -58.289858021999919, -34.733221645999947 ], [ -58.290744959999927, -34.733650499999953 ], [ -58.290882883999927, -34.733711788999926 ], [ -58.291023995999922, -34.733768958999917 ], [ -58.291866622999919, -34.734183771999938 ], [ -58.292880828999955, -34.73468231499993 ], [ -58.293822587999955, -34.735146595999936 ], [ -58.294540129999916, -34.735505738999905 ], [ -58.294831358999943, -34.735670275999951 ], [ -58.294776269999943, -34.735745277999911 ], [ -58.29471346899993, -34.735833684999932 ], [ -58.294288045999906, -34.736432565999905 ], [ -58.293658250999954, -34.737340744999926 ], [ -58.293045463999931, -34.738185389999956 ], [ -58.292461360999937, -34.73904663199994 ], [ -58.291908445999923, -34.739912052999955 ], [ -58.291310141999929, -34.740760659999921 ], [ -58.290711992999945, -34.741597769999942 ], [ -58.290083141999901, -34.742488901999934 ], [ -58.289462723999918, -34.743321833999914 ], [ -58.288865912999938, -34.744120990999932 ], [ -58.288327996999953, -34.744841357999917 ], [ -58.288296853999952, -34.744871333999924 ], [ -58.288242103999949, -34.744935084999952 ], [ -58.287591798999927, -34.745741528999929 ], [ -58.287515872999904, -34.74583716099994 ], [ -58.287109536999935, -34.746692819999907 ], [ -58.28702381599993, -34.746877814999948 ], [ -58.286864502999947, -34.747439967999924 ], [ -58.286657155999933, -34.748202659999947 ], [ -58.286420177999901, -34.749073816999953 ], [ -58.286212963999901, -34.749772694999933 ], [ -58.286001308999914, -34.750445494999951 ], [ -58.285941432999948, -34.750541047999945 ], [ -58.285873513999945, -34.750651888999926 ], [ -58.285785572999941, -34.750763393999932 ], [ -58.285460745999899, -34.751175257999932 ], [ -58.28499986199995, -34.751761639999927 ], [ -58.284542828999918, -34.752344248999918 ], [ -58.284049875999926, -34.752984430999902 ], [ -58.28359983699994, -34.753571769999951 ], [ -58.283089070999949, -34.754234979999922 ], [ -58.282648146999918, -34.75480902299995 ], [ -58.2821322879999, -34.755483560999949 ], [ -58.281650285999945, -34.756101462999936 ], [ -58.281465770999944, -34.756338835999941 ], [ -58.280542398999955, -34.75755462199993 ], [ -58.28010749099991, -34.758129419999932 ], [ -58.279857895999953, -34.758461161999946 ], [ -58.279646007999929, -34.75868552299994 ], [ -58.279358484999932, -34.758983339999929 ], [ -58.279158122999945, -34.759243054999956 ], [ -58.278504096999939, -34.760082434999902 ], [ -58.277688247999947, -34.761140314999921 ], [ -58.277947750999942, -34.761120172999938 ], [ -58.277991560999908, -34.761116771999923 ], [ -58.278817602999936, -34.761554075999925 ], [ -58.279764894999914, -34.762059844999953 ], [ -58.281262601999913, -34.762850349999951 ], [ -58.282776894999927, -34.763660988999902 ], [ -58.283659185999909, -34.764134701999922 ], [ -58.284908465999933, -34.764807435999955 ], [ -58.285170792999907, -34.764957764999906 ], [ -58.285387278999906, -34.765077131999931 ], [ -58.28631011199991, -34.765577740999902 ], [ -58.287353284999938, -34.76614466299992 ], [ -58.287910221999937, -34.766433235999955 ], [ -58.287933453999926, -34.766445273999921 ], [ -58.287835314999938, -34.766546428999902 ], [ -58.287829894999902, -34.766550343999938 ], [ -58.286952407999934, -34.767184196999949 ], [ -58.286707142999944, -34.767371728999933 ], [ -58.285779219999938, -34.768007794999903 ], [ -58.285755734999952, -34.768030212999918 ], [ -58.285721309999929, -34.768071379999924 ], [ -58.284908724999923, -34.768569845999934 ], [ -58.284732410999936, -34.768678532999957 ], [ -58.283364008999911, -34.76950684499991 ], [ -58.28195841899992, -34.770289679999905 ], [ -58.280994772999918, -34.770787163999955 ], [ -58.280430302999946, -34.771103996999955 ], [ -58.279938370999901, -34.771371073999944 ], [ -58.279781363999916, -34.771456314999909 ], [ -58.279762711999922, -34.771466489999909 ], [ -58.279070968999918, -34.771843857999954 ], [ -58.279030612999918, -34.771914524999943 ], [ -58.278736673999902, -34.772429237999916 ], [ -58.278659119999929, -34.772582578999902 ], [ -58.278650798999934, -34.772599030999913 ], [ -58.27857526799994, -34.77274837199991 ], [ -58.278572082999915, -34.772754668999937 ], [ -58.278652284999907, -34.772797716999946 ], [ -58.279766082999913, -34.773395537999932 ], [ -58.28059387199994, -34.773838042999955 ], [ -58.281520843999942, -34.774337768999942 ], [ -58.282257079999908, -34.77473449699994 ], [ -58.283397674999947, -34.775344848999907 ], [ -58.283794402999945, -34.775562285999911 ], [ -58.284481048999908, -34.775928496999938 ], [ -58.285224213999925, -34.776324669999951 ], [ -58.2855186459999, -34.776481627999942 ], [ -58.286460875999921, -34.776985167999953 ], [ -58.287477834999947, -34.777536802999919 ], [ -58.287494658999947, -34.777545928999928 ], [ -58.288425445999906, -34.778049468999939 ], [ -58.289094443999943, -34.778410196999914 ], [ -58.289218824999921, -34.778473212999927 ], [ -58.28923950099994, -34.778483687999938 ], [ -58.289324694999948, -34.778526849999935 ], [ -58.28983132399992, -34.778797893999922 ], [ -58.290192100999946, -34.778989876999958 ], [ -58.290378215999908, -34.779089016999933 ], [ -58.290637314999913, -34.779227033999916 ], [ -58.291250576999914, -34.779555967999954 ], [ -58.2913063499999, -34.779586902999938 ], [ -58.291382069999941, -34.77962890099991 ], [ -58.29139390499995, -34.779635464999956 ], [ -58.292287819999899, -34.780123782999908 ], [ -58.292442460999951, -34.780203262999919 ], [ -58.293181732999926, -34.78060830499993 ], [ -58.293887055999903, -34.780990622999923 ], [ -58.294075644999907, -34.781089032999944 ], [ -58.294592383999941, -34.781384327999945 ], [ -58.29475784899995, -34.781479349999927 ], [ -58.295350519999943, -34.78181970299994 ], [ -58.295991670999911, -34.782182294999927 ], [ -58.2960935669999, -34.782239919999938 ], [ -58.296676884999954, -34.782576088999917 ], [ -58.296881878999955, -34.782694227999912 ], [ -58.296891825999921, -34.782698572999948 ], [ -58.297583408999913, -34.783000652999931 ], [ -58.297805937999954, -34.783099014999948 ], [ -58.297816005999948, -34.783103456999925 ], [ -58.298261236999906, -34.783299885999952 ], [ -58.298441953999941, -34.783379615999934 ], [ -58.298616115999948, -34.783456453999918 ], [ -58.298809202999905, -34.783541640999943 ], [ -58.300008655999932, -34.784276210999906 ], [ -58.300789248999934, -34.784739514999956 ], [ -58.301085372999921, -34.784925617999932 ], [ -58.301542968999911, -34.785199046999935 ], [ -58.30197748799992, -34.785457282999914 ], [ -58.302258208999945, -34.785628182999915 ], [ -58.303027429999929, -34.78609134699991 ], [ -58.304166492999911, -34.786774009999931 ], [ -58.304312762999928, -34.786872654999911 ], [ -58.304959433999954, -34.78730896299993 ], [ -58.30537738299995, -34.787596264999934 ], [ -58.306937778999952, -34.788573493999934 ], [ -58.308428991999904, -34.789416976999917 ], [ -58.30856328099992, -34.789554711999926 ], [ -58.308564672999921, -34.789555592999932 ], [ -58.308793317999914, -34.789700331999938 ], [ -58.309751755999912, -34.790346240999952 ], [ -58.310190440999918, -34.790624617999924 ], [ -58.311202396999931, -34.79122798599991 ], [ -58.311259850999932, -34.791262242999949 ], [ -58.311294563999923, -34.791282939999917 ], [ -58.311294763999911, -34.791283058999909 ], [ -58.311330280999925, -34.791233913999918 ], [ -58.311341120999941, -34.791218914999945 ], [ -58.311580311999933, -34.790887950999945 ], [ -58.311991520999925, -34.790321864999953 ], [ -58.31241031199994, -34.789740611999946 ], [ -58.312829907999912, -34.789166270999942 ], [ -58.313254133999919, -34.788572212999952 ], [ -58.313664967999955, -34.788003965999906 ], [ -58.313682443999937, -34.787980045999916 ], [ -58.314074193999943, -34.787443844999927 ], [ -58.314498700999934, -34.786853097999938 ], [ -58.314908617999947, -34.786279579999928 ], [ -58.315342431999909, -34.785680386999957 ], [ -58.315764736999938, -34.785092811999903 ], [ -58.315740228999914, -34.785074194999936 ], [ -58.315684425999905, -34.785031804999903 ], [ -58.315631513999904, -34.785007082999925 ], [ -58.315426582999919, -34.784911333999958 ], [ -58.314142431999926, -34.784311342999956 ], [ -58.313572375999911, -34.784011300999907 ], [ -58.313370136999936, -34.783608752999953 ], [ -58.313475211999901, -34.78354603899993 ], [ -58.314063531999921, -34.78319489799992 ], [ -58.314690901999938, -34.782728843999905 ], [ -58.315291498999954, -34.782255181999915 ], [ -58.315872984999942, -34.781689959999937 ], [ -58.316407401999925, -34.781175502999929 ], [ -58.316962867999905, -34.780643820999956 ], [ -58.31750287999995, -34.780139012999939 ], [ -58.318056817999945, -34.77963346699994 ], [ -58.318598234999911, -34.779127658999926 ], [ -58.319125449999945, -34.778587209999955 ], [ -58.319595557999946, -34.778181213999915 ], [ -58.320157405999907, -34.777699836999943 ], [ -58.32027973299995, -34.77760298599992 ], [ -58.320447007999917, -34.777404019999949 ], [ -58.320623169999919, -34.777194483999949 ], [ -58.320634876999918, -34.77718055899993 ], [ -58.321079124999926, -34.776637000999926 ], [ -58.321533240999941, -34.776052808999907 ], [ -58.321741149999923, -34.775787170999934 ], [ -58.321885717999919, -34.775602461999938 ], [ -58.321982487999946, -34.77548257199993 ], [ -58.322338016999936, -34.774912730999915 ], [ -58.322720967999942, -34.774277329999904 ], [ -58.323127977999945, -34.773572563999949 ], [ -58.323362898999903, -34.773165075999941 ], [ -58.323415419999947, -34.773061621999943 ], [ -58.323466300999939, -34.772891341999923 ], [ -58.323467507999908, -34.772887302999948 ], [ -58.323490933999949, -34.77280890499992 ], [ -58.323520285999905, -34.772710675999917 ], [ -58.323541743999954, -34.772630759999913 ], [ -58.323624741999936, -34.772494878999908 ], [ -58.323975469999937, -34.771920679999937 ], [ -58.324368570999923, -34.771237055999904 ], [ -58.324987381999904, -34.770299512999941 ], [ -58.325638831999925, -34.769326595999928 ], [ -58.326174642999945, -34.768505859999948 ], [ -58.326555888999906, -34.767900760999908 ], [ -58.326671648999934, -34.767706908999912 ], [ -58.326757749999899, -34.767582674999915 ], [ -58.326847209999926, -34.767463705999944 ], [ -58.32735828999995, -34.766784039999948 ], [ -58.327892383999938, -34.766084553999917 ], [ -58.327967188999935, -34.765987013999904 ], [ -58.328321830999926, -34.765524589999927 ], [ -58.328422684999907, -34.765393083999925 ], [ -58.328685502999917, -34.765044235999937 ], [ -58.328882789999909, -34.764782369999921 ], [ -58.329000470999915, -34.764629605999914 ], [ -58.32904113099994, -34.764576824999949 ], [ -58.329103775999954, -34.764495502999921 ], [ -58.329409617999943, -34.764086741999904 ], [ -58.329563914999937, -34.76388101799995 ], [ -58.32987991899995, -34.763469880999935 ], [ -58.330192173999933, -34.763062443999956 ], [ -58.330322545999934, -34.762887822999915 ], [ -58.330846661999942, -34.762183729999947 ], [ -58.331098207999901, -34.761851605999937 ], [ -58.331314989999953, -34.761565381999958 ], [ -58.331328223999947, -34.761548535999907 ], [ -58.331576388999906, -34.76123264499995 ], [ -58.331885026999942, -34.760854365999933 ], [ -58.33211900099991, -34.760559635999925 ], [ -58.33254530499994, -34.760020004999944 ], [ -58.333171493999942, -34.759160052999903 ], [ -58.333558230999927, -34.758610272999931 ], [ -58.333577256999945, -34.758583225999928 ], [ -58.333789442999944, -34.758282762999954 ], [ -58.334135558999947, -34.75784854099993 ], [ -58.334477944999946, -34.757426152999926 ], [ -58.334671103999938, -34.757195213999921 ], [ -58.334855443999913, -34.756974819999925 ], [ -58.335189520999904, -34.756540450999921 ], [ -58.335266314999899, -34.756441061999908 ], [ -58.335823173999927, -34.755712202999916 ], [ -58.33615352399994, -34.755274146999909 ], [ -58.336333431999947, -34.755025295999928 ], [ -58.336499501999924, -34.754795584999954 ], [ -58.33659033899994, -34.754616487999954 ], [ -58.336749758999929, -34.754302171999939 ], [ -58.336759083999937, -34.754283786999906 ], [ -58.336789784999951, -34.754238726999915 ], [ -58.336790610999913, -34.754237514999943 ], [ -58.337010717999931, -34.753914467999948 ], [ -58.337524153999937, -34.75314648199992 ], [ -58.337907145999907, -34.752579480999941 ], [ -58.337997105999932, -34.752446299999917 ], [ -58.338244692999922, -34.752081158999943 ], [ -58.338743363999924, -34.751335764999908 ], [ -58.338877338999907, -34.751140439999915 ], [ -58.339351113999953, -34.750449716999924 ], [ -58.339317771999902, -34.750439504999918 ], [ -58.339283786999943, -34.750429095999948 ], [ -58.339133072999914, -34.750382932999912 ], [ -58.338141906999908, -34.750079347999929 ], [ -58.3376830549999, -34.749891224999942 ], [ -58.337404932999902, -34.749734122999939 ], [ -58.336706781999908, -34.749392191999902 ], [ -58.336010698999928, -34.749043887999903 ], [ -58.335307083999908, -34.748687829999938 ], [ -58.334775617999924, -34.748417869999912 ], [ -58.334614897999927, -34.748354931999927 ], [ -58.334383159999902, -34.748264537999944 ], [ -58.333874200999901, -34.748010131999933 ], [ -58.332972300999927, -34.747560019999923 ], [ -58.332452089999947, -34.747297815999957 ], [ -58.332390905999944, -34.74727067099991 ], [ -58.332352496999931, -34.74724744699995 ], [ -58.331680458999926, -34.746844888999931 ], [ -58.330899642999952, -34.746326542999952 ], [ -58.330043315999944, -34.745855845999927 ], [ -58.329018320999921, -34.745244682999953 ], [ -58.3279268309999, -34.744585284999914 ], [ -58.327898574999949, -34.744567382999946 ], [ -58.326981094999951, -34.743986089999908 ], [ -58.326911455999948, -34.743948088999957 ], [ -58.32594400399995, -34.743420164999918 ], [ -58.325108822999937, -34.742948649999903 ], [ -58.324209996999912, -34.742374243999905 ], [ -58.32313434699995, -34.741786969999907 ], [ -58.32138042899993, -34.740757119999955 ], [ -58.31919429699991, -34.739388816999906 ], [ -58.319243994999908, -34.739342042999908 ], [ -58.319354064999914, -34.739238446999934 ], [ -58.319402365999906, -34.739194088999909 ], [ -58.32008236799993, -34.738569588999951 ], [ -58.320494875999941, -34.738205356999913 ], [ -58.321268387999908, -34.737521622999907 ], [ -58.321762545999945, -34.73709380899993 ], [ -58.321831764999899, -34.737055521999935 ], [ -58.321893393999915, -34.737013458999911 ], [ -58.322499762999939, -34.736471150999932 ], [ -58.32243461999991, -34.736444695999921 ], [ -58.322420240999918, -34.736435212999936 ], [ -58.322411626999951, -34.736429532999921 ], [ -58.321599238999909, -34.735994079999955 ], [ -58.32074487299991, -34.735523133999948 ], [ -58.319518540999923, -34.734823470999913 ], [ -58.314604675999931, -34.732081008999955 ], [ -58.313580344999934, -34.731518691999952 ], [ -58.312642512999901, -34.731021590999944 ], [ -58.312546700999917, -34.730987727999945 ], [ -58.311446360999923, -34.730413584999951 ], [ -58.310342461999937, -34.72986336699995 ], [ -58.310113810999951, -34.729750445999912 ], [ -58.309230681999907, -34.729309514999954 ], [ -58.308856155999933, -34.729123710999943 ], [ -58.308148756999913, -34.728746989999934 ], [ -58.307727340999918, -34.728472692999958 ], [ -58.307087657999944, -34.728198013999929 ], [ -58.306637149999915, -34.727953285999945 ], [ -58.305857526999944, -34.727529772999958 ], [ -58.305022202999908, -34.727082580999934 ], [ -58.304198213999939, -34.726620303999937 ], [ -58.303086967999946, -34.726027845999909 ], [ -58.302086046999932, -34.725468775999957 ], [ -58.302025263999951, -34.725406575999955 ], [ -58.302002058999904, -34.725474931999941 ], [ -58.301985258999935, -34.725498512999934 ], [ -58.30141898699992, -34.726293367999915 ], [ -58.300845699999911, -34.727145392999944 ], [ -58.300233717999902, -34.728025278999951 ], [ -58.299645883999915, -34.728869654999926 ], [ -58.299636307999947, -34.728883409999924 ], [ -58.299019973999918, -34.72976120699991 ], [ -58.298446001999935, -34.730585246999908 ], [ -58.29788637799993, -34.731370700999946 ], [ -58.297286965999945, -34.732222720999914 ], [ -58.297256426999922, -34.732276321999905 ], [ -58.296779087999937, -34.73291678399994 ], [ -58.29667790499991, -34.733075070999917 ], [ -58.29611755499991, -34.733933969999953 ], [ -58.295515709999904, -34.734747744999936 ], [ -58.294878809999943, -34.735599029999946 ], [ -58.294831358999943, -34.735670275999951 ], [ -58.294705447999945, -34.73559913899993 ], [ -58.294540129999916, -34.735505738999905 ], [ -58.293822587999955, -34.735146595999936 ], [ -58.292880828999955, -34.73468231499993 ], [ -58.291866622999919, -34.734183771999938 ], [ -58.291023995999922, -34.733768958999917 ], [ -58.290882883999927, -34.733711788999926 ], [ -58.290744959999927, -34.733650499999953 ], [ -58.289858021999919, -34.733221645999947 ], [ -58.288810837999904, -34.732723868999926 ], [ -58.287815900999931, -34.73225872799992 ], [ -58.286832404999927, -34.731793603999904 ], [ -58.286737114999937, -34.731736456999954 ], [ -58.286645644999908, -34.731671716999927 ], [ -58.28573154399993, -34.731249959999957 ], [ -58.284675333999928, -34.730773001999921 ], [ -58.283663735999937, -34.730290208999918 ], [ -58.282712545999914, -34.729838503999929 ], [ -58.28258791199994, -34.729768689999958 ], [ -58.282464687999948, -34.729706323999949 ], [ -58.281522569999936, -34.729222174999904 ], [ -58.280490625999903, -34.728671152999937 ], [ -58.279456428999936, -34.728129117999913 ], [ -58.278512502999945, -34.727640055999927 ], [ -58.278415841999902, -34.727598916999909 ], [ -58.278319307999936, -34.727557881999928 ], [ -58.277320264999901, -34.727042442999903 ], [ -58.276393532999919, -34.72652715299995 ], [ -58.275484411999912, -34.726025405999906 ], [ -58.274629373999915, -34.725561723999931 ], [ -58.274516151999933, -34.725515256999927 ], [ -58.274399190999929, -34.725464938999949 ], [ -58.273426447999952, -34.725000841999929 ], [ -58.272502605999932, -34.724567627999932 ], [ -58.271532484999909, -34.724128800999949 ], [ -58.270489029999908, -34.723663869999939 ], [ -58.269496139999944, -34.723174851999943 ], [ -58.268577138999945, -34.722702248999951 ], [ -58.267658136999955, -34.722229645999903 ], [ -58.266784689999952, -34.72177623999994 ], [ -58.266655641999932, -34.721726346999958 ], [ -58.265802502999918, -34.721307974999945 ], [ -58.2658731329999, -34.721229985999912 ], [ -58.265878617999931, -34.721223928999905 ], [ -58.266430617999902, -34.720465932999957 ], [ -58.2663750829999, -34.720438080999941 ], [ -58.26554964099995, -34.720024112999909 ], [ -58.264536954999926, -34.719563506999918 ], [ -58.264492938999922, -34.71954440199994 ], [ -58.263486402999945, -34.719107525999902 ], [ -58.263471847999938, -34.719127818999937 ], [ -58.26308550899995, -34.719666444999916 ], [ -58.262866496999948, -34.719974978999915 ], [ -58.262522255999954, -34.720450301999904 ], [ -58.26230503599993, -34.72073772899995 ], [ -58.261964558999921, -34.721209225999928 ], [ -58.26179990299994, -34.721435381999925 ], [ -58.261720680999929, -34.721504157999902 ], [ -58.261667992999946, -34.721557718999918 ], [ -58.261331095999935, -34.722022506999906 ], [ -58.261053624999931, -34.722387828999956 ], [ -58.260757608999938, -34.722790910999947 ], [ -58.260794569999916, -34.722808659999941 ], [ -58.261652265999942, -34.723220530999924 ], [ -58.261630941999954, -34.723246783999912 ], [ -58.261428412999919, -34.723496128999955 ], [ -58.261023376999901, -34.724032338999905 ], [ -58.260949636999953, -34.723993755999913 ], [ -58.260148181999909, -34.723574408999923 ], [ -58.260124643999916, -34.723606129999951 ], [ -58.259601180999937, -34.724311583999906 ], [ -58.259048126999915, -34.725047136999933 ], [ -58.258916945999943, -34.724980869999911 ], [ -58.258151046999899, -34.724593973999902 ], [ -58.25805885199992, -34.72457425999994 ], [ -58.257966824999926, -34.72454689999995 ], [ -58.257124124999905, -34.724123666999958 ], [ -58.25617541999992, -34.723641302999908 ], [ -58.255219279999949, -34.723149852999939 ], [ -58.25429098099994, -34.722682578999922 ], [ -58.253380475999904, -34.722222102999922 ], [ -58.252528826999935, -34.721804431999942 ], [ -58.252448877999939, -34.721725063999941 ], [ -58.252399580999906, -34.721793577999904 ], [ -58.25238892099992, -34.721808410999927 ], [ -58.251879863999932, -34.722516731999917 ], [ -58.251363896999919, -34.723228480999921 ], [ -58.251306972999942, -34.723293226999942 ], [ -58.251253788999918, -34.723357944999918 ], [ -58.250737876999949, -34.724065909999922 ], [ -58.250132915999927, -34.724889983999958 ], [ -58.249581512999953, -34.725645052999937 ], [ -58.248995658999945, -34.726446119999935 ], [ -58.248482560999946, -34.727147533999926 ], [ -58.248425239999904, -34.727216550999913 ], [ -58.248379105999902, -34.727281095999956 ], [ -58.247594489999926, -34.728305955999929 ], [ -58.246748331999925, -34.729410525999924 ], [ -58.245832474999929, -34.730602881999914 ], [ -58.245791982999947, -34.730580047999922 ], [ -58.244933126999911, -34.73009572199993 ], [ -58.244015679999904, -34.729577862999918 ], [ -58.243128604999924, -34.729071156999908 ], [ -58.241722073999938, -34.728283219999923 ], [ -58.2379440119999, -34.726128659999915 ], [ -58.237911185999906, -34.726167237999903 ], [ -58.236287077999918, -34.728075946999923 ], [ -58.235696798999925, -34.728734509999924 ], [ -58.235742712999922, -34.728758373999938 ], [ -58.236604797999917, -34.729206450999925 ], [ -58.236553904999937, -34.729272649999928 ], [ -58.236039712999911, -34.729941488999941 ], [ -58.235401138999919, -34.730724964999922 ], [ -58.234835479999902, -34.731480250999937 ], [ -58.234302336999917, -34.732239717999903 ], [ -58.233986893999941, -34.732666557999949 ], [ -58.233316785999932, -34.733551974999955 ], [ -58.23272285999991, -34.734341224999923 ], [ -58.23223377599993, -34.734977460999914 ], [ -58.232276029999923, -34.73499940399995 ], [ -58.233157645999938, -34.735457226999927 ], [ -58.23309886699991, -34.735534755999936 ], [ -58.232533346999901, -34.736280673999943 ], [ -58.232441916999903, -34.736401268999941 ], [ -58.231878934999941, -34.737142429999949 ], [ -58.231331266999916, -34.737860676999958 ], [ -58.230783599999938, -34.73857892299992 ], [ -58.230293392999954, -34.739228383999944 ], [ -58.230232032999936, -34.739270506999958 ], [ -58.230162992999908, -34.739312656999914 ], [ -58.229691809999906, -34.739878219999923 ], [ -58.229124849999948, -34.740554614999951 ], [ -58.228573225999924, -34.741219524999906 ], [ -58.228645802999949, -34.741259802999934 ], [ -58.229742181999939, -34.741868256999908 ], [ -58.229668088999915, -34.74196033599992 ], [ -58.229192164999915, -34.742551784999932 ], [ -58.228428298999916, -34.743487347999917 ], [ -58.228275218999954, -34.74340133499993 ], [ -58.2272668519999, -34.742834751999908 ], [ -58.226243696999916, -34.742272385999911 ], [ -58.225193974999911, -34.741697766999948 ], [ -58.22419094299994, -34.741143479999948 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 71.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.714113000114821, -34.52350599960215 ], [ -58.714713999951073, -34.524170999691819 ], [ -58.71533599985645, -34.524751000358322 ], [ -58.715894000407729, -34.525286999895059 ], [ -58.716538000428329, -34.525887999731367 ], [ -58.717160000333706, -34.526488999567619 ], [ -58.716859999988969, -34.526703000443092 ], [ -58.717460999825221, -34.527261000095052 ], [ -58.718019000376501, -34.527797999677887 ], [ -58.718598000097586, -34.528334000113944 ], [ -58.719198999933838, -34.528870999696835 ], [ -58.719799999770146, -34.529428000202017 ], [ -58.720379000390494, -34.529964999784852 ], [ -58.72095800011158, -34.530501000220966 ], [ -58.721000000249774, -34.53054000022081 ], [ -58.721558999947831, -34.531058999872926 ], [ -58.722718000335419, -34.532175000076165 ], [ -58.723340000240796, -34.532753999797194 ], [ -58.723661999801436, -34.533055000188085 ], [ -58.723639999686213, -34.533762999562725 ], [ -58.723275999987379, -34.534041999838394 ], [ -58.722889000127225, -34.534321000114005 ], [ -58.722246000152722, -34.534793000296702 ], [ -58.720379000390494, -34.536122999576719 ], [ -58.719327000440671, -34.53689600015025 ], [ -58.718190000168306, -34.537733000077822 ], [ -58.717009999711649, -34.538591000074575 ], [ -58.71597999987705, -34.539341999633507 ], [ -58.714906999858101, -34.540136000276163 ], [ -58.713491000209444, -34.541166000110763 ], [ -58.712053000445565, -34.542217000014489 ], [ -58.711022999711645, -34.542947000403728 ], [ -58.709886000338599, -34.5437840003313 ], [ -58.708749000066234, -34.544621000258928 ], [ -58.707632999862994, -34.545436000071277 ], [ -58.706516999659755, -34.546272999998905 ], [ -58.705595000308961, -34.546938000088574 ], [ -58.705208000448806, -34.54723800043331 ], [ -58.704435999921429, -34.547775000016202 ], [ -58.703620000062926, -34.548375999852453 ], [ -58.70276200006623, -34.549018999826956 ], [ -58.701838999769961, -34.549684999962722 ], [ -58.700895000304001, -34.550371000121515 ], [ -58.699950999938665, -34.551058000326407 ], [ -58.699565000124608, -34.551357999771824 ], [ -58.699200000379676, -34.551637000047492 ], [ -58.698986000403579, -34.551786999770172 ], [ -58.698471000036591, -34.552152000414424 ], [ -58.698212999830048, -34.552367000436675 ], [ -58.696969000019294, -34.553288999787469 ], [ -58.69602399960786, -34.55397599999236 ], [ -58.696710999812751, -34.554706000381543 ], [ -58.695809999631763, -34.555349000356046 ], [ -58.694736999612815, -34.556143000099325 ], [ -58.693600000239769, -34.556980000026954 ], [ -58.692440999852238, -34.557838000023651 ], [ -58.691626000039832, -34.558438999859902 ], [ -58.691432000086706, -34.558568000412833 ], [ -58.690982000019233, -34.558911000042599 ], [ -58.690445000436398, -34.559297999902753 ], [ -58.689414999702421, -34.560049000361062 ], [ -58.687934999800348, -34.561121000333856 ], [ -58.686453999852176, -34.562215999568707 ], [ -58.686368000382856, -34.562279999822067 ], [ -58.685639000039771, -34.562795000189055 ], [ -58.684908999650588, -34.563331999771947 ], [ -58.684243999560863, -34.562730999935638 ], [ -58.68360000043964, -34.562109000030262 ], [ -58.682742000442943, -34.562752000004764 ], [ -58.682098000422343, -34.563224000187404 ], [ -58.683150000372166, -34.564210999837712 ], [ -58.683515000117097, -34.564533000297672 ], [ -58.683751000208474, -34.564769000388992 ], [ -58.683965000184571, -34.564962000296021 ], [ -58.684737999858783, -34.56569199978594 ], [ -58.684908999650588, -34.56584200040794 ], [ -58.685081000387811, -34.566014000245843 ], [ -58.686260999945148, -34.567108000333917 ], [ -58.687634000308833, -34.568417000444185 ], [ -58.688985999704073, -34.569704999586008 ], [ -58.689287000094964, -34.569982999815522 ], [ -58.690360000113856, -34.570971000411305 ], [ -58.690916999719718, -34.571506999948042 ], [ -58.691303999579873, -34.571871999692974 ], [ -58.691497000386221, -34.572043000384099 ], [ -58.692291000129501, -34.572793999943087 ], [ -58.691303999579873, -34.573503000263202 ], [ -58.69057400009001, -34.574059999869064 ], [ -58.689308000164033, -34.574939999980984 ], [ -58.688858000096559, -34.57528399965679 ], [ -58.688406999983044, -34.575605000070652 ], [ -58.688106999638308, -34.575863000277195 ], [ -58.687526999871125, -34.576271000206475 ], [ -58.686904999965748, -34.576721000273892 ], [ -58.686283000060371, -34.577150000272241 ], [ -58.685660000108896, -34.577621999555618 ], [ -58.685060000318742, -34.578072999669132 ], [ -58.684416000298143, -34.578523999782703 ], [ -58.683814999562514, -34.578973999850177 ], [ -58.682956999565818, -34.579574999686429 ], [ -58.682800000419661, -34.579693999778215 ], [ -58.682333999614343, -34.580046999869126 ], [ -58.681026000449492, -34.580948000050114 ], [ -58.681046999619298, -34.581013000349628 ], [ -58.680617999620949, -34.581291999725977 ], [ -58.678686999605304, -34.582686000158731 ], [ -58.677571000301384, -34.583415999648594 ], [ -58.677077000003521, -34.58380200036197 ], [ -58.676604999820825, -34.58421000029125 ], [ -58.676283000260241, -34.584466999552319 ], [ -58.675724999708905, -34.58491799966589 ], [ -58.673986999600288, -34.586334000213867 ], [ -58.668537000082438, -34.590668999574632 ], [ -58.668387000359758, -34.590840000265757 ], [ -58.666863000227238, -34.589510000086364 ], [ -58.664739000304564, -34.591227000125912 ], [ -58.663602000032256, -34.592149000376025 ], [ -58.662936999942531, -34.59268599995886 ], [ -58.662357000175405, -34.593136000026334 ], [ -58.661242000018262, -34.594059000322545 ], [ -58.660168999999314, -34.594939000434465 ], [ -58.658967000326754, -34.595903999969607 ], [ -58.658022999961418, -34.596655000427859 ], [ -58.657057000380235, -34.597449000171196 ], [ -58.656607000312761, -34.597813999916127 ], [ -58.656091999945772, -34.59822199984535 ], [ -58.655662999947424, -34.598565000374435 ], [ -58.655447999925229, -34.598737000212338 ], [ -58.655232999902978, -34.598908000004144 ], [ -58.654760999720338, -34.599294999864298 ], [ -58.653989000092224, -34.599916999769675 ], [ -58.653173000233721, -34.600560999790275 ], [ -58.651971999707996, -34.601548000339903 ], [ -58.651886000238676, -34.601698000062584 ], [ -58.650985000057688, -34.6024060003366 ], [ -58.650040999692351, -34.603156999895589 ], [ -58.649118000295459, -34.603908000353897 ], [ -58.648238000183539, -34.604615999728537 ], [ -58.647293999818203, -34.605346000117777 ], [ -58.646649999797603, -34.605860999585445 ], [ -58.646199999730186, -34.606225000183542 ], [ -58.645942000422963, -34.606440000205794 ], [ -58.645147999780306, -34.607084000226394 ], [ -58.644376000152249, -34.60770600013177 ], [ -58.643582000408969, -34.608350000152313 ], [ -58.642874000134952, -34.60890799980433 ], [ -58.641757999931713, -34.609786999870096 ], [ -58.641070999726821, -34.610366999637279 ], [ -58.640384999568028, -34.610925000188558 ], [ -58.639677000193387, -34.611503999909644 ], [ -58.638957000265293, -34.612080000391643 ], [ -58.638925999735079, -34.612104999745895 ], [ -58.638217000314285, -34.612663000297175 ], [ -58.637186999580308, -34.613478000109581 ], [ -58.637058999972851, -34.613584999647969 ], [ -58.636328999583611, -34.61418600038354 ], [ -58.636072000322542, -34.614401000405792 ], [ -58.635084999772857, -34.615173000033906 ], [ -58.634291000029577, -34.615773999870157 ], [ -58.634204999660938, -34.615903000423089 ], [ -58.634032999823035, -34.617190000418134 ], [ -58.633947000353714, -34.618199000183665 ], [ -58.633883000100354, -34.618435000274985 ], [ -58.633883000100354, -34.618692000435431 ], [ -58.633625999939909, -34.62068799985127 ], [ -58.633539999571269, -34.62101000031123 ], [ -58.633304000379269, -34.621760999870219 ], [ -58.632959999804086, -34.622705000235555 ], [ -58.632638000243503, -34.623627999632447 ], [ -58.632316999829641, -34.624485999629144 ], [ -58.631715999993389, -34.6263100001064 ], [ -58.631385000017701, -34.627169000149195 ], [ -58.631071999972789, -34.6279839999616 ], [ -58.63098599960415, -34.628263000237212 ], [ -58.630707000227858, -34.629055999934394 ], [ -58.63034199958355, -34.630085999769051 ], [ -58.629934999700424, -34.631115999603651 ], [ -58.629569999955493, -34.631995999715571 ], [ -58.629505999702076, -34.632210999737822 ], [ -58.629312999795047, -34.632660999805239 ], [ -58.628969000119241, -34.633326999941062 ], [ -58.628782999635689, -34.633772999824032 ], [ -58.628646999659281, -34.634098999569119 ], [ -58.628347000213864, -34.634871000096553 ], [ -58.628024999753904, -34.635537000232318 ], [ -58.627809999731653, -34.635879999862084 ], [ -58.627402999848528, -34.636544999951752 ], [ -58.626994999919248, -34.637210000041421 ], [ -58.626586999990025, -34.637897000246312 ], [ -58.626136999922551, -34.638583999551884 ], [ -58.625515000017174, -34.639571000101512 ], [ -58.625449999717659, -34.6396779996399 ], [ -58.625041999788436, -34.64040800002914 ], [ -58.624463000067351, -34.640923000396128 ], [ -58.624055000138128, -34.641179999657197 ], [ -58.622961000050054, -34.642124000022534 ], [ -58.622575000236054, -34.642403000298202 ], [ -58.622488999867414, -34.642509999836591 ], [ -58.622339000144677, -34.642509999836591 ], [ -58.622209999591746, -34.642575000136105 ], [ -58.621030000034409, -34.643539999671191 ], [ -58.621030000034409, -34.644527000220819 ], [ -58.621051000103535, -34.645429000447962 ], [ -58.621051000103535, -34.64641600009827 ], [ -58.621051000103535, -34.64697399975023 ], [ -58.621051000103535, -34.647359999564287 ], [ -58.621073000218757, -34.648024999653956 ], [ -58.621073000218757, -34.648175000276012 ], [ -58.621073000218757, -34.648347000113915 ], [ -58.621094000287826, -34.649205000110612 ], [ -58.619828000361906, -34.649227000225835 ], [ -58.618519000251638, -34.649248000294961 ], [ -58.617317999725856, -34.649248000294961 ], [ -58.616138000168519, -34.649270000410127 ], [ -58.615021999965279, -34.649290999579932 ], [ -58.613992000130679, -34.649290999579932 ], [ -58.612467999998159, -34.648904999765875 ], [ -58.612017999930686, -34.648798000227487 ], [ -58.611245000256531, -34.648626000389584 ], [ -58.610988000096086, -34.648561000090012 ], [ -58.610430000444126, -34.648390000298207 ], [ -58.610215000421874, -34.648347000113915 ], [ -58.609463999963566, -34.648175000276012 ], [ -58.607875999577686, -34.647831999746927 ], [ -58.606954000226892, -34.647703000093315 ], [ -58.605645000116624, -34.647553000370635 ], [ -58.604464999659967, -34.647402999748579 ], [ -58.603391999641019, -34.647274000094967 ], [ -58.601953999877139, -34.647102000257064 ], [ -58.600709000020288, -34.64697399975023 ], [ -58.600000999746328, -34.646888000280967 ], [ -58.598628000281963, -34.646695000373938 ], [ -58.597018999826957, -34.646480000351687 ], [ -58.594744000135449, -34.646223000191242 ], [ -58.593950000392169, -34.646114999707436 ], [ -58.593198999933861, -34.646051000353339 ], [ -58.592512999775067, -34.645964999984699 ], [ -58.591762000216079, -34.645878999616116 ], [ -58.590925000288507, -34.645793000146796 ], [ -58.590816999804645, -34.645751000008602 ], [ -58.590689000197187, -34.645492999802059 ], [ -58.590474000174936, -34.64497800033439 ], [ -58.590323999552879, -34.64474200024307 ], [ -58.590217000014491, -34.644634999805362 ], [ -58.590088000360879, -34.644570000405167 ], [ -58.589357999971696, -34.64450600015175 ], [ -58.588307000067971, -34.644356000429013 ], [ -58.587190999864731, -34.644183999691791 ], [ -58.586117999845783, -34.644055000038179 ], [ -58.585088000011126, -34.643905000315442 ], [ -58.584122999576721, -34.643754999693442 ], [ -58.583328999833441, -34.643648000155054 ], [ -58.581891000069561, -34.643412000063734 ], [ -58.580453000305681, -34.643197000041482 ], [ -58.578993999573356, -34.642960999950162 ], [ -58.577534999740408, -34.642703999789717 ], [ -58.576119000091751, -34.642466999652243 ], [ -58.574594999959231, -34.642252999676145 ], [ -58.573201000425797, -34.642016999584825 ], [ -58.571719999578249, -34.641759000277602 ], [ -58.570260999745301, -34.641523000186282 ], [ -58.568758999728004, -34.641309000210128 ], [ -58.567343000079347, -34.6411160003031 ], [ -58.567214000425736, -34.641094000187934 ], [ -58.566291000129524, -34.640923000396128 ], [ -58.566055000038205, -34.640858000096557 ], [ -58.565905000315468, -34.640858000096557 ], [ -58.565491000109546, -34.640874999981236 ], [ -58.564339000044754, -34.640687000304752 ], [ -58.563502000117182, -34.64055799975182 ], [ -58.563266000025862, -34.640450000167334 ], [ -58.562781000142991, -34.640380999683373 ], [ -58.562665000189554, -34.640364999844849 ], [ -58.561592000170606, -34.640214000076014 ], [ -58.560970000265286, -34.640128999753472 ], [ -58.560133000337657, -34.640043000284209 ], [ -58.558673999605332, -34.639913999731277 ], [ -58.558202000322012, -34.639892999662152 ], [ -58.557235999841453, -34.639913999731277 ], [ -58.557065000049647, -34.639913999731277 ], [ -58.556035000215047, -34.639913999731277 ], [ -58.554253999922139, -34.639934999800346 ], [ -58.553224000087482, -34.639956999915569 ], [ -58.552644000320299, -34.639956999915569 ], [ -58.551099000118711, -34.64000000009986 ], [ -58.549489999663706, -34.640021000168986 ], [ -58.548954000126969, -34.640043000284209 ], [ -58.546228000321889, -34.64008599956918 ], [ -58.545134000233872, -34.640106999638306 ], [ -58.544726000304649, -34.640106999638306 ], [ -58.544083000330147, -34.640106999638306 ], [ -58.543502999663644, -34.640128999753472 ], [ -58.542880999758268, -34.640149999822597 ], [ -58.541399999810096, -34.64017199993782 ], [ -58.539984000161439, -34.640128999753472 ], [ -58.538610999797754, -34.640021000168986 ], [ -58.537280999618417, -34.639913999731277 ], [ -58.535842999854538, -34.639828000261957 ], [ -58.535092000295549, -34.639741999893317 ], [ -58.533311000002584, -34.639635000354929 ], [ -58.532216999914567, -34.639571000101512 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.530241999668533, -34.639378000194483 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.498013, -34.637210000041421 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.468243999560912, -34.630326000044818 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.441966000030845, -34.619272000202614 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 70.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370210999637891, -34.58333000017933 ], [ -58.369052000149622, -34.583995000268999 ], [ -58.368730999735817, -34.584167000106902 ], [ -58.366627999882269, -34.585389999848587 ], [ -58.367206999603297, -34.586098000122547 ], [ -58.367421999625549, -34.58635600032909 ], [ -58.367936999992537, -34.586978000234467 ], [ -58.368107999784343, -34.587235000394912 ], [ -58.369180999803234, -34.588543999605861 ], [ -58.369246000102805, -34.588629999974501 ], [ -58.370232999753114, -34.589831999647004 ], [ -58.370340000190822, -34.589939000084769 ], [ -58.370489999913502, -34.589961000199935 ], [ -58.370661999751462, -34.589961000199935 ], [ -58.370833000442587, -34.589831999647004 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371326999841131, -34.589037999903724 ], [ -58.371541999863382, -34.588523000436055 ], [ -58.371691999586062, -34.588480000251764 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.372270000160313, -34.589025000203549 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371534000393751, -34.598009999961505 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373450999763804, -34.60897200005769 ], [ -58.373580000316736, -34.609100999711302 ], [ -58.374653000335684, -34.610131000445278 ], [ -58.374825000173587, -34.610109000330056 ], [ -58.375039000149684, -34.610324000352307 ], [ -58.375039000149684, -34.610474000074987 ], [ -58.376218999707021, -34.611568000163061 ], [ -58.377571000001581, -34.612834000088981 ], [ -58.376155000352924, -34.612748999766495 ], [ -58.374738999804947, -34.612597999997661 ], [ -58.373322000110193, -34.612512999675175 ], [ -58.373257999856776, -34.613757000385192 ], [ -58.373193999603359, -34.614872999689169 ], [ -58.373129000203164, -34.6160320000767 ], [ -58.373086000018873, -34.6170619999113 ], [ -58.373021999765456, -34.618477999560014 ], [ -58.372936000296136, -34.619593999763254 ], [ -58.372849999927496, -34.620708999920339 ], [ -58.372849999927496, -34.621868000307927 ], [ -58.372743000389107, -34.623134000233904 ], [ -58.37267900013569, -34.624292999722115 ], [ -58.372635999951399, -34.625452000109647 ], [ -58.372570999651884, -34.626739000104749 ], [ -58.372420999929147, -34.627790000008474 ], [ -58.372314000390759, -34.628197999937697 ], [ -58.372078000299439, -34.629034999865326 ], [ -58.371991999930799, -34.629378000394354 ], [ -58.371670000370159, -34.630515999813497 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.370639999636239, -34.637446000132741 ], [ -58.371541999863382, -34.637531999602061 ], [ -58.37355900024761, -34.637725000408409 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.373879999762153, -34.642360000113854 ], [ -58.373665999785999, -34.643604999970705 ], [ -58.373257999856776, -34.645664999639962 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.372978999581107, -34.647380999633356 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.37273900020466, -34.648710999812749 ], [ -58.372722000320039, -34.648819000296555 ], [ -58.372785999674079, -34.649184000041544 ], [ -58.372872000042719, -34.649227000225835 ], [ -58.373257999856776, -34.649376999948572 ], [ -58.373836999577804, -34.649526999671252 ], [ -58.374031000430307, -34.649656000224184 ], [ -58.374115999853473, -34.649827000015989 ], [ -58.374094999784347, -34.649955999669601 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.372283999906642, -34.652465000259497 ], [ -58.371682000024236, -34.654236000091259 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371223999587869, -34.655804999601003 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.364825000373401, -34.666822000434934 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.363259000102744, -34.666779000250642 ], [ -58.362271999553116, -34.666114000160917 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.329914000230872, -34.694545000051676 ], [ -58.329398999863884, -34.69493199991183 ], [ -58.328433000282701, -34.695574999886276 ], [ -58.327532000101655, -34.696283000160292 ], [ -58.326888000081112, -34.696797999627961 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.325514999717427, -34.697849999577784 ], [ -58.324764000158439, -34.698451000313355 ], [ -58.32392700023081, -34.699094000287857 ], [ -58.32289700039621, -34.699888000031137 ], [ -58.321866999662291, -34.70070399988964 ], [ -58.320793999643342, -34.701561999886337 ], [ -58.319956999715714, -34.702249000091228 ], [ -58.3187990002736, -34.703128000157051 ], [ -58.317490000163332, -34.704136999922582 ], [ -58.316738999705024, -34.704780999943125 ], [ -58.316115999753549, -34.705380999733279 ], [ -58.315493999848172, -34.705961000399782 ], [ -58.314765000404407, -34.706668999774479 ], [ -58.314035000015224, -34.707354999933273 ], [ -58.313477000363207, -34.707892000415427 ], [ -58.312790000158316, -34.708621999905347 ], [ -58.311954000276842, -34.709373000363655 ], [ -58.310751999704962, -34.709973000153809 ], [ -58.310194000053002, -34.710209000245129 ], [ -58.309422000424945, -34.710552999920992 ], [ -58.308176999668774, -34.711110999572952 ], [ -58.306910999742797, -34.711647000009009 ], [ -58.30564499981682, -34.712183000445066 ], [ -58.304378999890901, -34.712741000097026 ], [ -58.303134000034049, -34.713277999679917 ], [ -58.301825999969878, -34.713814000115974 ], [ -58.300602000182096, -34.714414999952226 ], [ -58.299464999909787, -34.714972999604186 ], [ -58.29828500035245, -34.715574000339814 ], [ -58.298092000445422, -34.715401999602534 ], [ -58.296911999988765, -34.714393999883157 ], [ -58.296161000429777, -34.713749999862557 ], [ -58.295710000316205, -34.7133640000485 ], [ -58.295281000317857, -34.712999000303569 ], [ -58.294679999582286, -34.71248399993658 ], [ -58.294358000021646, -34.712204999660969 ], [ -58.293586000393589, -34.711560999640369 ], [ -58.293413999656309, -34.711410999917689 ], [ -58.292470000190292, -34.710617000174352 ], [ -58.291911999639012, -34.710166000060838 ], [ -58.291525999825012, -34.709844999646975 ], [ -58.291011000357344, -34.709436999717695 ], [ -58.290560000243772, -34.709050999903695 ], [ -58.290174000429715, -34.708729000343055 ], [ -58.289615999878436, -34.708257000160359 ], [ -58.288672000412475, -34.707483999586884 ], [ -58.28762099960943, -34.706604000374284 ], [ -58.286912000188636, -34.70694800005009 ], [ -58.286440000005939, -34.707184000141467 ], [ -58.286011000007591, -34.707377000048496 ], [ -58.285260000448602, -34.707741999793427 ], [ -58.283843999900625, -34.708363999698804 ], [ -58.282664000343289, -34.708879000065735 ], [ -58.282256000414066, -34.709028999788472 ], [ -58.281461999771409, -34.709330000179307 ], [ -58.280046000122752, -34.709844999646975 ], [ -58.278843999550872, -34.710294999714449 ], [ -58.277686000108758, -34.710853000265729 ], [ -58.276398000067616, -34.711431999986758 ], [ -58.275175000325987, -34.71201199975394 ], [ -58.275990000138336, -34.71241999968322 ], [ -58.276913000434604, -34.712869999750637 ], [ -58.277900000084912, -34.713385000117626 ], [ -58.277299000248604, -34.714199999930031 ], [ -58.276677000343227, -34.715015999788534 ], [ -58.276097999722879, -34.715788000315911 ], [ -58.275368000232959, -34.716732999828025 ], [ -58.274809999681679, -34.717568999709499 ], [ -58.27423099996065, -34.71842799975235 ], [ -58.273652000239565, -34.719306999818116 ], [ -58.273029000288091, -34.720252000229607 ], [ -58.272386000313645, -34.721110000226304 ], [ -58.271763000362114, -34.721968000223001 ], [ -58.271140999557417, -34.722826000219698 ], [ -58.270518999652097, -34.723663000147269 ], [ -58.269938999884914, -34.724456999890606 ], [ -58.269853999562372, -34.724565000374412 ], [ -58.269273999795189, -34.725358000071594 ], [ -58.268651999889869, -34.726238000183514 ], [ -58.268029999984492, -34.727097000226308 ], [ -58.267106999688224, -34.726623999997571 ], [ -58.266120000037915, -34.72610999967668 ], [ -58.265153999557413, -34.725595000209069 ], [ -58.264210000091396, -34.725100999911149 ], [ -58.263416000348116, -34.724649999797634 ], [ -58.262450999913654, -34.724135000329966 ], [ -58.26212900035307, -34.724586000443537 ], [ -58.261591999870859, -34.7253159999334 ], [ -58.261056000334122, -34.726002000092194 ], [ -58.262086000168722, -34.726496000390057 ], [ -58.262794000442739, -34.726839000019766 ], [ -58.26212900035307, -34.727675999947394 ], [ -58.26148500033247, -34.728469999690674 ], [ -58.260841000311871, -34.729285000402399 ], [ -58.260198000337425, -34.730122000330027 ], [ -58.259554000316825, -34.730959000257599 ], [ -58.258674000204905, -34.732117999745867 ], [ -58.257729999839569, -34.733276000087301 ], [ -58.256613999636329, -34.734670999666832 ], [ -58.255928000376855, -34.735507999594461 ], [ -58.255284000356312, -34.736323000306186 ], [ -58.254640000335712, -34.737139000164689 ], [ -58.253975000246044, -34.737953999977094 ], [ -58.253331000225444, -34.738769999835597 ], [ -58.252945000411387, -34.738597999997637 ], [ -58.25232299960669, -34.738339999791094 ], [ -58.251357000025507, -34.737910999792746 ], [ -58.250391000444267, -34.737481999794397 ], [ -58.249618999916891, -34.737117000049466 ], [ -58.250240999822267, -34.736323000306186 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 68.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.408835000135127, -34.609769999985474 ], [ -58.408791999950779, -34.609208000149067 ], [ -58.408406000136779, -34.609272000402427 ], [ -58.406539000374551, -34.609100999711302 ], [ -58.406173999730242, -34.609187000079942 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405959999754145, -34.610560000443627 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.404350000152363, -34.612340999837215 ], [ -58.404221999645529, -34.613370999671872 ], [ -58.404070999876694, -34.614573000243695 ], [ -58.403019999972969, -34.614530000059403 ], [ -58.401368000232992, -34.614421999575598 ], [ -58.400123000376141, -34.614336000106277 ], [ -58.399286000448512, -34.614293999968083 ], [ -58.398771000081524, -34.614250999783792 ], [ -58.397484000086479, -34.61418600038354 ], [ -58.396131999791919, -34.61412200013018 ], [ -58.394672999958914, -34.614014999692415 ], [ -58.393235000195034, -34.613907000107929 ], [ -58.391712000108669, -34.613821999785443 ], [ -58.390359999814109, -34.613736000316123 ], [ -58.388944000165452, -34.613627999832261 ], [ -58.387506000401572, -34.613500000224803 ], [ -58.386089999853596, -34.613413999856164 ], [ -58.38463100002059, -34.613307000317775 ], [ -58.383193000256711, -34.613198999833912 ], [ -58.381754999593511, -34.613070000180301 ], [ -58.381283000310191, -34.613049000111232 ], [ -58.380918999712037, -34.613028000042107 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380790000058425, -34.61523800033342 ], [ -58.380746999874077, -34.616395999775534 ], [ -58.380681999574563, -34.617577000278288 ], [ -58.380640000335688, -34.618456000344111 ], [ -58.380553999967105, -34.619701000200962 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.381455000148094, -34.619722000270031 ], [ -58.381476000217219, -34.620988000196007 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.381411999963802, -34.622768999589596 ], [ -58.381390999894677, -34.622941000326875 ], [ -58.381433000032871, -34.623778000254447 ], [ -58.381390999894677, -34.624615000182075 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.378687000204877, -34.630215000321982 ], [ -58.378644000020529, -34.630257999606954 ], [ -58.3784510001135, -34.630343999975594 ], [ -58.378128999653597, -34.630300999791245 ], [ -58.378, -34.630172000137634 ], [ -58.377699999655192, -34.629979000230605 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.373879999762153, -34.642360000113854 ], [ -58.373665999785999, -34.643604999970705 ], [ -58.373257999856776, -34.645664999639962 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.372978999581107, -34.647380999633356 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.372722000320039, -34.648819000296555 ], [ -58.372785999674079, -34.649184000041544 ], [ -58.372872000042719, -34.649227000225835 ], [ -58.373257999856776, -34.649376999948572 ], [ -58.373836999577804, -34.649526999671252 ], [ -58.374031000430307, -34.649656000224184 ], [ -58.374115999853473, -34.649827000015989 ], [ -58.374094999784347, -34.649955999669601 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.372001000345847, -34.653295999910426 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370469999890531, -34.657099999964998 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.363259000102744, -34.666779000250642 ], [ -58.362271999553116, -34.666114000160917 ], [ -58.360361999606539, -34.664761999866357 ], [ -58.359418000140579, -34.665298000302414 ], [ -58.358215999568699, -34.665855999954374 ], [ -58.357614999732391, -34.666178000414334 ], [ -58.357443999940585, -34.666263999883654 ], [ -58.357058000126585, -34.666478999905905 ], [ -58.356778999850917, -34.666864999719905 ], [ -58.356391999990763, -34.667380000086894 ], [ -58.355813000269734, -34.668024000107494 ], [ -58.355405000340454, -34.668496000290133 ], [ -58.354933000157814, -34.669010999757802 ], [ -58.354589999628729, -34.66943999975615 ], [ -58.35424699999902, -34.669825999570207 ], [ -58.35407500016106, -34.670019000376499 ], [ -58.35392500043838, -34.670191000214459 ], [ -58.353795999885449, -34.670340999937139 ], [ -58.353559999794129, -34.670599000143682 ], [ -58.353260000348712, -34.670941999773447 ], [ -58.353087999611432, -34.671155999749544 ], [ -58.352401000305861, -34.671929000323075 ], [ -58.351564000378289, -34.672829999604744 ], [ -58.351049000011301, -34.673388000156024 ], [ -58.350769999735633, -34.673687999601441 ], [ -58.350083999576896, -34.674417999990681 ], [ -58.349461999671519, -34.675105000195572 ], [ -58.349397000271324, -34.675169000448989 ], [ -58.348667999928239, -34.675963000192269 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.329914000230872, -34.694545000051676 ], [ -58.329398999863884, -34.69493199991183 ], [ -58.328518999752021, -34.695510999632859 ], [ -58.327532000101655, -34.696283000160292 ], [ -58.326888000081112, -34.696797999627961 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.325514999717427, -34.697849999577784 ], [ -58.324764000158439, -34.698451000313355 ], [ -58.32392700023081, -34.699094000287857 ], [ -58.32289700039621, -34.699888000031137 ], [ -58.321866999662291, -34.70070399988964 ], [ -58.320793999643342, -34.701561999886337 ], [ -58.319956999715714, -34.702249000091228 ], [ -58.3187990002736, -34.703128000157051 ], [ -58.317490000163332, -34.704136999922582 ], [ -58.316738999705024, -34.704780999943125 ], [ -58.316115999753549, -34.705380999733279 ], [ -58.315493999848172, -34.705961000399782 ], [ -58.314765000404407, -34.706668999774479 ], [ -58.314035000015224, -34.707354999933273 ], [ -58.313477000363207, -34.707892000415427 ], [ -58.312790000158316, -34.708621999905347 ], [ -58.311954000276842, -34.709373000363655 ], [ -58.311095000234047, -34.710273999645324 ], [ -58.310579999867059, -34.710766999897089 ], [ -58.310129999799585, -34.71121800001066 ], [ -58.309313999941082, -34.71192600028462 ], [ -58.309227999572499, -34.71201199975394 ], [ -58.308327000290774, -34.712934000004054 ], [ -58.307490000363202, -34.713793000046849 ], [ -58.308369999575802, -34.714543999605837 ], [ -58.307426000109785, -34.715316000133271 ], [ -58.306438999560157, -34.716088999807425 ], [ -58.305451999909849, -34.716882999550762 ], [ -58.304830000004472, -34.716368000083094 ], [ -58.304335999706552, -34.715939000084745 ], [ -58.303262999687661, -34.715036999857602 ], [ -58.302319000221644, -34.715852999716105 ], [ -58.301418000040655, -34.716625000243539 ], [ -58.300494999744387, -34.717418999986819 ], [ -58.299530000209302, -34.718255999914447 ], [ -58.29860699991309, -34.719070999726796 ], [ -58.297663000447074, -34.719865000369452 ], [ -58.296696999966514, -34.720681000227955 ], [ -58.295816999854594, -34.721431999786944 ], [ -58.295151999764926, -34.722011000407292 ], [ -58.294486999675257, -34.722890999619892 ], [ -58.293907999954172, -34.723685000262492 ], [ -58.29330700011792, -34.72452200019012 ], [ -58.294293999768229, -34.725015000441886 ], [ -58.293649999747629, -34.725915999723554 ], [ -58.293005999727086, -34.726795999835474 ], [ -58.292427000006001, -34.727569000409005 ], [ -58.291848000284972, -34.728363000152285 ], [ -58.291183000195247, -34.72926400033333 ], [ -58.290582000358995, -34.730122000330027 ], [ -58.289980999623367, -34.730980000326724 ], [ -58.289379999787116, -34.731839000369519 ], [ -58.288757999881739, -34.732697000366215 ], [ -58.289830999900687, -34.733211999833884 ], [ -58.290903999919635, -34.733727000200872 ], [ -58.290280999968161, -34.734542000013221 ], [ -58.289680000131852, -34.735401000056072 ], [ -58.289015000042184, -34.73630200023706 ], [ -58.288372000067682, -34.737160000233757 ], [ -58.28777100023143, -34.73797600009226 ], [ -58.287148000279956, -34.738790999904666 ], [ -58.286505000305453, -34.739648999901362 ], [ -58.285882000353979, -34.740464999759865 ], [ -58.285239000379534, -34.741343999825688 ], [ -58.284637999643905, -34.742202999868482 ], [ -58.284058999922877, -34.743017999680887 ], [ -58.283435999971402, -34.743897999792807 ], [ -58.284508999990294, -34.744391000044573 ], [ -58.285538999824951, -34.744864000273367 ], [ -58.286505000305453, -34.745335999556687 ], [ -58.287578000324402, -34.745785999624161 ], [ -58.287170000395179, -34.746686999805149 ], [ -58.286912000188636, -34.747396000125264 ], [ -58.28689100011951, -34.747481000447749 ], [ -58.28665500002819, -34.74825400012196 ], [ -58.28641899993687, -34.748982999565726 ], [ -58.286375999752522, -34.749112000118657 ], [ -58.286160999730328, -34.749734000024034 ], [ -58.285946999754174, -34.750506999698246 ], [ -58.285474999571534, -34.751150999718845 ], [ -58.284937999988642, -34.751751000408319 ], [ -58.284487999921225, -34.752331000175502 ], [ -58.284079999991945, -34.752888999827462 ], [ -58.283972999554237, -34.753017000334239 ], [ -58.283607999809306, -34.753488999617616 ], [ -58.283522000339985, -34.753597000101422 ], [ -58.283050000157345, -34.754219000006799 ], [ -58.282621000158997, -34.754776999658759 ], [ -58.282577999974706, -34.75481999984305 ], [ -58.2821489999763, -34.755378000394387 ], [ -58.28159100032434, -34.756085999769027 ], [ -58.281398000417369, -34.756365000044696 ], [ -58.2804750001211, -34.757565999671101 ], [ -58.280025000053683, -34.758124000222381 ], [ -58.279573999940112, -34.758660999805272 ], [ -58.277771000431301, -34.761020999819266 ], [ -58.277556999555827, -34.761279000025809 ], [ -58.276998999903867, -34.762008000368894 ], [ -58.276526999721227, -34.762609000205146 ], [ -58.276161999976296, -34.763081000387842 ], [ -58.276033000322684, -34.763231000110522 ], [ -58.275517999955696, -34.763918000315414 ], [ -58.274682000074222, -34.764969000219139 ], [ -58.273845000146594, -34.76606400035331 ], [ -58.273244000310342, -34.766835999981367 ], [ -58.272793000196771, -34.76741599974855 ], [ -58.272364000198422, -34.767952000184607 ], [ -58.271914000130948, -34.768530999905693 ], [ -58.271634999855337, -34.768874999581499 ], [ -58.271355999579669, -34.769088999557653 ], [ -58.270818999996834, -34.769647000108932 ], [ -58.270303999629846, -34.770204999760892 ], [ -58.269702999793537, -34.770805999597144 ], [ -58.269295999910412, -34.771255999664618 ], [ -58.268738000258452, -34.771899999685218 ], [ -58.26828700014488, -34.772458000236497 ], [ -58.267837000077463, -34.773059000072749 ], [ -58.267364999894767, -34.773637999793834 ], [ -58.266785000127641, -34.774389000252143 ], [ -58.266592000220612, -34.774625000343462 ], [ -58.265819999693178, -34.775719999578257 ], [ -58.265175999672579, -34.776577999574954 ], [ -58.264918000365356, -34.776921000104039 ], [ -58.264767999743356, -34.777157000195359 ], [ -58.264081000437784, -34.777994000122987 ], [ -58.263416000348116, -34.778744999681919 ], [ -58.26260099963639, -34.779645999862964 ], [ -58.261893000261693, -34.780461999721467 ], [ -58.261077000403191, -34.781406000086804 ], [ -58.260526000174707, -34.782074000314822 ], [ -58.260448000175018, -34.782168000153035 ], [ -58.260448000175018, -34.782168000153035 ], [ -58.259875999877465, -34.782093000291695 ], [ -58.259424999763894, -34.782135000429889 ], [ -58.258910000296225, -34.782392999737112 ], [ -58.258460000228808, -34.782887000034975 ], [ -58.258158999837917, -34.783229999664684 ], [ -58.257901999677529, -34.783401000355866 ], [ -58.2570649997499, -34.783766000100798 ], [ -58.255969999615729, -34.784366999937049 ], [ -58.255048000264935, -34.784882000304037 ], [ -58.256012999800078, -34.785418999886872 ], [ -58.255262000241089, -34.786211999584054 ], [ -58.255154999803381, -34.786363000252209 ], [ -58.254640000335712, -34.786083999976597 ], [ -58.254447000428684, -34.785997999607957 ], [ -58.254081999784432, -34.785762000415957 ], [ -58.253845999693112, -34.785526000324637 ], [ -58.252343999675816, -34.784689000397009 ], [ -58.251657000370244, -34.784323999752758 ], [ -58.250992000280576, -34.783981000122992 ], [ -58.250433999729239, -34.783658999663032 ], [ -58.248352999990914, -34.782585999644141 ], [ -58.247581000362857, -34.782156999645792 ], [ -58.246979999627229, -34.781814000016027 ], [ -58.24655099962888, -34.781598999993832 ], [ -58.246036000161212, -34.781319999718164 ], [ -58.245563999978572, -34.781083999626844 ], [ -58.245305999772029, -34.780954999973233 ], [ -58.244748000120069, -34.780654999628496 ], [ -58.244534000143972, -34.780525999974884 ], [ -58.243975999592692, -34.780225999630147 ], [ -58.243740000400635, -34.780096999976536 ], [ -58.243074000264869, -34.779732000231604 ], [ -58.242709999666715, -34.779539000324576 ], [ -58.241829999554795, -34.779067000141879 ], [ -58.241315000087127, -34.778787999866267 ], [ -58.240907000157904, -34.778551999774947 ], [ -58.240627999882236, -34.778423000121336 ], [ -58.239533999794219, -34.777801000215959 ], [ -58.238224999683951, -34.777070999826719 ], [ -58.236937999688905, -34.776405999737051 ], [ -58.236830000104362, -34.776342000382954 ], [ -58.235564000178442, -34.775719999578257 ], [ -58.235328000087065, -34.775590999924646 ], [ -58.234727000250814, -34.775248000294937 ], [ -58.233975999792506, -34.774818000250491 ], [ -58.233182000049226, -34.774411000367309 ], [ -58.232410000421169, -34.77398200036896 ], [ -58.231572999594221, -34.773531000255389 ], [ -58.231316000333095, -34.773401999702457 ], [ -58.230928999573621, -34.77318799972636 ], [ -58.230200000129855, -34.772800999866206 ], [ -58.230028000291952, -34.77271600044304 ], [ -58.228632999813044, -34.771986000053801 ], [ -58.227753999747222, -34.771513999871161 ], [ -58.227496000440055, -34.771428000401841 ], [ -58.226810000281262, -34.771062999757589 ], [ -58.22612300007637, -34.770676999943532 ], [ -58.225737000262313, -34.770440999852212 ], [ -58.224813999966102, -34.769968999669572 ], [ -58.224621000059074, -34.769862000131184 ], [ -58.223440999602417, -34.769261000294875 ], [ -58.222667999928206, -34.768874999581499 ], [ -58.222067000091954, -34.768574000089984 ], [ -58.221959999654246, -34.768509999836567 ], [ -58.22090899975052, -34.767931000115539 ], [ -58.219856999800641, -34.767351000348356 ], [ -58.219492000055709, -34.767178999611076 ], [ -58.218762999712624, -34.766771999727951 ], [ -58.217647000408704, -34.766191999960768 ], [ -58.216510000136338, -34.765592000170614 ], [ -58.215437000117447, -34.765033999619334 ], [ -58.214343000029373, -34.764453999852151 ], [ -58.213591999571065, -34.764046999969025 ], [ -58.213313000194773, -34.763896000200191 ], [ -58.212283000360117, -34.763338999695009 ], [ -58.211466999602294, -34.762908999650563 ], [ -58.209557999701872, -34.763745999578191 ], [ -58.209320999564454, -34.764090000153317 ], [ -58.20837600005234, -34.764546999644267 ], [ -58.207326000194712, -34.765054999688459 ], [ -58.207090000103392, -34.764861999781431 ], [ -58.204254999768409, -34.766248999891388 ], [ -58.202089999753639, -34.767308000164007 ], [ -58.202004000284319, -34.76733000027923 ], [ -58.201875999777542, -34.767393999633327 ], [ -58.200438000013662, -34.768101999907344 ], [ -58.198892999812074, -34.768853000365652 ], [ -58.199793999993062, -34.769324999648973 ], [ -58.200180999853217, -34.769539999671224 ], [ -58.201146000287622, -34.770032999922989 ], [ -58.200288000290925, -34.771105999941881 ], [ -58.201188999572651, -34.7716000002398 ], [ -58.202155000053153, -34.77207200042244 ], [ -58.203077000303267, -34.772543999705761 ], [ -58.20397899963109, -34.773015999888457 ], [ -58.204621999605536, -34.773359000417486 ], [ -58.204922999996427, -34.773531000255389 ], [ -58.204343000229244, -34.774281999814377 ], [ -58.203700000254742, -34.775096999626783 ], [ -58.203056000234199, -34.775933999554411 ], [ -58.202391000144473, -34.776792999597205 ], [ -58.20221900030657, -34.776856999850622 ], [ -58.200630999920691, -34.777393000286679 ], [ -58.199000000249782, -34.777994000122987 ], [ -58.198635999651628, -34.777329000033262 ], [ -58.198270999906697, -34.776641999828371 ], [ -58.19788500009264, -34.775933999554411 ], [ -58.19812100018396, -34.775848000085091 ], [ -58.19764900000132, -34.775568999809423 ], [ -58.197069000234137, -34.775269000364005 ], [ -58.196339999891052, -34.774882999650686 ], [ -58.195201999572589, -34.774260999745309 ], [ -58.195310000056395, -34.77421799956096 ], [ -58.195909999846549, -34.77342399981768 ], [ -58.196510999682857, -34.772607999959178 ], [ -58.197197999887749, -34.771749999962481 ], [ -58.197862999977417, -34.770891999965784 ], [ -58.198441999698503, -34.770141000406795 ], [ -58.198270999906697, -34.770055000038155 ], [ -58.197369999725652, -34.769582999855515 ], [ -58.19700499998072, -34.769346999764196 ], [ -58.195996000215189, -34.768853000365652 ], [ -58.195524000032549, -34.768617000274276 ], [ -58.194902000127172, -34.769110999672876 ], [ -58.194128999553641, -34.769711000362349 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 67.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.812939960999927, -34.505508781999936 ], [ -58.812604368999928, -34.505830565999929 ], [ -58.812417596999921, -34.506006079999906 ], [ -58.812051690999908, -34.506391433999909 ], [ -58.811948785999903, -34.506513520999931 ], [ -58.811868321999953, -34.506458711999926 ], [ -58.810835014999952, -34.505754868999929 ], [ -58.809805161999918, -34.505061029999922 ], [ -58.809702958999935, -34.505166344999907 ], [ -58.80928679099992, -34.505595186999926 ], [ -58.808783663999918, -34.506106452999916 ], [ -58.808276724999928, -34.506617720999941 ], [ -58.807756385999937, -34.507136916999912 ], [ -58.807233880999945, -34.507683140999916 ], [ -58.8067343969999, -34.508210263999956 ], [ -58.806219710999926, -34.508725942999945 ], [ -58.805705023999906, -34.509241619999955 ], [ -58.805182587999923, -34.509776390999946 ], [ -58.805063057999917, -34.509695820999923 ], [ -58.804209124999943, -34.509120223999957 ], [ -58.802832673999944, -34.508177926999906 ], [ -58.80162729999995, -34.50735771199993 ], [ -58.801555476999908, -34.50744224999994 ], [ -58.801169744999925, -34.507896267999911 ], [ -58.80113515499994, -34.507934464999948 ], [ -58.800547653999899, -34.508495993999929 ], [ -58.80001380899995, -34.50902313499995 ], [ -58.799525892999952, -34.509531162999906 ], [ -58.798477087999913, -34.510619796999947 ], [ -58.7979662649999, -34.511127836999947 ], [ -58.797931743999925, -34.511154578999935 ], [ -58.797444055999904, -34.511624428999937 ], [ -58.79741717099995, -34.511651167999958 ], [ -58.79689880299992, -34.51214393999993 ], [ -58.796864258999904, -34.512174500999947 ], [ -58.796353458999931, -34.512678722999908 ], [ -58.79571957099995, -34.513335723999944 ], [ -58.795170180999946, -34.513908686999912 ], [ -58.794570814999929, -34.514538943999924 ], [ -58.794059831999903, -34.515073708999921 ], [ -58.793552574999921, -34.515623742999935 ], [ -58.793068317999939, -34.516158494999956 ], [ -58.792607172999908, -34.516658872999926 ], [ -58.791185699999915, -34.518137120999938 ], [ -58.790659512999923, -34.518660440999952 ], [ -58.790413679999915, -34.518908728999918 ], [ -58.790144803999908, -34.519179935999944 ], [ -58.789879766999945, -34.519447322999952 ], [ -58.789568595999924, -34.519768184999919 ], [ -58.789338011999916, -34.520020282999951 ], [ -58.78948493799993, -34.520119017999946 ], [ -58.789620749999926, -34.520210283999916 ], [ -58.79053584299993, -34.520825229999957 ], [ -58.791677802999914, -34.521590250999907 ], [ -58.791488055999935, -34.521783693999907 ], [ -58.791144553999914, -34.522133884999903 ], [ -58.790731298999901, -34.522575913999958 ], [ -58.790611211999931, -34.522704361999956 ], [ -58.790043517999948, -34.523302895999905 ], [ -58.789434466999921, -34.523904773999902 ], [ -58.788831314999925, -34.524521942999911 ], [ -58.788254734999953, -34.525120081999944 ], [ -58.787670230999936, -34.525727153999924 ], [ -58.787093135999953, -34.526334997999925 ], [ -58.786554073999923, -34.526927482999952 ], [ -58.786079572999938, -34.52745878099995 ], [ -58.785936306999929, -34.527351455999906 ], [ -58.78493891699992, -34.526604277999922 ], [ -58.783789137999918, -34.525783038999919 ], [ -58.78372020799992, -34.525859320999928 ], [ -58.78359903899991, -34.525993413999913 ], [ -58.783340468999938, -34.526303208999934 ], [ -58.782983139999942, -34.526662803999955 ], [ -58.782777823999936, -34.526896120999936 ], [ -58.782420429999945, -34.527297738999948 ], [ -58.782131924999931, -34.527656991999947 ], [ -58.781869890999928, -34.527909368999929 ], [ -58.781784382999945, -34.527847109999925 ], [ -58.780781092999916, -34.527116607999915 ], [ -58.780522598999937, -34.527376739999909 ], [ -58.780458653999915, -34.52700626099994 ], [ -58.780345433999912, -34.526931307999916 ], [ -58.779848220999952, -34.526602146999949 ], [ -58.779594188999909, -34.52643440199995 ], [ -58.778672888999949, -34.525801497999907 ], [ -58.777702365999914, -34.525092254999947 ], [ -58.776754497999946, -34.524459385999933 ], [ -58.775772297999936, -34.523937352999951 ], [ -58.775074533999941, -34.523556278999934 ], [ -58.774407104999909, -34.523194266999951 ], [ -58.773686562999899, -34.522817044999954 ], [ -58.773003981999921, -34.52243595199991 ], [ -58.772268305999944, -34.522028187999922 ], [ -58.771581898999955, -34.521666201999949 ], [ -58.770914450999953, -34.521315649999906 ], [ -58.770197711999913, -34.520934602999944 ], [ -58.769530281999948, -34.520572589999915 ], [ -58.768574643999955, -34.520054339999945 ], [ -58.768516720999912, -34.52012868199995 ], [ -58.767707556999937, -34.521167224999942 ], [ -58.766874698999914, -34.522234220999906 ], [ -58.766007600999899, -34.523354745999939 ], [ -58.764828657999942, -34.52487300699994 ], [ -58.764752006999913, -34.524847021999904 ], [ -58.764140995999924, -34.524639883999953 ], [ -58.76386657899991, -34.524475091999932 ], [ -58.763129733999904, -34.524045836999903 ], [ -58.762757515999908, -34.523838849999947 ], [ -58.762460577999946, -34.523651086999905 ], [ -58.762099705999901, -34.523432646999936 ], [ -58.761727601999951, -34.523195071999908 ], [ -58.761430678999943, -34.523003483999958 ], [ -58.760983121999914, -34.522792569999922 ], [ -58.76065207399995, -34.522658287999946 ], [ -58.759869570999911, -34.522347495999952 ], [ -58.758601878999912, -34.521814266999911 ], [ -58.757409452999923, -34.521304083999951 ], [ -58.756235837999952, -34.520801572999915 ], [ -58.756028904999937, -34.520724815999927 ], [ -58.754978962999928, -34.520243579999942 ], [ -58.754358888999946, -34.519999362999954 ], [ -58.754006507999918, -34.519904059999931 ], [ -58.751576253999929, -34.518896551999944 ], [ -58.751389316999905, -34.518755870999939 ], [ -58.751205713999923, -34.518617699999936 ], [ -58.75102981099991, -34.518518419999907 ], [ -58.751029022999944, -34.518518061999941 ], [ -58.750306632999923, -34.518190157999925 ], [ -58.749874291999902, -34.517987843999947 ], [ -58.749021093999943, -34.517587032999927 ], [ -58.748734115999923, -34.517457254999954 ], [ -58.748056863999921, -34.517148074999909 ], [ -58.747593897999934, -34.516934314999958 ], [ -58.747020090999911, -34.51664798999991 ], [ -58.746503654999913, -34.516392209999935 ], [ -58.745841641999903, -34.516102136999905 ], [ -58.745363308999913, -34.515892215999941 ], [ -58.744632374999924, -34.51557925599991 ], [ -58.743928250999943, -34.515273922999938 ], [ -58.743427008999902, -34.515044898999918 ], [ -58.742627345999949, -34.514674634999949 ], [ -58.74140260799993, -34.514174713999921 ], [ -58.740487990999952, -34.513781603999917 ], [ -58.740078345999905, -34.513636634999955 ], [ -58.739454478999903, -34.513384772999927 ], [ -58.738451825999903, -34.512957319999941 ], [ -58.736936124999943, -34.512354394999932 ], [ -58.735925564999945, -34.511969017999945 ], [ -58.735676798999918, -34.511865976999957 ], [ -58.734964937999905, -34.511572122999951 ], [ -58.734356393999917, -34.511324070999933 ], [ -58.734004288999927, -34.511179052999921 ], [ -58.733227214999943, -34.510885255999938 ], [ -58.732204985999942, -34.510530714999902 ], [ -58.731928631999949, -34.510436985999945 ], [ -58.731204516999924, -34.510179380999944 ], [ -58.730503799999951, -34.509933446999923 ], [ -58.729697630999908, -34.509621502999948 ], [ -58.728548381999929, -34.509117858999957 ], [ -58.728536326999915, -34.50911257599995 ], [ -58.728524662999916, -34.509107463999953 ], [ -58.727399026999933, -34.508620807999932 ], [ -58.727338172999907, -34.508590985999945 ], [ -58.72626198599994, -34.508130472999937 ], [ -58.725242883999954, -34.507711311999913 ], [ -58.724459494999905, -34.507369443999949 ], [ -58.723634330999914, -34.507031947999906 ], [ -58.723280691999946, -34.506885300999954 ], [ -58.723025907999954, -34.506779646999917 ], [ -58.723003097999936, -34.506772289999958 ], [ -58.722944840999901, -34.506742853999924 ], [ -58.722877580999921, -34.506708867999919 ], [ -58.722828141999912, -34.506686550999916 ], [ -58.722146615999918, -34.50637772999994 ], [ -58.721419720999904, -34.506071977999909 ], [ -58.72134984999991, -34.506042587999957 ], [ -58.720621188999928, -34.505690702999914 ], [ -58.720553097999925, -34.505657819999954 ], [ -58.71972915899994, -34.505274836999945 ], [ -58.719725698999923, -34.505273228999954 ], [ -58.719683561999943, -34.505254384999944 ], [ -58.719520072999899, -34.505177 ], [ -58.719484373999933, -34.505160101999934 ], [ -58.719482980999942, -34.505159646999914 ], [ -58.719461389999935, -34.505152599999917 ], [ -58.718419474999905, -34.504681448999918 ], [ -58.718365845999926, -34.504658854999946 ], [ -58.718070890999911, -34.504530767999938 ], [ -58.718032585999936, -34.504511902999923 ], [ -58.717025141999954, -34.504067274999954 ], [ -58.717009821999909, -34.504055910999909 ], [ -58.716645928999924, -34.503851874999953 ], [ -58.716509014999929, -34.503785093999909 ], [ -58.716243723999924, -34.503655695999953 ], [ -58.715599157999918, -34.503368307999949 ], [ -58.715466117999938, -34.503308989999937 ], [ -58.715435471999911, -34.503297714999917 ], [ -58.715393751999954, -34.503277650999905 ], [ -58.715270758999907, -34.503218502999914 ], [ -58.715220960999943, -34.503195885999958 ], [ -58.71468086099992, -34.502920338999957 ], [ -58.713887929999942, -34.502569904999916 ], [ -58.713861116999908, -34.50255478999992 ], [ -58.713792502999922, -34.502493325999922 ], [ -58.712938073999908, -34.501727929999902 ], [ -58.712394220999954, -34.501192818999925 ], [ -58.712045799999942, -34.500904472999935 ], [ -58.711898020999911, -34.500773200999902 ], [ -58.710599540999908, -34.499619758999927 ], [ -58.7104965179999, -34.499516530999927 ], [ -58.709355606999907, -34.49841540299991 ], [ -58.708538992999934, -34.497681286999921 ], [ -58.707504977999918, -34.496614608999948 ], [ -58.706810472999905, -34.495991373999914 ], [ -58.706806660999916, -34.495983728999931 ], [ -58.706638754999915, -34.495838432999903 ], [ -58.705612278999922, -34.494894035999948 ], [ -58.705010381999955, -34.494308940999929 ], [ -58.704845316999922, -34.494148483999936 ], [ -58.704051602999925, -34.493429663999905 ], [ -58.703269304999935, -34.492744160999905 ], [ -58.702152363999915, -34.491786518999902 ], [ -58.7019419209999, -34.491666287999919 ], [ -58.70117582499995, -34.491228598999953 ], [ -58.700155837999944, -34.490865070999916 ], [ -58.698976499999901, -34.490520935999939 ], [ -58.698953759999938, -34.490520984999932 ], [ -58.696707646999926, -34.48953912199994 ], [ -58.696692555999903, -34.489531533999923 ], [ -58.694036552999933, -34.488419894999936 ], [ -58.693294415999901, -34.488109782999913 ], [ -58.692714321999915, -34.487859985999933 ], [ -58.692236365999918, -34.487654171999907 ], [ -58.691528973999937, -34.487324861999923 ], [ -58.691520796999953, -34.487321054999938 ], [ -58.691185683999947, -34.48708741899992 ], [ -58.69015059599991, -34.486700782999947 ], [ -58.689572061999911, -34.486436589999926 ], [ -58.689017518999947, -34.486202129999924 ], [ -58.687996430999931, -34.485770414999934 ], [ -58.687280853999937, -34.485433464999915 ], [ -58.686569119999945, -34.485115674999918 ], [ -58.686515649999933, -34.485091462999947 ], [ -58.685157051999909, -34.484476258999905 ], [ -58.6846714429999, -34.48425722199994 ], [ -58.683866783999918, -34.483894276999933 ], [ -58.683487095999908, -34.483707171999924 ], [ -58.682740076999949, -34.483339051999906 ], [ -58.681246795999925, -34.482631296999955 ], [ -58.681024794999928, -34.482527120999919 ], [ -58.680791747999933, -34.482417007999913 ], [ -58.6806573369999, -34.482353499999931 ], [ -58.680391239999949, -34.482210541999905 ], [ -58.678712125999937, -34.481308454999919 ], [ -58.677448504999916, -34.480629752999903 ], [ -58.676342018999947, -34.480058937999956 ], [ -58.675480549999918, -34.479611553999916 ], [ -58.675248808999925, -34.47951589999991 ], [ -58.675143834999915, -34.479472570999917 ], [ -58.674787617999925, -34.479271455999935 ], [ -58.674577026999941, -34.479152559999932 ], [ -58.674021281999899, -34.478767261999906 ], [ -58.673537538999938, -34.478541905999919 ], [ -58.673516047999954, -34.478531893999957 ], [ -58.673434442999906, -34.478529605999938 ], [ -58.673335911999914, -34.478526842999941 ], [ -58.672630373999937, -34.478507056999945 ], [ -58.672095585999955, -34.47843682599995 ], [ -58.671797611999921, -34.478393965999942 ], [ -58.670960466999929, -34.478289478999955 ], [ -58.670095852999907, -34.478145743999903 ], [ -58.669101435999949, -34.478029315999947 ], [ -58.666726776999951, -34.477712608999923 ], [ -58.666571211999951, -34.47762767699993 ], [ -58.665190372999916, -34.476873802999933 ], [ -58.664754176999907, -34.476630275999923 ], [ -58.663865522999913, -34.476165610999942 ], [ -58.663694240999916, -34.476040457999943 ], [ -58.663575346999949, -34.475983251999935 ], [ -58.662794143999918, -34.475568198999952 ], [ -58.662457152999934, -34.475389230999951 ], [ -58.662220877999914, -34.475226050999936 ], [ -58.662164030999918, -34.475184063999905 ], [ -58.662220877999914, -34.475226050999936 ], [ -58.662622700999918, -34.475121875999946 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 66.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.460421000328836, -34.779992999677177 ], [ -58.459175000425887, -34.779325000348422 ], [ -58.459089000057247, -34.77919599979549 ], [ -58.459089000057247, -34.779088000211004 ], [ -58.459667999778333, -34.778294999614502 ], [ -58.459882999800584, -34.778059000422502 ], [ -58.460354999983224, -34.777393000286679 ], [ -58.460354999983224, -34.777114000011068 ], [ -58.460118999891904, -34.776900000034914 ], [ -58.459775000216041, -34.776813999666331 ], [ -58.459539000124721, -34.776943000219262 ], [ -58.459089000057247, -34.777457999686874 ], [ -58.458637999943676, -34.778122999776599 ], [ -58.458358999668064, -34.778423000121336 ], [ -58.458102000406939, -34.77848800042085 ], [ -58.457929999669716, -34.77848800042085 ], [ -58.457779999946979, -34.778423000121336 ], [ -58.456106000091779, -34.777544000055514 ], [ -58.453917999915745, -34.776427999852274 ], [ -58.453344000425261, -34.776128999553634 ], [ -58.451492999602237, -34.775161999926297 ], [ -58.450633999559386, -34.774710999812726 ], [ -58.450494000297851, -34.774641000181987 ], [ -58.448188000076129, -34.773488000071097 ], [ -58.446859999988988, -34.772790000258283 ], [ -58.444390000298256, -34.771491999755938 ], [ -58.444171000091558, -34.771370999571957 ], [ -58.444003999584879, -34.771277999779841 ], [ -58.441686999755177, -34.770119000291572 ], [ -58.442115999753526, -34.769560999740293 ], [ -58.442973999750222, -34.768424000367304 ], [ -58.443810999677851, -34.76733000027923 ], [ -58.444690999789771, -34.766257000260282 ], [ -58.445505999602176, -34.765184000241391 ], [ -58.446363999598873, -34.764068000038151 ], [ -58.447180000356695, -34.762951999834854 ], [ -58.447995000169101, -34.761857999746837 ], [ -58.448832000096672, -34.76076399965882 ], [ -58.447715999893433, -34.760140999707346 ], [ -58.446599999690193, -34.759561999986261 ], [ -58.445442000248079, -34.759004000334301 ], [ -58.444390000298256, -34.758467999898244 ], [ -58.442952999681154, -34.757717000339255 ], [ -58.443788999562628, -34.756601000136016 ], [ -58.444647999605479, -34.755484999932776 ], [ -58.445420000132856, -34.754347999660411 ], [ -58.44627900017565, -34.753253000425559 ], [ -58.445569999855593, -34.752888999827462 ], [ -58.445399000063787, -34.752803000358142 ], [ -58.444904999765868, -34.752545000151599 ], [ -58.444518999951867, -34.752159000337542 ], [ -58.443617999770822, -34.751214999972206 ], [ -58.442845000096611, -34.750400000159857 ], [ -58.442801999912319, -34.750378000044634 ], [ -58.441987000099914, -34.749884999792869 ], [ -58.441214999572537, -34.749433999679297 ], [ -58.440441999898326, -34.749004999680949 ], [ -58.4393909999946, -34.748424999913766 ], [ -58.438210000391166, -34.747738999754972 ], [ -58.437116000303149, -34.747052000449401 ], [ -58.436000000099909, -34.746408000428858 ], [ -58.435313999941116, -34.746021999715481 ], [ -58.434025999899916, -34.745271000156492 ], [ -58.432738999904871, -34.744498999629059 ], [ -58.432287999791299, -34.745035000065172 ], [ -58.432138000068619, -34.745206999903075 ], [ -58.431323000256214, -34.745314000340784 ], [ -58.430528999613614, -34.745442999994395 ], [ -58.430057000330237, -34.745507000247812 ], [ -58.429778000054625, -34.744413000159796 ], [ -58.429734999870334, -34.743962000046224 ], [ -58.429863000377111, -34.743619000416516 ], [ -58.429927999777306, -34.743446999679236 ], [ -58.430250000237265, -34.74303999979611 ], [ -58.430742999589711, -34.742373999660288 ], [ -58.431171999588059, -34.741838000123551 ], [ -58.431643999770756, -34.741216000218174 ], [ -58.432073999815202, -34.740635999551671 ], [ -58.432523999882676, -34.740077999899711 ], [ -58.433018000180539, -34.739455999994334 ], [ -58.433317999625956, -34.739113000364625 ], [ -58.433575999832499, -34.738747999720374 ], [ -58.434949000196184, -34.736130000399157 ], [ -58.435764000008533, -34.735121999780404 ], [ -58.436150999868687, -34.734607000312792 ], [ -58.436644000120452, -34.733984000361261 ], [ -58.437458999932858, -34.732932999558216 ], [ -58.438295999860486, -34.731817000254296 ], [ -58.43915499990328, -34.730679999981987 ], [ -58.439969999715686, -34.729629000078262 ], [ -58.440827999712383, -34.728533999944091 ], [ -58.441365000194537, -34.727825999670131 ], [ -58.441837000377234, -34.727097000226308 ], [ -58.442565999820999, -34.726173999930097 ], [ -58.443511000232434, -34.72499400037276 ], [ -58.443961000299907, -34.724392999637189 ], [ -58.444432999583228, -34.723834999985229 ], [ -58.44524900034105, -34.722805000150572 ], [ -58.446064000153456, -34.721775000315972 ], [ -58.448596000005352, -34.718556000259184 ], [ -58.449582999655661, -34.71731200044843 ], [ -58.450570000205289, -34.716066999692259 ], [ -58.451450000317209, -34.714909000250145 ], [ -58.451792999946974, -34.714607999859254 ], [ -58.452544000405226, -34.713706999678266 ], [ -58.452952000334506, -34.713213000279723 ], [ -58.452973000403631, -34.713084999772889 ], [ -58.452930000219283, -34.713020000372694 ], [ -58.452523000336157, -34.71280600039654 ], [ -58.452072000222586, -34.7133640000485 ], [ -58.451084999672958, -34.714651000043546 ], [ -58.450419999583289, -34.714286000298614 ], [ -58.449367999633409, -34.713706999678266 ], [ -58.449196999841604, -34.713621000208946 ], [ -58.448295999660616, -34.713105999841957 ], [ -58.447908999800461, -34.71289199986586 ], [ -58.447351000148501, -34.71257000030522 ], [ -58.446300000244776, -34.711968999569649 ], [ -58.446107000337747, -34.71186200003126 ], [ -58.444432999583228, -34.711025000103632 ], [ -58.443747000323754, -34.7106600003587 ], [ -58.442631000120514, -34.710101999807421 ], [ -58.441579000170691, -34.709523000086335 ], [ -58.440506000151743, -34.708965000434375 ], [ -58.439434000178949, -34.708384999767873 ], [ -58.438252999676138, -34.707741999793427 ], [ -58.437073000118801, -34.707118999841953 ], [ -58.436472000282549, -34.70679800032741 ], [ -58.435291999825893, -34.706175000375936 ], [ -58.434112000268556, -34.705552999571239 ], [ -58.432909999696676, -34.704930999665862 ], [ -58.431709000070271, -34.704286999645262 ], [ -58.430507000397711, -34.703664999739885 ], [ -58.429305999871929, -34.703042999834508 ], [ -58.428125000268494, -34.702419999883034 ], [ -58.427460000178826, -34.702077000253325 ], [ -58.426880999558421, -34.701754999793366 ], [ -58.425678999885918, -34.701132999887989 ], [ -58.424671000166484, -34.700596000305154 ], [ -58.424584999797844, -34.700553000120806 ], [ -58.424499000328581, -34.700510999982612 ], [ -58.423662000400952, -34.70005999986904 ], [ -58.422740000150839, -34.699545000401429 ], [ -58.421773999670336, -34.69903000003444 ], [ -58.420679999582262, -34.698429000198132 ], [ -58.421302000386959, -34.697677999739881 ], [ -58.421860000038919, -34.697012999650156 ], [ -58.422375000405907, -34.696305000275515 ], [ -58.423039999596256, -34.695425000163596 ], [ -58.423598000147535, -34.694652999636162 ], [ -58.424284000306329, -34.693665999985853 ], [ -58.425013999796192, -34.692678000289447 ], [ -58.425701000001084, -34.691712999855042 ], [ -58.4264090002751, -34.690726000204677 ], [ -58.427588999832437, -34.691283999856637 ], [ -58.428276000037329, -34.690297000206328 ], [ -58.428984000311345, -34.6893099996567 ], [ -58.427824999923757, -34.688729999889517 ], [ -58.428533000197774, -34.687743000239209 ], [ -58.429262999687637, -34.686734999620512 ], [ -58.430014000145945, -34.685704999785855 ], [ -58.430764999704934, -34.684652999836032 ], [ -58.431516000163242, -34.683623000001433 ], [ -58.432266999722231, -34.682572000097707 ], [ -58.433018000180539, -34.681520000147827 ], [ -58.433296999556831, -34.681134000333827 ], [ -58.433553999717276, -34.680790999804742 ], [ -58.43385500010811, -34.680382999875519 ], [ -58.432502999813551, -34.680018000130531 ], [ -58.432159000137688, -34.679910999692822 ], [ -58.431193999703282, -34.679674999601502 ], [ -58.431108000233962, -34.679632000316531 ], [ -58.429992000030722, -34.679331999971794 ], [ -58.429884999593014, -34.679288999787445 ], [ -58.428726000104803, -34.678988000295931 ], [ -58.428639999736163, -34.678946000157737 ], [ -58.427460000178826, -34.678623999697777 ], [ -58.426194000252849, -34.678280000021914 ], [ -58.425013999796192, -34.677979999677177 ], [ -58.424928000326929, -34.677957999562011 ], [ -58.423662000400952, -34.677614999932246 ], [ -58.422417999690879, -34.677314999587509 ], [ -58.422481999944296, -34.677250000187314 ], [ -58.421302000386959, -34.676993000026869 ], [ -58.421302000386959, -34.677185999933897 ], [ -58.42119499994925, -34.678130000299234 ], [ -58.420485999629136, -34.678022999861525 ], [ -58.419906999908051, -34.677937000392205 ], [ -58.419434999725411, -34.677786999770206 ], [ -58.419198999634091, -34.677550999678829 ], [ -58.418576999728714, -34.676949999842577 ], [ -58.418019000076754, -34.676456000444034 ], [ -58.417717999685919, -34.67624199956856 ], [ -58.417481999594543, -34.67609199984588 ], [ -58.417117999895765, -34.67585599975456 ], [ -58.415615999878469, -34.675211999733961 ], [ -58.415272000202606, -34.675105000195572 ], [ -58.41501500004216, -34.675018999826932 ], [ -58.414392000090686, -34.674803999804681 ], [ -58.414070999676881, -34.674697000266292 ], [ -58.413683999816669, -34.674567999713361 ], [ -58.412890000073389, -34.674310999552915 ], [ -58.411731999731956, -34.673923999692761 ], [ -58.410679999782133, -34.673581000063052 ], [ -58.411066999642287, -34.673173000133829 ], [ -58.411882000354012, -34.672573000343675 ], [ -58.412676000097292, -34.671992999677173 ], [ -58.412160999730304, -34.671500000324727 ], [ -58.411453000355664, -34.67079200005071 ], [ -58.410679999782133, -34.670104999845819 ], [ -58.410679999782133, -34.670104999845819 ], [ -58.411495999640636, -34.669504000009567 ], [ -58.412332999568207, -34.66888200010419 ], [ -58.413105000095641, -34.668303000383105 ], [ -58.413963000092338, -34.667680000431631 ], [ -58.41477899995084, -34.667057999626934 ], [ -58.41557299969412, -34.666456999790682 ], [ -58.416408999575651, -34.665855999954374 ], [ -58.417567999963183, -34.664997999957677 ], [ -58.417633000262697, -34.664997999957677 ], [ -58.417503999709766, -34.664074999661466 ], [ -58.417418000240502, -34.663645999663117 ], [ -58.417225000333474, -34.662551999575101 ], [ -58.417182000149126, -34.662379999737141 ], [ -58.417032000426445, -34.661672000362501 ], [ -58.416731000035554, -34.660127000160912 ], [ -58.416645999713069, -34.659568999609576 ], [ -58.416538000128583, -34.658560999890199 ], [ -58.416494999944234, -34.657552000124667 ], [ -58.416494999944234, -34.656800999666359 ], [ -58.416451999759943, -34.654912999835005 ], [ -58.416538000128583, -34.654697999812811 ], [ -58.416473999875166, -34.653346999564349 ], [ -58.416473999875166, -34.652981999819417 ], [ -58.416473999875166, -34.65195199998476 ], [ -58.416367000336777, -34.65180200026208 ], [ -58.416237999783846, -34.651759000077732 ], [ -58.415294000317829, -34.651759000077732 ], [ -58.414477999560006, -34.65163000042412 ], [ -58.414178000114589, -34.651693999778217 ], [ -58.41398500020756, -34.651650999593926 ], [ -58.412697000166361, -34.651050999803772 ], [ -58.411453000355664, -34.650729000243132 ], [ -58.410722999966424, -34.650642999874492 ], [ -58.409693000131824, -34.650536000336103 ], [ -58.409606999763184, -34.650729000243132 ], [ -58.409199999880059, -34.651759000077732 ], [ -58.408791999950779, -34.652723999612874 ], [ -58.407418999587094, -34.651693999778217 ], [ -58.406838999819968, -34.651221999595577 ], [ -58.406239000029814, -34.6507500003122 ], [ -58.405466000355602, -34.650106000291657 ], [ -58.405209000195157, -34.649913000384629 ], [ -58.404586000243683, -34.649398000017641 ], [ -58.40347100008654, -34.648003999584887 ], [ -58.403106000341609, -34.64753200030151 ], [ -58.401775000116118, -34.64577200007767 ], [ -58.401860999585438, -34.645429000447962 ], [ -58.402226000229689, -34.643775999762511 ], [ -58.402375999952369, -34.643089999603774 ], [ -58.402525999675106, -34.642425000413368 ], [ -58.402655000228037, -34.641866999862089 ], [ -58.402718999582135, -34.641587999586477 ], [ -58.402976999788677, -34.64040800002914 ], [ -58.403256000064289, -34.63920600035658 ], [ -58.403320000317706, -34.638862999827552 ], [ -58.403535000339957, -34.637960999600409 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.404049999807626, -34.635515000117095 ], [ -58.404306999968014, -34.634377999844787 ], [ -58.404543000059391, -34.633155000103102 ], [ -58.403813999716249, -34.63287599982749 ], [ -58.403127000410677, -34.632596999551822 ], [ -58.401990000138369, -34.632146000337627 ], [ -58.400552000374489, -34.631587999786291 ], [ -58.399157999941679, -34.631115999603651 ], [ -58.397741000246924, -34.630623000251205 ], [ -58.39626100034485, -34.630343999975594 ], [ -58.396539999721142, -34.629184999588006 ], [ -58.396840000065936, -34.628069000284086 ], [ -58.397076000157256, -34.626910999942652 ], [ -58.397269000064284, -34.625751999555064 ], [ -58.397505000155604, -34.624464999560018 ], [ -58.397826999716244, -34.623219999703167 ], [ -58.399286000448512, -34.623392000440447 ], [ -58.400423999867655, -34.623542000163127 ], [ -58.400960000303712, -34.623606000416544 ], [ -58.401281999864352, -34.623670999816738 ], [ -58.402161999976272, -34.623756000139224 ], [ -58.402472999928989, -34.62247100023643 ], [ -58.402483000390134, -34.622425999959887 ], [ -58.402804999950774, -34.621138999964842 ], [ -58.403191999810929, -34.619829999854574 ], [ -58.403535000339957, -34.618843000204265 ], [ -58.404136000176209, -34.617039999796134 ], [ -58.404565000174557, -34.615817000054449 ], [ -58.404586000243683, -34.615745000331458 ], [ -58.404907999804323, -34.614636999597792 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.405638000193505, -34.612405000090632 ], [ -58.405852000169659, -34.611267999818267 ], [ -58.405959999754145, -34.610560000443627 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.405980999823271, -34.609593999963067 ], [ -58.406002999938437, -34.609357999871747 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.405293999618323, -34.599744999931772 ], [ -58.406303000283174, -34.599638000393384 ], [ -58.407183000395094, -34.599617000324258 ], [ -58.40868500041239, -34.599530999955618 ], [ -58.410594000312813, -34.599402000302007 ], [ -58.410316000083299, -34.598093000191739 ], [ -58.410229999714659, -34.596933999804207 ], [ -58.409606999763184, -34.595646999809162 ], [ -58.410981000172967, -34.595068000088077 ], [ -58.411151999964773, -34.595410999717842 ], [ -58.412632999913001, -34.594703000343145 ], [ -58.412610999797778, -34.594510000436117 ], [ -58.412290000283235, -34.594038000253477 ], [ -58.412761999566612, -34.593651000393322 ], [ -58.413556000209212, -34.593071999772917 ], [ -58.414392000090686, -34.592384999568026 ], [ -58.415185999833966, -34.59174199959358 ], [ -58.415979999577303, -34.591140999757272 ], [ -58.416989000242154, -34.590324999898769 ], [ -58.417869000354017, -34.589616999624809 ], [ -58.418554999613491, -34.589058999972849 ], [ -58.417911999639045, -34.588673000158792 ], [ -58.417074999711417, -34.588157999791804 ], [ -58.415658000016663, -34.587342999979398 ], [ -58.415164999764897, -34.587041999588564 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.413148000279932, -34.585690000193324 ], [ -58.412526000374555, -34.58524000012585 ], [ -58.411731999731956, -34.584639000289599 ], [ -58.412568999659584, -34.584037999553971 ], [ -58.413384000371252, -34.583479999902011 ], [ -58.412118000445332, -34.582644000020537 ], [ -58.411087999711356, -34.581934999700422 ], [ -58.410380000336716, -34.5808200004426 ], [ -58.411839000169664, -34.580369000329085 ], [ -58.413061999911349, -34.579982999615709 ], [ -58.413942000023269, -34.57970400023936 ], [ -58.415421999925343, -34.579253000125789 ], [ -58.415959000407497, -34.580068999984292 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 65.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.53219, -34.639557 ], [ -58.5333, -34.63964 ], [ -58.534985, -34.639771 ], [ -58.535833, -34.639824 ], [ -58.537258, -34.639947 ], [ -58.538622, -34.640041 ], [ -58.539207, -34.640114 ], [ -58.540009, -34.640141 ], [ -58.54141, -34.640184 ], [ -58.542854, -34.64021 ], [ -58.543511, -34.640208 ], [ -58.544079, -34.64019 ], [ -58.544715, -34.640168 ], [ -58.545142, -34.640156 ], [ -58.546276, -34.64013 ], [ -58.548863, -34.640062 ], [ -58.54945, -34.640044 ], [ -58.551081, -34.639988 ], [ -58.552669, -34.639942 ], [ -58.553205, -34.639953 ], [ -58.554241, -34.639973 ], [ -58.555957, -34.639909 ], [ -58.557236, -34.639889 ], [ -58.558691, -34.63989 ], [ -58.560129, -34.640048 ], [ -58.560987, -34.64013 ], [ -58.561598, -34.640219 ], [ -58.563082, -34.640459 ], [ -58.564255, -34.640663 ], [ -58.564076, -34.641574 ], [ -58.563941, -34.641832 ], [ -58.562425, -34.643122 ], [ -58.560957, -34.64266 ], [ -58.560405, -34.643224 ], [ -58.559627, -34.643895 ], [ -58.558547, -34.643122 ], [ -58.55852, -34.643104 ], [ -58.557466, -34.642291 ], [ -58.556664, -34.643013 ], [ -58.556639, -34.64304 ], [ -58.555807, -34.64378 ], [ -58.55485, -34.644625 ], [ -58.553921, -34.645494 ], [ -58.552939, -34.646398 ], [ -58.551971, -34.647283 ], [ -58.551489, -34.647743 ], [ -58.550991, -34.648168 ], [ -58.549998, -34.649053 ], [ -58.549016, -34.649923 ], [ -58.548314, -34.65053 ], [ -58.547174, -34.651549 ], [ -58.546263, -34.652405 ], [ -58.545329, -34.653233 ], [ -58.544886, -34.653622 ], [ -58.544319, -34.654145 ], [ -58.543769, -34.654618 ], [ -58.543281, -34.655059 ], [ -58.54253, -34.655721 ], [ -58.541638, -34.656535 ], [ -58.540704, -34.657376 ], [ -58.539805, -34.658201 ], [ -58.538893, -34.659003 ], [ -58.537917, -34.659875 ], [ -58.537255, -34.660474 ], [ -58.536593, -34.661097 ], [ -58.535751, -34.66186 ], [ -58.535707, -34.661949 ], [ -58.53492, -34.663003 ], [ -58.534272, -34.663863 ], [ -58.533571, -34.664809 ], [ -58.533211, -34.66527 ], [ -58.532854, -34.665727 ], [ -58.532146, -34.666639 ], [ -58.531426, -34.667588 ], [ -58.531952, -34.667811 ], [ -58.532611, -34.668108 ], [ -58.532809, -34.668196 ], [ -58.533269, -34.668397 ], [ -58.533931, -34.668683 ], [ -58.534937, -34.669317 ], [ -58.535805, -34.669874 ], [ -58.536617, -34.670415 ], [ -58.536679, -34.670453 ], [ -58.537552, -34.671003 ], [ -58.538412, -34.671554 ], [ -58.539279, -34.672119 ], [ -58.540148, -34.67267 ], [ -58.541018, -34.673221 ], [ -58.541886, -34.673744 ], [ -58.542519, -34.674169 ], [ -58.543211, -34.674664 ], [ -58.543852999999899, -34.675077 ], [ -58.544464, -34.675484 ], [ -58.54483, -34.675711 ], [ -58.545145, -34.675912 ], [ -58.545889, -34.676425 ], [ -58.546745, -34.676971 ], [ -58.547605, -34.677588 ], [ -58.548301, -34.678057 ], [ -58.54874, -34.678472 ], [ -58.548814, -34.678277 ], [ -58.550021, -34.677795 ], [ -58.550646, -34.678395 ], [ -58.551383, -34.679054 ], [ -58.552158, -34.679755 ], [ -58.552937, -34.68047 ], [ -58.553682, -34.681165 ], [ -58.554442, -34.681809 ], [ -58.555199, -34.682524 ], [ -58.555644, -34.682896 ], [ -58.555934, -34.683201 ], [ -58.557034, -34.682377 ], [ -58.55778, -34.683052 ], [ -58.55853, -34.683736 ], [ -58.559311, -34.684434 ], [ -58.55933, -34.684457 ], [ -58.559955, -34.68499 ], [ -58.560206, -34.685259 ], [ -58.560405, -34.685267 ], [ -58.560624, -34.685224 ], [ -58.560852, -34.685216 ], [ -58.561079, -34.685267 ], [ -58.561184, -34.685376 ], [ -58.561236, -34.685599 ], [ -58.561283, -34.685774 ], [ -58.56135, -34.685903 ], [ -58.561416, -34.685993 ], [ -58.561559, -34.686094 ], [ -58.562571, -34.68654 ], [ -58.563522, -34.687066 ], [ -58.564438, -34.687605 ], [ -58.565234, -34.688068 ], [ -58.566244, -34.688677 ], [ -58.567137, -34.689201 ], [ -58.568318, -34.689893 ], [ -58.56951, -34.69059 ], [ -58.570679, -34.69129 ], [ -58.571319, -34.69176 ], [ -58.571955, -34.692313 ], [ -58.572313, -34.692639 ], [ -58.572534, -34.692828 ], [ -58.573158, -34.693381 ], [ -58.573749, -34.693942 ], [ -58.574792, -34.695127 ], [ -58.575704, -34.696207 ], [ -58.576413, -34.697018 ], [ -58.576747, -34.697421 ], [ -58.577349, -34.698113 ], [ -58.577742, -34.698582 ], [ -58.578222, -34.699127 ], [ -58.578719, -34.699708 ], [ -58.579299, -34.700373 ], [ -58.579973, -34.701112 ], [ -58.580199, -34.70136 ], [ -58.580598, -34.701768 ], [ -58.581049, -34.702226 ], [ -58.581145, -34.702336 ], [ -58.581852, -34.703059 ], [ -58.582597, -34.703815 ], [ -58.583392, -34.704645 ], [ -58.584054, -34.705339 ], [ -58.58483, -34.706164 ], [ -58.585131, -34.70648 ], [ -58.585333, -34.706683 ], [ -58.585629, -34.706995 ], [ -58.585975, -34.707353 ], [ -58.586326, -34.707756 ], [ -58.586656, -34.708089 ], [ -58.586862, -34.708309 ], [ -58.587143, -34.708582 ], [ -58.587781, -34.70919 ], [ -58.588183, -34.709571 ], [ -58.58876, -34.710112 ], [ -58.588948, -34.710318 ], [ -58.589511, -34.710917 ], [ -58.590449, -34.7118 ], [ -58.590716, -34.71207 ], [ -58.591109, -34.712456 ], [ -58.591332, -34.712669 ], [ -58.591645, -34.712976 ], [ -58.591962, -34.713305 ], [ -58.592137, -34.713524 ], [ -58.59215, -34.713538 ], [ -58.592524, -34.714241 ], [ -58.592661, -34.714518 ], [ -58.592766, -34.714748 ], [ -58.592841, -34.714906 ], [ -58.592963, -34.715123 ], [ -58.593023, -34.71523 ], [ -58.593142, -34.715415 ], [ -58.593232, -34.715539 ], [ -58.593394, -34.715722 ], [ -58.593712, -34.716053 ], [ -58.59376, -34.716096 ], [ -58.594266, -34.716619 ], [ -58.594799, -34.71719 ], [ -58.594999, -34.71749 ], [ -58.595222, -34.717787 ], [ -58.595421, -34.718107 ], [ -58.59564, -34.718425 ], [ -58.596027, -34.719026 ], [ -58.596442, -34.719701 ], [ -58.596517, -34.719878 ], [ -58.596688, -34.720196 ], [ -58.597322, -34.721526 ], [ -58.59733, -34.721834 ], [ -58.597504, -34.722214 ], [ -58.597675, -34.722586 ], [ -58.597896, -34.723088 ], [ -58.598164, -34.723695 ], [ -58.598212, -34.723804 ], [ -58.598685, -34.724824 ], [ -58.598718, -34.724897 ], [ -58.59936, -34.726217 ], [ -58.599928, -34.727302 ], [ -58.600143, -34.727751 ], [ -58.600656, -34.728794 ], [ -58.601131, -34.729739 ], [ -58.601369, -34.730193 ], [ -58.60193, -34.731319 ], [ -58.602448, -34.732371 ], [ -58.602559, -34.732635 ], [ -58.602594, -34.732686 ], [ -58.602749, -34.73307 ], [ -58.602864, -34.733438 ], [ -58.602935, -34.733667 ], [ -58.603061, -34.734083 ], [ -58.603135, -34.734338 ], [ -58.60333, -34.735012 ], [ -58.603484, -34.735484 ], [ -58.603585, -34.735817 ], [ -58.603409, -34.735927 ], [ -58.602979, -34.736195 ], [ -58.6024, -34.736673 ], [ -58.601734, -34.737205 ], [ -58.601067, -34.737743 ], [ -58.601037, -34.737769 ], [ -58.60039, -34.738283 ], [ -58.599741, -34.738829 ], [ -58.599255, -34.739214 ], [ -58.598983, -34.73945 ], [ -58.598686, -34.739693 ], [ -58.59811, -34.740161 ], [ -58.597369, -34.740741 ], [ -58.596655, -34.74131 ], [ -58.596628, -34.741326 ], [ -58.595855, -34.741917 ], [ -58.594759, -34.740973 ], [ -58.593929, -34.740265 ], [ -58.593267, -34.739687 ], [ -58.593419, -34.739561 ], [ -58.592516, -34.738807 ], [ -58.592367, -34.738847 ], [ -58.591666, -34.739364 ], [ -58.590917, -34.74 ], [ -58.590183, -34.740634 ], [ -58.589572, -34.741428 ], [ -58.58887, -34.742067 ], [ -58.588134, -34.742662 ], [ -58.588108, -34.742681 ], [ -58.58706, -34.743356 ], [ -58.586082, -34.744082 ], [ -58.584842, -34.745005 ], [ -58.585408, -34.745527 ], [ -58.585674, -34.745771 ], [ -58.584551, -34.746704 ], [ -58.584528, -34.746728 ], [ -58.583397, -34.747653 ], [ -58.582217, -34.748571 ], [ -58.581588, -34.74908 ], [ -58.581222, -34.748882 ], [ -58.580899, -34.749213 ], [ -58.580582, -34.749617 ], [ -58.580753999999899, -34.749727 ], [ -58.581763, -34.750269 ], [ -58.582745, -34.750755 ], [ -58.58381, -34.751315 ], [ -58.582647, -34.752224 ], [ -58.581483, -34.753142 ], [ -58.581036, -34.753454 ], [ -58.581013, -34.754678 ], [ -58.581131, -34.754785 ], [ -58.581912, -34.75543 ], [ -58.582722, -34.756123 ], [ -58.583508, -34.756805 ], [ -58.58303, -34.757155 ], [ -58.582782, -34.757367 ], [ -58.582495, -34.757607 ], [ -58.582348, -34.75773 ], [ -58.581273, -34.758602 ], [ -58.581201, -34.758639 ], [ -58.580654, -34.759108 ], [ -58.580042, -34.759531 ], [ -58.578879, -34.760487 ], [ -58.577842, -34.761345 ], [ -58.578651, -34.761974 ], [ -58.579256, -34.762494 ], [ -58.578654, -34.76296 ], [ -58.577886, -34.763533 ], [ -58.577096, -34.764165 ], [ -58.577731, -34.764719 ], [ -58.576651, -34.765557 ], [ -58.576029, -34.764996 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 64.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.279243999810717, -35.005596000055334 ], [ -59.279780000246774, -35.004457999736871 ], [ -59.280188000176054, -35.003599999740175 ], [ -59.280573999990054, -35.002698999559129 ], [ -59.280960999850208, -35.001840999562432 ], [ -59.279672999809065, -35.001432999633209 ], [ -59.27838599981402, -35.00102499970393 ], [ -59.27677600021218, -35.000489000167192 ], [ -59.275682000124164, -35.000166999707233 ], [ -59.274544999851798, -34.999780999893176 ], [ -59.273343000179295, -34.999394000033021 ], [ -59.272892000065724, -35.00023099996065 ], [ -59.272485000182598, -35.001003999634804 ], [ -59.272056000184193, -35.001798000277461 ], [ -59.271518999702039, -35.002828000112061 ], [ -59.270917999865787, -35.004028999738523 ], [ -59.270488999867382, -35.004865999666094 ], [ -59.26997400039977, -35.005702999593723 ], [ -59.269394999779365, -35.006948000349894 ], [ -59.268729999689697, -35.006733000327642 ], [ -59.267892999762068, -35.006432999982906 ], [ -59.266411999813897, -35.005917999615974 ], [ -59.26499600016524, -35.005381000033083 ], [ -59.263537000332235, -35.004865999666094 ], [ -59.262077999599967, -35.004308000014134 ], [ -59.260639999836087, -35.003814999762369 ], [ -59.259181000003082, -35.003300000294757 ], [ -59.257743000239202, -35.002805999996838 ], [ -59.255147000133888, -35.001904999815849 ], [ -59.253216000118243, -35.001217999610958 ], [ -59.251026999896112, -35.00046700005197 ], [ -59.249516000363087, -35.000124999569039 ], [ -59.248087000114936, -34.999801999962301 ], [ -59.246904999566027, -34.999593000216748 ], [ -59.245898999938845, -34.999416000148244 ], [ -59.244992000380478, -34.999151999665003 ], [ -59.244869000104245, -34.99911499975741 ], [ -59.244440000105897, -34.998921999850381 ], [ -59.243945999807977, -34.998622000404964 ], [ -59.243559999993977, -34.998343000129296 ], [ -59.243169999995473, -34.998012000153665 ], [ -59.242422999721612, -34.997376999648793 ], [ -59.241140999957167, -34.996255000068174 ], [ -59.239044000380261, -34.99441899993684 ], [ -59.237595000109138, -34.993149999872571 ], [ -59.237557000155391, -34.993117000149368 ], [ -59.236440999952151, -34.992140000060886 ], [ -59.235521999840387, -34.991333999764208 ], [ -59.234606999913069, -34.990532999698132 ], [ -59.233603000378139, -34.98965399963231 ], [ -59.232230000014454, -34.988450999913653 ], [ -59.231668000178047, -34.987951000238411 ], [ -59.230249000391041, -34.986690999689813 ], [ -59.228207999799338, -34.984877999719856 ], [ -59.227423999617827, -34.984180999953139 ], [ -59.226978999780954, -34.98390799995417 ], [ -59.226480000151867, -34.983602000232054 ], [ -59.225900000384684, -34.98332400000254 ], [ -59.22406400025335, -34.98244399989062 ], [ -59.223346999564342, -34.982100000214814 ], [ -59.22265199988982, -34.981755999639631 ], [ -59.219599000293613, -34.980244000060509 ], [ -59.216758999728029, -34.978837999973678 ], [ -59.216412999959914, -34.978669000274124 ], [ -59.214625000243529, -34.97779899972403 ], [ -59.212794000342797, -34.976906999958032 ], [ -59.210986999750219, -34.976026999846113 ], [ -59.210792999797036, -34.975883000400131 ], [ -59.20991399973127, -34.975233000102833 ], [ -59.209700999801271, -34.975045000426405 ], [ -59.208664999689915, -34.97412899955367 ], [ -59.20719100006454, -34.972825999720044 ], [ -59.2056890000473, -34.971498999679056 ], [ -59.204579000120702, -34.970518000305447 ], [ -59.203142000402977, -34.969248000195023 ], [ -59.202533000197775, -34.968709999666714 ], [ -59.201696000270147, -34.967936999992503 ], [ -59.200922999696616, -34.967400999556446 ], [ -59.20049000041314, -34.967184000341319 ], [ -59.20019400025285, -34.967035999811515 ], [ -59.197486000378547, -34.965840999562431 ], [ -59.194581000412825, -34.964557999751833 ], [ -59.193585000347468, -34.964118000145561 ], [ -59.192163999568891, -34.963478000309408 ], [ -59.190402000152119, -34.962684999712906 ], [ -59.188197000091463, -34.961691999785899 ], [ -59.186954000326807, -34.961178000364384 ], [ -59.186207000052946, -34.960839000019803 ], [ -59.184614000335785, -34.960115999953416 ], [ -59.182730999835712, -34.959261000095012 ], [ -59.180711000212455, -34.958344000075499 ], [ -59.180666999982009, -34.958324000052528 ], [ -59.179019999573256, -34.957598999893889 ], [ -59.177041000042095, -34.95672700015092 ], [ -59.17599000013837, -34.956264000383271 ], [ -59.174668000327927, -34.955655000178069 ], [ -59.17327800007962, -34.955014000295819 ], [ -59.173243000264222, -34.954997999557975 ], [ -59.172578000174553, -34.954913000134809 ], [ -59.172127000060982, -34.954891000019586 ], [ -59.170329999929493, -34.954962999742577 ], [ -59.167553999617326, -34.955074000364789 ], [ -59.164952000134633, -34.955177999764828 ], [ -59.163001000096017, -34.95525499971842 ], [ -59.160898000242469, -34.955338999994808 ], [ -59.158788000066124, -34.955423000271196 ], [ -59.157589999678692, -34.955470999786769 ], [ -59.156530000259238, -34.95551399997106 ], [ -59.154742999689631, -34.955584999647954 ], [ -59.154382000129146, -34.955599000293603 ], [ -59.15343799976381, -34.955578000224477 ], [ -59.153401999902314, -34.955572999993933 ], [ -59.153094000088004, -34.955535000040186 ], [ -59.151490999909697, -34.955236999787644 ], [ -59.150203999914652, -34.954997999557975 ], [ -59.14798500010761, -34.95458500029747 ], [ -59.146700000204817, -34.954346000067801 ], [ -59.145689000347033, -34.954158000391374 ], [ -59.144757999681872, -34.953984999607997 ], [ -59.144093999638358, -34.953862000231084 ], [ -59.142949999942516, -34.953649000301084 ], [ -59.14147100008654, -34.953374000209919 ], [ -59.140307000367727, -34.95315800014157 ], [ -59.139759000277593, -34.953055999934406 ], [ -59.138565000074664, -34.952833999589359 ], [ -59.137602999778551, -34.952656000374077 ], [ -59.136791000104552, -34.952503999659825 ], [ -59.135999999600244, -34.952358000121592 ], [ -59.134987999696364, -34.95216900039901 ], [ -59.134854999858305, -34.952145000191535 ], [ -59.134108999630598, -34.952006000076778 ], [ -59.133215999818503, -34.951840999662352 ], [ -59.132427000305768, -34.951695000124118 ], [ -59.131594999709421, -34.951540000170837 ], [ -59.131046999619286, -34.951439000009827 ], [ -59.13045600024418, -34.951329000333033 ], [ -59.130418000290433, -34.951322000010236 ], [ -59.129783999831659, -34.951199999780101 ], [ -59.129134000433737, -34.951076000357091 ], [ -59.128410000321196, -34.950937000242334 ], [ -59.127772999724129, -34.950815000012199 ], [ -59.127075999957412, -34.95068200017414 ], [ -59.126369999775648, -34.950546000197733 ], [ -59.125707999824272, -34.950419999783094 ], [ -59.125010000011457, -34.950285999898938 ], [ -59.124446000082798, -34.950178000314395 ], [ -59.123985999554179, -34.95008999985356 ], [ -59.123492000155636, -34.949994999969249 ], [ -59.12282600001987, -34.949868000407832 ], [ -59.122227000275814, -34.949758999877872 ], [ -59.121604000324339, -34.949647000108939 ], [ -59.120889999773624, -34.949517000409173 ], [ -59.12012899975349, -34.949379000340571 ], [ -59.119416000148249, -34.949249999787639 ], [ -59.118759999574308, -34.949130999695853 ], [ -59.117943999715749, -34.948984000111466 ], [ -59.117027999742334, -34.948817999650942 ], [ -59.116259000252626, -34.948679000435504 ], [ -59.115910000346219, -34.948616000228185 ], [ -59.114899999635213, -34.948431999836885 ], [ -59.114570999751777, -34.948367999583468 ], [ -59.113085999619159, -34.948077999699876 ], [ -59.112384999667938, -34.947940999677371 ], [ -59.112152999761065, -34.947896000300148 ], [ -59.111661999601552, -34.947804999700907 ], [ -59.110855000158097, -34.947656000024324 ], [ -59.110056000184215, -34.947509000439993 ], [ -59.109384999817848, -34.947385000117606 ], [ -59.108782999935443, -34.947274000394771 ], [ -59.108139999960997, -34.947155000302985 ], [ -59.107483000240222, -34.947034000118947 ], [ -59.106921999550593, -34.946929999819588 ], [ -59.106323999852691, -34.946819000096752 ], [ -59.105771999578053, -34.946717999935686 ], [ -59.105193999903122, -34.946611000397297 ], [ -59.104580000366695, -34.946496999636793 ], [ -59.103998999654095, -34.946390000098404 ], [ -59.103311000302369, -34.946262999637668 ], [ -59.102455000397924, -34.946105000445357 ], [ -59.101905000215538, -34.94600300023825 ], [ -59.101230999710822, -34.945878999915863 ], [ -59.101149999572783, -34.945864000123436 ], [ -59.1005699998056, -34.945758999777979 ], [ -59.099991000084572, -34.945654000331785 ], [ -59.099628999578613, -34.945587999986174 ], [ -59.099578999970845, -34.945578999571126 ], [ -59.09908299958073, -34.945504999755883 ], [ -59.098630000274227, -34.945437000217339 ], [ -59.098141000206965, -34.945364000448194 ], [ -59.098065000299471, -34.945352999940951 ], [ -59.097691000139491, -34.945300000194834 ], [ -59.097522000439938, -34.945293999918135 ], [ -59.097007000072949, -34.945274999941262 ], [ -59.096509999636737, -34.945257000010486 ], [ -59.096008999915398, -34.945265000379436 ], [ -59.095312000148624, -34.945275999987359 ], [ -59.095159000287595, -34.945278000079611 ], [ -59.094901000081052, -34.945278000079611 ], [ -59.094451000013578, -34.945278000079611 ], [ -59.094132999738122, -34.945278000079611 ], [ -59.093749000016317, -34.945278000079611 ], [ -59.093184000041504, -34.945278000079611 ], [ -59.092817000204377, -34.945278000079611 ], [ -59.092329000183156, -34.945278000079611 ], [ -59.091879000115739, -34.945278000079611 ], [ -59.09132999997945, -34.945278000079611 ], [ -59.090875999727587, -34.945278000079611 ], [ -59.09046399961386, -34.945278000079611 ], [ -59.090026000099783, -34.945278000079611 ], [ -59.089492999802076, -34.945278000079611 ], [ -59.08918700007996, -34.945278000079611 ], [ -59.08870400028934, -34.945278000079611 ], [ -59.088259999599245, -34.945278000079611 ], [ -59.08772300001641, -34.945278000079611 ], [ -59.087271999902839, -34.945278000079611 ], [ -59.086861999881364, -34.945278000079611 ], [ -59.086516000113249, -34.945278000079611 ], [ -59.086142999999424, -34.945278000079611 ], [ -59.085665999586183, -34.945278000079611 ], [ -59.085195000348961, -34.945278000079611 ], [ -59.084673999705274, -34.945278000079611 ], [ -59.084365999890963, -34.945278000079611 ], [ -59.084008999615605, -34.945278000079611 ], [ -59.083625999939898, -34.945278000079611 ], [ -59.083175999872481, -34.945278000079611 ], [ -59.082809000035297, -34.945278000079611 ], [ -59.082251000383337, -34.945278000079611 ], [ -59.08178999980862, -34.945257000010486 ], [ -59.081321999810427, -34.94519799998767 ], [ -59.081103999649827, -34.945170999641903 ], [ -59.080901000180972, -34.945122000080175 ], [ -59.080477000413225, -34.945019999873068 ], [ -59.080090999699848, -34.944927000080952 ], [ -59.079694000277868, -34.944831000150486 ], [ -59.079184000141424, -34.944708999920351 ], [ -59.078772000027755, -34.944608999805439 ], [ -59.078279999822087, -34.944483000290177 ], [ -59.077676999893583, -34.944329000382993 ], [ -59.07699900010374, -34.944154999553518 ], [ -59.076279000175703, -34.94397000001544 ], [ -59.075579000270579, -34.943790999854741 ], [ -59.074818000250445, -34.943595999855461 ], [ -59.074100999561438, -34.94341200036348 ], [ -59.073478999656061, -34.943253000225752 ], [ -59.072780999843246, -34.943074000064996 ], [ -59.072252999776083, -34.942939000134686 ], [ -59.071635000055153, -34.942779999996958 ], [ -59.071062999757601, -34.942633999559405 ], [ -59.070520999944165, -34.942495000343968 ], [ -59.069751000408303, -34.942298000252492 ], [ -59.069061000065062, -34.942121000183988 ], [ -59.068375999952423, -34.941945000161581 ], [ -59.068074000414754, -34.94186800020799 ], [ -59.067758000231493, -34.941787000069951 ], [ -59.06704299963468, -34.941603999724748 ], [ -59.06639899961408, -34.941439000209641 ], [ -59.065828000261945, -34.941291999725991 ], [ -59.064864999919791, -34.941045000026691 ], [ -59.064075000360958, -34.940842999704614 ], [ -59.063324999948748, -34.94065099984374 ], [ -59.062542999859488, -34.940449999567761 ], [ -59.062344999721915, -34.940403000098343 ], [ -59.061232999703122, -34.940137999569004 ], [ -59.060655000028191, -34.940000000399664 ], [ -59.060410999567921, -34.939987999846267 ], [ -59.05973199973198, -34.939957000215372 ], [ -59.059196000195186, -34.940000000399664 ], [ -59.059093999988079, -34.940022999661664 ], [ -59.058916999919575, -34.940063999753761 ], [ -59.058337000152392, -34.940214000375761 ], [ -59.057940999877189, -34.940333999614325 ], [ -59.056745999628163, -34.940694000028031 ], [ -59.055476999563837, -34.941076999703739 ], [ -59.054523999682772, -34.941364000348301 ], [ -59.052865999666096, -34.941864000023543 ], [ -59.051493000201731, -34.942278000229464 ], [ -59.050399000113714, -34.942608000159055 ], [ -59.04980199956259, -34.942788000365908 ], [ -59.048546000097758, -34.943165999811015 ], [ -59.048444999936748, -34.943197000341229 ], [ -59.046992000380499, -34.943606000316606 ], [ -59.046234999645492, -34.943819000246606 ], [ -59.045654999878309, -34.943960999600392 ], [ -59.045269000064252, -34.944055000337926 ], [ -59.044515000366914, -34.944180999853245 ], [ -59.044367999883264, -34.944205000060663 ], [ -59.043659999609247, -34.944248000244954 ], [ -59.042931000165481, -34.944248000244954 ], [ -59.042897000396238, -34.944245000106605 ], [ -59.042200999776298, -34.944183999991537 ], [ -59.041346999964048, -34.9440969995768 ], [ -59.04021399987613, -34.943980999623363 ], [ -59.038704000389259, -34.943826999716237 ], [ -59.037008000418837, -34.943653999832179 ], [ -59.035351999595036, -34.943485000132625 ], [ -59.033476000317137, -34.943293000271694 ], [ -59.031952000184617, -34.943138000318413 ], [ -59.031900999631375, -34.943132000041714 ], [ -59.031329000233143, -34.9430669997422 ], [ -59.030012999800078, -34.942918000065617 ], [ -59.028651999989791, -34.942787000319754 ], [ -59.026622999951428, -34.942592000320531 ], [ -59.025166000210675, -34.942452000159619 ], [ -59.023767000446696, -34.942317000229309 ], [ -59.022539999621245, -34.942199000183678 ], [ -59.020932000111657, -34.942045000276494 ], [ -59.019532000301524, -34.941910000346184 ], [ -59.01806300000743, -34.941769000139175 ], [ -59.017289000287121, -34.941695000323989 ], [ -59.016788999712503, -34.941656000324087 ], [ -59.015539999671205, -34.941558000301427 ], [ -59.014657000320256, -34.941487999771311 ], [ -59.01400599997686, -34.941437000117446 ], [ -59.01366899972453, -34.941401000255894 ], [ -59.012396000375077, -34.941266000325584 ], [ -59.012303999729738, -34.941251999679992 ], [ -59.011816999754672, -34.941179999957001 ], [ -59.011109000380031, -34.941008000119041 ], [ -59.010918999712032, -34.94094700000403 ], [ -59.01057199989782, -34.940836000281138 ], [ -59.009851999969783, -34.940332000421449 ], [ -59.009284999902775, -34.939935000100149 ], [ -59.008900000134872, -34.939630000424131 ], [ -59.008305999722097, -34.939160000333686 ], [ -59.007585999794003, -34.938589000082231 ], [ -59.006697000166412, -34.937886000038816 ], [ -59.006086999915055, -34.937402000202098 ], [ -59.005455999594687, -34.936902999673634 ], [ -59.004636999597835, -34.93625400032181 ], [ -59.003858999693023, -34.935637999793812 ], [ -59.003203000018402, -34.935119000141697 ], [ -59.002891000019588, -34.934871000396299 ], [ -59.002460999975142, -34.934616000328106 ], [ -59.002203999814697, -34.934463999613854 ], [ -59.001668000277959, -34.934206000306631 ], [ -59.001345999818, -34.934098999868922 ], [ -59.000359000167691, -34.933862999777602 ], [ -59.000108000283944, -34.933817000354225 ], [ -58.998451000313366, -34.933514999917293 ], [ -58.997397000271292, -34.933323000056362 ], [ -58.996358000021644, -34.933133000287683 ], [ -58.995443000094326, -34.932965999781004 ], [ -58.994242999614698, -34.932746999574306 ], [ -58.992863999873634, -34.932495999690616 ], [ -58.991406000086783, -34.932230000014442 ], [ -58.990845000296474, -34.932127999807278 ], [ -58.989561000439778, -34.93189399980821 ], [ -58.988492999752111, -34.93169899980893 ], [ -58.987151999964794, -34.931454000201882 ], [ -58.986364999644991, -34.931310999902678 ], [ -58.985354999833362, -34.931127000410697 ], [ -58.984215000321967, -34.930918999811922 ], [ -58.983496000440027, -34.930788000066116 ], [ -58.982810000281233, -34.930662999697631 ], [ -58.982119999937993, -34.930537000182369 ], [ -58.981805999846983, -34.930480000251748 ], [ -58.98072000012786, -34.930282000114175 ], [ -58.979857999946717, -34.930125000068642 ], [ -58.979055999834486, -34.929978999631089 ], [ -58.97813200039144, -34.929810999977633 ], [ -58.977398999863908, -34.92967700009342 ], [ -58.976342999729638, -34.929485000232546 ], [ -58.975384999617972, -34.929310000256237 ], [ -58.974581000312867, -34.929163999818684 ], [ -58.973807999739336, -34.929022999611675 ], [ -58.972871999742949, -34.928852999866024 ], [ -58.97177899970103, -34.928653999682297 ], [ -58.970610999797771, -34.928440999752297 ], [ -58.969729999639753, -34.928280999568415 ], [ -58.968725000058669, -34.928098000122588 ], [ -58.968687000104921, -34.928090999799736 ], [ -58.967720999624419, -34.927940000030958 ], [ -58.96765500017807, -34.92792800037688 ], [ -58.966579000020772, -34.927726000054804 ], [ -58.966049999907511, -34.927625999939892 ], [ -58.965407999979163, -34.927505999802008 ], [ -58.964868000257979, -34.927403999594844 ], [ -58.964292999822021, -34.927221000149018 ], [ -58.963858999593128, -34.927082000034204 ], [ -58.963571999847886, -34.926945000011699 ], [ -58.963408000378877, -34.92686700001201 ], [ -58.962529000313054, -34.926330999575953 ], [ -58.960961999996243, -34.927125000218552 ], [ -58.960319000021798, -34.927467999848261 ], [ -58.960017999630963, -34.927618999617096 ], [ -58.959652999885975, -34.927812000423444 ], [ -58.959074000164946, -34.928090999799736 ], [ -58.958881000257918, -34.928198000237501 ], [ -58.958194000053027, -34.928540999867209 ], [ -58.958086999615318, -34.928606000166724 ], [ -58.95724999968769, -34.929013000049849 ], [ -58.957056999780661, -34.929120999634392 ], [ -58.956499000128701, -34.929398999863906 ], [ -58.956070000130353, -34.929592999817032 ], [ -58.95581199992381, -34.929743000439089 ], [ -58.955146999834142, -34.930086000068798 ], [ -58.954160000183833, -34.930601000435786 ], [ -58.953194999749371, -34.931094999834329 ], [ -58.952250000237257, -34.931567000016969 ], [ -58.952099999615257, -34.931653000385609 ], [ -58.951650000447103, -34.931888999577609 ], [ -58.951221000448754, -34.932082000383957 ], [ -58.950426999806155, -34.930966000180717 ], [ -58.949654000131943, -34.929914000230895 ], [ -58.948860000388663, -34.928820000142821 ], [ -58.948044999676938, -34.927769000239152 ], [ -58.947551000278395, -34.927104000149427 ], [ -58.947228999818435, -34.926696000220204 ], [ -58.948216000368063, -34.926158999737993 ], [ -58.949160999880178, -34.925666000385547 ], [ -58.950148000429863, -34.925172000087684 ], [ -58.951112999964948, -34.924699999905044 ], [ -58.952079000445451, -34.924185000437376 ], [ -58.953043999980594, -34.923713000254736 ], [ -58.954009999561777, -34.923220000002971 ], [ -58.954997000111405, -34.922747999820274 ], [ -58.955940999577422, -34.922233000352662 ], [ -58.957186000333593, -34.921589000332062 ], [ -58.95613400038377, -34.920622999851503 ], [ -58.955082999580725, -34.919679000385543 ], [ -58.954009999561777, -34.918756000089274 ], [ -58.952979999727177, -34.917811999723938 ], [ -58.951928999823451, -34.916868000257978 ], [ -58.950898999988794, -34.915923999892641 ], [ -58.948817000204372, -34.914057000130413 ], [ -58.947315000187075, -34.912704999835853 ], [ -58.946563999728767, -34.912039999746128 ], [ -58.94613699982267, -34.911679000185643 ], [ -58.945599000193681, -34.911224999933779 ], [ -58.94514499994176, -34.910820000142849 ], [ -58.944017000084443, -34.909811000377317 ], [ -58.943581999809396, -34.909422000424911 ], [ -58.942869000204155, -34.908777000358214 ], [ -58.942016000438002, -34.908005999876934 ], [ -58.941074000164917, -34.907154000156936 ], [ -58.940280000421637, -34.906435000274996 ], [ -58.939352999940979, -34.90559700030127 ], [ -58.93859700015139, -34.904913000234728 ], [ -58.938213999576362, -34.904566000420516 ], [ -58.937811999923838, -34.904201999822362 ], [ -58.937161999626539, -34.903614999732383 ], [ -58.936743000089336, -34.903236000241179 ], [ -58.936361999606561, -34.902890999619899 ], [ -58.935937999838757, -34.902506999898094 ], [ -58.935458000186543, -34.902072999669144 ], [ -58.935007000072972, -34.901664999739921 ], [ -58.934452999706139, -34.901162999972428 ], [ -58.934000000399635, -34.90075399999705 ], [ -58.933816000008335, -34.900587000389692 ], [ -58.933611000447286, -34.900401999952294 ], [ -58.933348000010142, -34.900163999768722 ], [ -58.933029999734686, -34.89987700002348 ], [ -58.932769000289113, -34.899639999886062 ], [ -58.932523999782745, -34.899418999587112 ], [ -58.932343000429114, -34.899254000072006 ], [ -58.932123000176261, -34.899055999934433 ], [ -58.931891000269388, -34.898846000142726 ], [ -58.931625999740049, -34.898605999866959 ], [ -58.931422000225098, -34.898421000328881 ], [ -58.931172000387448, -34.898195999845484 ], [ -58.93088899992739, -34.897938999685039 ], [ -58.930647999605469, -34.897721000423815 ], [ -58.930370000275275, -34.897468999594594 ], [ -58.930108999930383, -34.897233000402593 ], [ -58.929839000069762, -34.896988999942323 ], [ -58.929593999563394, -34.896766999597332 ], [ -58.929396000325141, -34.896588000335896 ], [ -58.929164999565046, -34.896379999737178 ], [ -58.928939999980969, -34.896176000222169 ], [ -58.92861500028198, -34.895882000154131 ], [ -58.928366999637262, -34.895656999670734 ], [ -58.928074999661476, -34.895393000086813 ], [ -58.9278439998007, -34.895185000387414 ], [ -58.927531999801886, -34.894901999927299 ], [ -58.927292000425439, -34.894684999812853 ], [ -58.927011000057576, -34.894429999744659 ], [ -58.92667900003579, -34.894130000299242 ], [ -58.926350000152354, -34.893833000092854 ], [ -58.925988999692549, -34.893507000347768 ], [ -58.925680999878182, -34.893228000072099 ], [ -58.92540199960257, -34.892976000142255 ], [ -58.925342999579698, -34.892921000303886 ], [ -58.925099000018804, -34.892705000235537 ], [ -58.924762999812572, -34.892405999936898 ], [ -58.924289000437, -34.891986000353597 ], [ -58.924014000345778, -34.891740999847229 ], [ -58.923636000001352, -34.891404999640997 ], [ -58.923333000417585, -34.891136999872629 ], [ -58.922982999565761, -34.890824999873814 ], [ -58.922561999936306, -34.890451999759932 ], [ -58.922274000144967, -34.890195999645641 ], [ -58.922221000398793, -34.890158999737992 ], [ -58.921758999777978, -34.889831999946807 ], [ -58.921501999617533, -34.889681000177973 ], [ -58.920579000220641, -34.889274000294847 ], [ -58.920517000059476, -34.889251000133527 ], [ -58.919286999994995, -34.888810999627879 ], [ -58.917891000369309, -34.888311999998734 ], [ -58.917639000439465, -34.888222000345024 ], [ -58.916642000328011, -34.887837999723843 ], [ -58.915564000078518, -34.887420000232794 ], [ -58.914979000080734, -34.887128000256951 ], [ -58.91444199959858, -34.886805999796991 ], [ -58.914344999622017, -34.886724999658952 ], [ -58.914055999784523, -34.886484000236351 ], [ -58.913819999693203, -34.886248000145031 ], [ -58.913675000201067, -34.88607800039938 ], [ -58.913197999787826, -34.885518999801945 ], [ -58.912696000020333, -34.884848000334898 ], [ -58.911924000392276, -34.883815000361949 ], [ -58.911160000233792, -34.882791999950769 ], [ -58.910445999683077, -34.881838000023663 ], [ -58.909483000240243, -34.880548999936366 ], [ -58.908511000382305, -34.879249000241145 ], [ -58.907863000177258, -34.878381999829401 ], [ -58.90691000029625, -34.877107000387696 ], [ -58.906445999583184, -34.876484000436221 ], [ -58.905533999794216, -34.875256999610826 ], [ -58.905028999888373, -34.874578999820926 ], [ -58.904344999821831, -34.873658999663064 ], [ -58.903704999985735, -34.87279999962027 ], [ -58.902765999850999, -34.87153799987874 ], [ -58.901355999579664, -34.86964299972459 ], [ -58.900126999561337, -34.867992000030711 ], [ -58.898707999774331, -34.866086000268638 ], [ -58.897813999916139, -34.864883999696758 ], [ -58.897045000426374, -34.863850999723809 ], [ -58.896207999599483, -34.862726000004841 ], [ -58.89529499976436, -34.861499000078766 ], [ -58.894658000066613, -34.860643000174264 ], [ -58.893864000323333, -34.859576000432014 ], [ -58.893835999931412, -34.859517999555976 ], [ -58.893628000231956, -34.859083000180249 ], [ -58.893563999978596, -34.858868000158054 ], [ -58.893499999725179, -34.858383000275182 ], [ -58.893520999794248, -34.858138999814969 ], [ -58.893585000047665, -34.857902999723592 ], [ -58.893650000347179, -34.857708999770466 ], [ -58.893906999608305, -34.857258999703049 ], [ -58.894160999630401, -34.856899000188662 ], [ -58.894894000157933, -34.855859999939014 ], [ -58.895194999649448, -34.855435000125112 ], [ -58.89527999997199, -34.855242000218084 ], [ -58.895323000156282, -34.855027000195832 ], [ -58.89527999997199, -34.854683999666804 ], [ -58.895137999718884, -34.854194999599486 ], [ -58.895215999718573, -34.854018999577136 ], [ -58.895430999740825, -34.853697000016496 ], [ -58.895644999716922, -34.853460999925176 ], [ -58.89583799962395, -34.853202999718633 ], [ -58.895877999669892, -34.853004000434225 ], [ -58.89583799962395, -34.852924000342284 ], [ -58.895687999901213, -34.852860000088867 ], [ -58.895408999625602, -34.852903000273216 ], [ -58.894701000250905, -34.853438999809953 ], [ -58.894594999859294, -34.853532999648166 ], [ -58.893777999954693, -34.854254999668456 ], [ -58.893224999633958, -34.854765999850997 ], [ -58.892941000027065, -34.855027000195832 ], [ -58.892250999683824, -34.855602999778569 ], [ -58.892169000399008, -34.855671000216432 ], [ -58.89105500028802, -34.856566000120779 ], [ -58.890047999715364, -34.857373999610331 ], [ -58.889443999740763, -34.85786000043862 ], [ -58.889095999880453, -34.858097999722872 ], [ -58.888198999883912, -34.858524999628969 ], [ -58.888005999976883, -34.858610999997609 ], [ -58.887576999978535, -34.858718000435317 ], [ -58.887384000071506, -34.858718000435317 ], [ -58.887104999795838, -34.858567999813317 ], [ -58.886998000257449, -34.85841800009058 ], [ -58.886932999957935, -34.858031000230426 ], [ -58.887041999588575, -34.857687999701398 ], [ -58.887061999611547, -34.8576240003473 ], [ -58.887234000348769, -34.857409000325049 ], [ -58.887533999794186, -34.85715200016466 ], [ -58.887817000254302, -34.856867999658391 ], [ -58.888457000090455, -34.856228999868392 ], [ -58.888549999882571, -34.856093999938082 ], [ -58.888649999997483, -34.855949999592781 ], [ -58.888778999651095, -34.855692000285558 ], [ -58.888886000088803, -34.855220000102861 ], [ -58.888886000088803, -34.854940999827249 ], [ -58.888846000042804, -34.85459299996694 ], [ -58.888799999720163, -34.854190000268261 ], [ -58.88862799988226, -34.853740000200787 ], [ -58.888430999790785, -34.853385000017681 ], [ -58.888307000367718, -34.853160000433604 ], [ -58.88767600004735, -34.852269999860539 ], [ -58.887576999978535, -34.852129999699685 ], [ -58.886731999682013, -34.85099000018829 ], [ -58.886002000192093, -34.850004999730913 ], [ -58.885330999825726, -34.849100000264741 ], [ -58.885093999688308, -34.848780999943131 ], [ -58.884362000106194, -34.847792000200627 ], [ -58.883751999854894, -34.846969000019271 ], [ -58.883158000341382, -34.846168999999293 ], [ -58.882639999836101, -34.845469000094226 ], [ -58.88183000025424, -34.844376000052307 ], [ -58.881174999726397, -34.843492999802038 ], [ -58.880430999590942, -34.842489000267108 ], [ -58.879865999616129, -34.841726000154722 ], [ -58.879243999710752, -34.840887000134899 ], [ -58.878628000082074, -34.840055999584649 ], [ -58.878029000338074, -34.839248000095097 ], [ -58.877254999718446, -34.838203999614848 ], [ -58.876639000089767, -34.837371999917821 ], [ -58.875883000300178, -34.836351999645046 ], [ -58.875367999933189, -34.835656999970524 ], [ -58.874507999844298, -34.834497000436158 ], [ -58.874058999822921, -34.833891000369306 ], [ -58.873112000218612, -34.832613999936086 ], [ -58.871587000039995, -34.830556000359081 ], [ -58.869638000093573, -34.827925999585148 ], [ -58.868386999960023, -34.826288999637597 ], [ -58.86824399966082, -34.826102000007268 ], [ -58.86676899998929, -34.824090999899681 ], [ -58.865610999647856, -34.822510999882695 ], [ -58.865411000317351, -34.822239999975977 ], [ -58.863287000394735, -34.819472000032704 ], [ -58.859562000385949, -34.814488999567629 ], [ -58.858137000322245, -34.812583999851654 ], [ -58.854425000013691, -34.807563000332152 ], [ -58.851570999701835, -34.803614999932279 ], [ -58.851464000163446, -34.803486000278667 ], [ -58.850519999798109, -34.80222000035269 ], [ -58.84987599977751, -34.801362000355994 ], [ -58.849297000056481, -34.800588999782462 ], [ -58.848394999829338, -34.799366000040834 ], [ -58.848009000015281, -34.798893999858137 ], [ -58.847451000363321, -34.798164000368274 ], [ -58.846722000020236, -34.797155999749521 ], [ -58.846077999999636, -34.796297999752824 ], [ -58.845369999725676, -34.795353000240709 ], [ -58.844640000235756, -34.794365999691081 ], [ -58.843910999892671, -34.793465000409412 ], [ -58.84354600014774, -34.792928999973299 ], [ -58.844018000330436, -34.792649999697687 ], [ -58.845541000416802, -34.791899000138699 ], [ -58.846399999560276, -34.791404999840836 ], [ -58.845819999793093, -34.79059000002843 ], [ -58.845263000187288, -34.789817000354219 ], [ -58.844683000420105, -34.789022999711619 ], [ -58.844124999868825, -34.788228999968339 ], [ -58.843502999963448, -34.787414000155934 ], [ -58.842924000242363, -34.786641999628557 ], [ -58.84228000022182, -34.785825999770054 ], [ -58.841721999670483, -34.785032000026717 ], [ -58.840906999858134, -34.783959000007826 ], [ -58.840090999999632, -34.782951000288392 ], [ -58.839254000072003, -34.781727999647444 ], [ -58.838524999728918, -34.780633000412593 ], [ -58.837581000262901, -34.781105999742067 ], [ -58.837923999892666, -34.781598999993832 ], [ -58.838375000006181, -34.782177999714861 ], [ -58.838825000073655, -34.782821999735461 ], [ -58.837880999708318, -34.783337000102449 ], [ -58.837022999711621, -34.782093000291695 ], [ -58.836593999713273, -34.781598999993832 ], [ -58.835821000039061, -34.780612000343524 ], [ -58.835413000109838, -34.780032999723119 ], [ -58.834876999673781, -34.780439999606244 ], [ -58.834534000044016, -34.780697999812787 ], [ -58.834082999930445, -34.781041000341872 ], [ -58.833890000023416, -34.781126999811136 ], [ -58.833761000369805, -34.781126999811136 ], [ -58.833547000393708, -34.781020000272747 ], [ -58.832881000257942, -34.781449000271095 ], [ -58.833675000001222, -34.782349999552821 ], [ -58.834511999928793, -34.783422999571712 ], [ -58.835199000133684, -34.784366999937049 ], [ -58.834169000299084, -34.78490400041926 ], [ -58.833482000094193, -34.783959000007826 ], [ -58.832645000166565, -34.782843999850684 ], [ -58.831959000007828, -34.781920999554416 ], [ -58.831379000240645, -34.781169999995484 ], [ -58.83064999989756, -34.780118000045604 ], [ -58.830307000267794, -34.779645999862964 ], [ -58.829834000039057, -34.779023999957587 ], [ -58.829082999580748, -34.778079999592251 ], [ -58.828310999952635, -34.777070999826719 ], [ -58.827517000209355, -34.775976999738702 ], [ -58.827260000048909, -34.775590999924646 ], [ -58.827237999933686, -34.775504999556063 ], [ -58.827237999933686, -34.774689999743657 ], [ -58.827324000302326, -34.773917000069446 ], [ -58.827409999771646, -34.77310200025704 ], [ -58.827538000278423, -34.771749999962481 ], [ -58.827538000278423, -34.771534999940229 ], [ -58.827538000278423, -34.771449999617744 ], [ -58.827452999955938, -34.771105999941881 ], [ -58.827389999748675, -34.771019999573298 ], [ -58.826958999658075, -34.770419999783144 ], [ -58.826100999661378, -34.769282000364001 ], [ -58.825306999918098, -34.768294999814373 ], [ -58.823655000178064, -34.766127999707351 ], [ -58.821723000116322, -34.763552999671163 ], [ -58.820652000189625, -34.762113999861185 ], [ -58.818989999988446, -34.759881000307871 ], [ -58.817475000271031, -34.757844999946769 ], [ -58.816680999628375, -34.756729999789627 ], [ -58.816230000414123, -34.756150000022444 ], [ -58.815501000071038, -34.75514200030301 ], [ -58.814471000236438, -34.753746999824159 ], [ -58.813634000308809, -34.752609999551794 ], [ -58.811981999669513, -34.750378000044634 ], [ -58.811660000108873, -34.74992799997716 ], [ -58.811122999626718, -34.749218999657046 ], [ -58.810114999907285, -34.747846000192737 ], [ -58.809449999817616, -34.746966000080818 ], [ -58.808977999634919, -34.746279999922024 ], [ -58.808033000122805, -34.745013999996047 ], [ -58.807154000057039, -34.743812000323487 ], [ -58.806295000014188, -34.742652999935956 ], [ -58.8057799996472, -34.741966999777162 ], [ -58.805350999648851, -34.741387000009979 ], [ -58.804943999765726, -34.740765000104602 ], [ -58.804492999652155, -34.740100000014934 ], [ -58.803870999746778, -34.739242000018237 ], [ -58.803483999886623, -34.738705000435402 ], [ -58.803120000187846, -34.738255000367928 ], [ -58.801767999893229, -34.736688000051117 ], [ -58.801253000425561, -34.735979999777101 ], [ -58.80088799978131, -34.735487000424712 ], [ -58.800672999759115, -34.735250000287238 ], [ -58.799729000293098, -34.733984000361261 ], [ -58.799557999601973, -34.733748000269941 ], [ -58.798934999650498, -34.732847000088952 ], [ -58.798269999560773, -34.731966999977033 ], [ -58.797305000025688, -34.73061599972857 ], [ -58.796682000074213, -34.729799999870067 ], [ -58.796039000099711, -34.728898999689022 ], [ -58.795330999825751, -34.728040999692325 ], [ -58.794537000082471, -34.727203999764754 ], [ -58.793870999946648, -34.726366999837126 ], [ -58.793227999972203, -34.725529999909497 ], [ -58.792583999951603, -34.724628999728509 ], [ -58.791918999861934, -34.72372800044684 ], [ -58.791295999910403, -34.72284800033492 ], [ -58.790652999935958, -34.721990000338224 ], [ -58.790158999638095, -34.721002999788539 ], [ -58.789579999917009, -34.720165999860967 ], [ -58.788914999827341, -34.719306999818116 ], [ -58.788248999691518, -34.718448999821419 ], [ -58.787563000432101, -34.717547999640431 ], [ -58.786940999627404, -34.716668000427831 ], [ -58.786296999606805, -34.715788000315911 ], [ -58.784966000280633, -34.713963999838654 ], [ -58.784494000097993, -34.713341999933334 ], [ -58.783978999731005, -34.71265599977454 ], [ -58.783549999732656, -34.712054999938232 ], [ -58.783078000449336, -34.711261000194952 ], [ -58.78260600026664, -34.710617000174352 ], [ -58.78204799971536, -34.709887999831267 ], [ -58.781555000362914, -34.709264999879792 ], [ -58.780974999696411, -34.708578999720999 ], [ -58.780503000413091, -34.707934999700456 ], [ -58.780031000230451, -34.707290999679856 ], [ -58.779537999978686, -34.706646999659256 ], [ -58.779065999795989, -34.706024999753879 ], [ -58.778958000211503, -34.705875000031199 ], [ -58.778551000328378, -34.705317000379239 ], [ -58.778079000145681, -34.704694999574542 ], [ -58.777605999916943, -34.704050999553942 ], [ -58.777133999734247, -34.703407000432662 ], [ -58.776641000381801, -34.702742000342994 ], [ -58.776147000083938, -34.702077000253325 ], [ -58.775674999901298, -34.701455000347948 ], [ -58.775224999833824, -34.700811000327349 ], [ -58.77468800025099, -34.70014600023768 ], [ -58.774238000183516, -34.699481000148012 ], [ -58.773787000069944, -34.698837000127412 ], [ -58.773250999633888, -34.698149999922521 ], [ -58.772820999589442, -34.697549000086269 ], [ -58.772371000421288, -34.696949000296058 ], [ -58.771920000307716, -34.696390999744779 ], [ -58.771448000125076, -34.695683000370138 ], [ -58.771019000126728, -34.695124999818859 ], [ -58.77050399975974, -34.694395000328939 ], [ -58.770052999646168, -34.69381599970859 ], [ -58.769560000293723, -34.693171999687991 ], [ -58.769131000295374, -34.692570999851739 ], [ -58.768659000112734, -34.691926999831139 ], [ -58.768550999628872, -34.691799000223625 ], [ -58.768229000068231, -34.691348000110054 ], [ -58.767800000069883, -34.690769000389025 ], [ -58.767350000002466, -34.690167999653397 ], [ -58.766898999888895, -34.689566999817146 ], [ -58.766447999775323, -34.689009000165186 ], [ -58.765526000424529, -34.687765000354432 ], [ -58.765097000426181, -34.687163999618861 ], [ -58.764473999575387, -34.686670000220317 ], [ -58.76385199967001, -34.686176999968552 ], [ -58.763080000041953, -34.685468999694535 ], [ -58.761838000323394, -34.683802000162132 ], [ -58.760762000166153, -34.682357000075456 ], [ -58.760183000445068, -34.68154200026305 ], [ -58.759947000353748, -34.681219999803091 ], [ -58.759711000262428, -34.680920000357673 ], [ -58.759325000448371, -34.680382999875519 ], [ -58.759239000079731, -34.680297000406199 ], [ -58.758681000427771, -34.679804000154434 ], [ -58.758037000407228, -34.679309999856571 ], [ -58.757308000064086, -34.678710000066417 ], [ -58.756556999605834, -34.678109000230108 ], [ -58.756148999676554, -34.677743999585857 ], [ -58.755568999909372, -34.677272000302537 ], [ -58.755268999564635, -34.677014000095994 ], [ -58.754947000003995, -34.676778000004674 ], [ -58.754667999728383, -34.676541999913297 ], [ -58.754217999660909, -34.676156000099297 ], [ -58.754089000007298, -34.676048999661589 ], [ -58.753552000424463, -34.675598000447337 ], [ -58.752887000334738, -34.675062000011224 ], [ -58.749905000415424, -34.672615999628647 ], [ -58.748832000396476, -34.671756999585796 ], [ -58.747673000008888, -34.670835000235002 ], [ -58.746771999827899, -34.670040999592402 ], [ -58.74636399989862, -34.669696999916596 ], [ -58.746084999623008, -34.669460999825219 ], [ -58.745698999808951, -34.66920399966483 ], [ -58.743682000324043, -34.667508999740505 ], [ -58.742824000327289, -34.666842999604683 ], [ -58.741965000284495, -34.666157000345265 ], [ -58.740849000081255, -34.665362999702609 ], [ -58.740183999991586, -34.665147999680414 ], [ -58.73932599999489, -34.664869000304066 ], [ -58.73844599988297, -34.664590000028454 ], [ -58.736579000120742, -34.664011000307369 ], [ -58.735528000217016, -34.66366799977834 ], [ -58.735335000309988, -34.663603000378146 ], [ -58.734241000221914, -34.663775000216049 ], [ -58.733767999993177, -34.663838999570146 ], [ -58.732996000365063, -34.663968000123077 ], [ -58.731644000070503, -34.664183000145272 ], [ -58.730313999891166, -34.664397000121426 ], [ -58.729476999963538, -34.664504999705912 ], [ -58.728360999760298, -34.664676000397037 ], [ -58.72728799974135, -34.664848000234997 ], [ -58.726516000113293, -34.664954999773386 ], [ -58.725207000003024, -34.665147999680414 ], [ -58.724047999615436, -34.665320000417637 ], [ -58.723383000425088, -34.665426999956026 ], [ -58.722675000151071, -34.665534000393734 ], [ -58.722602000381983, -34.665545000001714 ], [ -58.722525000428391, -34.665555999609637 ], [ -58.721301999787443, -34.665749000415985 ], [ -58.720614999582551, -34.665834999885305 ], [ -58.719627999932186, -34.665984999607986 ], [ -58.718082999730598, -34.666242999814529 ], [ -58.716538000428329, -34.666478999905905 ], [ -58.714757000135421, -34.666736000066294 ], [ -58.712890000373193, -34.667036999557865 ], [ -58.711258999802965, -34.667143999995574 ], [ -58.710487000174851, -34.667187000179865 ], [ -58.709520999694348, -34.667165000064642 ], [ -58.708577000228331, -34.667036999557865 ], [ -58.707483000140314, -34.666907999904254 ], [ -58.705872999639155, -34.666714999997225 ], [ -58.703963999738733, -34.666478999905905 ], [ -58.702096999976504, -34.666242999814529 ], [ -58.700230000214276, -34.665984999607986 ], [ -58.700016000238179, -34.665964000438237 ], [ -58.697677000293311, -34.665663000047346 ], [ -58.696217999560986, -34.66549200025554 ], [ -58.694350999798758, -34.665277000233345 ], [ -58.692461999921306, -34.665062000211094 ], [ -58.69089599965065, -34.664869000304066 ], [ -58.689178999611102, -34.66461200014362 ], [ -58.687495000194076, -34.664408999775503 ], [ -58.687398000217513, -34.664397000121426 ], [ -58.685682000224062, -34.664183000145272 ], [ -58.684286999745211, -34.664011000307369 ], [ -58.683109000280126, -34.663858999593117 ], [ -58.682956999565818, -34.663838999570146 ], [ -58.681390000148326, -34.663624999593992 ], [ -58.680037999853766, -34.663409999571797 ], [ -58.678644000320332, -34.66325999984906 ], [ -58.678278999676081, -34.663195999595644 ], [ -58.676648000005173, -34.662917000219352 ], [ -58.675939999731156, -34.662745000381392 ], [ -58.675189000172168, -34.662551999575101 ], [ -58.674222999691665, -34.662316000383044 ], [ -58.672872000342522, -34.661907999554501 ], [ -58.6714119995641, -34.661436000271124 ], [ -58.670039000099734, -34.661007000272775 ], [ -58.669009000265135, -34.660663999743747 ], [ -58.668580000266786, -34.660535000090135 ], [ -58.667849999877546, -34.660298999998815 ], [ -58.667121000433781, -34.660170000345204 ], [ -58.66563999958629, -34.659719000231632 ], [ -58.665383000325164, -34.659590999724799 ], [ -58.665190000418136, -34.659441000002118 ], [ -58.664267000121924, -34.65916199972645 ], [ -58.662829000358045, -34.658710999612879 ], [ -58.661412999810068, -34.65828199961453 ], [ -58.660382999975411, -34.65796000005389 ], [ -58.659418000440326, -34.657659999709153 ], [ -58.658323000306154, -34.65733800014857 ], [ -58.656178000314412, -34.656650999943622 ], [ -58.655727000200841, -34.656501000220942 ], [ -58.655105000295464, -34.656308000313913 ], [ -58.653280999818264, -34.655727999647411 ], [ -58.653065999796013, -34.655727999647411 ], [ -58.652593999613373, -34.655814000016051 ], [ -58.650276999783671, -34.656221999945274 ], [ -58.648194999999191, -34.656629999874554 ], [ -58.648024000207386, -34.656672000012748 ], [ -58.646951000188494, -34.656865999965873 ], [ -58.646500000074923, -34.65693000021929 ], [ -58.645834999985198, -34.657058999872902 ], [ -58.644461999621569, -34.657316000033347 ], [ -58.643903999969609, -34.657444999686959 ], [ -58.643582000408969, -34.656265000129622 ], [ -58.643259999949009, -34.655042000387937 ], [ -58.642959999604273, -34.653883000000405 ], [ -58.642702000297049, -34.652788999912389 ], [ -58.64261599992841, -34.652530999705846 ], [ -58.640771000281404, -34.651908999800469 ], [ -58.640684999912764, -34.651886999685246 ], [ -58.640363000352124, -34.651780000146857 ], [ -58.639011000057565, -34.651995000169052 ], [ -58.637938000038616, -34.65218800007608 ], [ -58.637552000224616, -34.652252000329497 ], [ -58.636822999881474, -34.652380999983109 ], [ -58.636050000207319, -34.65250999963672 ], [ -58.635600000139846, -34.652573999890137 ], [ -58.634505000005731, -34.65274599972804 ], [ -58.634162000375966, -34.652809999981457 ], [ -58.633304000379269, -34.652938999635069 ], [ -58.632617000174378, -34.653025000003709 ], [ -58.631780000246749, -34.653174999726389 ], [ -58.631372000317526, -34.653238999979806 ], [ -58.631028999788441, -34.653238999979806 ], [ -58.630707000227858, -34.653195999795514 ], [ -58.630148999676578, -34.65283200009668 ], [ -58.629806000046813, -34.652809999981457 ], [ -58.629849000231161, -34.652959999704194 ], [ -58.62987000030023, -34.653754000346794 ], [ -58.628776000212213, -34.653754000346794 ], [ -58.627616999824625, -34.653754000346794 ], [ -58.627616999824625, -34.652853000165805 ], [ -58.627573999640333, -34.651566000170703 ], [ -58.626459000382511, -34.651608000308897 ], [ -58.625343000179271, -34.65163000042412 ], [ -58.62418399979174, -34.65163000042412 ], [ -58.622724999958734, -34.65163000042412 ], [ -58.622724999958734, -34.650878999965812 ], [ -58.622724999958734, -34.650406999783172 ], [ -58.622681999774443, -34.649184000041544 ], [ -58.621094000287826, -34.649205000110612 ], [ -58.619828000361906, -34.649227000225835 ], [ -58.618519000251638, -34.649248000294961 ], [ -58.617317999725856, -34.649248000294961 ], [ -58.616138000168519, -34.649270000410127 ], [ -58.615021999965279, -34.649290999579932 ], [ -58.613992000130679, -34.649290999579932 ], [ -58.612467999998159, -34.648904999765875 ], [ -58.612017999930686, -34.648798000227487 ], [ -58.611245000256531, -34.648626000389584 ], [ -58.610988000096086, -34.648561000090012 ], [ -58.610430000444126, -34.648390000298207 ], [ -58.610215000421874, -34.648347000113915 ], [ -58.609463999963566, -34.648175000276012 ], [ -58.607875999577686, -34.647831999746927 ], [ -58.606954000226892, -34.647703000093315 ], [ -58.605645000116624, -34.647553000370635 ], [ -58.604464999659967, -34.647402999748579 ], [ -58.603391999641019, -34.647274000094967 ], [ -58.601953999877139, -34.647102000257064 ], [ -58.600709000020288, -34.64697399975023 ], [ -58.600000999746328, -34.646888000280967 ], [ -58.598628000281963, -34.646695000373938 ], [ -58.597018999826957, -34.646480000351687 ], [ -58.594744000135449, -34.646223000191242 ], [ -58.593950000392169, -34.646114999707436 ], [ -58.593198999933861, -34.646051000353339 ], [ -58.592512999775067, -34.645964999984699 ], [ -58.591762000216079, -34.645878999616116 ], [ -58.590925000288507, -34.645793000146796 ], [ -58.590816999804645, -34.645751000008602 ], [ -58.590689000197187, -34.645492999802059 ], [ -58.590474000174936, -34.64497800033439 ], [ -58.590323999552879, -34.64474200024307 ], [ -58.590217000014491, -34.644634999805362 ], [ -58.590088000360879, -34.644570000405167 ], [ -58.589357999971696, -34.64450600015175 ], [ -58.588307000067971, -34.644356000429013 ], [ -58.587190999864731, -34.644183999691791 ], [ -58.586117999845783, -34.644055000038179 ], [ -58.585110000126349, -34.643905000315442 ], [ -58.584122999576721, -34.643754999693442 ], [ -58.583328999833441, -34.643648000155054 ], [ -58.581891000069561, -34.643412000063734 ], [ -58.580453000305681, -34.643197000041482 ], [ -58.578993999573356, -34.642960999950162 ], [ -58.577513999671282, -34.642724999858785 ], [ -58.576119000091751, -34.642531999951814 ], [ -58.574594999959231, -34.642295999860437 ], [ -58.573179000310574, -34.642080999838242 ], [ -58.571741999693472, -34.641823999677797 ], [ -58.570260999745301, -34.641587999586477 ], [ -58.568716000443032, -34.641330000279254 ], [ -58.567343000079347, -34.6411160003031 ], [ -58.567214000425736, -34.641094000187934 ], [ -58.566291000129524, -34.640923000396128 ], [ -58.566055000038205, -34.640858000096557 ], [ -58.565905000315468, -34.640858000096557 ], [ -58.565518999602091, -34.64088000021178 ], [ -58.564339000044754, -34.640687000304752 ], [ -58.563502000117182, -34.64055799975182 ], [ -58.563256999610815, -34.640449000121237 ], [ -58.562665000189554, -34.640364999844849 ], [ -58.561592000170606, -34.640214000076014 ], [ -58.560970000265286, -34.640128999753472 ], [ -58.560133000337657, -34.640043000284209 ], [ -58.558673999605332, -34.639913999731277 ], [ -58.558202000322012, -34.639892999662152 ], [ -58.557235999841453, -34.639913999731277 ], [ -58.557065000049647, -34.639913999731277 ], [ -58.556035000215047, -34.639913999731277 ], [ -58.554253999922139, -34.639934999800346 ], [ -58.553224000087482, -34.639956999915569 ], [ -58.552644000320299, -34.639956999915569 ], [ -58.551099000118711, -34.64000000009986 ], [ -58.549489999663706, -34.640021000168986 ], [ -58.548954000126969, -34.640043000284209 ], [ -58.546228000321889, -34.64008599956918 ], [ -58.545134000233872, -34.640106999638306 ], [ -58.544726000304649, -34.640106999638306 ], [ -58.544083000330147, -34.640106999638306 ], [ -58.543502999663644, -34.640128999753472 ], [ -58.542880999758268, -34.640149999822597 ], [ -58.541399999810096, -34.64017199993782 ], [ -58.539984000161439, -34.640128999753472 ], [ -58.538610999797754, -34.640021000168986 ], [ -58.537280999618417, -34.639913999731277 ], [ -58.535842999854538, -34.639828000261957 ], [ -58.535092000295549, -34.639741999893317 ], [ -58.533311000002584, -34.639635000354929 ], [ -58.532216999914567, -34.639571000101512 ], [ -58.531121999780453, -34.639462999617706 ], [ -58.530735999966396, -34.639421000378832 ], [ -58.530241999668533, -34.639378000194483 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.529485999878943, -34.63934100028689 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.498013, -34.637210000041421 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.441966000030845, -34.619272000202614 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 63.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.373984000061512, -34.585795999685615 ], [ -58.375082000334032, -34.585153999757267 ], [ -58.375167999803296, -34.58509000040317 ], [ -58.375182999595722, -34.584994999619482 ], [ -58.374889000427004, -34.58459600010525 ], [ -58.375039000149684, -34.584509999736667 ], [ -58.375318000425352, -34.584338999944862 ], [ -58.375533000447547, -34.584188000176027 ], [ -58.377270999656844, -34.583243999810691 ], [ -58.376541000166981, -34.582450000067411 ], [ -58.374909999596753, -34.583394999579525 ], [ -58.373129000203164, -34.584295999760513 ], [ -58.37291500022701, -34.58436000001393 ], [ -58.371777999954702, -34.58491799966589 ], [ -58.371691999586062, -34.585047000218822 ], [ -58.371712999655188, -34.585153999757267 ], [ -58.372377999744856, -34.585948000399867 ], [ -58.37220699995305, -34.586141000306895 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371606000116799, -34.587643000324135 ], [ -58.371068999634588, -34.589187999626461 ], [ -58.371391000094548, -34.589273999995044 ], [ -58.371777999954702, -34.589230999810752 ], [ -58.372014000046022, -34.589273999995044 ], [ -58.372271000206467, -34.589402999648655 ], [ -58.372464000113496, -34.589595999555684 ], [ -58.37300099969633, -34.590239999576283 ], [ -58.373472999879027, -34.590819000196632 ], [ -58.373580000316736, -34.590991000034592 ], [ -58.37355900024761, -34.591076000357077 ], [ -58.372958000411359, -34.591354999733426 ], [ -58.372785999674079, -34.591441000102009 ], [ -58.372635999951399, -34.59156999975562 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373516000063319, -34.593780000046934 ], [ -58.373193999603359, -34.594059000322545 ], [ -58.372872000042719, -34.594424000067534 ], [ -58.372722000320039, -34.594745999628117 ], [ -58.372334999560564, -34.595561000339842 ], [ -58.372099000368507, -34.596140000060927 ], [ -58.371755999839479, -34.596912999735082 ], [ -58.371670000370159, -34.597063000357139 ], [ -58.371842000208119, -34.59710599964211 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.372978999581107, -34.597384999917779 ], [ -58.374266999622307, -34.597449000171196 ], [ -58.375381999779449, -34.59751399957139 ], [ -58.376883999796689, -34.597556999755682 ], [ -58.378365999791015, -34.597643000124322 ], [ -58.379845999693089, -34.59774999966271 ], [ -58.381305000425414, -34.597813999916127 ], [ -58.381754999593511, -34.597857000100419 ], [ -58.382163000422111, -34.597878000169544 ], [ -58.382592000420459, -34.597921000353836 ], [ -58.38407300036863, -34.598093000191739 ], [ -58.385532000201636, -34.598199999730184 ], [ -58.386969999965459, -34.598286000098767 ], [ -58.388213999776212, -34.598351000398281 ], [ -58.389758999977801, -34.598457999936727 ], [ -58.391047000019, -34.598586999590339 ], [ -58.391174999626514, -34.598586999590339 ], [ -58.391668999924377, -34.598628999728533 ], [ -58.393042000288062, -34.598715000097116 ], [ -58.394569999705709, -34.598715000097116 ], [ -58.395895999700599, -34.598715000097116 ], [ -58.397334000363799, -34.598586999590339 ], [ -58.399007000172901, -34.59830800021399 ], [ -58.400681000028101, -34.598050000007447 ], [ -58.402096999676758, -34.597770999731836 ], [ -58.40347100008654, -34.597556999755682 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404809999781605, -34.601830999900699 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405761999616573, -34.605608999655544 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.40602500005366, -34.608885999689107 ], [ -58.406303000283174, -34.608950999988622 ], [ -58.408791999950779, -34.609208000149067 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.408899000388544, -34.610474000074987 ], [ -58.408813000019904, -34.611439999656227 ], [ -58.410229999714659, -34.611547000093935 ], [ -58.411217000264287, -34.611611000347352 ], [ -58.411667000331761, -34.611826000369604 ], [ -58.413018999727001, -34.612448000274924 ], [ -58.413426999656281, -34.612597999997661 ], [ -58.413521000393814, -34.612628999628612 ], [ -58.414800000019966, -34.613049000111232 ], [ -58.415636999947537, -34.613328000386844 ], [ -58.416215999668623, -34.613521000293872 ], [ -58.417267999618446, -34.613863999923637 ], [ -58.418684000166422, -34.614271999852861 ], [ -58.420335999906456, -34.61459400031282 ], [ -58.420375999952398, -34.61459699955185 ], [ -58.421645000016724, -34.61467999978214 ], [ -58.423060999665381, -34.614744000035557 ], [ -58.424489999913533, -34.614805000150568 ], [ -58.424562999682621, -34.614809000335072 ], [ -58.425958000161529, -34.614893999758237 ], [ -58.4274390001097, -34.614959000057752 ], [ -58.427394999879311, -34.616061999661497 ], [ -58.427352999741117, -34.617082999980425 ], [ -58.427309999556769, -34.618155999999374 ], [ -58.427388999602613, -34.618164000368267 ], [ -58.428555000312997, -34.618284999652985 ], [ -58.429948999846431, -34.618477999560014 ], [ -58.430636000051322, -34.618563999928597 ], [ -58.431301000140991, -34.618649000251139 ], [ -58.431537000232311, -34.618692000435431 ], [ -58.433403999994539, -34.618927999627431 ], [ -58.434541000266904, -34.619057000180362 ], [ -58.435914999777367, -34.619357999671877 ], [ -58.437269000164179, -34.619726999601312 ], [ -58.437331000325344, -34.619744000385253 ], [ -58.438189000322041, -34.620000999646379 ], [ -58.438724999858835, -34.620173000383602 ], [ -58.441106999987994, -34.620817000404202 ], [ -58.442716999589834, -34.621418000240453 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.448113000214732, -34.623311000302351 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463852000269583, -34.629892999862022 ], [ -58.463595000109137, -34.630472999629205 ], [ -58.463117999695896, -34.631635000155086 ], [ -58.463100999811275, -34.631674000154931 ], [ -58.462628999628578, -34.63279000035817 ], [ -58.462157000345258, -34.63390599966209 ], [ -58.461770999631881, -34.634828999958359 ], [ -58.461808999585628, -34.634847999935232 ], [ -58.462951000088538, -34.635428999748513 ], [ -58.461813999816172, -34.636523999882627 ], [ -58.460677000443184, -34.637553999717284 ], [ -58.460626999936039, -34.637600000039924 ], [ -58.459539000124721, -34.638604999621009 ], [ -58.458551999575093, -34.63952799991722 ], [ -58.458469000244122, -34.639603999824715 ], [ -58.457543999855659, -34.640450000167334 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.456514000021059, -34.641415999748574 ], [ -58.455376999748694, -34.642466999652243 ], [ -58.454411000167511, -34.643325999695094 ], [ -58.453960000053939, -34.643754999693442 ], [ -58.453360000263785, -34.644313000244722 ], [ -58.452458000036643, -34.645128000057127 ], [ -58.451749999762626, -34.645793000146796 ], [ -58.451320999764278, -34.645685999709087 ], [ -58.451127999857249, -34.645685999709087 ], [ -58.450184000391289, -34.646458000236464 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 62.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.412547000443681, -34.577601000385812 ], [ -58.412976000442029, -34.578265999576161 ], [ -58.413298000002669, -34.578759999874023 ], [ -58.413426999656281, -34.578930999665886 ], [ -58.413942000023269, -34.57970400023936 ], [ -58.414477999560006, -34.580519000051765 ], [ -58.415229000018314, -34.581678000439354 ], [ -58.416946000057806, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.431858999792951, -34.576507000297795 ], [ -58.435506999848144, -34.574962000096207 ], [ -58.436430000144355, -34.574510999982635 ], [ -58.437116000303149, -34.574103000053356 ], [ -58.438446999629264, -34.573394999779396 ], [ -58.439648000155046, -34.572708999620602 ], [ -58.440742000243063, -34.572085999669127 ], [ -58.441966000030845, -34.571420999579402 ], [ -58.442544999751874, -34.571099000018819 ], [ -58.442952999681154, -34.57090600011179 ], [ -58.443831999746976, -34.570456000044317 ], [ -58.444111000022588, -34.570305000275482 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.479280000371659, -34.529063999603864 ], [ -58.478165000214574, -34.528505999951904 ], [ -58.477499000078751, -34.529471000386309 ], [ -58.476899000288597, -34.530372999714132 ], [ -58.475783000085357, -34.529858000246463 ], [ -58.474666999882118, -34.529299999695183 ], [ -58.473550999678878, -34.528785000227515 ], [ -58.472650000397152, -34.528356000229167 ], [ -58.471706000031816, -34.527905000115595 ], [ -58.472113999961095, -34.52685400021187 ], [ -58.472157000145387, -34.526788999912355 ], [ -58.47247799965993, -34.526017000284298 ], [ -58.472564000028513, -34.525781000192978 ], [ -58.472822000235055, -34.525222999641699 ], [ -58.472928999773501, -34.524986999550322 ], [ -58.472971999957792, -34.524922000150127 ], [ -58.473229000118238, -34.52479399964335 ], [ -58.473357999771849, -34.524578999621099 ], [ -58.473444000140432, -34.524363999598847 ], [ -58.473357999771849, -34.524043000084362 ], [ -58.473979999677226, -34.522711999858871 ], [ -58.474451999859866, -34.521789999608757 ], [ -58.474881999904312, -34.520867000211865 ], [ -58.475331999971786, -34.519879999662237 ], [ -58.475739999901009, -34.518893000011872 ], [ -58.476747999620443, -34.51685400041174 ], [ -58.478143000099351, -34.517434000178923 ], [ -58.479558999748008, -34.5180560000843 ], [ -58.480181999699482, -34.51837799964494 ], [ -58.480588999582608, -34.518570999551969 ], [ -58.480846999789151, -34.518677999989677 ], [ -58.481641000431807, -34.519063999803677 ], [ -58.482628000082116, -34.519622000355014 ], [ -58.483635999801493, -34.520136999822626 ], [ -58.484602000282052, -34.520587999936197 ], [ -58.485288999587624, -34.520910000396157 ], [ -58.486705000135601, -34.521617999770854 ], [ -58.487842000407966, -34.522111000022562 ], [ -58.488443000244217, -34.522412000413453 ], [ -58.489087000264817, -34.522755000043162 ], [ -58.489837999823806, -34.523119999788094 ], [ -58.490760000073919, -34.52359199997079 ], [ -58.490888999727531, -34.523656000224207 ], [ -58.491939999631256, -34.524192999807042 ], [ -58.492284000206382, -34.52438599971407 ], [ -58.493121000134011, -34.524814999712419 ], [ -58.493699999855096, -34.525072999918962 ], [ -58.494085999669096, -34.52526599982599 ], [ -58.494451000313347, -34.525436999617796 ], [ -58.495460000078879, -34.525951999984784 ], [ -58.496682999820564, -34.526531999751967 ], [ -58.497863000277221, -34.527132999588218 ], [ -58.498999999650209, -34.527690000093401 ], [ -58.500202000222089, -34.528269999860584 ], [ -58.501424999963717, -34.528870999696835 ], [ -58.502647999705403, -34.52945000031724 ], [ -58.503807000092934, -34.530029000038269 ], [ -58.504965000434368, -34.530608999805452 ], [ -58.505629999624716, -34.530909000150189 ], [ -58.506188000176053, -34.531167000356731 ], [ -58.507389999848556, -34.531746000077817 ], [ -58.508570000305212, -34.532303999729777 ], [ -58.510136999722704, -34.533076000257154 ], [ -58.511338000248486, -34.533633999909114 ], [ -58.512110999922641, -34.534019999723171 ], [ -58.512989999988463, -34.534470999836742 ], [ -58.513333999664326, -34.534663999743771 ], [ -58.514535000190051, -34.535264999580022 ], [ -58.515092999842011, -34.535521999740467 ], [ -58.515500999771291, -34.535715999693593 ], [ -58.515886999585348, -34.535908999600622 ], [ -58.516380999883211, -34.536187999876233 ], [ -58.516896000250199, -34.536445000036679 ], [ -58.517132000341519, -34.53657399969029 ], [ -58.518140000060896, -34.537089000057279 ], [ -58.519384999917747, -34.53768999989353 ], [ -58.520479000005821, -34.538205000260518 ], [ -58.521402000302032, -34.538677000443158 ], [ -58.521638000393352, -34.538783999981547 ], [ -58.522753999697272, -34.539341999633507 ], [ -58.523632999763095, -34.539770999631912 ], [ -58.523955000223054, -34.539921000253912 ], [ -58.524771000081557, -34.540308000114067 ], [ -58.525243000264197, -34.540522000090164 ], [ -58.525778999800934, -34.540801000365832 ], [ -58.52644399989066, -34.541122999926472 ], [ -58.527560000093899, -34.54163800029346 ], [ -58.527731999931802, -34.541723999762723 ], [ -58.529018999926848, -34.542388999852392 ], [ -58.528183000045374, -34.543290000033437 ], [ -58.527796000185219, -34.543741000147008 ], [ -58.527410000371162, -34.544170000145357 ], [ -58.526658999912854, -34.545007000072928 ], [ -58.527023999657843, -34.545672000162654 ], [ -58.52747399972526, -34.546443999790711 ], [ -58.527753000000928, -34.546959000157699 ], [ -58.528032000276539, -34.547431000340339 ], [ -58.528310999652888, -34.547924999738882 ], [ -58.528589999928499, -34.54844000010587 ], [ -58.528975999742556, -34.549105000195539 ], [ -58.529556000409059, -34.550091999845847 ], [ -58.529598999694031, -34.55020000032971 ], [ -58.530135000130088, -34.551143999795727 ], [ -58.53071499989727, -34.552152000414424 ], [ -58.531293999618356, -34.553161000179955 ], [ -58.531895000353927, -34.554168999899389 ], [ -58.532109000330081, -34.554554999713446 ], [ -58.532474000075013, -34.555241999918337 ], [ -58.532645999912916, -34.555391999641017 ], [ -58.533632999563224, -34.55620800039884 ], [ -58.534620000112852, -34.557002000142177 ], [ -58.535328000386869, -34.557580999863205 ], [ -58.535863999923606, -34.558031999976777 ], [ -58.536507999944206, -34.558568000412833 ], [ -58.537195000149097, -34.559126000064794 ], [ -58.537838000123543, -34.559683999716754 ], [ -58.538289000237114, -34.560049000361062 ], [ -58.538482000144143, -34.560220000152867 ], [ -58.538697000166394, -34.560369999875547 ], [ -58.538954000326839, -34.560605999966867 ], [ -58.539362000256062, -34.56094999964273 ], [ -58.53942599961016, -34.560992999827022 ], [ -58.540155999999342, -34.56159399966333 ], [ -58.540348999906371, -34.561765000354455 ], [ -58.540927999627456, -34.562236999637776 ], [ -58.541250000087416, -34.56253800002861 ], [ -58.541508000293959, -34.562730999935638 ], [ -58.541550999578931, -34.563010000211307 ], [ -58.541807999739376, -34.563890000323227 ], [ -58.541958000361376, -34.563974999746392 ], [ -58.542945000011684, -34.564790999604895 ], [ -58.543545999847993, -34.565305999971883 ], [ -58.544254000121953, -34.565948999946329 ], [ -58.543203000218227, -34.566851000173472 ], [ -58.543266999572324, -34.566894000357763 ], [ -58.542215999668599, -34.567752000354517 ], [ -58.541163999718776, -34.568589000282088 ], [ -58.540133999884119, -34.569447000278785 ], [ -58.540069999630759, -34.569489999563757 ], [ -58.540006000276662, -34.569532999748105 ], [ -58.538976000442005, -34.570390999744802 ], [ -58.537923999592863, -34.571248999741499 ], [ -58.536893999758263, -34.572085999669127 ], [ -58.535820999739315, -34.572944999711922 ], [ -58.534790999904658, -34.573780999593396 ], [ -58.535542000362966, -34.574446999729219 ], [ -58.536315000037177, -34.575068999634595 ], [ -58.537065999596166, -34.575712999655138 ], [ -58.537860000238766, -34.576377999744864 ], [ -58.538653999982046, -34.577042999834532 ], [ -58.539447999725382, -34.577707999924201 ], [ -58.540199000183691, -34.5783519999448 ], [ -58.540970999811748, -34.579017000034469 ], [ -58.541722000270056, -34.579661000055069 ], [ -58.54258100031285, -34.580305000075668 ], [ -58.543375000056187, -34.581034000418754 ], [ -58.544125999615176, -34.581720999724325 ], [ -58.544919000211678, -34.582385999813994 ], [ -58.545670999816764, -34.583007999719371 ], [ -58.546443000344141, -34.583672999809039 ], [ -58.547258000156546, -34.584338999944862 ], [ -58.547966000430563, -34.584938999735016 ], [ -58.548739000104717, -34.585604999870782 ], [ -58.548803000358134, -34.585669000124199 ], [ -58.549576000032346, -34.586269999960507 ], [ -58.550326999591334, -34.58691399998105 ], [ -58.55105599993442, -34.587556999955552 ], [ -58.552880000411676, -34.589102000157141 ], [ -58.553351999694996, -34.589553000270712 ], [ -58.552430000344202, -34.59053999992102 ], [ -58.552151000068534, -34.59077600001234 ], [ -58.551958000161562, -34.590991000034592 ], [ -58.55105599993442, -34.591935000399928 ], [ -58.550970999611877, -34.592020999869192 ], [ -58.551121000233934, -34.592922000050237 ], [ -58.551507000047991, -34.593201000325848 ], [ -58.552708999720494, -34.593951999884837 ], [ -58.552022000414922, -34.594703000343145 ], [ -58.551399999610226, -34.595368000432813 ], [ -58.550670000120363, -34.596140000060927 ], [ -58.550412999959917, -34.59639800026747 ], [ -58.550026000099763, -34.596827000265819 ], [ -58.549361000010094, -34.597534999640459 ], [ -58.549081999734483, -34.59783600003135 ], [ -58.548674999851301, -34.598265000029699 ], [ -58.548008999715535, -34.598973000303658 ], [ -58.547881000108021, -34.599123000026395 ], [ -58.547343999625866, -34.599701999747424 ], [ -58.545971000161501, -34.59878000039663 ], [ -58.544254000121953, -34.597642000078224 ], [ -58.543545999847993, -34.598371999568087 ], [ -58.544382999775564, -34.598930000119367 ], [ -58.543396000125256, -34.599981000023092 ], [ -58.542408999575628, -34.601010999857692 ], [ -58.541465000109611, -34.601998000407377 ], [ -58.540800000019942, -34.602684999712949 ], [ -58.540305999722079, -34.603221000149006 ], [ -58.540112999815051, -34.603415000102132 ], [ -58.539254999818354, -34.602856999550852 ], [ -58.538395999775503, -34.602276999783669 ], [ -58.537580999963154, -34.601741000246932 ], [ -58.536722999966457, -34.601182999695652 ], [ -58.535886000038829, -34.600603999974567 ], [ -58.535028000042132, -34.600024000207384 ], [ -58.534168999999338, -34.599444999587035 ], [ -58.533332000071709, -34.598886999935075 ], [ -58.532495000144081, -34.599744999931772 ], [ -58.531765999800996, -34.600496000390081 ], [ -58.530993000126841, -34.601312000248583 ], [ -58.530220999599408, -34.60217000024528 ], [ -58.529448999971351, -34.603071000426269 ], [ -58.529426999856128, -34.603306999618269 ], [ -58.529426999856128, -34.603479000355549 ], [ -58.529470000040419, -34.603585999893937 ], [ -58.52992100015399, -34.60352199964052 ], [ -58.530371000221464, -34.604487000074926 ], [ -58.531078999596104, -34.605968000023154 ], [ -58.531808999985344, -34.607448999971325 ], [ -58.532366999637304, -34.608671999712953 ], [ -58.531143999895619, -34.60905800042633 ], [ -58.529942000223116, -34.609401000056039 ], [ -58.529320000317739, -34.609593999963067 ], [ -58.529062000111196, -34.609680000331707 ], [ -58.528826000019819, -34.609786999870096 ], [ -58.529147999580459, -34.610580999613376 ], [ -58.529341000386808, -34.610946000257684 ], [ -58.529426999856128, -34.611139000164655 ], [ -58.529834999785351, -34.611932999907992 ], [ -58.529899000038768, -34.612041000391798 ], [ -58.530027999692379, -34.612191000114535 ], [ -58.531015000242007, -34.612791999950787 ], [ -58.531616000078316, -34.613113000364649 ], [ -58.532474000075013, -34.613649999947484 ], [ -58.533418000440349, -34.61418600038354 ], [ -58.534490999559921, -34.614615000381946 ], [ -58.536035999761566, -34.615195000149072 ], [ -58.536657999666886, -34.615409000125226 ], [ -58.537667000331737, -34.61579599998538 ], [ -58.538954000326839, -34.61626800016802 ], [ -58.540155999999342, -34.616740000350717 ], [ -58.541357999671902, -34.617169000349065 ], [ -58.542279999922016, -34.617534000093997 ], [ -58.542837999573976, -34.617748000070094 ], [ -58.543611000147507, -34.618027000345762 ], [ -58.544877000073427, -34.618498999629082 ], [ -58.546164000068529, -34.618992999926945 ], [ -58.545712999954958, -34.619786999670282 ], [ -58.545262999887484, -34.620581000312882 ], [ -58.544790999704844, -34.621418000240453 ], [ -58.544319000421467, -34.622233000052859 ], [ -58.543567999963159, -34.623091000049556 ], [ -58.543073999665296, -34.623648999701516 ], [ -58.542602000381976, -34.624186000183727 ], [ -58.542130000199336, -34.624721999720464 ], [ -58.540348999906371, -34.623606000416544 ], [ -58.540843000204234, -34.623198999634099 ], [ -58.539854999608508, -34.623262999887515 ], [ -58.539447999725382, -34.623113000164778 ], [ -58.537838000123543, -34.623219999703167 ], [ -58.537494999594514, -34.623606000416544 ], [ -58.537988999892377, -34.623884999792836 ], [ -58.539018999727034, -34.624549999882561 ], [ -58.539619000416508, -34.624914999627492 ], [ -58.540155999999342, -34.625237000087452 ], [ -58.540649000251108, -34.625537000432189 ], [ -58.540348999906371, -34.625772999624189 ], [ -58.539598000347382, -34.626353000290692 ], [ -58.538890000073422, -34.626888999827429 ], [ -58.538138999615114, -34.627489999663737 ], [ -58.537301999687486, -34.628111999569057 ], [ -58.537730999685834, -34.628477000213365 ], [ -58.53863199986688, -34.629292000025714 ], [ -58.539254999818354, -34.629849999677674 ], [ -58.539490999909674, -34.630064999699925 ], [ -58.539748000070119, -34.630300999791245 ], [ -58.540456000344079, -34.630922999696622 ], [ -58.541121000433805, -34.630387000159885 ], [ -58.541807999739376, -34.630623000251205 ], [ -58.543246000402576, -34.631158999787942 ], [ -58.543781999939313, -34.631330999625902 ], [ -58.544189999868536, -34.631351999694971 ], [ -58.544490000213273, -34.631245000156582 ], [ -58.544554999613524, -34.631180999903165 ], [ -58.544618999866884, -34.631158999787942 ], [ -58.544748000419816, -34.631245000156582 ], [ -58.544833999889136, -34.631394999879319 ], [ -58.544983999611873, -34.631503000363125 ], [ -58.545728999793482, -34.631922999946426 ], [ -58.545728999793482, -34.631922999946426 ], [ -58.54543399967929, -34.632017999830794 ], [ -58.545047999865233, -34.632167999553474 ], [ -58.544233000052884, -34.632490000013433 ], [ -58.543695999570673, -34.632703999989587 ], [ -58.543052999596227, -34.632940000080907 ], [ -58.541508000293959, -34.633476999663742 ], [ -58.540606000066816, -34.633777000008479 ], [ -58.5398979997928, -34.63399200003073 ], [ -58.539813000369634, -34.634056000284147 ], [ -58.539770000185342, -34.634141999753467 ], [ -58.539704999885771, -34.634721000373816 ], [ -58.53966199970148, -34.635730000139347 ], [ -58.539555000163091, -34.637017000134392 ], [ -58.539405000440354, -34.637897000246312 ], [ -58.539340000140839, -34.638798000427357 ], [ -58.539211999634063, -34.639656999570832 ], [ -58.537667000331737, -34.639548999986289 ], [ -58.536379000290594, -34.6394420004479 ], [ -58.535155999649646, -34.639335000010192 ], [ -58.533868999654544, -34.639248999641552 ], [ -58.530371000221464, -34.638991000334329 ], [ -58.530178000314436, -34.63897000026526 ], [ -58.530048999761505, -34.638927000080969 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 56.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.408791999950779, -34.609208000149067 ], [ -58.406303000283174, -34.608950999988622 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.406131000445271, -34.607728000246993 ], [ -58.406152999661174, -34.607383999671811 ], [ -58.406122000030223, -34.607216000018354 ], [ -58.406067000191854, -34.60691200038849 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.405744999731894, -34.605516999909582 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.405187000079934, -34.603349999802617 ], [ -58.404822000335002, -34.601869999900543 ], [ -58.404499999875043, -34.600904000319304 ], [ -58.404200000429626, -34.599894999654452 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.40314899962658, -34.596570000105373 ], [ -58.401818000300409, -34.597020000172847 ], [ -58.401582000209089, -34.596355000083122 ], [ -58.401153000210741, -34.594809999881534 ], [ -58.402264000183436, -34.594487000274796 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.403620999809277, -34.594080000391671 ], [ -58.405100999711351, -34.593372000117654 ], [ -58.406131000445271, -34.592578000374374 ], [ -58.407183000395094, -34.591634000009037 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.410082000084174, -34.589063000157296 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.412203999914595, -34.587643000324135 ], [ -58.412353999637332, -34.587556999955552 ], [ -58.413114999657466, -34.587036000211185 ], [ -58.414992999926938, -34.585775999662587 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.420528999813428, -34.58189799979283 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420208000298942, -34.58154999993252 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.429111999918803, -34.576785999674087 ], [ -58.431301000140991, -34.574811000327372 ], [ -58.431653000185747, -34.574459000282616 ], [ -58.431709000070271, -34.574404000444247 ], [ -58.431280000071922, -34.574446999729219 ], [ -58.430035000215071, -34.573975000445898 ], [ -58.430764999704934, -34.573566999617299 ], [ -58.431988000345882, -34.574125000168578 ], [ -58.432159000137688, -34.574210999637899 ], [ -58.432330999975648, -34.574318000075607 ], [ -58.432846000342579, -34.574274999891315 ], [ -58.4329370000425, -34.574268999614617 ], [ -58.433876000177236, -34.574210999637899 ], [ -58.434477000013487, -34.574424999613996 ], [ -58.435506999848144, -34.574962000096207 ], [ -58.436430000144355, -34.574510999982635 ], [ -58.437116000303149, -34.574103000053356 ], [ -58.438446999629264, -34.573394999779396 ], [ -58.439648000155046, -34.572708999620602 ], [ -58.440742000243063, -34.572085999669127 ], [ -58.441966000030845, -34.571420999579402 ], [ -58.442544999751874, -34.571099000018819 ], [ -58.442952999681154, -34.57090600011179 ], [ -58.443831999746976, -34.570456000044317 ], [ -58.444111000022588, -34.570305000275482 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.456723999812709, -34.56207400021492 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459927000030973, -34.55828700004497 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.475840000015921, -34.538865000119642 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476590000428132, -34.537491999755957 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 55.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.516830999950628, -34.547688999647562 ], [ -58.516295000413891, -34.54741000027127 ], [ -58.515908999700514, -34.54723800043331 ], [ -58.515415000301971, -34.54811799964591 ], [ -58.514965000234554, -34.548891000219442 ], [ -58.514234999845314, -34.550157000145418 ], [ -58.513634000009063, -34.551015000142115 ], [ -58.513033000172754, -34.551958999608075 ], [ -58.512368000083086, -34.551659000162658 ], [ -58.51219700029128, -34.551572999794075 ], [ -58.511681999924292, -34.551357999771824 ], [ -58.511081000088041, -34.551100999611378 ], [ -58.510888000181012, -34.550993000026892 ], [ -58.510029000138218, -34.550586000143767 ], [ -58.509342999979424, -34.550306999868099 ], [ -58.508891999865853, -34.550091999845847 ], [ -58.508742000143172, -34.550027999592487 ], [ -58.507818999846904, -34.549598999594139 ], [ -58.506724999758887, -34.549105000195539 ], [ -58.506210000291219, -34.548891000219442 ], [ -58.505629999624716, -34.548611999943773 ], [ -58.504578999721048, -34.54811799964591 ], [ -58.504021000069031, -34.547861000384842 ], [ -58.503463000417071, -34.547625000293465 ], [ -58.502411999614026, -34.547109999926533 ], [ -58.5018319998469, -34.546851999719991 ], [ -58.501318000425329, -34.546615999628614 ], [ -58.499900999831254, -34.546014999792362 ], [ -58.499944000015546, -34.546637999743837 ], [ -58.50000900031506, -34.547174000179893 ], [ -58.500115999853449, -34.547903999669813 ], [ -58.50024500040638, -34.548268000267967 ], [ -58.500438000313409, -34.548954999573539 ], [ -58.500480999598437, -34.549469999940527 ], [ -58.500588000036146, -34.549706000031847 ], [ -58.500438000313409, -34.55011399996107 ], [ -58.500287999691409, -34.550241999568584 ], [ -58.500129999599778, -34.550392000190641 ], [ -58.499857999646906, -34.550650000397184 ], [ -58.499643999670809, -34.550779000050795 ], [ -58.499299999994946, -34.551164999864795 ], [ -58.498721000273918, -34.551895000254035 ], [ -58.498034000069026, -34.552666999882092 ], [ -58.497497999632913, -34.553397000271275 ], [ -58.496875999727592, -34.554147999830263 ], [ -58.496252999776061, -34.554899000288572 ], [ -58.495975000445867, -34.555198999733989 ], [ -58.495802999708644, -34.555306000171754 ], [ -58.495717000239324, -34.55532800028692 ], [ -58.495030000034433, -34.555220999849212 ], [ -58.494880000311753, -34.555156000449017 ], [ -58.494623000151307, -34.555026999896086 ], [ -58.494278999576125, -34.555049000011309 ], [ -58.49359300031665, -34.555220999849212 ], [ -58.492928000226982, -34.55517799966492 ], [ -58.492390999744828, -34.555135000379948 ], [ -58.491189000072268, -34.555070000080377 ], [ -58.490523999982599, -34.555026999896086 ], [ -58.489966000330583, -34.555026999896086 ], [ -58.488742999689634, -34.554962999642669 ], [ -58.488506999598314, -34.5549419995736 ], [ -58.4883789999908, -34.5549419995736 ], [ -58.487542000063229, -34.554899000288572 ], [ -58.487198000387366, -34.554899000288572 ], [ -58.486661999951309, -34.554899000288572 ], [ -58.486254000022029, -34.554899000288572 ], [ -58.485953999677292, -34.554877000173349 ], [ -58.485159999934012, -34.55485600010428 ], [ -58.483894000008036, -34.554833999989057 ], [ -58.482756999735727, -34.55532800028692 ], [ -58.481984000061516, -34.555670999916686 ], [ -58.480997000411207, -34.556035999661617 ], [ -58.480139000414511, -34.556401000305868 ], [ -58.479365999840979, -34.556743999935577 ], [ -58.478208000398865, -34.557259000302565 ], [ -58.477349000356014, -34.557601999932331 ], [ -58.476297999552969, -34.558053000045845 ], [ -58.475654000431746, -34.558332000321514 ], [ -58.474324000252352, -34.558867999858251 ], [ -58.472949999842569, -34.559468999694559 ], [ -58.472327999937193, -34.559704999785879 ], [ -58.471447999825273, -34.560090999599936 ], [ -58.470160999830227, -34.56062800008209 ], [ -58.468873999835182, -34.56118599973405 ], [ -58.467693000231748, -34.561657999916747 ], [ -58.466491999705966, -34.562173000283678 ], [ -58.465118000195503, -34.562752000004764 ], [ -58.463723999762749, -34.563352999841015 ], [ -58.462930000019469, -34.562880999658375 ], [ -58.461964000438229, -34.56230199993729 ], [ -58.461063000257241, -34.561786999570359 ], [ -58.460183000145321, -34.561249999987467 ], [ -58.459281999964276, -34.56071399955141 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.444111000022588, -34.570305000275482 ], [ -58.443831999746976, -34.570456000044317 ], [ -58.442952999681154, -34.57090600011179 ], [ -58.442544999751874, -34.571099000018819 ], [ -58.441966000030845, -34.571420999579402 ], [ -58.440742000243063, -34.572085999669127 ], [ -58.439648000155046, -34.572708999620602 ], [ -58.438446999629264, -34.573394999779396 ], [ -58.437116000303149, -34.574103000053356 ], [ -58.436430000144355, -34.574510999982635 ], [ -58.435506999848144, -34.574962000096207 ], [ -58.431858999792951, -34.576507000297795 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.42920999994152, -34.577264000133482 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421726000154763, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.41894000028077, -34.579121000333828 ], [ -58.417267999618446, -34.577365000294492 ], [ -58.417032000426445, -34.577129000203172 ], [ -58.415701000200954, -34.575691000439292 ], [ -58.4153369996028, -34.575111999818887 ], [ -58.415400999856217, -34.575005000280498 ], [ -58.415379999787092, -34.574833000442595 ], [ -58.415207999949189, -34.574639999636247 ], [ -58.414992999926938, -34.574618000420344 ], [ -58.414800000019966, -34.574510999982635 ], [ -58.414327999837269, -34.574210999637899 ], [ -58.413502000416941, -34.5733250001486 ], [ -58.412526000374555, -34.572278999576099 ], [ -58.412396999821624, -34.57225800040635 ], [ -58.412247000098944, -34.57217200003771 ], [ -58.411882000354012, -34.571849999577751 ], [ -58.411752999801081, -34.571829000408002 ], [ -58.410990999734793, -34.572200000429632 ], [ -58.407590000278276, -34.574575000236052 ], [ -58.406645999912939, -34.575176000072304 ], [ -58.404929999919545, -34.576528000366864 ], [ -58.402634000158912, -34.578223000291189 ], [ -58.401411000417284, -34.578952999781052 ], [ -58.400229999914529, -34.579617999870777 ], [ -58.398062999807564, -34.580668999774502 ], [ -58.395959999954016, -34.581720999724325 ], [ -58.394346000167729, -34.582495000343954 ], [ -58.393170999941674, -34.582986999650245 ], [ -58.391668999924377, -34.583694999924262 ], [ -58.390573999790206, -34.58421000029125 ], [ -58.390295999560692, -34.584338999944862 ], [ -58.390155000253003, -34.584133000337658 ], [ -58.389078000049608, -34.584620000312725 ], [ -58.389201000325841, -34.584811000127502 ], [ -58.388660999705337, -34.585106000241694 ], [ -58.388041999938309, -34.585519000401518 ], [ -58.387398999963864, -34.585840999962159 ], [ -58.386798000127555, -34.586141000306895 ], [ -58.385918000015636, -34.586612999590216 ], [ -58.385060000018939, -34.587041999588564 ], [ -58.383879999562282, -34.587685999609164 ], [ -58.382827999612459, -34.588287000344735 ], [ -58.381906000261665, -34.588779999697181 ], [ -58.380918999712037, -34.589317000179392 ], [ -58.381411999963802, -34.590239999576283 ], [ -58.381540999617414, -34.590711999758923 ], [ -58.381540999617414, -34.59156999975562 ], [ -58.381648000055122, -34.592793000396625 ], [ -58.381583999801705, -34.593758999977808 ], [ -58.381638999640074, -34.593951999884837 ], [ -58.381695000423917, -34.594166999907088 ], [ -58.381821999985277, -34.594592999767087 ], [ -58.382013999846151, -34.595216999764659 ], [ -58.382012999800054, -34.595260999995105 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382269999960499, -34.596740999897179 ], [ -58.382163000422111, -34.597878000169544 ], [ -58.382077000053471, -34.599036999657756 ], [ -58.381990999684831, -34.600239000229635 ], [ -58.381927000330734, -34.601355000432875 ], [ -58.381863000077374, -34.602512999874989 ], [ -58.382077000053471, -34.603156999895589 ], [ -58.382142000352985, -34.603715000446869 ], [ -58.381990999684831, -34.604294000167954 ], [ -58.381712000308539, -34.604830999750789 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.381695999570695, -34.605241999818418 ], [ -58.381680999778268, -34.605509999586786 ], [ -58.381648000055122, -34.606096999676765 ], [ -58.381604999870831, -34.607277000133422 ], [ -58.381540999617414, -34.608393000336662 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381476000217219, -34.609637000147416 ], [ -58.381390999894677, -34.610816999704753 ], [ -58.381364999595007, -34.61124100037182 ], [ -58.381219000056774, -34.611826000369604 ], [ -58.381197999987648, -34.612268000068127 ], [ -58.381283000310191, -34.613049000111232 ], [ -58.381262000241065, -34.61418600038354 ], [ -58.381219000056774, -34.61523800033342 ], [ -58.381154999803357, -34.616417999890757 ], [ -58.381090000403162, -34.617598000347414 ], [ -58.381090000403162, -34.618477999560014 ], [ -58.381069000334037, -34.619701000200962 ], [ -58.3810159996886, -34.620836000381075 ], [ -58.380985000057649, -34.62150799989422 ], [ -58.380984000011551, -34.621574000239889 ], [ -58.381004000034523, -34.62212599961515 ], [ -58.381433000032871, -34.622189999868567 ], [ -58.382957000165391, -34.622210999937636 ], [ -58.382957000165391, -34.623906999908058 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.382870999796751, -34.625966999577315 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.382827999612459, -34.62725399957236 ], [ -58.382827999612459, -34.627468999594612 ], [ -58.382807000442654, -34.627833000192766 ], [ -58.382742000143139, -34.629034999865326 ], [ -58.382721000074071, -34.629699999954994 ], [ -58.382698999958848, -34.630194000252857 ], [ -58.382677999889722, -34.630859000342525 ], [ -58.382613999636305, -34.631738999555125 ], [ -58.382549000236111, -34.633176000172227 ], [ -58.38258600014376, -34.633199000333548 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 53.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.447860000238791, -34.591923999892629 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45102100031886, -34.588673000158792 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.453124000172409, -34.586098000122547 ], [ -58.452973000403631, -34.58588400014645 ], [ -58.452350999598934, -34.584811000127502 ], [ -58.451749999762626, -34.58380200036197 ], [ -58.451214000225889, -34.582901000180982 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.449990999584941, -34.580862999727628 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.452115000406877, -34.58011200016864 ], [ -58.453037999803826, -34.579832999892972 ], [ -58.453531000055591, -34.579661000055069 ], [ -58.454862000281025, -34.579209999941497 ], [ -58.455977000438168, -34.578888000380857 ], [ -58.457222000295019, -34.57858800003612 ], [ -58.45735099994863, -34.578544999851829 ], [ -58.458016000038356, -34.578395000129092 ], [ -58.458509000290064, -34.5783519999448 ], [ -58.459689999893556, -34.578308999760509 ], [ -58.460226000329612, -34.578287999691383 ], [ -58.460568999959321, -34.578287999691383 ], [ -58.461813999816172, -34.578265999576161 ], [ -58.463230000364206, -34.578373000013869 ], [ -58.464689000197154, -34.578694999574509 ], [ -58.466062999707617, -34.579017000034469 ], [ -58.466684999612994, -34.57914599968808 ], [ -58.467177999864759, -34.579039000149692 ], [ -58.468337000252347, -34.578803000058372 ], [ -58.468636999697765, -34.578737999758857 ], [ -58.469473999625336, -34.578544999851829 ], [ -58.470353999737256, -34.578373000013869 ], [ -58.470869000104244, -34.578265999576161 ], [ -58.471298000102593, -34.578180000106897 ], [ -58.472157000145387, -34.577987000199869 ], [ -58.473550999678878, -34.577643999670784 ], [ -58.473786999770198, -34.577601000385812 ], [ -58.475590000178329, -34.577172000387463 ], [ -58.476576999828637, -34.576464000113447 ], [ -58.477434999825334, -34.575841000161972 ], [ -58.478035999661643, -34.575391000094555 ], [ -58.478700999751311, -34.574918999911858 ], [ -58.479730999585911, -34.57416800035287 ], [ -58.480674999951248, -34.573503000263202 ], [ -58.481641000431807, -34.57272999968967 ], [ -58.48252099964435, -34.572085999669127 ], [ -58.484236999637801, -34.573073000218756 ], [ -58.485482000393972, -34.573802999708619 ], [ -58.486104000299349, -34.573030000034407 ], [ -58.486748000319892, -34.572237000337225 ], [ -58.4873490001562, -34.571485999878973 ], [ -58.487948999946354, -34.570735000319985 ], [ -58.489044000080526, -34.571335000110139 ], [ -58.489644999916777, -34.570583999651831 ], [ -58.490266999822154, -34.569789999908551 ], [ -58.491039000349531, -34.568803000258185 ], [ -58.491898000392382, -34.5676880001011 ], [ -58.492692000135662, -34.566658000266443 ], [ -58.493484999832845, -34.565628000431843 ], [ -58.494451000313347, -34.564276000137227 ], [ -58.495416999894587, -34.562944999911792 ], [ -58.496597000351244, -34.563524999678975 ], [ -58.497991999930832, -34.564189999768644 ], [ -58.499042999834558, -34.564705000135632 ], [ -58.499150000272266, -34.564748000319923 ], [ -58.499707999924226, -34.565026999696215 ], [ -58.500265999576186, -34.565305999971883 ], [ -58.500867000311757, -34.565585000247495 ], [ -58.501446000032843, -34.565863999623843 ], [ -58.502003999684803, -34.566120999784289 ], [ -58.502562000236082, -34.5664000000599 ], [ -58.503334999910294, -34.566785999873957 ], [ -58.504107000437671, -34.567150999618889 ], [ -58.504665000089631, -34.567429999894557 ], [ -58.505200999626368, -34.567709000170169 ], [ -58.506273999645316, -34.568223999637837 ], [ -58.507325999595139, -34.568739000004825 ], [ -58.508291000029601, -34.569211000187465 ], [ -58.508848999681561, -34.569489999563757 ], [ -58.50904199958859, -34.569855000208065 ], [ -58.509084999772881, -34.569876000277134 ], [ -58.509214000325812, -34.569855000208065 ], [ -58.509407000232841, -34.569833000092842 ], [ -58.509535999886452, -34.569746999724202 ], [ -58.509587000439694, -34.569682000324008 ], [ -58.509985999953869, -34.569168000003174 ], [ -58.510822999881498, -34.568008999615586 ], [ -58.511574000339806, -34.567323000356112 ], [ -58.512324999898794, -34.56663600015122 ], [ -58.513140999757297, -34.565906999808135 ], [ -58.513892000215606, -34.566313999691317 ], [ -58.5148139995664, -34.566851000173472 ], [ -58.515758999977834, -34.56736599964114 ], [ -58.516488000320919, -34.567794999639489 ], [ -58.517217999810782, -34.568244999706906 ], [ -58.51796900026909, -34.568674999751408 ], [ -58.518719999828079, -34.569124999818825 ], [ -58.519513999571359, -34.569532999748105 ], [ -58.520221999845376, -34.569982999815522 ], [ -58.520930000119392, -34.570412999860025 ], [ -58.521680999678324, -34.570798999674025 ], [ -58.522410000021466, -34.571248999741499 ], [ -58.523140000410649, -34.571678999785945 ], [ -58.524148000130083, -34.57225800040635 ], [ -58.524963999988586, -34.57272999968967 ], [ -58.525585999893963, -34.573095000333979 ], [ -58.525865000169574, -34.573309000310076 ], [ -58.526637999843786, -34.573953000330675 ], [ -58.527410000371162, -34.574575000236052 ], [ -58.528440000205819, -34.573717000239299 ], [ -58.529211999833876, -34.574361000259898 ], [ -58.529812999670185, -34.574833000442595 ], [ -58.530757000035464, -34.575627000185875 ], [ -58.531808999985344, -34.574790000258247 ], [ -58.53285999988907, -34.573910000146327 ], [ -58.533889999723669, -34.57305200014963 ], [ -58.534663000297201, -34.57369600017023 ], [ -58.534790999904658, -34.573780999593396 ], [ -58.535542000362966, -34.574446999729219 ], [ -58.536315000037177, -34.575068999634595 ], [ -58.537065999596166, -34.575712999655138 ], [ -58.537860000238766, -34.576377999744864 ], [ -58.538653999982046, -34.577042999834532 ], [ -58.539447999725382, -34.577707999924201 ], [ -58.540199000183691, -34.5783519999448 ], [ -58.540970999811748, -34.579017000034469 ], [ -58.541722000270056, -34.579661000055069 ], [ -58.54258100031285, -34.580305000075668 ], [ -58.543611000147507, -34.579489000217166 ], [ -58.544662000051233, -34.578631000220469 ], [ -58.545691999885833, -34.57779400029284 ], [ -58.546742999789558, -34.576957000365212 ], [ -58.547772999624215, -34.576077000253292 ], [ -58.547881000108021, -34.576056000184224 ], [ -58.547987999646409, -34.575776999908555 ], [ -58.548244999806855, -34.575519999748167 ], [ -58.548803000358134, -34.575026000349567 ], [ -58.549812000123666, -34.574189000421995 ], [ -58.550434000029043, -34.57369600017023 ], [ -58.550863000027391, -34.573351999595047 ], [ -58.551914999977214, -34.572514999667476 ], [ -58.552922999696648, -34.571721999970293 ], [ -58.553696000270179, -34.571099000018819 ], [ -58.555198000287419, -34.569918999562162 ], [ -58.55659199982091, -34.568825000373408 ], [ -58.558244999606984, -34.567494000147917 ], [ -58.558544999951721, -34.567301000240946 ], [ -58.558824000227389, -34.56719399980318 ], [ -58.559468000247989, -34.567021999965277 ], [ -58.560798000427326, -34.566742999689666 ], [ -58.560927000080937, -34.56672199962054 ], [ -58.562149999822566, -34.566464000313317 ], [ -58.563073000118834, -34.56625000033722 ], [ -58.563352000394445, -34.566185000037706 ], [ -58.565004000134479, -34.565821000338872 ], [ -58.565841000062051, -34.565648999601592 ], [ -58.566141000406787, -34.565585000247495 ], [ -58.567535999986376, -34.565262999787592 ], [ -58.568543999705753, -34.565047999765341 ], [ -58.569553000370604, -34.564811999674021 ], [ -58.571075999557706, -34.564512000228603 ], [ -58.572471000036558, -34.564189999768644 ], [ -58.573630000424146, -34.563931999562101 ], [ -58.574445000236551, -34.563738999655072 ], [ -58.575624999793888, -34.563482000393947 ], [ -58.578243000014425, -34.562901999727444 ], [ -58.579079999941996, -34.562730999935638 ], [ -58.580281999614556, -34.562559000097735 ], [ -58.580753999797196, -34.562515999913444 ], [ -58.581139999611253, -34.562515999913444 ], [ -58.582363000252201, -34.562515999913444 ], [ -58.582920999904161, -34.56253800002861 ], [ -58.584316000383069, -34.562515999913444 ], [ -58.585838999570115, -34.562515999913444 ], [ -58.586718999682034, -34.562494999844318 ], [ -58.587019000026771, -34.562472999729096 ], [ -58.58761999986308, -34.562258999752999 ], [ -58.587728000346885, -34.562130000099387 ], [ -58.587878000069622, -34.56206599984597 ], [ -58.588220999699331, -34.562022999661679 ], [ -58.588456999790651, -34.56206599984597 ], [ -58.588671999812902, -34.562194000352804 ], [ -58.589100999811251, -34.562366000190707 ], [ -58.589937999738879, -34.562581000212958 ], [ -58.590946000357576, -34.562581000212958 ], [ -58.592254999568524, -34.562602000282027 ], [ -58.592941999773416, -34.562581000212958 ], [ -58.593457000140404, -34.562581000212958 ], [ -58.594508000044129, -34.562581000212958 ], [ -58.594723000066381, -34.562581000212958 ], [ -58.595945999808009, -34.562559000097735 ], [ -58.597232999803055, -34.562581000212958 ], [ -58.598456000444003, -34.562559000097735 ], [ -58.600988000295956, -34.56262400039725 ], [ -58.601568000063139, -34.56262400039725 ], [ -58.601974999946265, -34.562644999567055 ], [ -58.603349000356047, -34.562644999567055 ], [ -58.604400000259773, -34.562665999636124 ], [ -58.60557999981711, -34.562665999636124 ], [ -58.606718000135572, -34.562687999751347 ], [ -58.607576000132269, -34.562687999751347 ], [ -58.608434000128966, -34.562687999751347 ], [ -58.609013999896149, -34.562708999820416 ], [ -58.610001000445777, -34.562708999820416 ], [ -58.610194000352806, -34.562708999820416 ], [ -58.611288000440823, -34.562730999935638 ], [ -58.61158799988624, -34.562730999935638 ], [ -58.612853999812216, -34.562730999935638 ], [ -58.613476999763691, -34.562752000004764 ], [ -58.615385999664113, -34.562752000004764 ], [ -58.616888999727507, -34.562774000119987 ], [ -58.617468000347912, -34.562774000119987 ], [ -58.619634999555558, -34.562795000189055 ], [ -58.621094000287826, -34.562817000304278 ], [ -58.62274600002786, -34.562795000189055 ], [ -58.623819000046751, -34.562795000189055 ], [ -58.62418399979174, -34.562795000189055 ], [ -58.624355999629643, -34.562774000119987 ], [ -58.625536000086299, -34.562752000004764 ], [ -58.625836000431036, -34.562752000004764 ], [ -58.626565999920899, -34.562752000004764 ], [ -58.628386000213709, -34.562768999889386 ], [ -58.628882999750601, -34.562774000119987 ], [ -58.630021000069064, -34.562817000304278 ], [ -58.631205999856945, -34.562827999912201 ], [ -58.634221000398782, -34.56285700035022 ], [ -58.637872999739102, -34.562891000119521 ], [ -58.641285999749073, -34.562923999842667 ], [ -58.643838999670038, -34.56253800002861 ], [ -58.643966000130774, -34.56248899956762 ], [ -58.645834999985198, -34.561765000354455 ], [ -58.646314999637468, -34.561480999848243 ], [ -58.646413999706283, -34.56142199982537 ], [ -58.649369000179149, -34.56025700006046 ], [ -58.651478000309453, -34.55942600040953 ], [ -58.651821999985259, -34.559212000433433 ], [ -58.653537999978653, -34.558803999604834 ], [ -58.654975999742533, -34.558417999790834 ], [ -58.655298000202492, -34.558311000252388 ], [ -58.655963000292161, -34.557903000323165 ], [ -58.656928999873401, -34.557172999933982 ], [ -58.657637000147417, -34.556657999566994 ], [ -58.658215999868446, -34.556401000305868 ], [ -58.658365999591183, -34.556314999937229 ], [ -58.661839999716165, -34.554106999738224 ], [ -58.665017999680913, -34.552088000161007 ], [ -58.665619000416484, -34.551743999585881 ], [ -58.66633300006788, -34.55150000002493 ], [ -58.666498999629084, -34.551444000140464 ], [ -58.668686999805175, -34.550692999682155 ], [ -58.672110000276234, -34.549511000032567 ], [ -58.67229199967602, -34.549447999825304 ], [ -58.672699999605243, -34.549298000102567 ], [ -58.673065000249494, -34.549169999595733 ], [ -58.673515000316968, -34.549018999826956 ], [ -58.675790000008476, -34.548225000083619 ], [ -58.676111999569059, -34.548032000176647 ], [ -58.677335000210064, -34.547023999557894 ], [ -58.677528000117093, -34.547023999557894 ], [ -58.677634999655481, -34.547130999995602 ], [ -58.678172000137636, -34.549469999940527 ], [ -58.678342999929441, -34.549534000193887 ], [ -58.676797999727853, -34.550650000397184 ], [ -58.676047000168865, -34.551186999980018 ], [ -58.675295999710556, -34.551743999585881 ], [ -58.675210000241293, -34.551808999885395 ], [ -58.674395000428888, -34.552409999721647 ], [ -58.673708000223996, -34.552902999973412 ], [ -58.673022000065203, -34.5534180003404 ], [ -58.672185000137631, -34.55397599999236 ], [ -58.672914999627494, -34.55462000001296 ], [ -58.673065000249494, -34.55476999973564 ], [ -58.673600999786288, -34.555264000033503 ], [ -58.673836999877608, -34.555478000009657 ], [ -58.674244999806831, -34.555863999823714 ], [ -58.674630999620888, -34.556228999568646 ], [ -58.674888999827431, -34.55644399959084 ], [ -58.675468000447836, -34.557023000211245 ], [ -58.676132999638185, -34.557645000116622 ], [ -58.676519000351561, -34.558009999861554 ], [ -58.676776999658784, -34.558245999952874 ], [ -58.677163000372104, -34.558610999697862 ], [ -58.677398999564161, -34.558846999789182 ], [ -58.678042999584704, -34.559447999625434 ], [ -58.678665000389401, -34.560027000245839 ], [ -58.679287000294778, -34.56062800008209 ], [ -58.679394999879321, -34.560734999620479 ], [ -58.680081000038058, -34.561357000425176 ], [ -58.680747000173881, -34.56198000037665 ], [ -58.682098000422343, -34.563224000187404 ], [ -58.682742000442943, -34.562752000004764 ], [ -58.68360000043964, -34.562109000030262 ], [ -58.684243999560863, -34.562730999935638 ], [ -58.684908999650588, -34.563331999771947 ], [ -58.685639000039771, -34.562795000189055 ], [ -58.686368000382856, -34.562279999822067 ], [ -58.686453999852176, -34.562215999568707 ], [ -58.687934999800348, -34.561121000333856 ], [ -58.689414999702421, -34.560049000361062 ], [ -58.690445000436398, -34.559297999902753 ], [ -58.690982000019233, -34.558911000042599 ], [ -58.691432000086706, -34.558568000412833 ], [ -58.691626000039832, -34.558438999859902 ], [ -58.692440999852238, -34.557838000023651 ], [ -58.693600000239769, -34.556980000026954 ], [ -58.694736999612815, -34.556143000099325 ], [ -58.695809999631763, -34.555349000356046 ], [ -58.696710999812751, -34.554706000381543 ], [ -58.69602399960786, -34.55397599999236 ], [ -58.696969000019294, -34.553288999787469 ], [ -58.698212999830048, -34.552367000436675 ], [ -58.698471000036591, -34.552152000414424 ], [ -58.698986000403579, -34.551786999770172 ], [ -58.699200000379676, -34.551637000047492 ], [ -58.699565000124608, -34.551357999771824 ], [ -58.699950999938665, -34.551058000326407 ], [ -58.700895000304001, -34.550371000121515 ], [ -58.701838999769961, -34.549684999962722 ], [ -58.70276200006623, -34.549018999826956 ], [ -58.703620000062926, -34.548375999852453 ], [ -58.704435999921429, -34.547775000016202 ], [ -58.705208000448806, -34.54723800043331 ], [ -58.705595000308961, -34.546938000088574 ], [ -58.706516999659755, -34.546272999998905 ], [ -58.707632999862994, -34.545436000071277 ], [ -58.708749000066234, -34.544621000258928 ], [ -58.709886000338599, -34.5437840003313 ], [ -58.711022999711645, -34.542947000403728 ], [ -58.712053000445565, -34.542217000014489 ], [ -58.713491000209444, -34.541166000110763 ], [ -58.714906999858101, -34.540136000276163 ], [ -58.71597999987705, -34.539341999633507 ], [ -58.717009999711649, -34.538591000074575 ], [ -58.718190000168306, -34.537733000077822 ], [ -58.719327000440671, -34.53689600015025 ], [ -58.720379000390494, -34.536122999576719 ], [ -58.722246000152722, -34.534793000296702 ], [ -58.722889000127225, -34.534321000114005 ], [ -58.723275999987379, -34.534041999838394 ], [ -58.723639999686213, -34.533762999562725 ], [ -58.724541999913299, -34.533098000372377 ], [ -58.724948999796482, -34.532796999981542 ], [ -58.725915000276984, -34.532088999707526 ], [ -58.727009000365058, -34.531294999964246 ], [ -58.72775999992399, -34.530737000312286 ], [ -58.728553999667326, -34.53015799969188 ], [ -58.729305000125635, -34.529622000155143 ], [ -58.730228000421846, -34.528934999950252 ], [ -58.731150999818738, -34.528269999860584 ], [ -58.731965999631143, -34.527712000208624 ], [ -58.732652999836034, -34.527196999841635 ], [ -58.73305999971916, -34.526896000350121 ], [ -58.734241000221914, -34.526038000353367 ], [ -58.735420999779251, -34.525158000241447 ], [ -58.736514999867325, -34.524363999598847 ], [ -58.737308999610605, -34.523784999877819 ], [ -58.737459000232661, -34.523656000224207 ], [ -58.738317000229358, -34.523013000249705 ], [ -58.739046999719221, -34.522475999767551 ], [ -58.739197000341278, -34.522369000229162 ], [ -58.73979800017753, -34.521940000230757 ], [ -58.740076999553821, -34.521747000323785 ], [ -58.740849000081255, -34.521145999588157 ], [ -58.741836999777661, -34.520438000213517 ], [ -58.742609000305094, -34.519837000377208 ], [ -58.743467000301791, -34.519193000356665 ], [ -58.744304000229363, -34.518591999621037 ], [ -58.745141000156991, -34.51796999971566 ], [ -58.745999000153688, -34.517347999810283 ], [ -58.746771999827899, -34.518099000268592 ], [ -58.747480000101859, -34.518743000289192 ], [ -58.747952000284556, -34.519214999572512 ], [ -58.749046000372573, -34.51876400035826 ], [ -58.750161999676493, -34.518335000359912 ], [ -58.748895999750573, -34.517755999739563 ], [ -58.748702999843545, -34.517604999970729 ], [ -58.747931000215431, -34.517241000271895 ], [ -58.746815000012191, -34.516725999904907 ], [ -58.745676999693728, -34.516168000252947 ], [ -58.745269999810603, -34.516016999584792 ], [ -58.744519000251614, -34.515630999770792 ], [ -58.743359999864083, -34.515095000234055 ], [ -58.742609000305094, -34.514750999658872 ], [ -58.741343000379118, -34.51419400005301 ], [ -58.740463000267198, -34.513850000377147 ], [ -58.740034000268849, -34.513678999686022 ], [ -58.738381999629553, -34.51299200038045 ], [ -58.737652000139633, -34.512713000104839 ], [ -58.736900999681325, -34.512412999760102 ], [ -58.735849999777599, -34.511982999715599 ], [ -58.734906000311639, -34.511619000016822 ], [ -58.733918999762011, -34.511188999972319 ], [ -58.733125000018674, -34.510888999627582 ], [ -58.731836999977531, -34.510459999629234 ], [ -58.730463999613846, -34.509945000161565 ], [ -58.729713000054858, -34.509622999701605 ], [ -58.728553999667326, -34.509108000233994 ], [ -58.72896199959655, -34.508507000397685 ], [ -58.729305000125635, -34.508228000122074 ], [ -58.729734000123983, -34.50801400014592 ], [ -58.730786000073806, -34.507627000285765 ], [ -58.731430000094406, -34.507413000309668 ], [ -58.732866999812131, -34.506941000127028 ], [ -58.733252999626188, -34.506791000404291 ], [ -58.735184999687931, -34.506083000130332 ], [ -58.735764000308336, -34.50586800010808 ], [ -58.737179999956993, -34.505289000386995 ], [ -58.737674000254856, -34.505095000433869 ], [ -58.738296000160233, -34.504838000273423 ], [ -58.739176000272153, -34.504494999744395 ], [ -58.73994799990021, -34.504173000183755 ], [ -58.741300000194826, -34.503614999632475 ], [ -58.741836999777661, -34.503399999610224 ], [ -58.743080999588415, -34.502885000142612 ], [ -58.74477600041206, -34.502198999983818 ], [ -58.7454839997867, -34.501897999592984 ], [ -58.746278000429356, -34.501576000032344 ], [ -58.747072000172636, -34.501233000402578 ], [ -58.747436999917568, -34.501103999849647 ], [ -58.748058999822945, -34.500867999758327 ], [ -58.749025000303504, -34.500460999875202 ], [ -58.749796999931561, -34.500052999945922 ], [ -58.750741000296898, -34.499645000016699 ], [ -58.753594999709435, -34.498444000390236 ], [ -58.755504999655955, -34.497606999563345 ], [ -58.757049999857543, -34.496899000188648 ], [ -58.7574359996716, -34.496727000350745 ], [ -58.758402000152159, -34.496276000237174 ], [ -58.759732000331496, -34.495633000262728 ], [ -58.760203999614873, -34.4954400003557 ], [ -58.760826999566348, -34.49511799989574 ], [ -58.761748999816461, -34.494538000128557 ], [ -58.762607999859256, -34.494022999761569 ], [ -58.76361599957869, -34.493379999787123 ], [ -58.764839000219638, -34.492629000228135 ], [ -58.765632999962918, -34.492134999930272 ], [ -58.766513000074838, -34.491599000393535 ], [ -58.767457000440174, -34.491018999727032 ], [ -58.76827200025258, -34.490547000443655 ], [ -58.768873000088831, -34.490203999914627 ], [ -58.76962399964782, -34.489774999916278 ], [ -58.770288999737488, -34.489410000171347 ], [ -58.771040000195796, -34.488981000172998 ], [ -58.771641000032105, -34.48855200017465 ], [ -58.772714000050996, -34.48750000022477 ], [ -58.773550999978625, -34.48662000011285 ], [ -58.774023000161264, -34.486126999861085 ], [ -58.774558999698058, -34.485526000024834 ], [ -58.775289000087241, -34.484732000281554 ], [ -58.775976000292133, -34.483980999823245 ], [ -58.77668399966683, -34.483230000264257 ], [ -58.777391999940789, -34.482435999621657 ], [ -58.778057000030515, -34.48181399971628 ], [ -58.778787000419698, -34.481148999626612 ], [ -58.779708999770492, -34.480289999583761 ], [ -58.780610999997634, -34.479453999702287 ], [ -58.781210999787788, -34.478896000050327 ], [ -58.781833999739263, -34.478338000398367 ], [ -58.783250000287239, -34.47707199957307 ], [ -58.784773000373605, -34.476149000176179 ], [ -58.785008999565662, -34.47604199973847 ], [ -58.785546000047816, -34.475784000431247 ], [ -58.789473000378621, -34.473916999769699 ], [ -58.791038999750015, -34.473166000210711 ], [ -58.791747000023975, -34.472780000396654 ], [ -58.792219000206671, -34.472436999867625 ], [ -58.793550000432106, -34.47153599968658 ], [ -58.79432200006022, -34.470999000103745 ], [ -58.794943999965597, -34.470592000220563 ], [ -58.796359999614253, -34.469646999809129 ], [ -58.797755000093161, -34.468682000274043 ], [ -58.79921399992611, -34.467694999724415 ], [ -58.80056600022067, -34.466772000327524 ], [ -58.800694999874281, -34.466685999958884 ], [ -58.802389999798606, -34.465591999870867 ], [ -58.803592000370486, -34.464798000127587 ], [ -58.804214000275863, -34.464518999851919 ], [ -58.80483600018124, -34.464261999691473 ], [ -58.805029000088268, -34.464197000291279 ], [ -58.8064239996678, -34.463037999903747 ], [ -58.807560999940165, -34.462051000253439 ], [ -58.807560999940165, -34.46200800006909 ], [ -58.808312000398473, -34.461408000278936 ], [ -58.808742000442919, -34.461063999703754 ], [ -58.808956000419016, -34.460613999636337 ], [ -58.808977999634919, -34.4604639999136 ], [ -58.808913000234725, -34.460269999960474 ], [ -58.808742000442919, -34.460055999984377 ], [ -58.808270000260279, -34.459819999893057 ], [ -58.808248000145056, -34.459754999593486 ], [ -58.802775999612663, -34.456836999927589 ], [ -58.800995000219018, -34.455913999631321 ], [ -58.800694999874281, -34.455506999748195 ], [ -58.800116000153253, -34.454626999636275 ], [ -58.799557999601973, -34.453726000354607 ], [ -58.798913999581373, -34.452759999874047 ], [ -58.79865600027415, -34.452352999990921 ], [ -58.798484999583025, -34.452094999784379 ], [ -58.798076999653745, -34.451472999879002 ], [ -58.797562000186133, -34.45070000020479 ], [ -58.797025999750076, -34.449905999562191 ], [ -58.796661000005088, -34.449347999910231 ], [ -58.796188999822448, -34.448639999636214 ], [ -58.796016999984545, -34.448468999844408 ], [ -58.795308999710528, -34.448060999915185 ], [ -58.794343000129288, -34.447631999916837 ], [ -58.793485000132591, -34.447202999918488 ], [ -58.792519999698186, -34.446751999804917 ], [ -58.791618000370363, -34.446300999691346 ], [ -58.790823999727763, -34.445936999992512 ], [ -58.790052000099706, -34.445550000132357 ], [ -58.789237000287301, -34.445206999603329 ], [ -58.78837800024445, -34.44477799960498 ], [ -58.787477000063461, -34.444348999606575 ], [ -58.786596999951541, -34.443940999677352 ], [ -58.785008999565662, -34.443082999680655 ], [ -58.783978999731005, -34.442438999660055 ], [ -58.783807999939199, -34.442332000121667 ], [ -58.783400000009976, -34.441924000192387 ], [ -58.783271000356365, -34.441794999639455 ], [ -58.782948999896405, -34.441323000356135 ], [ -58.782821000288891, -34.441302000287067 ], [ -58.782734999920251, -34.441236999987495 ], [ -58.782755999989377, -34.44115199966501 ], [ -58.782821000288891, -34.441087000264815 ], [ -58.78269199973596, -34.440778999551128 ], [ -58.782498999828931, -34.440314999737382 ], [ -58.782262999737611, -34.439607000362741 ], [ -58.782090999899708, -34.439026999696239 ], [ -58.78157600043204, -34.437353999887137 ], [ -58.781319000271594, -34.436516999959565 ], [ -58.781061000065051, -34.435657999916714 ], [ -58.78078199978944, -34.434671000266405 ], [ -58.780352999791091, -34.43329799990272 ], [ -58.779988000046103, -34.432010999907675 ], [ -58.779730999885714, -34.431087999611464 ], [ -58.779602000232103, -34.430637000397212 ], [ -58.779236999587795, -34.429220999849235 ], [ -58.779065999795989, -34.42864200012815 ], [ -58.778850999773795, -34.42784800038487 ], [ -58.778464999959738, -34.426431999836893 ], [ -58.778421999775446, -34.426259999998933 ], [ -58.778100000214806, -34.425015000142082 ], [ -58.777777999754846, -34.423834999685425 ], [ -58.777714000400749, -34.423620999709328 ], [ -58.777413000009915, -34.422525999575157 ], [ -58.77603999964623, -34.419029000188175 ], [ -58.775697000016521, -34.418084999822838 ], [ -58.775353000340658, -34.417182999595695 ], [ -58.775031999926796, -34.416346999714222 ], [ -58.774710000366156, -34.415509999786593 ], [ -58.774387999906253, -34.414629999674673 ], [ -58.773830000254293, -34.413450000117393 ], [ -58.773550999978625, -34.412785000027668 ], [ -58.773121999980276, -34.411839999616234 ], [ -58.772779000350567, -34.41100399973476 ], [ -58.772779000350567, -34.410939000334565 ], [ -58.772328000236996, -34.410081000337868 ], [ -58.772263999983579, -34.409951999784937 ], [ -58.771856000054299, -34.409180000156823 ], [ -58.771448000125076, -34.408406999583349 ], [ -58.771318999572145, -34.408192999607195 ], [ -58.771019000126728, -34.407591999770943 ], [ -58.770718999781991, -34.407077000303275 ], [ -58.77050399975974, -34.406754999843315 ], [ -58.770440000405642, -34.406690999589898 ], [ -58.77009599983046, -34.406110999822715 ], [ -58.770010000361196, -34.405961000100035 ], [ -58.769581000362848, -34.405296000010367 ], [ -58.768958999558151, -34.404244000060487 ], [ -58.768938000388346, -34.404136999622779 ], [ -58.768444000090483, -34.40235600022919 ], [ -58.768229000068231, -34.401691000139522 ], [ -58.767843000254231, -34.400145999937877 ], [ -58.76747799960998, -34.398751000358345 ], [ -58.767393000186757, -34.39840799982926 ], [ -58.767284999702952, -34.398086000268677 ], [ -58.767091999795923, -34.39737799999466 ], [ -58.767028000441826, -34.397185000087632 ], [ -58.766855999704603, -34.39673399997406 ], [ -58.766770000235283, -34.396541000067032 ], [ -58.766513000074838, -34.396004999630975 ], [ -58.766426999706255, -34.395769000438975 ], [ -58.766018999776975, -34.394867000211832 ], [ -58.765804999800878, -34.394330999775775 ], [ -58.765719000331558, -34.394009000215135 ], [ -58.765589999778626, -34.393493999848147 ], [ -58.765568999709501, -34.393344000125467 ], [ -58.765461000125015, -34.392679000035798 ], [ -58.765440000055889, -34.39216399966881 ], [ -58.765418999986821, -34.390619000366542 ], [ -58.765225000033695, -34.38976000032369 ], [ -58.764903999619833, -34.389138000418313 ], [ -58.764688999597638, -34.388730999635868 ], [ -58.76408799976133, -34.388044000330297 ], [ -58.76393800003865, -34.387936999892588 ], [ -58.763509000040301, -34.387593000216725 ], [ -58.76297199955809, -34.387270999756765 ], [ -58.761684999563045, -34.386455999944417 ], [ -58.760397000421165, -34.38566200020108 ], [ -58.760289999983456, -34.38559799994772 ], [ -58.760032999823068, -34.385469000294108 ], [ -58.758508999690548, -34.384653999582383 ], [ -58.757693999878143, -34.3842240004372 ], [ -58.757136000226183, -34.383924000092463 ], [ -58.754818000350383, -34.382679000235612 ], [ -58.754646999659258, -34.382593999913126 ], [ -58.753358999618115, -34.381906999708235 ], [ -58.752564999874778, -34.381520999894178 ], [ -58.751942999969458, -34.381156000149247 ], [ -58.751685999809013, -34.380984000311344 ], [ -58.750892000065733, -34.38053400024387 ], [ -58.750612999790064, -34.380404999690938 ], [ -58.750805999697093, -34.380168999599618 ], [ -58.751706999878081, -34.37941800004063 ], [ -58.752007000222818, -34.379053000295698 ], [ -58.75207199962307, -34.378989000042282 ], [ -58.75230799971439, -34.378603000228225 ], [ -58.753170999941631, -34.377555999609626 ], [ -58.753917000169395, -34.376650000097356 ], [ -58.754153000260715, -34.376327999637454 ], [ -58.754782999635665, -34.37576599980099 ], [ -58.754947000003995, -34.375620000262757 ], [ -58.755183000095315, -34.3754699996407 ], [ -58.755891000369331, -34.375169000149185 ], [ -58.757343999925638, -34.374614999782352 ], [ -58.760438999660039, -34.37343300013282 ], [ -58.761062999657668, -34.373194999949249 ], [ -58.7632909998797, -34.372257999906708 ], [ -58.763359000317564, -34.372230000414163 ], [ -58.764195000199038, -34.371821999585563 ], [ -58.764945999758027, -34.371371000371312 ], [ -58.765054000241889, -34.371350000302243 ], [ -58.765268000217986, -34.371478999955855 ], [ -58.765461000125015, -34.371456999840632 ], [ -58.766558000351381, -34.371154000256865 ], [ -58.766855999704603, -34.371071000026575 ], [ -58.768444000090483, -34.370706000281643 ], [ -58.770745000081661, -34.370119000191664 ], [ -58.771470000240299, -34.369933999754267 ], [ -58.771812999870008, -34.369848000284946 ], [ -58.773615000232041, -34.369440000355667 ], [ -58.773725999954877, -34.369404999640949 ], [ -58.77436599979103, -34.369204000264347 ], [ -58.775547000293784, -34.368753000150775 ], [ -58.777049000311081, -34.36802399980769 ], [ -58.779618000070627, -34.366764000158412 ], [ -58.782123999622854, -34.365535000140085 ], [ -58.78260600026664, -34.365299000048765 ], [ -58.784701999797392, -34.364246000052844 ], [ -58.786833000042861, -34.363174000079994 ], [ -58.788022000015246, -34.362579999667219 ], [ -58.791038999750015, -34.361072000272543 ], [ -58.792670000320243, -34.36025600041404 ], [ -58.793271000156494, -34.359912999885012 ], [ -58.79384999987758, -34.359504999955732 ], [ -58.794129000153191, -34.359312000048703 ], [ -58.794686999805151, -34.358754000396743 ], [ -58.796296000260156, -34.357530999755795 ], [ -58.796275000191088, -34.357358999917892 ], [ -58.796275000191088, -34.357122999826515 ], [ -58.796682000074213, -34.356780000196807 ], [ -58.795910000446099, -34.35607199992279 ], [ -58.795245000356431, -34.355471000086538 ], [ -58.794493999898123, -34.354741999743453 ], [ -58.793721000223968, -34.354055000437882 ], [ -58.793012999949951, -34.353347000163865 ], [ -58.792283999606866, -34.352616999774682 ], [ -58.793420999879174, -34.351823000031402 ], [ -58.794580000266762, -34.350965000034705 ], [ -58.795737999708876, -34.350171000291368 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 52.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.702743, -34.907424 ], [ -58.702477, -34.907271 ], [ -58.700884, -34.906134 ], [ -58.699169, -34.905239 ], [ -58.698551, -34.904921 ], [ -58.698233, -34.904655 ], [ -58.697594, -34.903938 ], [ -58.697193, -34.903485 ], [ -58.697002, -34.903269 ], [ -58.696364, -34.902556 ], [ -58.695725, -34.901846 ], [ -58.695098, -34.901156 ], [ -58.694529, -34.900514 ], [ -58.693903, -34.899797 ], [ -58.693279, -34.899085 ], [ -58.69268, -34.898399 ], [ -58.692066, -34.897737 ], [ -58.691416, -34.897001 ], [ -58.690785, -34.896271 ], [ -58.690341, -34.895794 ], [ -58.689855, -34.895247 ], [ -58.689294, -34.894631 ], [ -58.688786, -34.894084 ], [ -58.688563, -34.89385 ], [ -58.688288, -34.893564 ], [ -58.687674, -34.892841 ], [ -58.687089, -34.892173 ], [ -58.686469, -34.891438 ], [ -58.685803, -34.890709 ], [ -58.685107, -34.889948 ], [ -58.684432, -34.889165 ], [ -58.684131, -34.888744 ], [ -58.683886, -34.888214 ], [ -58.683255, -34.88673 ], [ -58.682278, -34.885305 ], [ -58.681222, -34.883759 ], [ -58.680528, -34.882781 ], [ -58.679726, -34.881582 ], [ -58.678508, -34.879845 ], [ -58.678026, -34.879186 ], [ -58.676222, -34.876634 ], [ -58.676082, -34.876422 ], [ -58.6755, -34.875537 ], [ -58.674749, -34.874485 ], [ -58.67397, -34.87335 ], [ -58.673645, -34.872835 ], [ -58.673205, -34.872285 ], [ -58.67241, -34.871024 ], [ -58.670743, -34.868675 ], [ -58.6699, -34.867459 ], [ -58.669398, -34.866719 ], [ -58.669093, -34.866305 ], [ -58.668865, -34.865982 ], [ -58.668396, -34.865262 ], [ -58.66789, -34.864578 ], [ -58.667344, -34.863793 ], [ -58.666349, -34.862835 ], [ -58.66547, -34.861978 ], [ -58.664766, -34.861392 ], [ -58.664458, -34.861083 ], [ -58.664219, -34.860824 ], [ -58.663526, -34.860208 ], [ -58.662544, -34.859337 ], [ -58.661603, -34.858441 ], [ -58.6607, -34.857619 ], [ -58.659818, -34.856765 ], [ -58.658885, -34.855927 ], [ -58.657963, -34.855072 ], [ -58.65726, -34.854381 ], [ -58.65711, -34.854234 ], [ -58.656506, -34.85364 ], [ -58.656301, -34.853114 ], [ -58.656177, -34.852727 ], [ -58.655822, -34.851636 ], [ -58.655456999999899, -34.850388 ], [ -58.655157, -34.849417 ], [ -58.655087, -34.849214 ], [ -58.654687, -34.848053 ], [ -58.654294, -34.846726 ], [ -58.654118, -34.846113 ], [ -58.653935, -34.845518 ], [ -58.653823, -34.845121 ], [ -58.65363, -34.844499 ], [ -58.653414, -34.843812 ], [ -58.653216, -34.843141 ], [ -58.653055, -34.842594 ], [ -58.652888, -34.842074 ], [ -58.652655, -34.84141 ], [ -58.652343, -34.840698 ], [ -58.65199, -34.839994 ], [ -58.651959, -34.839877 ], [ -58.651597, -34.839183 ], [ -58.651455, -34.838912 ], [ -58.650893, -34.837802 ], [ -58.650226, -34.836468 ], [ -58.649278, -34.834568 ], [ -58.648111, -34.832232 ], [ -58.647207, -34.830483 ], [ -58.646458, -34.829114 ], [ -58.645705, -34.827756 ], [ -58.645233, -34.826871 ], [ -58.644274, -34.82506 ], [ -58.643999, -34.824573 ], [ -58.643696, -34.824058 ], [ -58.643527, -34.823751 ], [ -58.642954, -34.822648 ], [ -58.642812, -34.822381 ], [ -58.642249, -34.821388 ], [ -58.642019, -34.820949 ], [ -58.641566, -34.82011 ], [ -58.641247, -34.819524 ], [ -58.640493, -34.818176 ], [ -58.639842, -34.816969 ], [ -58.639781, -34.816816 ], [ -58.639358, -34.816072 ], [ -58.639046, -34.815523 ], [ -58.638671, -34.814818 ], [ -58.638499, -34.814544 ], [ -58.638082, -34.813763 ], [ -58.637894, -34.813419 ], [ -58.637662, -34.812964 ], [ -58.637368, -34.812436 ], [ -58.636859, -34.811476 ], [ -58.636259, -34.810447 ], [ -58.635401, -34.808857 ], [ -58.635191, -34.808462 ], [ -58.634993, -34.808132 ], [ -58.634236, -34.806932 ], [ -58.634157, -34.806835 ], [ -58.633392, -34.805653 ], [ -58.633223, -34.805415 ], [ -58.63245, -34.804226 ], [ -58.631828, -34.803351 ], [ -58.631823, -34.803344 ], [ -58.631521, -34.802779 ], [ -58.631497, -34.802135 ], [ -58.631499, -34.802126 ], [ -58.631558, -34.801771 ], [ -58.632636, -34.798756 ], [ -58.633392, -34.796613 ], [ -58.633467, -34.796393 ], [ -58.633498, -34.796054 ], [ -58.633473, -34.795736 ], [ -58.633465, -34.795718 ], [ -58.633423, -34.795623 ], [ -58.633311, -34.795331 ], [ -58.632842, -34.794598 ], [ -58.632315, -34.793802 ], [ -58.632041999999899, -34.793392 ], [ -58.631819, -34.79302 ], [ -58.631324, -34.79229 ], [ -58.63061, -34.791171 ], [ -58.629732, -34.789814 ], [ -58.629497, -34.78944 ], [ -58.628943, -34.78865 ], [ -58.628343, -34.787697 ], [ -58.627854, -34.786954 ], [ -58.627418, -34.78626 ], [ -58.628369, -34.785464 ], [ -58.629662, -34.78443 ], [ -58.629794, -34.784327 ], [ -58.630628, -34.783672 ], [ -58.631123, -34.783274 ], [ -58.631463, -34.783001 ], [ -58.632559, -34.782099 ], [ -58.633349, -34.781449 ], [ -58.634239, -34.780753 ], [ -58.636482, -34.779434 ], [ -58.63845, -34.778306 ], [ -58.639468, -34.777737 ], [ -58.640472, -34.777163 ], [ -58.640673, -34.777041 ], [ -58.640787, -34.776966 ], [ -58.64135, -34.776459 ], [ -58.641542, -34.776276 ], [ -58.642427, -34.775461 ], [ -58.643173, -34.774763 ], [ -58.643223, -34.774736 ], [ -58.644031, -34.774137 ], [ -58.64481, -34.77345 ], [ -58.645697, -34.772718 ], [ -58.64659, -34.771955 ], [ -58.647539, -34.772655 ], [ -58.648526, -34.773329 ], [ -58.649456, -34.774027 ], [ -58.649631, -34.774138 ], [ -58.649819, -34.774163 ], [ -58.650062, -34.773922 ], [ -58.650744, -34.773353 ], [ -58.651429, -34.77278 ], [ -58.650645, -34.772133 ], [ -58.649823, -34.771419 ], [ -58.648874, -34.770637 ], [ -58.647992, -34.769883 ], [ -58.647134, -34.769172 ], [ -58.646234, -34.768428 ], [ -58.645126, -34.769326 ], [ -58.644369, -34.768785 ], [ -58.644166, -34.768619 ], [ -58.643579, -34.768137 ], [ -58.643319, -34.767877 ], [ -58.642394, -34.767139 ], [ -58.641735, -34.766553 ], [ -58.641123, -34.766036 ], [ -58.640465, -34.765512 ], [ -58.639822, -34.765 ], [ -58.639068, -34.764505 ], [ -58.639026, -34.764483 ], [ -58.638247, -34.764068 ], [ -58.637614, -34.76374 ], [ -58.637482, -34.763707 ], [ -58.635811, -34.763158 ], [ -58.635758, -34.763151 ], [ -58.635278, -34.763059 ], [ -58.633789, -34.76279 ], [ -58.632557, -34.762589 ], [ -58.632453, -34.762561 ], [ -58.631394, -34.762395 ], [ -58.630685, -34.762264 ], [ -58.629969, -34.762142 ], [ -58.629462, -34.762056 ], [ -58.628243, -34.761845 ], [ -58.626996, -34.761637 ], [ -58.625774, -34.761479 ], [ -58.624431999999899, -34.761252 ], [ -58.623642, -34.761125 ], [ -58.623036, -34.761053 ], [ -58.622842, -34.761003 ], [ -58.620701, -34.760639 ], [ -58.62021, -34.760547 ], [ -58.618904, -34.760307 ], [ -58.618054, -34.760126 ], [ -58.617656, -34.760046 ], [ -58.617502, -34.760031 ], [ -58.617175, -34.760024 ], [ -58.616908, -34.760041 ], [ -58.616727, -34.760067 ], [ -58.61667, -34.76007 ], [ -58.616566, -34.760076 ], [ -58.61643, -34.760092 ], [ -58.616315, -34.760099 ], [ -58.616008, -34.760073 ], [ -58.615695, -34.760059 ], [ -58.614709, -34.759778 ], [ -58.614058, -34.759577 ], [ -58.613174999999899, -34.759313 ], [ -58.612584, -34.75914 ], [ -58.611877, -34.758969 ], [ -58.611755, -34.758915 ], [ -58.611695, -34.758841 ], [ -58.611669, -34.758757 ], [ -58.611677, -34.758666 ], [ -58.611698, -34.758622 ], [ -58.611733, -34.75856 ], [ -58.612726, -34.75859 ], [ -58.61318, -34.758617 ], [ -58.613526, -34.758519 ], [ -58.613883, -34.758332 ], [ -58.614174, -34.758013 ], [ -58.614434, -34.757693 ], [ -58.61465, -34.757356 ], [ -58.614726, -34.757071 ], [ -58.61478, -34.75684 ], [ -58.61478, -34.756565 ], [ -58.614715, -34.756059 ], [ -58.614358, -34.754549 ], [ -58.614023, -34.75319 ], [ -58.613796, -34.752586 ], [ -58.613452, -34.752028 ], [ -58.613028, -34.75137 ], [ -58.612627, -34.750756 ], [ -58.612218, -34.750149 ], [ -58.611603, -34.749223 ], [ -58.610956, -34.74823 ], [ -58.610761, -34.747933 ], [ -58.610229, -34.747123 ], [ -58.610145, -34.747 ], [ -58.609753, -34.746415 ], [ -58.609454, -34.745946 ], [ -58.609002, -34.745278 ], [ -58.608686, -34.744776 ], [ -58.608436, -34.744414 ], [ -58.608367, -34.744322 ], [ -58.607951, -34.743681 ], [ -58.607712, -34.743309 ], [ -58.607669, -34.743244 ], [ -58.6075, -34.742984 ], [ -58.607238, -34.74259 ], [ -58.606808, -34.741958 ], [ -58.606574, -34.74161 ], [ -58.606416, -34.741355 ], [ -58.606155, -34.740956 ], [ -58.605867, -34.740505 ], [ -58.605627, -34.740157 ], [ -58.605496, -34.739967 ], [ -58.605197, -34.739489 ], [ -58.60504, -34.739224 ], [ -58.604866999999899, -34.738872 ], [ -58.604773, -34.738673 ], [ -58.604738, -34.738599 ], [ -58.604399, -34.737835 ], [ -58.604282, -34.737577 ], [ -58.604055, -34.73708 ], [ -58.60384, -34.736552 ], [ -58.603654, -34.736043 ], [ -58.603585, -34.735817 ], [ -58.603484, -34.735484 ], [ -58.60333, -34.735012 ], [ -58.603135, -34.734338 ], [ -58.603061, -34.734083 ], [ -58.602935, -34.733667 ], [ -58.602864, -34.733438 ], [ -58.602749, -34.73307 ], [ -58.602594, -34.732686 ], [ -58.602559, -34.732635 ], [ -58.602448, -34.732371 ], [ -58.60193, -34.731319 ], [ -58.601369, -34.730193 ], [ -58.601131, -34.729739 ], [ -58.600656, -34.728794 ], [ -58.600143, -34.727751 ], [ -58.599928, -34.727302 ], [ -58.59936, -34.726217 ], [ -58.598718, -34.724897 ], [ -58.598685, -34.724824 ], [ -58.598212, -34.723804 ], [ -58.598164, -34.723695 ], [ -58.597896, -34.723088 ], [ -58.597675, -34.722586 ], [ -58.597504, -34.722214 ], [ -58.59733, -34.721834 ], [ -58.59712, -34.721377 ], [ -58.596507, -34.720024 ], [ -58.596324, -34.719701 ], [ -58.596193, -34.719473 ], [ -58.595654, -34.718665 ], [ -58.595318, -34.71815 ], [ -58.594947, -34.717583 ], [ -58.594894, -34.71754 ], [ -58.594313, -34.716816 ], [ -58.594178, -34.716684 ], [ -58.59366, -34.71614 ], [ -58.593499, -34.715966 ], [ -58.593165, -34.715592 ], [ -58.592923, -34.715274 ], [ -58.59283, -34.71514 ], [ -58.592752, -34.714959 ], [ -58.592512, -34.714406 ], [ -58.592524, -34.714241 ], [ -58.59215, -34.713538 ], [ -58.592137, -34.713524 ], [ -58.591962, -34.713305 ], [ -58.591645, -34.712976 ], [ -58.591332, -34.712669 ], [ -58.591109, -34.712456 ], [ -58.590716, -34.71207 ], [ -58.590449, -34.7118 ], [ -58.589511, -34.710917 ], [ -58.588948, -34.710318 ], [ -58.58876, -34.710112 ], [ -58.588183, -34.709571 ], [ -58.587781, -34.70919 ], [ -58.587143, -34.708582 ], [ -58.586862, -34.708309 ], [ -58.586656, -34.708089 ], [ -58.586326, -34.707756 ], [ -58.585975, -34.707353 ], [ -58.585629, -34.706995 ], [ -58.585333, -34.706683 ], [ -58.585131, -34.70648 ], [ -58.58483, -34.706164 ], [ -58.584054, -34.705339 ], [ -58.583775, -34.705204 ], [ -58.583354, -34.704775 ], [ -58.582449, -34.703848 ], [ -58.581643, -34.703028 ], [ -58.581034, -34.702397 ], [ -58.580498, -34.701835 ], [ -58.580101, -34.701428 ], [ -58.579847, -34.701182 ], [ -58.579263, -34.700528 ], [ -58.578633, -34.699814 ], [ -58.578115, -34.699192 ], [ -58.577641, -34.698657 ], [ -58.577235, -34.698189 ], [ -58.576618, -34.697492 ], [ -58.576273, -34.697075 ], [ -58.57564, -34.69633 ], [ -58.574665, -34.6952 ], [ -58.573613, -34.694027 ], [ -58.572956, -34.693359 ], [ -58.572432, -34.692895 ], [ -58.572232, -34.692734 ], [ -58.571574, -34.69215 ], [ -58.570996, -34.691666 ], [ -58.570579, -34.691369 ], [ -58.570215, -34.691154 ], [ -58.569396, -34.690674 ], [ -58.568208, -34.689962 ], [ -58.567046, -34.689295 ], [ -58.566048, -34.688704 ], [ -58.56512, -34.688151 ], [ -58.564314, -34.687688 ], [ -58.563437, -34.687131 ], [ -58.562479, -34.686611 ], [ -58.561471, -34.686171 ], [ -58.561142, -34.686067 ], [ -58.560983, -34.686023 ], [ -58.560918999999899, -34.686017 ], [ -58.560783, -34.685997 ], [ -58.560498, -34.686016 ], [ -58.560349, -34.685997 ], [ -58.560189, -34.685984 ], [ -58.560069, -34.685981 ], [ -58.55994, -34.685911 ], [ -58.559812, -34.685747 ], [ -58.559736, -34.685638 ], [ -58.559679, -34.685583 ], [ -58.559399, -34.685497 ], [ -58.558917, -34.685399 ], [ -58.558322, -34.685127 ], [ -58.55737, -34.684541 ], [ -58.556583, -34.683954 ], [ -58.555769, -34.683337 ], [ -58.554909, -34.682727 ], [ -58.554039, -34.68214 ], [ -58.553207, -34.681524 ], [ -58.552291, -34.680892 ], [ -58.55144, -34.680312 ], [ -58.550525, -34.67971 ], [ -58.549702, -34.67907 ], [ -58.54874, -34.678472 ], [ -58.548301, -34.678057 ], [ -58.547605, -34.677588 ], [ -58.546745, -34.676971 ], [ -58.545889, -34.676425 ], [ -58.545145, -34.675912 ], [ -58.54483, -34.675711 ], [ -58.544464, -34.675484 ], [ -58.543852999999899, -34.675077 ], [ -58.543211, -34.674664 ], [ -58.542519, -34.674169 ], [ -58.541886, -34.673744 ], [ -58.541018, -34.673221 ], [ -58.540148, -34.67267 ], [ -58.539279, -34.672119 ], [ -58.538412, -34.671554 ], [ -58.537552, -34.671003 ], [ -58.536679, -34.670453 ], [ -58.536617, -34.670415 ], [ -58.535805, -34.669874 ], [ -58.534937, -34.669317 ], [ -58.533931, -34.668683 ], [ -58.533269, -34.668397 ], [ -58.532809, -34.668196 ], [ -58.532611, -34.668108 ], [ -58.531952, -34.667811 ], [ -58.531426, -34.667588 ], [ -58.531264, -34.667526 ], [ -58.530634, -34.667278 ], [ -58.529966, -34.667007 ], [ -58.528688, -34.666488 ], [ -58.527492, -34.665958 ], [ -58.526117, -34.665363 ], [ -58.524944, -34.66486 ], [ -58.524743, -34.664781 ], [ -58.524239, -34.664584 ], [ -58.523472, -34.664338 ], [ -58.523179, -34.664229 ], [ -58.522158, -34.663841 ], [ -58.521656, -34.663658 ], [ -58.52142, -34.663572 ], [ -58.521101, -34.663454 ], [ -58.520541, -34.663265 ], [ -58.519992, -34.663071 ], [ -58.51946, -34.662872 ], [ -58.518366, -34.662509 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 50.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.370790000258239, -34.641309000210128 ], [ -58.371799000023771, -34.641372999564226 ], [ -58.372807999789302, -34.641480000001934 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377699999655192, -34.629979000230605 ], [ -58.378, -34.630172000137634 ], [ -58.378128999653597, -34.630300999791245 ], [ -58.3784510001135, -34.630343999975594 ], [ -58.378653999582355, -34.630249000091226 ], [ -58.378687000204877, -34.630215000321982 ], [ -58.378815999858489, -34.629871999792897 ], [ -58.37900899976546, -34.629270999956645 ], [ -58.379588000385866, -34.627704999685932 ], [ -58.381433000032871, -34.627790000008474 ], [ -58.382142000352985, -34.62781200012364 ], [ -58.382807000442654, -34.627833000192766 ], [ -58.384329999629756, -34.628154999753406 ], [ -58.385704000039539, -34.628412999959949 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.385746000177733, -34.626095000084149 ], [ -58.385789000362024, -34.624742999789589 ], [ -58.385810999577927, -34.623927999977184 ], [ -58.385831999647053, -34.623563000232252 ], [ -58.385831999647053, -34.623219999703167 ], [ -58.385810999577927, -34.62236199970647 ], [ -58.385831999647053, -34.621138999964842 ], [ -58.385831999647053, -34.619850999923642 ], [ -58.385853999762219, -34.618671000366305 ], [ -58.385874999831344, -34.617813000369608 ], [ -58.385896999946567, -34.616675000051146 ], [ -58.385918000015636, -34.615516999709712 ], [ -58.385940000130859, -34.614530000059403 ], [ -58.386089999853596, -34.613413999856164 ], [ -58.386154000106956, -34.612297999652924 ], [ -58.386154000106956, -34.611074999911295 ], [ -58.386219000406527, -34.609980999823222 ], [ -58.386260999645401, -34.60937999998697 ], [ -58.386282999760567, -34.608800000219787 ], [ -58.386303999829693, -34.607641999878354 ], [ -58.386369000129207, -34.606462000321017 ], [ -58.386475999667596, -34.605237999633914 ], [ -58.386562000036236, -34.603950999638869 ], [ -58.386648000404875, -34.60272799989724 ], [ -58.386690999689847, -34.601633999809223 ], [ -58.386733999874139, -34.600625000043692 ], [ -58.386862000380972, -34.599272999749076 ], [ -58.386969999965459, -34.598286000098767 ], [ -58.387055000288001, -34.597063000357139 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.387291000379321, -34.594616999974505 ], [ -58.387569999755669, -34.592813999566374 ], [ -58.387956999615824, -34.591634000009037 ], [ -58.388944000165452, -34.590840000265757 ], [ -58.389951999884829, -34.590045999623158 ], [ -58.390918000365389, -34.590904999665952 ], [ -58.391861999831406, -34.591762999662649 ], [ -58.392934999850297, -34.590925999735077 ], [ -58.393985999754022, -34.590088999807449 ], [ -58.394930000119359, -34.589317000179392 ], [ -58.39585300041557, -34.588543999605861 ], [ -58.396517999605976, -34.588008000069124 ], [ -58.397247999995159, -34.587450000417164 ], [ -58.397535999786498, -34.587161999726447 ], [ -58.398255999714593, -34.586527000120896 ], [ -58.398963999988553, -34.585862000031227 ], [ -58.399179000010804, -34.585733000377616 ], [ -58.399929999569792, -34.58500400003453 ], [ -58.400552000374489, -34.58444600038257 ], [ -58.401216999564838, -34.583866999762165 ], [ -58.402054000391786, -34.583415999648594 ], [ -58.40156100014002, -34.582064000253354 ], [ -58.402525999675106, -34.581763999908617 ], [ -58.403233999949123, -34.581505999702074 ], [ -58.403641999878346, -34.581312999795045 ], [ -58.404586000243683, -34.580562000236057 ], [ -58.405551999824866, -34.579832999892972 ], [ -58.405874000284825, -34.57955399961736 ], [ -58.406281000168008, -34.579209999941497 ], [ -58.406882000004259, -34.578652000289537 ], [ -58.407933999954082, -34.57811599985348 ], [ -58.40859900004375, -34.577816000408063 ], [ -58.409993999623339, -34.577192999557212 ], [ -58.409649999947476, -34.576441999998281 ], [ -58.409071000226447, -34.575926999631292 ], [ -58.408555999859459, -34.575561999886361 ], [ -58.408170000045402, -34.575155000003178 ], [ -58.408340999837208, -34.574769000189178 ], [ -58.408491999606042, -34.574597000351218 ], [ -58.408705999582196, -34.574424999613996 ], [ -58.408880999558448, -34.574311999798908 ], [ -58.409071000226447, -34.574189000421995 ], [ -58.409435999971379, -34.57401799973087 ], [ -58.409758000431339, -34.573799000423492 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 48.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.367776999808655, -34.64934100008702 ], [ -58.368086999715217, -34.647852999816052 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.369246000102805, -34.640106999638306 ], [ -58.369395999825485, -34.639163000172289 ], [ -58.369546000447542, -34.638239999876077 ], [ -58.369566999617291, -34.638003999784701 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.370661999751462, -34.629184999588006 ], [ -58.370769000189171, -34.628091000399309 ], [ -58.370962000096199, -34.626609999551818 ], [ -58.372570999651884, -34.626739000104749 ], [ -58.373858999693027, -34.626760000173817 ], [ -58.374566999967044, -34.626803000358109 ], [ -58.375575999732575, -34.627296999756709 ], [ -58.376584000351272, -34.627876000377057 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.379797000131418, -34.627267000171855 ], [ -58.38219199996081, -34.627359999963971 ], [ -58.382205999707082, -34.627233000402612 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.382957000165391, -34.623906999908058 ], [ -58.382957000165391, -34.622210999937636 ], [ -58.382957000165391, -34.620988000196007 ], [ -58.382978000234459, -34.619744000385253 ], [ -58.382957000165391, -34.618563999928597 ], [ -58.383021000418807, -34.617683999816677 ], [ -58.383063999703779, -34.616567999613437 ], [ -58.383021000418807, -34.615344999871809 ], [ -58.383085999819002, -34.6143580002215 ], [ -58.383193000256711, -34.613198999833912 ], [ -58.383299999795099, -34.612041000391798 ], [ -58.383365000094614, -34.610882000004267 ], [ -58.383408000278962, -34.609744999731902 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.383450999563934, -34.60858600024369 ], [ -58.383514999817351, -34.60747000004045 ], [ -58.383579000070768, -34.606204000114474 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.38383700027731, -34.602599000243629 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.383943999815699, -34.600753999697304 ], [ -58.383922999746574, -34.600410000021441 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.384094000437756, -34.598242999914476 ], [ -58.38407300036863, -34.598093000191739 ], [ -58.384179999907019, -34.596912999735082 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.389974, -34.595776000362093 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.394650999843748, -34.595797000431162 ], [ -58.396088999607628, -34.595689999993454 ], [ -58.39737699964877, -34.595582000408967 ], [ -58.398534999990204, -34.595431999786911 ], [ -58.399673000308667, -34.595217999810814 ], [ -58.399909000399987, -34.595153000410619 ], [ -58.401153000210741, -34.594809999881534 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.403620999809277, -34.594080000391671 ], [ -58.405100999711351, -34.593372000117654 ], [ -58.406131000445271, -34.592578000374374 ], [ -58.407183000395094, -34.591634000009037 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.412203999914595, -34.587643000324135 ], [ -58.412353999637332, -34.587556999955552 ], [ -58.413169000349058, -34.586999000303592 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.414992999926938, -34.585775999662587 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.42052799976733, -34.581901999977276 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426293000321664, -34.578227999622413 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.432009000415007, -34.576978999581115 ], [ -58.432996000065316, -34.577836999577812 ], [ -58.434004999830847, -34.578716999689732 ], [ -58.434626999736224, -34.579253000125789 ], [ -58.435527999917213, -34.580068999984292 ], [ -58.436150999868687, -34.580605000420405 ], [ -58.436687000304801, -34.581076999703726 ], [ -58.437416999794664, -34.581698999609102 ], [ -58.438404000344292, -34.580862999727628 ], [ -58.4393909999946, -34.580046999869126 ], [ -58.440313000244714, -34.579275000241012 ], [ -58.440549000336034, -34.579082000333983 ], [ -58.441450999663857, -34.578308999760509 ], [ -58.443704000139462, -34.576827999812281 ], [ -58.444733999974062, -34.576120000437641 ], [ -58.445892000315496, -34.575627000185875 ], [ -58.446686000058833, -34.576743000389115 ], [ -58.447243999710793, -34.577707999924201 ], [ -58.44786599961617, -34.578737999758857 ], [ -58.448467000351741, -34.579661000055069 ], [ -58.449090000303215, -34.580562000236057 ], [ -58.449454000002049, -34.581098999818948 ], [ -58.449196999841604, -34.581184000141434 ], [ -58.449818999746981, -34.582385999813994 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.45102100031886, -34.581956999815645 ], [ -58.451728999693557, -34.581698999609102 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.455204999910791, -34.587277999679884 ], [ -58.455033000072831, -34.587470999586913 ], [ -58.454110999822717, -34.587771999977747 ], [ -58.452779999597283, -34.588265000229512 ], [ -58.451450000317209, -34.588737000412209 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.450806000296609, -34.588608999905375 ], [ -58.450527000020998, -34.587921999700484 ], [ -58.450226999676261, -34.586935000050175 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 46.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.370489999913502, -34.586258000306429 ], [ -58.370210999637891, -34.585927000330742 ], [ -58.370081999984279, -34.585775999662587 ], [ -58.369223999987582, -34.58476799994321 ], [ -58.369546000447542, -34.584618000220473 ], [ -58.370312999844998, -34.585506999848121 ], [ -58.370489999913502, -34.585712000308547 ], [ -58.371068999634588, -34.586398999614119 ], [ -58.371122000280025, -34.586460999775284 ], [ -58.371755999839479, -34.587214000325787 ], [ -58.371991999930799, -34.587320999864232 ], [ -58.371777999954702, -34.587836000231164 ], [ -58.371755999839479, -34.588200999976152 ], [ -58.372014000046022, -34.588523000436055 ], [ -58.37220699995305, -34.588758999628112 ], [ -58.37220699995305, -34.588844999996695 ], [ -58.37220699995305, -34.588952000434404 ], [ -58.37323699978765, -34.59013199999174 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375232000056712, -34.592793000396625 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.373493999948096, -34.594038000253477 ], [ -58.373344000225416, -34.594401999952311 ], [ -58.373043999880622, -34.595024999903785 ], [ -58.372464000113496, -34.596140000060927 ], [ -58.372056000184216, -34.597148999826459 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371220000302742, -34.59854400030531 ], [ -58.371090999749811, -34.598951000188492 ], [ -58.370941000027074, -34.599487999771327 ], [ -58.370618999567114, -34.600711000412275 ], [ -58.370489999913502, -34.60193400015396 ], [ -58.370425999660142, -34.602985000057686 ], [ -58.370361000259891, -34.604144000445217 ], [ -58.370340000190822, -34.604466000005857 ], [ -58.370253999822182, -34.605302999933429 ], [ -58.370232999753114, -34.606462000321017 ], [ -58.370274999891308, -34.606718999582142 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.371241000371811, -34.607855999854451 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.374931999711976, -34.608629000427982 ], [ -58.376391000444301, -34.60873599996637 ], [ -58.377786000023832, -34.60882200033501 ], [ -58.379179999557266, -34.608885999689107 ], [ -58.380681999574563, -34.608994000172913 ], [ -58.381111999619066, -34.608994000172913 ], [ -58.381498000332385, -34.609036000311107 ], [ -58.381969999615762, -34.609078999596136 ], [ -58.383429000348031, -34.609187000079942 ], [ -58.384844999996687, -34.609272000402427 ], [ -58.386260999645401, -34.60937999998697 ], [ -58.387270000310252, -34.609444000240387 ], [ -58.387569999755669, -34.609444000240387 ], [ -58.387763999708795, -34.60937999998697 ], [ -58.38825199972996, -34.609103999849651 ], [ -58.388922000050229, -34.609015000242039 ], [ -58.389114999957258, -34.609036000311107 ], [ -58.390531999652012, -34.609187000079942 ], [ -58.391174999626514, -34.609251000333359 ], [ -58.391733000177794, -34.609251000333359 ], [ -58.391948000199989, -34.609230000264233 ], [ -58.392141000107017, -34.609208000149067 ], [ -58.393384999917771, -34.60929399961833 ], [ -58.394865999865942, -34.609401000056039 ], [ -58.396282000413919, -34.609508999640582 ], [ -58.397569999555799, -34.60961600007829 ], [ -58.399114999757387, -34.609722999616679 ], [ -58.400466000005849, -34.609808999985319 ], [ -58.401818000300409, -34.609895000353958 ], [ -58.403320000317706, -34.610001999892347 ], [ -58.404586000243683, -34.610066000145764 ], [ -58.405980999823271, -34.610109000330056 ], [ -58.406496000190202, -34.61017399973025 ], [ -58.407675999747539, -34.610281000167959 ], [ -58.408878000319419, -34.610345000421376 ], [ -58.410358000221493, -34.610430999890696 ], [ -58.410229999714659, -34.611547000093935 ], [ -58.410057999876756, -34.612684000366301 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.409693000131824, -34.61523800033342 ], [ -58.409457000040504, -34.61658999972866 ], [ -58.411002000242092, -34.616610999797786 ], [ -58.412740000350709, -34.616610999797786 ], [ -58.412697000166361, -34.618069999630734 ], [ -58.414091999745949, -34.618220000252791 ], [ -58.415357999671926, -34.618371000021568 ], [ -58.416731000035554, -34.618541999813374 ], [ -58.416623999597846, -34.619786999670282 ], [ -58.416538000128583, -34.620967000126939 ], [ -58.416388000405846, -34.622447000029013 ], [ -58.416280999968137, -34.623349000256098 ], [ -58.416215999668623, -34.624014000345824 ], [ -58.417052999596194, -34.624464999560018 ], [ -58.417760999870211, -34.624506999698212 ], [ -58.419113000164771, -34.624593000066852 ], [ -58.420528999813428, -34.624700999651395 ], [ -58.421129999649736, -34.624721999720464 ], [ -58.421860000038919, -34.624764999904755 ], [ -58.422525000128587, -34.624808000089104 ], [ -58.423212000333535, -34.624872000342521 ], [ -58.424520000397649, -34.624936999742715 ], [ -58.425980000276752, -34.625044000180424 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.427052000249546, -34.625731000385315 ], [ -58.426987999996186, -34.626030999830732 ], [ -58.426751999904809, -34.626997000311292 ], [ -58.426451999560072, -34.628326999591309 ], [ -58.426216000368072, -34.629378000394354 ], [ -58.425980000276752, -34.630430000344177 ], [ -58.425744000185432, -34.631481000247902 ], [ -58.42720300001838, -34.63152400043225 ], [ -58.428490000013426, -34.631566999717222 ], [ -58.429090999849734, -34.631609999901514 ], [ -58.429712999755111, -34.631953000430599 ], [ -58.429799000123694, -34.632017999830794 ], [ -58.431559000347534, -34.633261999641547 ], [ -58.432116999999494, -34.633584000101507 ], [ -58.432738999904871, -34.63399200003073 ], [ -58.432952999881024, -34.634035000215022 ], [ -58.433275000340927, -34.634119999638244 ], [ -58.433704000339276, -34.634206000006827 ], [ -58.434197999737876, -34.634292000375467 ], [ -58.434970000265253, -34.63446400021337 ], [ -58.435291999825893, -34.634527999567467 ], [ -58.435742999939464, -34.634613999936107 ], [ -58.436343999775715, -34.634721000373816 ], [ -58.436644000120452, -34.63478599977401 ], [ -58.436943999565869, -34.634850000027427 ], [ -58.437309000210178, -34.634914000280844 ], [ -58.437630999770761, -34.634999999750164 ], [ -58.437953000230721, -34.635042999934456 ], [ -58.438875999627612, -34.635235999841484 ], [ -58.440313000244714, -34.635537000232318 ], [ -58.440056000084269, -34.636244999607015 ], [ -58.439691000339337, -34.637296000410061 ], [ -58.439240000225766, -34.638626999736232 ], [ -58.440162999622714, -34.638819999643204 ], [ -58.440764000358286, -34.63897000026526 ], [ -58.441579000170691, -34.639163000172289 ], [ -58.442030000284262, -34.639269999710677 ], [ -58.443296000210182, -34.639592000170637 ], [ -58.444261999791422, -34.639807000192889 ], [ -58.444475999767519, -34.639785000077666 ], [ -58.44460500032045, -34.639828000261957 ], [ -58.445291999626022, -34.640450000167334 ], [ -58.446235999991359, -34.641287000094962 ], [ -58.447158000241473, -34.642124000022534 ], [ -58.448059999569296, -34.642917999765814 ], [ -58.449497000186341, -34.644162999622665 ], [ -58.450398000367386, -34.644914000080973 ], [ -58.45110699978818, -34.64553599998635 ], [ -58.451127999857249, -34.645685999709087 ], [ -58.451320999764278, -34.645685999709087 ], [ -58.451749999762626, -34.645793000146796 ], [ -58.452458000036643, -34.645128000057127 ], [ -58.453360000263785, -34.644313000244722 ], [ -58.453960000053939, -34.643754999693442 ], [ -58.454411000167511, -34.643325999695094 ], [ -58.455376999748694, -34.642466999652243 ], [ -58.456514000021059, -34.641415999748574 ], [ -58.456835999581699, -34.641094000187934 ], [ -58.45767300040859, -34.641480000001934 ], [ -58.457993999923133, -34.641630999770769 ], [ -58.458724000312316, -34.641974000299854 ], [ -58.459453999802236, -34.642316999929562 ], [ -58.460376000052293, -34.642745999927911 ], [ -58.460740999797281, -34.642874999581522 ], [ -58.461041000142018, -34.642917999765814 ], [ -58.461277000233338, -34.642832000296551 ], [ -58.461449000071241, -34.642745999927911 ], [ -58.461749999562812, -34.642681999674494 ], [ -58.462006999723201, -34.642703999789717 ], [ -58.462393000436577, -34.642874999581522 ], [ -58.462543000159314, -34.643025000203579 ], [ -58.462650999743801, -34.643197000041482 ], [ -58.462693999928092, -34.643433000132802 ], [ -58.462843999650829, -34.64371200040847 ], [ -58.463166000110789, -34.644033999969054 ], [ -58.463809000085234, -34.644356000429013 ], [ -58.464861000035057, -34.644848999781459 ], [ -58.466020000422645, -34.645343000079322 ], [ -58.467050000257245, -34.645878999616116 ], [ -58.467093000441594, -34.64594399991563 ], [ -58.467156999795691, -34.646114999707436 ], [ -58.467542999609691, -34.646630000074424 ], [ -58.467951000438291, -34.64720999984155 ], [ -58.468186999630291, -34.647553000370635 ], [ -58.468422999721611, -34.647918000115567 ], [ -58.468766000250696, -34.648368000183041 ], [ -58.469280999718308, -34.649118999742029 ], [ -58.469667000431684, -34.649526999671252 ], [ -58.469646000362559, -34.649590999924669 ], [ -58.46953899992485, -34.649569999855544 ], [ -58.469195000249044, -34.649677000293309 ], [ -58.467993999723262, -34.650707000127909 ], [ -58.467397000071458, -34.651167999803306 ], [ -58.466599000143674, -34.651736999962509 ], [ -58.466748999866411, -34.651929999869537 ], [ -58.465697999962686, -34.652681000327846 ], [ -58.466792000050702, -34.653796999631766 ], [ -58.465697999962686, -34.654654999628463 ], [ -58.465075000011211, -34.655169999995451 ], [ -58.466340999937131, -34.656221999945274 ], [ -58.467479000255594, -34.65716600031061 ], [ -58.467800999816234, -34.657422999571736 ], [ -58.46962500029349, -34.658967999773324 ], [ -58.469559999993976, -34.659033000072839 ], [ -58.468615999628639, -34.659762000415924 ], [ -58.467606999863108, -34.660448999721496 ], [ -58.469666000385587, -34.662422999921489 ], [ -58.469688999647587, -34.662445000036655 ], [ -58.469839000269587, -34.662659000012809 ], [ -58.470011000107547, -34.663066999942032 ], [ -58.470075000360964, -34.663324000102477 ], [ -58.470332999668187, -34.663645999663117 ], [ -58.470483000290187, -34.663968000123077 ], [ -58.470353999737256, -34.664332999868009 ], [ -58.470117999645936, -34.664568999959329 ], [ -58.470891000219467, -34.665277000233345 ], [ -58.471662999847524, -34.665921000253888 ], [ -58.472435000374901, -34.666586000343614 ], [ -58.473229000118238, -34.667251000433282 ], [ -58.474022999861518, -34.667915999623631 ], [ -58.472779000050764, -34.66888200010419 ], [ -58.471577000378204, -34.669805000400402 ], [ -58.472327999937193, -34.670490999659876 ], [ -58.473079000395501, -34.671177999864767 ], [ -58.473808999885421, -34.671886000138727 ], [ -58.474989000342077, -34.670962999842516 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 45.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.54088700043468, -34.65722899961861 ], [ -58.540692000435456, -34.65740200040193 ], [ -58.541744000385279, -34.658196000145267 ], [ -58.540864000273359, -34.658989999888547 ], [ -58.539963000092314, -34.659804999700953 ], [ -58.53942599961016, -34.65939799981777 ], [ -58.538890000073422, -34.658989999888547 ], [ -58.538352999591211, -34.658581999959267 ], [ -58.537838000123543, -34.658217000214336 ], [ -58.537322999756611, -34.657831000400279 ], [ -58.536830000404166, -34.657444999686959 ], [ -58.536271999852886, -34.65701599968861 ], [ -58.535736000316149, -34.656607999759331 ], [ -58.535198999833938, -34.656178999760982 ], [ -58.534663000297201, -34.655770999831759 ], [ -58.534104999745921, -34.655385000017702 ], [ -58.533611000347321, -34.654999000203645 ], [ -58.533052999796041, -34.654570000205297 ], [ -58.532495000144081, -34.654183000345142 ], [ -58.531529999709676, -34.653431999886834 ], [ -58.530993000126841, -34.653046000072777 ], [ -58.530263999783699, -34.653518000255474 ], [ -58.52968500006267, -34.654032999723142 ], [ -58.529277000133391, -34.654311999998754 ], [ -58.529190999764808, -34.654247999745337 ], [ -58.529169999695682, -34.654162000276074 ], [ -58.529211999833876, -34.653667999978154 ], [ -58.529233999949099, -34.653195999795514 ], [ -58.529298000202516, -34.652380999983109 ], [ -58.529320000317739, -34.651544000055537 ], [ -58.529362999602711, -34.650792999597229 ], [ -58.529383999671779, -34.650321000313852 ], [ -58.529383999671779, -34.650148999576629 ], [ -58.529405999787002, -34.649741999693504 ], [ -58.529448999971351, -34.649441000201932 ], [ -58.529491000109545, -34.648411000367332 ], [ -58.529513000224767, -34.647918000115567 ], [ -58.529534000293836, -34.64753200030151 ], [ -58.529598999694031, -34.646909000350036 ], [ -58.529619999763156, -34.646350999798756 ], [ -58.52968500006267, -34.64570799982431 ], [ -58.529706000131739, -34.645171000241419 ], [ -58.529749000316087, -34.644120000337693 ], [ -58.529791999601059, -34.643626000039831 ], [ -58.529834999785351, -34.643025000203579 ], [ -58.529877999969699, -34.641781000392825 ], [ -58.529942000223116, -34.640600999936169 ], [ -58.529963000292184, -34.64017199993782 ], [ -58.530005999577156, -34.63961400028586 ], [ -58.529942000223116, -34.639356000079317 ], [ -58.529298000202516, -34.639335000010192 ], [ -58.528869000204168, -34.639312999894969 ], [ -58.527731999931802, -34.639227000425706 ], [ -58.526422999821534, -34.63911999998794 ], [ -58.525092999642197, -34.639033999619357 ], [ -58.523719000131734, -34.638927000080969 ], [ -58.522560999790244, -34.638819999643204 ], [ -58.52122999956481, -34.638927000080969 ], [ -58.519749999662736, -34.638991000334329 ], [ -58.518763000012427, -34.63905599973458 ], [ -58.517410999717811, -34.63911999998794 ], [ -58.516273000298668, -34.639184000241357 ], [ -58.515823000231251, -34.639184000241357 ], [ -58.514299000098731, -34.639227000425706 ], [ -58.512989999988463, -34.639269999710677 ], [ -58.511423999717749, -34.639335000010192 ], [ -58.510051000253441, -34.639098999918872 ], [ -58.508698999958824, -34.638862999827552 ], [ -58.507346999664264, -34.638626999736232 ], [ -58.505931000015607, -34.638369000429009 ], [ -58.504536000436019, -34.638154999553535 ], [ -58.503956999815671, -34.638069000084215 ], [ -58.503420000232779, -34.637982999715632 ], [ -58.502068999984317, -34.637789999808604 ], [ -58.500930999665854, -34.637617999970701 ], [ -58.499471999832906, -34.637425000063672 ], [ -58.498013, -34.637210000041421 ], [ -58.496575000236021, -34.637017000134392 ], [ -58.495932000261575, -34.636930999765809 ], [ -58.495116000403073, -34.636824000227364 ], [ -58.493656999670748, -34.636610000251267 ], [ -58.493099000018788, -34.636480999698335 ], [ -58.492133999584382, -34.636287999791307 ], [ -58.491746999724228, -34.636202000321987 ], [ -58.491060999565434, -34.636029999584764 ], [ -58.489429999894526, -34.635622999701638 ], [ -58.487648999601618, -34.635192999657193 ], [ -58.486683000020378, -34.634978999681039 ], [ -58.485439000209624, -34.634678000189524 ], [ -58.484859000442498, -34.63454999968269 ], [ -58.484173000283704, -34.634398999913856 ], [ -58.483272000102659, -34.634162999822536 ], [ -58.482348999806447, -34.633948999846439 ], [ -58.481704999785848, -34.633799000123702 ], [ -58.480353000390608, -34.633476999663742 ], [ -58.478915999773506, -34.633132999987936 ], [ -58.477820999639391, -34.63287599982749 ], [ -58.476726999551374, -34.632617999620948 ], [ -58.475654000431746, -34.632339000244599 ], [ -58.474602999628701, -34.632061000015085 ], [ -58.473487000324781, -34.631759999624251 ], [ -58.472371000121541, -34.631460000178834 ], [ -58.471190999664884, -34.631115999603651 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.437760000323692, -34.618864000273334 ], [ -58.436451000213424, -34.618284999652985 ], [ -58.435291999825893, -34.617770000185317 ], [ -58.434713000104807, -34.617511999978774 ], [ -58.432867999558482, -34.616697000166369 ], [ -58.432202000322036, -34.616417999890757 ], [ -58.431643999770756, -34.616159999684214 ], [ -58.431365000394408, -34.6160320000767 ], [ -58.430785999774002, -34.615773999870157 ], [ -58.430293000421614, -34.61555999989406 ], [ -58.430035000215071, -34.615431000240449 ], [ -58.429220000402665, -34.615087999711363 ], [ -58.428791000404317, -34.617169000349065 ], [ -58.427352999741117, -34.617082999980425 ], [ -58.425871999792889, -34.616996999611786 ], [ -58.424435000075164, -34.616911000142522 ], [ -58.422718000035616, -34.616803999704757 ], [ -58.421558999648084, -34.616740000350717 ], [ -58.419906999908051, -34.616653999982077 ], [ -58.418340999637394, -34.616631999866854 ], [ -58.416923999942583, -34.616631999866854 ], [ -58.417010000311222, -34.615688000400837 ], [ -58.417138999964834, -34.614530000059403 ], [ -58.415959000407497, -34.614421999575598 ], [ -58.415294000317829, -34.6143580002215 ], [ -58.414520999744298, -34.614271999852861 ], [ -58.412890000073389, -34.614100000014957 ], [ -58.411302999733607, -34.614035999761541 ], [ -58.409886000038853, -34.613972000407443 ], [ -58.408620000112876, -34.61395000029222 ], [ -58.407547000093928, -34.613778999601095 ], [ -58.406539000374551, -34.613627999832261 ], [ -58.405293999618323, -34.613434999925289 ], [ -58.404221999645529, -34.613370999671872 ], [ -58.40314899962658, -34.613328000386844 ], [ -58.401452999656158, -34.613242000018261 ], [ -58.400229999914529, -34.613177999764844 ], [ -58.398856999550844, -34.613113000364649 ], [ -58.397418999786964, -34.613049000111232 ], [ -58.396152999860988, -34.612962999742592 ], [ -58.394716000143262, -34.612877000273272 ], [ -58.393278000379382, -34.612769999835564 ], [ -58.39175500029296, -34.612684000366301 ], [ -58.391712000108669, -34.613821999785443 ], [ -58.391689999993446, -34.614936999942529 ], [ -58.390380999883178, -34.614850999573946 ], [ -58.388944000165452, -34.61467999978214 ], [ -58.387506000401572, -34.614636999597792 ], [ -58.385940000130859, -34.614530000059403 ], [ -58.384523000436104, -34.614443999690764 ], [ -58.383085999819002, -34.6143580002215 ], [ -58.381691000239414, -34.614228999668569 ], [ -58.381262000241065, -34.61418600038354 ], [ -58.380854000311842, -34.614165000314472 ], [ -58.380404000244368, -34.614143000199249 ], [ -58.378965999581169, -34.614078999945832 ], [ -58.377527999817289, -34.613972000407443 ], [ -58.376091000099507, -34.613929000223152 ], [ -58.374631000220461, -34.613842999854512 ], [ -58.373257999856776, -34.613757000385192 ], [ -58.371863000277187, -34.613627999832261 ], [ -58.371155000003228, -34.613606999763192 ], [ -58.370748000120045, -34.613606999763192 ], [ -58.369503000263194, -34.613606999763192 ], [ -58.369310000356165, -34.613606999763192 ], [ -58.369117000449194, -34.613584999647969 ], [ -58.367829000407994, -34.613478000109581 ], [ -58.366991999581103, -34.613413999856164 ], [ -58.3671430002492, -34.612147999930187 ], [ -58.3420590000228, -34.623542000163127 ], [ -58.342338000298412, -34.623712999954932 ], [ -58.343153000110817, -34.623927999977184 ], [ -58.343775000016194, -34.624035000414892 ], [ -58.34541500010215, -34.6242339996993 ], [ -58.345899999984965, -34.624292999722115 ], [ -58.346350000052439, -34.624292999722115 ], [ -58.346714999797371, -34.624142999999435 ], [ -58.347100999611428, -34.623906999908058 ], [ -58.347336999702748, -34.623863999723767 ], [ -58.348171000391289, -34.623946999954057 ], [ -58.351628999778484, -34.624292999722115 ], [ -58.352028000192036, -34.624254999768368 ], [ -58.352078999845901, -34.624250000437144 ], [ -58.352594000212889, -34.623971000161475 ], [ -58.353151999864849, -34.623498999978835 ], [ -58.353344999771878, -34.623240999772293 ], [ -58.35386500036941, -34.62238800000614 ], [ -58.353945999608129, -34.622254000121984 ], [ -58.354290000183312, -34.622083000330178 ], [ -58.355855999554706, -34.618970999811722 ], [ -58.356125000268491, -34.618279000275606 ], [ -58.356155999899443, -34.618199000183665 ], [ -58.356221000198957, -34.617897999792831 ], [ -58.356242000268082, -34.617834000438734 ], [ -58.356264000383248, -34.617770000185317 ], [ -58.356414000105985, -34.617661999701454 ], [ -58.356499999575306, -34.617661999701454 ], [ -58.356671000266431, -34.617770000185317 ], [ -58.356756999735694, -34.618392000090694 ], [ -58.357036000011362, -34.618713999651334 ], [ -58.357636999847614, -34.619163999718751 ], [ -58.357851999869865, -34.618392000090694 ], [ -58.357980000376699, -34.617598000347414 ], [ -58.357997000261321, -34.617543999655823 ], [ -58.358065999845962, -34.617319000071745 ], [ -58.358109000030311, -34.617126000164717 ], [ -58.358305000075632, -34.615348000010158 ], [ -58.358430999590894, -34.614207999599444 ], [ -58.358687999751339, -34.612448000274924 ], [ -58.358945999957882, -34.611826000369604 ], [ -58.359182000049202, -34.611332000071684 ], [ -58.359331999771939, -34.611439999656227 ], [ -58.359589999978482, -34.611482999840518 ], [ -58.359996999861607, -34.611460999725296 ], [ -58.361885999739059, -34.611653999632324 ], [ -58.362571999897852, -34.611696999816672 ], [ -58.363408999825424, -34.611696999816672 ], [ -58.363623999847675, -34.611740000000964 ], [ -58.363881000008121, -34.611976000092284 ], [ -58.365500000024952, -34.612057000230323 ], [ -58.365598000047612, -34.612061999561604 ], [ -58.36602700004596, -34.612082999630672 ], [ -58.3661130004146, -34.611998000207507 ], [ -58.36626300013728, -34.611976000092284 ], [ -58.366391999790892, -34.611998000207507 ], [ -58.366499000228657, -34.612104999745895 ], [ -58.3671430002492, -34.612147999930187 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 44.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.393230874791868, -34.64522852285068 ], [ -58.394935198607442, -34.645939112023029 ], [ -58.395403703872937, -34.646120189638808 ], [ -58.39577715270643, -34.64624297063709 ], [ -58.396172008668202, -34.646367353002667 ], [ -58.396573932447978, -34.646490796642709 ], [ -58.396869005608281, -34.646587865764012 ], [ -58.397684082675212, -34.646883769192023 ], [ -58.398041176385682, -34.646990579602232 ], [ -58.398117499319049, -34.647008491649729 ], [ -58.398289031376009, -34.647043783913581 ], [ -58.398484159933652, -34.647081224103978 ], [ -58.398654738747702, -34.647094490607373 ], [ -58.398851493459702, -34.647099558365873 ], [ -58.398973250790043, -34.647102365360702 ], [ -58.399138873118552, -34.647087446143018 ], [ -58.400782303397982, -34.646946682807773 ], [ -58.401136654808703, -34.646923735447523 ], [ -58.401401375063188, -34.646906609016909 ], [ -58.401692949945968, -34.646892982239457 ], [ -58.401887913994912, -34.646913735625759 ], [ -58.402167949593277, -34.646953695736642 ], [ -58.414415992750058, -34.648983454198508 ], [ -58.414686453647313, -34.649023416757373 ], [ -58.41491789917437, -34.649052224415797 ], [ -58.415047833724188, -34.649067127675551 ], [ -58.415170693546251, -34.649081714293906 ], [ -58.41533660567228, -34.649091375489817 ], [ -58.416103448941172, -34.64910924442286 ], [ -58.416638839209263, -34.649110707151777 ], [ -58.416919948169621, -34.649106239052777 ], [ -58.417129253941717, -34.649082821238963 ], [ -58.417351400929689, -34.649051759377507 ], [ -58.4175040105956, -34.649014646823417 ], [ -58.417781638271023, -34.648938908579922 ], [ -58.418107763458188, -34.648824638078921 ], [ -58.420148594462439, -34.648010741892612 ], [ -58.421091294599627, -34.647684681679742 ], [ -58.421507381315379, -34.64755870865789 ], [ -58.423425557781158, -34.647048565954833 ], [ -58.423800364443679, -34.64696522849173 ], [ -58.424023994987628, -34.646925384568988 ], [ -58.424229945536169, -34.64689682578112 ], [ -58.424428828369948, -34.646880487164559 ], [ -58.424665441324919, -34.646867495164066 ], [ -58.424928952248038, -34.646869699034717 ], [ -58.425191188596258, -34.646895810603873 ], [ -58.42548633816839, -34.646930762512334 ], [ -58.425748341231362, -34.646966902788172 ], [ -58.426007346921622, -34.647032999837009 ], [ -58.426334879292561, -34.64713342399471 ], [ -58.426723633806652, -34.647290383209103 ], [ -58.427018635047958, -34.647440175257138 ], [ -58.427354771188057, -34.647647141029992 ], [ -58.427589547297082, -34.647809442477758 ], [ -58.427804269878067, -34.647988749263867 ], [ -58.428059312847843, -34.64825160891823 ], [ -58.428263840856857, -34.64851328718624 ], [ -58.428368372453157, -34.648654419163449 ], [ -58.428490975527687, -34.64886100909527 ], [ -58.428638620000179, -34.64921981114054 ], [ -58.430399023447947, -34.654111505887812 ], [ -58.430580992111672, -34.65454759092934 ], [ -58.430744406905788, -34.654879602458038 ], [ -58.43091147516467, -34.655190557339623 ], [ -58.431128033803468, -34.655549148478272 ], [ -58.432606095669378, -34.65801519415205 ], [ -58.432785674408159, -34.658272650193567 ], [ -58.432960161107012, -34.658455403151343 ], [ -58.433150118777782, -34.658650618011862 ], [ -58.43335842356506, -34.658851692353451 ], [ -58.433498215352706, -34.658949359139207 ], [ -58.433692315392619, -34.659077456599611 ], [ -58.433912445222582, -34.659211056797069 ], [ -58.434219685435103, -34.659391382108574 ], [ -58.434461593672133, -34.659502621752893 ], [ -58.435431967970899, -34.659896687015163 ], [ -58.44002778106239, -34.661833638159862 ], [ -58.44218397209216, -34.66275027310008 ], [ -58.461637575459562, -34.670909681012077 ], [ -58.462460503302552, -34.67120817614321 ], [ -58.46280547898094, -34.67132107658005 ], [ -58.463074885789112, -34.671396084438513 ], [ -58.463322410107793, -34.671449912523229 ], [ -58.463533004092092, -34.671495417980452 ], [ -58.468596530176882, -34.672499595702043 ], [ -58.469087814362872, -34.672594116245008 ], [ -58.46938034898276, -34.672676843688983 ], [ -58.469819995350129, -34.67282189408634 ], [ -58.470177091317368, -34.672965470468711 ], [ -58.474228722121282, -34.674730034037232 ], [ -58.47458907678709, -34.674904633536563 ], [ -58.474855368683038, -34.675070014875452 ], [ -58.475117216361227, -34.675278098159559 ], [ -58.475616118238349, -34.675739661728052 ], [ -58.476376781485847, -34.676501479667643 ], [ -58.477289841135303, -34.677473083392997 ], [ -58.477568781064228, -34.677793667166313 ], [ -58.479278388874867, -34.680086372506857 ], [ -58.479618982465098, -34.680463684536278 ], [ -58.479783681928403, -34.680615896234748 ], [ -58.479972981629537, -34.68077149644261 ], [ -58.480138549505419, -34.680872140899382 ], [ -58.480339518077713, -34.680994824707533 ], [ -58.48077178430249, -34.681179079833022 ], [ -58.480980994235402, -34.681254689469107 ], [ -58.481518122110913, -34.681411214922662 ], [ -58.490748653511133, -34.683649962099672 ], [ -58.49280644305118, -34.684167174877452 ], [ -58.493231812663169, -34.684306775811613 ], [ -58.493904013043398, -34.684504044809657 ], [ -58.494446444631997, -34.684697583889012 ], [ -58.506790226332839, -34.689871156117754 ], [ -58.508630402568322, -34.690658185590898 ], [ -58.51021336002367, -34.691309110575482 ], [ -58.510920484688206, -34.691629067326147 ], [ -58.511281484745318, -34.691801161030163 ], [ -58.511645131666839, -34.691976269612162 ], [ -58.511905529387867, -34.692142326972103 ], [ -58.512232249139728, -34.692346550335898 ], [ -58.512663175873151, -34.692636969282333 ], [ -58.512837974390131, -34.692755749116422 ], [ -58.513439287729938, -34.693238914359213 ], [ -58.516136170763133, -34.695651497798032 ], [ -58.516395242774493, -34.695962122976397 ], [ -58.516578807358009, -34.696236215323573 ], [ -58.516687365187408, -34.696487143042333 ], [ -58.516779904822478, -34.696772205649317 ], [ -58.516819124731747, -34.696948152172432 ], [ -58.516835405415648, -34.697289786859344 ], [ -58.516825867672047, -34.697577211161189 ], [ -58.51679226699013, -34.697818097686003 ], [ -58.516702057728551, -34.698121986374119 ], [ -58.516574486561943, -34.698377261936137 ], [ -58.516432104171336, -34.698613855642641 ], [ -58.516218151011131, -34.698871958863862 ], [ -58.5160233966457, -34.699050492047967 ], [ -58.515464722000324, -34.699484509097466 ], [ -58.511855999283966, -34.702213891626215 ], [ -58.51062911437181, -34.703140105309728 ], [ -58.508863652261724, -34.704472390487382 ], [ -58.508072652916709, -34.705056436691287 ], [ -58.507587690344799, -34.705367634342878 ], [ -58.506728819712009, -34.705914664187041 ], [ -58.506120501688677, -34.706305571851928 ], [ -58.50586890953366, -34.706527718051028 ], [ -58.50574833497523, -34.706656781700971 ], [ -58.505576254235727, -34.706830675094352 ], [ -58.505457963432541, -34.706980151273967 ], [ -58.505328834125827, -34.707164868390478 ], [ -58.505248683129267, -34.707321784096521 ], [ -58.50517010034114, -34.707494311266927 ], [ -58.505087505645037, -34.707683721443118 ], [ -58.505039853168427, -34.70788303722447 ], [ -58.505011865503363, -34.708035215277263 ], [ -58.504986383532653, -34.708217444635942 ], [ -58.504989439532913, -34.708346853783382 ], [ -58.50498069545462, -34.708493102612593 ], [ -58.504994409422672, -34.708605596651267 ], [ -58.505021749546167, -34.708739931697153 ], [ -58.50507819007521, -34.708944421781382 ], [ -58.505145638769328, -34.709152500236222 ], [ -58.505242414602158, -34.709355599537531 ], [ -58.505348818793962, -34.709587877734627 ], [ -58.505466392773187, -34.709766871745693 ], [ -58.505571456805711, -34.709898208052373 ], [ -58.505671407377491, -34.710010487276627 ], [ -58.505797394784167, -34.710139619721133 ], [ -58.505929446305892, -34.710248430005507 ], [ -58.50608877644332, -34.710391203783793 ], [ -58.506254999232603, -34.71052531675776 ], [ -58.506472387020679, -34.710676462177872 ], [ -58.506632078553558, -34.710777639040337 ], [ -58.506855898460159, -34.710896381520591 ], [ -58.507048450576427, -34.710984522624372 ], [ -58.507285819441293, -34.711074122873868 ], [ -58.507577312087413, -34.711163532797357 ], [ -58.511512984428919, -34.712299797325322 ], [ -58.511817463047059, -34.712403867584101 ], [ -58.512040898437348, -34.712502266909688 ], [ -58.512476267355872, -34.712717705173709 ], [ -58.529932164737438, -34.722000017475153 ], [ -58.53167418323622, -34.722917171220757 ], [ -58.581109973844072, -34.749004814037832 ], [ -58.585761294406751, -34.75149907618237 ], [ -58.586662006886463, -34.751969345966948 ], [ -58.587235082341337, -34.752215754254657 ], [ -58.587590974990427, -34.752350769556003 ], [ -58.587843350919037, -34.752444428992398 ], [ -58.588756843956077, -34.752739332178713 ], [ -58.600904172111328, -34.756168958591452 ], [ -58.639928047801533, -34.767188366485577 ], [ -58.640322768936009, -34.767302244557413 ], [ -58.640619946865087, -34.767400732849516 ], [ -58.640765290808893, -34.76746131731359 ], [ -58.640942139966327, -34.767538626259409 ], [ -58.641108091159673, -34.767620621043413 ], [ -58.641247639147878, -34.767690084245601 ], [ -58.641354610771671, -34.767759220960443 ], [ -58.64148757609312, -34.767852059859642 ], [ -58.642795113606176, -34.768811680790527 ], [ -58.643654585166807, -34.769397574911459 ], [ -58.646739170335813, -34.771606574467171 ], [ -58.647016137018717, -34.771800709740369 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 42.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.620389501999909, -34.648033695999914 ], [ -58.620948791999922, -34.648002624999947 ], [ -58.62107467699991, -34.64805221599994 ], [ -58.62107467699991, -34.64797210699993 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621147880999899, -34.643401862999951 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630109459999915, -34.630809105999901 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.631406439999921, -34.628187422999929 ], [ -58.631972699999949, -34.628066735999937 ], [ -58.632848329999945, -34.627902327999948 ], [ -58.63415217499994, -34.627653950999957 ], [ -58.634970419999945, -34.627497737999931 ], [ -58.635960776999923, -34.627313185999924 ], [ -58.636968291999949, -34.627126075999911 ], [ -58.637897810999903, -34.626962941999921 ], [ -58.638834899999949, -34.626792220999903 ], [ -58.638956823999933, -34.626773251999907 ], [ -58.639753003999942, -34.626632880999921 ], [ -58.640622385999905, -34.626504100999909 ], [ -58.641498866999939, -34.626372505999939 ], [ -58.641627649999919, -34.626347230999954 ], [ -58.642460836999931, -34.626123768999946 ], [ -58.64299047399993, -34.625679518999902 ], [ -58.642895800999952, -34.625576843999909 ], [ -58.642436122999925, -34.62507831399995 ], [ -58.642485346999933, -34.625059786999941 ], [ -58.642622899999935, -34.62494866499992 ], [ -58.643351733999907, -34.624359876999904 ], [ -58.642866783999921, -34.623934897999902 ], [ -58.642778624999949, -34.623857641999905 ], [ -58.642209304999938, -34.623355449999906 ], [ -58.641655169999922, -34.622868682999922 ], [ -58.64105928999993, -34.62234712399993 ], [ -58.64048946999992, -34.621852304999948 ], [ -58.640644953999924, -34.621725138999921 ], [ -58.641166779999935, -34.621298352999929 ], [ -58.641344646999926, -34.621162763999905 ], [ -58.64184036599994, -34.62077095199993 ], [ -58.642264147999924, -34.620420463999949 ], [ -58.642502566999951, -34.620239685999934 ], [ -58.643626432999952, -34.619339167999954 ], [ -58.644289174999926, -34.618805213999906 ], [ -58.644974620999903, -34.618262878999928 ], [ -58.645580418999941, -34.617772835999915 ], [ -58.646182229999908, -34.617286745999934 ], [ -58.64681195299994, -34.616772982999919 ], [ -58.648011606999944, -34.615797110999949 ], [ -58.649036406999926, -34.614971160999914 ], [ -58.649958788999925, -34.614229767999916 ], [ -58.649801214999911, -34.614117819999933 ], [ -58.648811921999936, -34.613414973999909 ], [ -58.647651671999938, -34.612594603999923 ], [ -58.646583556999929, -34.611835479999911 ], [ -58.646541594999917, -34.611778258999948 ], [ -58.646492003999924, -34.611724853999931 ], [ -58.645401000999925, -34.610916137999936 ], [ -58.644294738999918, -34.610099791999914 ], [ -58.644187926999905, -34.610038756999927 ], [ -58.644349873999943, -34.609916177999935 ], [ -58.644878386999949, -34.60951614399994 ], [ -58.645736094999904, -34.608851681999909 ], [ -58.645491529999902, -34.608650076999936 ], [ -58.645063342999947, -34.608297104999906 ], [ -58.644401252999899, -34.607751770999926 ], [ -58.644371583999941, -34.607727333999946 ], [ -58.644730410999955, -34.607452548999902 ], [ -58.645142909999947, -34.607136663999938 ], [ -58.645961577999913, -34.606448448999913 ], [ -58.646223677999899, -34.606218614999932 ], [ -58.646654311999953, -34.60588275899994 ], [ -58.647300719999919, -34.605365752999944 ], [ -58.647132701999908, -34.605218876999913 ], [ -58.646724700999926, -34.604862212999933 ], [ -58.646169475999955, -34.604379159999951 ], [ -58.645636901999922, -34.603911137999944 ], [ -58.645074330999932, -34.603424544999939 ], [ -58.644537817999947, -34.602960216999918 ], [ -58.64396026199995, -34.602455064999958 ], [ -58.644121353999935, -34.602322203999904 ], [ -58.644877834999932, -34.601698293999902 ], [ -58.64570535799993, -34.601008075999914 ], [ -58.64662551899994, -34.600242614999956 ], [ -58.646400843999913, -34.600050765999924 ], [ -58.646052679999912, -34.599753469999939 ], [ -58.645460109999931, -34.599244488999943 ], [ -58.644710019999934, -34.598600789999921 ], [ -58.643904519999921, -34.597901746999923 ], [ -58.643016142999954, -34.597135049999906 ], [ -58.642325138999922, -34.596541308999917 ], [ -58.641612072999919, -34.595935157999918 ], [ -58.640902759999904, -34.595309813999904 ], [ -58.640201061999903, -34.594676733999904 ], [ -58.639506980999954, -34.594035917999918 ], [ -58.639491638999914, -34.594020739999905 ], [ -58.638694312999917, -34.59336559399992 ], [ -58.63793149299994, -34.592740765999906 ], [ -58.637126509999916, -34.59208186099994 ], [ -58.636888781999914, -34.592262533999929 ], [ -58.636314646999949, -34.592698875999929 ], [ -58.636265431999902, -34.592829617999939 ], [ -58.635387419999915, -34.592056475999925 ], [ -58.634869845999901, -34.591609358999904 ], [ -58.634505641999908, -34.591298694999921 ], [ -58.633810954999944, -34.590680884999927 ], [ -58.6336076259999, -34.590497392999907 ], [ -58.633201295999925, -34.590130706999958 ], [ -58.633068633999926, -34.590188766999916 ], [ -58.631783864999932, -34.590751046999912 ], [ -58.63167266499994, -34.590653990999954 ], [ -58.631370919999938, -34.59039062699992 ], [ -58.630627367999921, -34.589711936999947 ], [ -58.629124532999924, -34.588390387999937 ], [ -58.629313884999931, -34.588239120999958 ], [ -58.629943620999939, -34.587736046999908 ], [ -58.630134188999932, -34.587582145999932 ], [ -58.630241105999914, -34.587495799999942 ], [ -58.630449660999943, -34.587335496999913 ], [ -58.631569660999901, -34.586450486999922 ], [ -58.633841815999915, -34.584642163999945 ], [ -58.635555649999901, -34.583267552999928 ], [ -58.63707329999994, -34.582106479999936 ], [ -58.638254710999945, -34.581200622999916 ], [ -58.639432322999937, -34.580290964999904 ], [ -58.640784960999952, -34.579253833999928 ], [ -58.640949253999906, -34.57912786299994 ], [ -58.641727867999919, -34.57848866799992 ], [ -58.641856074999907, -34.578602386999933 ], [ -58.642506171999912, -34.579179024999917 ], [ -58.643235113999935, -34.57982766799995 ], [ -58.643986838999922, -34.580495269999915 ], [ -58.644329645999903, -34.580521093999948 ], [ -58.64452782099994, -34.580516890999945 ], [ -58.645007266999926, -34.580932250999922 ], [ -58.64552219199993, -34.581378235999921 ], [ -58.645711216999928, -34.581541953999931 ], [ -58.645798981999917, -34.581476856999927 ], [ -58.646787390999918, -34.580692007999914 ], [ -58.647684792999939, -34.579978630999904 ], [ -58.647890287999928, -34.57981527599992 ], [ -58.648613198999954, -34.580478410999945 ], [ -58.648651253999901, -34.580508890999909 ], [ -58.648845503999951, -34.580359456999929 ], [ -58.650876029999949, -34.578797399999928 ], [ -58.652555143999905, -34.577484163999941 ], [ -58.65339477099991, -34.576787443999933 ], [ -58.653482543999928, -34.576718527999958 ], [ -58.654520004999938, -34.576212383999916 ], [ -58.6552142459999, -34.575840576999951 ], [ -58.656442475999938, -34.575208028999953 ], [ -58.65654857699991, -34.575301426999943 ], [ -58.657165431999942, -34.575844428999915 ], [ -58.657937836999906, -34.576534201999948 ], [ -58.657949242999905, -34.576549456999942 ], [ -58.657724556999938, -34.576667659999941 ], [ -58.656812536999951, -34.577147454999931 ], [ -58.65636244399991, -34.577377478999949 ], [ -58.655611030999921, -34.577753215999905 ], [ -58.654821482999921, -34.57814430399992 ], [ -58.654970015999936, -34.578197484999919 ], [ -58.655035324999915, -34.578285606999941 ], [ -58.655399630999909, -34.578777166999942 ], [ -58.655399563999936, -34.578815358999918 ], [ -58.655565947999946, -34.579027319999909 ], [ -58.655680942999936, -34.579173814999933 ], [ -58.656291235999902, -34.578863277999915 ], [ -58.656425891999902, -34.579001332999951 ], [ -58.656949339999926, -34.579537995999942 ], [ -58.657755807999933, -34.580361373999949 ], [ -58.658912250999947, -34.581543075999946 ], [ -58.658734927999944, -34.581658833999938 ], [ -58.657985133999944, -34.582148305999908 ], [ -58.658445564999909, -34.582540787999903 ], [ -58.658664148999947, -34.582727939999927 ], [ -58.659206604999952, -34.583192390999955 ], [ -58.659416178999948, -34.583207260999927 ], [ -58.660160344999952, -34.58261766399994 ], [ -58.660950303999925, -34.581993604999923 ], [ -58.661591440999928, -34.581480590999945 ], [ -58.662364531999913, -34.580868108999937 ], [ -58.662480622999908, -34.58077613599994 ], [ -58.662964075999923, -34.581080732999908 ], [ -58.663869661999911, -34.581884822999939 ], [ -58.664592597999899, -34.582532680999918 ], [ -58.66526988399994, -34.583134797999946 ], [ -58.665277492999905, -34.583142420999934 ], [ -58.665998096999942, -34.583745790999956 ], [ -58.66668825499994, -34.584322479999912 ], [ -58.666718764999928, -34.584345395999947 ], [ -58.667462414999932, -34.584918288999916 ], [ -58.668305766999936, -34.585564594999937 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 41.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.368944999711914, -34.605216999564846 ], [ -58.367914999877314, -34.605153000210748 ], [ -58.367765000154577, -34.606655000228045 ], [ -58.367803000108324, -34.606788000066103 ], [ -58.367914999877314, -34.60691200038849 ], [ -58.368006999623276, -34.60693000031921 ], [ -58.368231000060575, -34.606899999835093 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368836000081274, -34.606727999997133 ], [ -58.368997000311253, -34.606639000389521 ], [ -58.369468000447796, -34.606508999790492 ], [ -58.369646999709232, -34.606525999675114 ], [ -58.369889000077251, -34.606568999859405 ], [ -58.370072000422454, -34.606661999651521 ], [ -58.369889000077251, -34.606891000319365 ], [ -58.369760999570417, -34.606997999857754 ], [ -58.369267000171874, -34.607190999764782 ], [ -58.368623000151274, -34.607320000317713 ], [ -58.368387000059954, -34.607405999787034 ], [ -58.368129999899509, -34.607556000409033 ], [ -58.367980000176829, -34.607749000316062 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.369416999894611, -34.609251000333359 ], [ -58.369609999801582, -34.60937999998697 ], [ -58.369609999801582, -34.60993799963893 ], [ -58.369566999617291, -34.611139000164655 ], [ -58.369566999617291, -34.612297999652924 ], [ -58.369503000263194, -34.613606999763192 ], [ -58.369460000078902, -34.614787000219849 ], [ -58.369439000009777, -34.615817000054449 ], [ -58.369439000009777, -34.616547000443688 ], [ -58.369439000009777, -34.617039999796134 ], [ -58.369416999894611, -34.617447999725357 ], [ -58.369566999617291, -34.617770000185317 ], [ -58.369310000356165, -34.618392000090694 ], [ -58.369008999965331, -34.619206999903099 ], [ -58.368602000082205, -34.620173000383602 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.368001000245897, -34.62686799975836 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.363387999756355, -34.630343999975594 ], [ -58.362401000106047, -34.630965999880971 ], [ -58.360855999904459, -34.632038999899862 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.359890000323219, -34.63366999957077 ], [ -58.359331999771939, -34.63366999957077 ], [ -58.359138999864911, -34.63366999957077 ], [ -58.359010000211299, -34.633690999639896 ], [ -58.358817000304271, -34.633820000192827 ], [ -58.358560000143825, -34.634141999753467 ], [ -58.358109000030311, -34.63502199986533 ], [ -58.357100000264779, -34.636846000342587 ], [ -58.356843000104334, -34.637124999718935 ], [ -58.355683999716746, -34.638046999969049 ], [ -58.354475999767544, -34.639017999780833 ], [ -58.351972000307512, -34.641029999934517 ], [ -58.351521000193941, -34.641673999955117 ], [ -58.349867000361712, -34.642938999834939 ], [ -58.349333000017907, -34.643346999764162 ], [ -58.348110000276279, -34.644291000129499 ], [ -58.347638000093582, -34.644785000427362 ], [ -58.34759499990929, -34.644891999965807 ], [ -58.347615999978359, -34.64594399991563 ], [ -58.347638000093582, -34.647124000372287 ], [ -58.347681000277873, -34.648260999745276 ], [ -58.346306999868091, -34.648324999998692 ], [ -58.344848000035142, -34.648347000113915 ], [ -58.344891000219434, -34.649526999671252 ], [ -58.344934000403782, -34.65068600005884 ], [ -58.344976999688754, -34.65186599961612 ], [ -58.344997999757823, -34.65250999963672 ], [ -58.344997999757823, -34.653025000003709 ], [ -58.345040999942171, -34.654204999561045 ], [ -58.345084000126462, -34.655385000017702 ], [ -58.346478999706051, -34.655341999833354 ], [ -58.346499999775119, -34.655792999946925 ], [ -58.346499999775119, -34.656435999921428 ], [ -58.346542999959468, -34.657680999778279 ], [ -58.346586000143759, -34.658861000234936 ], [ -58.346608000258982, -34.658989999888547 ], [ -58.346629000328051, -34.660019999723147 ], [ -58.346671999613079, -34.661179000110735 ], [ -58.347572999794068, -34.661156999995512 ], [ -58.34783100000061, -34.661156999995512 ], [ -58.348044999976707, -34.661156999995512 ], [ -58.34830300018325, -34.661135999926387 ], [ -58.348775000365947, -34.661393000086832 ], [ -58.350147999830313, -34.662101000360849 ], [ -58.351479000055747, -34.662830999850712 ], [ -58.350963999688815, -34.663474999871312 ], [ -58.350041000291867, -34.664546999844106 ], [ -58.349654999578547, -34.665062000211094 ], [ -58.349310999902684, -34.665405999886957 ], [ -58.348409999721696, -34.666350000252294 ], [ -58.347529999609776, -34.667272999649185 ], [ -58.347080000441622, -34.667744999831825 ], [ -58.346651000443273, -34.668217000014522 ], [ -58.345792000400479, -34.669161000379802 ], [ -58.345427999802325, -34.669547000193859 ], [ -58.344934000403782, -34.670061999661527 ], [ -58.345578000424325, -34.670448000374847 ], [ -58.346242999614674, -34.670856000304127 ], [ -58.347294000417719, -34.671563999678824 ], [ -58.347423000071331, -34.671627999932184 ], [ -58.346565000074634, -34.672573000343675 ], [ -58.345663999893645, -34.673516999809635 ], [ -58.344783999781725, -34.674417999990681 ], [ -58.345921000054091, -34.675169000448989 ], [ -58.345728000147062, -34.67536200035596 ], [ -58.346027999592479, -34.675577000378212 ], [ -58.346693999728245, -34.676027000445686 ], [ -58.347980999723291, -34.676821000188966 ], [ -58.347808999885387, -34.677057000280286 ], [ -58.34727300034865, -34.677701000300885 ], [ -58.346693999728245, -34.678451999859874 ], [ -58.346415000351953, -34.678816999604805 ], [ -58.345877999869742, -34.679502999763599 ], [ -58.345899999984965, -34.679674999601502 ], [ -58.345277000033491, -34.680684000266353 ], [ -58.344804999850794, -34.681499000078759 ], [ -58.344525999575183, -34.681971000261399 ], [ -58.343967999923223, -34.68265799956697 ], [ -58.343281999764429, -34.683430000094404 ], [ -58.342488000021149, -34.684331000275392 ], [ -58.342359000367537, -34.684459999929004 ], [ -58.341586999840104, -34.685404000294341 ], [ -58.341072000372492, -34.685984000061524 ], [ -58.340534999890281, -34.686541999713484 ], [ -58.339527000170904, -34.687377999594958 ], [ -58.339418999687041, -34.68748600007882 ], [ -58.337981999969259, -34.688686999705226 ], [ -58.337294999764367, -34.689245000256506 ], [ -58.336028999838447, -34.690297000206328 ], [ -58.33587900011571, -34.690403999744774 ], [ -58.335148999726528, -34.690940000180831 ], [ -58.334097999822802, -34.691647999555471 ], [ -58.333196999641757, -34.692271000406322 ], [ -58.332209999991449, -34.692956999665739 ], [ -58.331201000225917, -34.693665999985853 ], [ -58.330364000298346, -34.694244999706939 ], [ -58.329914000230872, -34.694545000051676 ], [ -58.329398999863884, -34.69493199991183 ], [ -58.328518999752021, -34.695510999632859 ], [ -58.327532000101655, -34.696283000160292 ], [ -58.326888000081112, -34.696797999627961 ], [ -58.326287000244804, -34.697248999741475 ], [ -58.325514999717427, -34.697849999577784 ], [ -58.324764000158439, -34.698451000313355 ], [ -58.32392700023081, -34.699094000287857 ], [ -58.32289700039621, -34.699888000031137 ], [ -58.321866999662291, -34.70070399988964 ], [ -58.320793999643342, -34.701561999886337 ], [ -58.319956999715714, -34.702249000091228 ], [ -58.3187990002736, -34.703128000157051 ], [ -58.317490000163332, -34.704136999922582 ], [ -58.316738999705024, -34.704780999943125 ], [ -58.316115999753549, -34.705380999733279 ], [ -58.315493999848172, -34.705961000399782 ], [ -58.314765000404407, -34.706668999774479 ], [ -58.314035000015224, -34.707354999933273 ], [ -58.313477000363207, -34.707892000415427 ], [ -58.312790000158316, -34.708621999905347 ], [ -58.311954000276842, -34.709373000363655 ], [ -58.311095000234047, -34.710273999645324 ], [ -58.310579999867059, -34.710766999897089 ], [ -58.310172999983934, -34.710981999919341 ], [ -58.309936999892614, -34.710981999919341 ], [ -58.309422000424945, -34.710552999920992 ], [ -58.308176999668774, -34.711110999572952 ], [ -58.306910999742797, -34.711647000009009 ], [ -58.30564499981682, -34.712183000445066 ], [ -58.304378999890901, -34.712741000097026 ], [ -58.303134000034049, -34.713277999679917 ], [ -58.301825999969878, -34.713814000115974 ], [ -58.300602000182096, -34.714414999952226 ], [ -58.299464999909787, -34.714972999604186 ], [ -58.29828500035245, -34.715574000339814 ], [ -58.297082999780571, -34.716175000176065 ], [ -58.295903000223234, -34.716774999966219 ], [ -58.294722999766577, -34.717354999733402 ], [ -58.293500000024949, -34.717955999569654 ], [ -58.292383999821709, -34.718492000005767 ], [ -58.291161000080024, -34.71913600002631 ], [ -58.290216999714744, -34.719629000278076 ], [ -58.289509000340047, -34.720551999675024 ], [ -58.288844000250378, -34.721409999671721 ], [ -58.288306999768167, -34.722096999876612 ], [ -58.287662999747624, -34.722911999689018 ], [ -58.287599000393527, -34.722890999619892 ], [ -58.286526000374579, -34.722376000152224 ], [ -58.285495999640602, -34.721881999854361 ], [ -58.284852999666157, -34.722740999897212 ], [ -58.284229999714682, -34.723598999893909 ], [ -58.282963999788706, -34.725293999818177 ], [ -58.28191299988498, -34.72475800028144 ], [ -58.280839999866032, -34.724220999799286 ], [ -58.279831000100558, -34.723685000262492 ], [ -58.278886999735221, -34.723169999895561 ], [ -58.278737000012484, -34.72308400042624 ], [ -58.277900000084912, -34.722655000427892 ], [ -58.277792999647147, -34.722569000059252 ], [ -58.276977999834799, -34.722140000060904 ], [ -58.27637699999849, -34.722954999873309 ], [ -58.275776000162239, -34.723791999800881 ], [ -58.275088999957347, -34.7246719999128 ], [ -58.274488000121096, -34.725529999909497 ], [ -58.273758999777954, -34.726516999559863 ], [ -58.273222000195119, -34.727290000133337 ], [ -58.272642999574714, -34.728083999876674 ], [ -58.272084999922754, -34.728877999619954 ], [ -58.271440999902211, -34.729714000400747 ], [ -58.270818999996834, -34.730551000328376 ], [ -58.270218000160526, -34.73141000037117 ], [ -58.269596000255149, -34.732289000436992 ], [ -58.268545000351423, -34.731796000185227 ], [ -58.267578999870921, -34.731345000071656 ], [ -58.266613000289681, -34.730916000073307 ], [ -58.265604999670984, -34.73044399989061 ], [ -58.264618000020619, -34.729992999777096 ], [ -58.264489000367007, -34.729929000422999 ], [ -58.263694999724407, -34.729520999594399 ], [ -58.263501999817379, -34.729435000125136 ], [ -58.262450999913654, -34.728941999873371 ], [ -58.26148500033247, -34.728469999690674 ], [ -58.260820000242802, -34.728169000199159 ], [ -58.261442000148122, -34.727333000317685 ], [ -58.260176000222202, -34.726710000366154 ], [ -58.259275000041157, -34.726281000367806 ], [ -58.25841700004446, -34.725831000300388 ], [ -58.258330999675877, -34.725937999838777 ], [ -58.257816000208209, -34.726602999928446 ], [ -58.256871999842872, -34.726130999745806 ], [ -58.257472999679123, -34.725358000071594 ], [ -58.258009000115237, -34.724565000374412 ], [ -58.258566999767197, -34.723791999800881 ], [ -58.259554000316825, -34.724307000167869 ], [ -58.260261999691465, -34.724692999981926 ], [ -58.260820000242802, -34.723921000353812 ], [ -58.261228000172025, -34.72340599998688 ], [ -58.261334999710414, -34.723470000240297 ], [ -58.261527999617442, -34.723213000079852 ], [ -58.261893000261693, -34.722740999897212 ], [ -58.261034000218899, -34.722310999852709 ], [ -58.261292000425442, -34.721990000338224 ], [ -58.260304999875814, -34.721496000040304 ], [ -58.259381999579603, -34.721002999788539 ], [ -58.258438000113586, -34.720509000389995 ], [ -58.257514999817374, -34.720058000276424 ], [ -58.256571000351357, -34.719565000024716 ], [ -58.256012999800078, -34.720336999652773 ], [ -58.255434000078992, -34.721110000226304 ], [ -58.254876000427032, -34.721881999854361 ], [ -58.254296999806627, -34.722675999597641 ], [ -58.253717000039501, -34.723470000240297 ], [ -58.253138000318415, -34.724242999914452 ], [ -58.252579999767136, -34.725015000441886 ], [ -58.251957999861759, -34.725831000300388 ], [ -58.25137900014073, -34.726646000112794 ], [ -58.250799000373547, -34.727460999925142 ], [ -58.250262999937434, -34.728191000314382 ], [ -58.249447000078931, -34.729306999618302 ], [ -58.248632000266582, -34.73044399989061 ], [ -58.247774000269828, -34.731603000278199 ], [ -58.247472999878994, -34.731451999610044 ], [ -58.24655099962888, -34.730980000326724 ], [ -58.245691999586086, -34.731839000369519 ], [ -58.244919999957972, -34.732589999928507 ], [ -58.244275999937429, -34.733211999833884 ], [ -58.243588999732538, -34.733876999923552 ], [ -58.242516999759687, -34.734972000057724 ], [ -58.241529000063281, -34.735979999777101 ], [ -58.240627999882236, -34.736903000073369 ], [ -58.240027000045984, -34.737524999978746 ], [ -58.23942700025583, -34.738125999814997 ], [ -58.238846999589327, -34.738705000435402 ], [ -58.238182000398979, -34.739369999625751 ], [ -58.237130999595934, -34.739863999923614 ], [ -58.236100999761277, -34.740336000106254 ], [ -58.235199000433511, -34.740744000035534 ], [ -58.235091999995745, -34.740808000288951 ], [ -58.234426999906077, -34.741107999734368 ], [ -58.233997999907729, -34.741301999687494 ], [ -58.233589999978449, -34.741558999847939 ], [ -58.233139999911032, -34.741838000123551 ], [ -58.232709999866586, -34.742095000283996 ], [ -58.232280999868181, -34.742352999591219 ], [ -58.231466000055832, -34.742867999958207 ], [ -58.231358999618124, -34.742932000211624 ], [ -58.230629000128204, -34.743404000394264 ], [ -58.229491999855895, -34.744111999768904 ], [ -58.228333000367627, -34.745100000364687 ], [ -58.227731999632056, -34.745614999832355 ], [ -58.227109999726679, -34.746151000268412 ], [ -58.22644499963701, -34.746708999920372 ], [ -58.225371999618062, -34.747632000216583 ], [ -58.223955999969405, -34.748832999843046 ], [ -58.222624999743914, -34.749992000230577 ], [ -58.221809999931509, -34.750228000321897 ], [ -58.220586000143726, -34.750528999813469 ], [ -58.219191999710972, -34.750872000342497 ], [ -58.218634000059012, -34.751086000318594 ], [ -58.215694000277836, -34.752459999829114 ], [ -58.214343000029373, -34.753124999918782 ], [ -58.21408499982283, -34.753232000356491 ], [ -58.212883000150271, -34.753790000008451 ], [ -58.212153999807185, -34.754132999638159 ], [ -58.211509999786642, -34.754455000098119 ], [ -58.210050999953637, -34.755120000187787 ], [ -58.2097509996089, -34.755269999910524 ], [ -58.209363999748746, -34.755571000301359 ], [ -58.20895699986562, -34.755936000046347 ], [ -58.207927000030963, -34.756858000296461 ], [ -58.206940000380655, -34.757717000339255 ], [ -58.20784099966238, -34.758188999622575 ], [ -58.208698999659077, -34.758638999690049 ], [ -58.209643000024414, -34.759110999872689 ], [ -58.210865999766042, -34.759733999824164 ], [ -58.212089999553768, -34.760355999729541 ], [ -58.213313000194773, -34.761020999819266 ], [ -58.212604999920757, -34.761922000000254 ], [ -58.212476000267145, -34.761965000184546 ], [ -58.211252999626197, -34.762544999951729 ], [ -58.211037999603946, -34.762715999743534 ], [ -58.211466999602294, -34.762908999650563 ], [ -58.213120000287745, -34.762114999907283 ], [ -58.213033999919105, -34.762329999929534 ], [ -58.212283000360117, -34.763338999695009 ], [ -58.213313000194773, -34.763896000200191 ], [ -58.213591999571065, -34.764046999969025 ], [ -58.214343000029373, -34.764453999852151 ], [ -58.215437000117447, -34.765033999619334 ], [ -58.216510000136338, -34.765592000170614 ], [ -58.217647000408704, -34.766191999960768 ], [ -58.218762999712624, -34.766771999727951 ], [ -58.219492000055709, -34.767178999611076 ], [ -58.219856999800641, -34.767351000348356 ], [ -58.22090899975052, -34.767931000115539 ], [ -58.221959999654246, -34.768509999836567 ], [ -58.222067000091954, -34.768574000089984 ], [ -58.222667999928206, -34.768874999581499 ], [ -58.223440999602417, -34.769261000294875 ], [ -58.224621000059074, -34.769862000131184 ], [ -58.224813999966102, -34.769968999669572 ], [ -58.225737000262313, -34.770440999852212 ], [ -58.22612300007637, -34.770676999943532 ], [ -58.226810000281262, -34.771062999757589 ], [ -58.227496000440055, -34.771428000401841 ], [ -58.227753999747222, -34.771513999871161 ], [ -58.228632999813044, -34.771986000053801 ], [ -58.230028000291952, -34.77271600044304 ], [ -58.230200000129855, -34.772800999866206 ], [ -58.230928999573621, -34.77318799972636 ], [ -58.231316000333095, -34.773401999702457 ], [ -58.231572999594221, -34.773531000255389 ], [ -58.232410000421169, -34.77398200036896 ], [ -58.233182000049226, -34.774411000367309 ], [ -58.233975999792506, -34.774818000250491 ], [ -58.234727000250814, -34.775248000294937 ], [ -58.235328000087065, -34.775590999924646 ], [ -58.235564000178442, -34.775719999578257 ], [ -58.236830000104362, -34.776342000382954 ], [ -58.236937999688905, -34.776405999737051 ], [ -58.238224999683951, -34.777070999826719 ], [ -58.239533999794219, -34.777801000215959 ], [ -58.240627999882236, -34.778423000121336 ], [ -58.240907000157904, -34.778551999774947 ], [ -58.241315000087127, -34.778787999866267 ], [ -58.241829999554795, -34.779067000141879 ], [ -58.242709999666715, -34.779539000324576 ], [ -58.243074000264869, -34.779732000231604 ], [ -58.243740000400635, -34.780096999976536 ], [ -58.243975999592692, -34.780225999630147 ], [ -58.244534000143972, -34.780525999974884 ], [ -58.244748000120069, -34.780654999628496 ], [ -58.245305999772029, -34.780954999973233 ], [ -58.245563999978572, -34.781083999626844 ], [ -58.246036000161212, -34.781319999718164 ], [ -58.24655099962888, -34.781598999993832 ], [ -58.246979999627229, -34.781814000016027 ], [ -58.247581000362857, -34.782156999645792 ], [ -58.248352999990914, -34.782585999644141 ], [ -58.250433999729239, -34.783658999663032 ], [ -58.250992000280576, -34.783981000122992 ], [ -58.251657000370244, -34.784323999752758 ], [ -58.252343999675816, -34.784689000397009 ], [ -58.253845999693112, -34.785526000324637 ], [ -58.25264500006665, -34.786211999584054 ], [ -58.251893999608342, -34.786620000412654 ], [ -58.251120999934187, -34.787049000411002 ], [ -58.250370000375199, -34.787436000271157 ], [ -58.249554999663474, -34.787886000338574 ], [ -58.248439000359554, -34.788443999990591 ], [ -58.246829999904548, -34.789345000171579 ], [ -58.245262999587737, -34.790182000099207 ], [ -58.244512000028749, -34.790567999913208 ], [ -58.243546000447509, -34.791105000395419 ], [ -58.243159999734132, -34.791276000187224 ], [ -58.242537999828812, -34.791640999932156 ], [ -58.242129999899532, -34.791855999954407 ], [ -58.241035999811515, -34.792456999790659 ], [ -58.240177999814819, -34.792885999789007 ], [ -58.239877000323247, -34.793036000411064 ], [ -58.239275999587676, -34.793379000040773 ], [ -58.23854700014391, -34.793786999970052 ], [ -58.237882000054242, -34.794172999784053 ], [ -58.237173999780225, -34.794538000428361 ], [ -58.236486999575334, -34.794881000058069 ], [ -58.235779000200637, -34.795288999987292 ], [ -58.23515700029526, -34.795611000447252 ], [ -58.234426999906077, -34.796019000376532 ], [ -58.233633000162797, -34.796426000259657 ], [ -58.233074999611517, -34.796747999820298 ], [ -58.23221699961482, -34.797220000002937 ], [ -58.231487000124901, -34.797605999816994 ], [ -58.231122000379969, -34.79779999977012 ], [ -58.230349999852592, -34.798206999653246 ], [ -58.229599000293604, -34.798529000113206 ], [ -58.228912000088712, -34.798893999858137 ], [ -58.228719000181684, -34.799001000295902 ], [ -58.228010999907667, -34.799387000109903 ], [ -58.227818000000639, -34.799494999694446 ], [ -58.226981000073067, -34.800010000061434 ], [ -58.226229999614759, -34.800439000059782 ], [ -58.225585999594159, -34.800803999804714 ], [ -58.224235000245017, -34.801512000078674 ], [ -58.223119000041777, -34.802112999914982 ], [ -58.222431999836886, -34.802476999613816 ], [ -58.221402000002286, -34.803057000280319 ], [ -58.22058700018988, -34.803507000347736 ], [ -58.2197930004466, -34.803915000277016 ], [ -58.218955999619652, -34.804366000390587 ], [ -58.218226000129789, -34.804752000204587 ], [ -58.217347000063967, -34.805244999557033 ], [ -58.217110999972647, -34.805353000040895 ], [ -58.216124000322338, -34.805910999692856 ], [ -58.215951999585059, -34.805974999946272 ], [ -58.215178999910904, -34.806403999944621 ], [ -58.214772000027722, -34.806618999966815 ], [ -58.213483999986579, -34.807305000125609 ], [ -58.212968999619591, -34.807584000401278 ], [ -58.211295999810488, -34.808549999982461 ], [ -58.209814999862317, -34.809473000278672 ], [ -58.208333999914146, -34.810394999629466 ], [ -58.206960999550461, -34.811231999557094 ], [ -58.206102999553764, -34.811640000385694 ], [ -58.205737999808775, -34.811896999646763 ], [ -58.204621999605536, -34.812648000105071 ], [ -58.20333499961049, -34.813485000032699 ], [ -58.20245500039789, -34.814042999684659 ], [ -58.201532000101679, -34.814601000235939 ], [ -58.199772999923994, -34.815695000323956 ], [ -58.197756000439028, -34.817004000434224 ], [ -58.196254000421732, -34.817926999831116 ], [ -58.195695999870452, -34.818270000360201 ], [ -58.195030999780784, -34.818720999574452 ], [ -58.194214999922281, -34.819235999941384 ], [ -58.193721999670515, -34.819558000401344 ], [ -58.193464000363292, -34.819708000124081 ], [ -58.192283999906635, -34.820436999567846 ], [ -58.191769000438967, -34.820781000142972 ], [ -58.19123300000291, -34.821080999588389 ], [ -58.190781999889339, -34.821316999679766 ], [ -58.189858999593127, -34.821832000046697 ], [ -58.189580000216779, -34.822003999884657 ], [ -58.189455999894449, -34.82209000025324 ], [ -58.189022999711653, -34.822389999698657 ], [ -58.187520999694357, -34.823399000363509 ], [ -58.186897999742826, -34.823763000062343 ], [ -58.185525000278517, -34.824622000105194 ], [ -58.184838000073626, -34.825051000103542 ], [ -58.184558999797957, -34.825244000010571 ], [ -58.184431000190443, -34.825330000379154 ], [ -58.184216000168249, -34.825459000032765 ], [ -58.183572000147649, -34.825865999915948 ], [ -58.182950000242272, -34.826230999660879 ], [ -58.181469000294101, -34.827197000141382 ], [ -58.182263000037381, -34.827690000393147 ], [ -58.182521000243923, -34.827905000415399 ], [ -58.182971000311397, -34.828397999767844 ], [ -58.183099999965009, -34.82874200034297 ], [ -58.183336000056329, -34.829321000064056 ], [ -58.183637000447163, -34.829986000153724 ], [ -58.184066000445512, -34.830866000265644 ], [ -58.184688000350889, -34.832196000445037 ], [ -58.18528900018714, -34.833462000370957 ], [ -58.18449500044386, -34.833740999747306 ], [ -58.18370099980126, -34.833998999953849 ], [ -58.182950000242272, -34.834256000114294 ], [ -58.181641000132004, -34.834641999928294 ], [ -58.181856000154255, -34.835049999857574 ], [ -58.182005999876935, -34.835372000317534 ], [ -58.182092000245575, -34.835544000155437 ], [ -58.183249999687689, -34.835157000295283 ], [ -58.184001000145997, -34.834921000203963 ], [ -58.184838000073626, -34.834641999928294 ], [ -58.185761000369837, -34.834341999583557 ], [ -58.18625499976838, -34.835351000248409 ], [ -58.186854999558534, -34.836617000174385 ], [ -58.187498999579134, -34.837947000353722 ], [ -58.188100000314705, -34.839234000348767 ], [ -58.188508000243985, -34.840307000367716 ], [ -58.188550000382179, -34.840500000274744 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 40.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.253911, -34.785504 ], [ -58.255109, -34.784894 ], [ -58.256152, -34.78434 ], [ -58.257182, -34.783782 ], [ -58.257579, -34.783557 ], [ -58.257983, -34.783099 ], [ -58.258707999999899, -34.782038 ], [ -58.258962, -34.78163 ], [ -58.259264, -34.781137 ], [ -58.260008, -34.780801 ], [ -58.26042, -34.780644 ], [ -58.260695, -34.78032 ], [ -58.260957, -34.779957 ], [ -58.261686, -34.779128 ], [ -58.262506, -34.778079 ], [ -58.263104, -34.777285 ], [ -58.263498, -34.777338 ], [ -58.264445, -34.77749 ], [ -58.264919, -34.776921 ], [ -58.265202, -34.77658 ], [ -58.265814, -34.775779 ], [ -58.266688, -34.77462 ], [ -58.267344, -34.773618 ], [ -58.266578, -34.77314 ], [ -58.265594, -34.772532 ], [ -58.264634, -34.77206 ], [ -58.263835, -34.771673 ], [ -58.262979, -34.771262 ], [ -58.262168, -34.770875 ], [ -58.261402, -34.7705 ], [ -58.26043, -34.770035 ], [ -58.25917, -34.769418 ], [ -58.258647, -34.76916 ], [ -58.258304, -34.768992 ], [ -58.257902, -34.768795 ], [ -58.257562, -34.768631 ], [ -58.257211, -34.768448 ], [ -58.256831, -34.768255 ], [ -58.256542, -34.768101 ], [ -58.255811, -34.767703 ], [ -58.255137, -34.767382 ], [ -58.254778, -34.767151 ], [ -58.25372, -34.766617 ], [ -58.253377, -34.766422 ], [ -58.252677, -34.766037 ], [ -58.251654, -34.765498 ], [ -58.25036, -34.764799 ], [ -58.25025, -34.76474 ], [ -58.247878, -34.763475 ], [ -58.247466, -34.763255 ], [ -58.247076, -34.763047 ], [ -58.246414, -34.762694 ], [ -58.245437, -34.762161 ], [ -58.244441, -34.761609 ], [ -58.243412, -34.761052 ], [ -58.242689, -34.760675 ], [ -58.24167, -34.760135 ], [ -58.241248, -34.759903 ], [ -58.240751, -34.759616 ], [ -58.240249, -34.759336 ], [ -58.239431, -34.758874 ], [ -58.238614, -34.758397 ], [ -58.237643, -34.757887 ], [ -58.236448, -34.757223 ], [ -58.235356, -34.756644 ], [ -58.234234, -34.756033 ], [ -58.233246, -34.755503 ], [ -58.232576, -34.755144 ], [ -58.232263, -34.754978 ], [ -58.232118, -34.754903 ], [ -58.231421, -34.754526 ], [ -58.230277, -34.753927 ], [ -58.229888, -34.753708 ], [ -58.231754, -34.752782 ], [ -58.232671, -34.752331 ], [ -58.232772, -34.752281 ], [ -58.233205, -34.751678 ], [ -58.232445, -34.751273 ], [ -58.231127, -34.750617 ], [ -58.230072, -34.750105 ], [ -58.228846, -34.749468 ], [ -58.228029, -34.749057 ], [ -58.227729, -34.748883 ], [ -58.227118, -34.748556 ], [ -58.225462, -34.747696 ], [ -58.225353, -34.747624 ], [ -58.225233, -34.747538 ], [ -58.224697, -34.747203 ], [ -58.224099, -34.746832 ], [ -58.222881, -34.746069 ], [ -58.222376, -34.745773 ], [ -58.221765, -34.745415 ], [ -58.22045, -34.744747 ], [ -58.220496, -34.744665 ], [ -58.220828, -34.744083 ], [ -58.221174, -34.743468 ], [ -58.221524, -34.742844 ], [ -58.222218, -34.741639 ], [ -58.223074, -34.740536 ], [ -58.222367, -34.740159 ], [ -58.222888, -34.739058 ], [ -58.223219, -34.738252 ], [ -58.224397, -34.73889 ], [ -58.225461, -34.739504 ], [ -58.226494, -34.740087 ], [ -58.227541, -34.74066 ], [ -58.228588, -34.741237 ], [ -58.229734, -34.741886 ], [ -58.229186, -34.742562 ], [ -58.228428, -34.743487 ], [ -58.229361, -34.74401 ], [ -58.229506, -34.744091 ], [ -58.229652, -34.744 ], [ -58.230627, -34.743378 ], [ -58.231409, -34.742853 ], [ -58.232254, -34.742293 ], [ -58.232645, -34.74205 ], [ -58.233107, -34.741787 ], [ -58.233556, -34.741524 ], [ -58.233986, -34.741284 ], [ -58.234213, -34.74119 ], [ -58.235135, -34.740772 ], [ -58.236069, -34.740348 ], [ -58.237154, -34.739878 ], [ -58.238198, -34.739395 ], [ -58.238224, -34.739384 ], [ -58.238865, -34.738731 ], [ -58.239442, -34.738143 ], [ -58.240025, -34.737556 ], [ -58.240624, -34.736948 ], [ -58.241539, -34.736038 ], [ -58.242481, -34.734983 ], [ -58.243576, -34.733883 ], [ -58.244238, -34.733219 ], [ -58.244872, -34.732583 ], [ -58.245613, -34.731804 ], [ -58.246347, -34.731031 ], [ -58.246515, -34.730966 ], [ -58.246551, -34.730917 ], [ -58.246581, -34.730895 ], [ -58.24751, -34.729846 ], [ -58.248426, -34.728783 ], [ -58.249244, -34.727793 ], [ -58.249311, -34.727719 ], [ -58.24936, -34.727662 ], [ -58.249904999999899, -34.726946 ], [ -58.250419, -34.726211 ], [ -58.250445, -34.72618 ], [ -58.250489, -34.726141 ], [ -58.250565, -34.726074 ], [ -58.251079, -34.72538 ], [ -58.251673, -34.724567 ], [ -58.252242, -34.723771 ], [ -58.252815, -34.722969 ], [ -58.253356, -34.722212 ], [ -58.253901, -34.721452 ], [ -58.25395, -34.721411 ], [ -58.25402, -34.721366 ], [ -58.254535, -34.720645 ], [ -58.255146, -34.719872 ], [ -58.256056, -34.720346 ], [ -58.256941, -34.720817 ], [ -58.257892, -34.72129 ], [ -58.258796, -34.721726 ], [ -58.258858, -34.721774 ], [ -58.258943, -34.721833 ], [ -58.259763, -34.722229 ], [ -58.260753, -34.72273 ], [ -58.261071, -34.722312 ], [ -58.261337, -34.721947 ], [ -58.261658, -34.721489 ], [ -58.261709, -34.721435 ], [ -58.261785, -34.721369 ], [ -58.261943, -34.721146 ], [ -58.262268, -34.720682 ], [ -58.262479, -34.720392 ], [ -58.262825, -34.719928 ], [ -58.263047, -34.719632 ], [ -58.263454, -34.719097 ], [ -58.263899, -34.718506 ], [ -58.264151, -34.718174 ], [ -58.265159, -34.718684 ], [ -58.266154, -34.719194 ], [ -58.267035, -34.719625 ], [ -58.268011, -34.720111 ], [ -58.268686, -34.719285 ], [ -58.269369, -34.718456 ], [ -58.270312, -34.718927 ], [ -58.271257, -34.719368 ], [ -58.272137, -34.719792 ], [ -58.273045, -34.720243 ], [ -58.274028, -34.720733 ], [ -58.275018, -34.72122 ], [ -58.275927, -34.721674 ], [ -58.276003, -34.721706 ], [ -58.276106, -34.721756 ], [ -58.276855, -34.722084 ], [ -58.276957, -34.722156 ], [ -58.277056, -34.722225 ], [ -58.277956, -34.722692 ], [ -58.278878, -34.723193 ], [ -58.279836, -34.7237 ], [ -58.28087, -34.724241 ], [ -58.281917, -34.72478 ], [ -58.282991, -34.725313 ], [ -58.283065, -34.725235 ], [ -58.284261999999899, -34.723646 ], [ -58.284811, -34.722777 ], [ -58.285387, -34.721948 ], [ -58.285471, -34.721868 ], [ -58.285569, -34.721904 ], [ -58.286534, -34.722381 ], [ -58.287605, -34.722931 ], [ -58.287633, -34.722959 ], [ -58.288211, -34.722103 ], [ -58.28831, -34.722017 ], [ -58.28873, -34.721364 ], [ -58.289365, -34.720457 ], [ -58.289501, -34.720308 ], [ -58.28996, -34.719633 ], [ -58.290024, -34.719534 ], [ -58.290111, -34.719587 ], [ -58.291059, -34.72005 ], [ -58.292059, -34.720523 ], [ -58.29244, -34.720703 ], [ -58.292978, -34.720984 ], [ -58.293915, -34.721422 ], [ -58.29503, -34.721948 ], [ -58.295102, -34.721995 ], [ -58.295176, -34.722042 ], [ -58.296092, -34.722478 ], [ -58.296479, -34.722674 ], [ -58.296875, -34.722318 ], [ -58.297665, -34.721624 ], [ -58.297747, -34.721558 ], [ -58.297829, -34.721501 ], [ -58.298699, -34.720751 ], [ -58.299644, -34.719962 ], [ -58.300552, -34.719141 ], [ -58.3015, -34.718312 ], [ -58.302422, -34.717505 ], [ -58.303342, -34.716735 ], [ -58.304305, -34.715925 ], [ -58.304839999999899, -34.716377 ], [ -58.305406, -34.716848 ], [ -58.306408, -34.717695 ], [ -58.307474, -34.718589 ], [ -58.30857, -34.719511 ], [ -58.309636, -34.720416 ], [ -58.310629, -34.721255 ], [ -58.310695, -34.721298 ], [ -58.310773, -34.721336 ], [ -58.311791, -34.722178 ], [ -58.312826, -34.723073 ], [ -58.313642, -34.723751 ], [ -58.314017, -34.723457 ], [ -58.314309, -34.723283 ], [ -58.314541, -34.723224 ], [ -58.315468, -34.722499 ], [ -58.316423, -34.721697 ], [ -58.317063, -34.721177 ], [ -58.317296, -34.72104 ], [ -58.317877, -34.720513 ], [ -58.318473, -34.721008 ], [ -58.3194, -34.721727 ], [ -58.319454, -34.721859 ], [ -58.319898, -34.722256 ], [ -58.320522, -34.722803 ], [ -58.321076, -34.723282 ], [ -58.321637, -34.723767 ], [ -58.322485, -34.724522 ], [ -58.323023, -34.725033 ], [ -58.323538, -34.72543 ], [ -58.323952, -34.725806 ], [ -58.324539, -34.72633 ], [ -58.325088, -34.726827 ], [ -58.325686, -34.727343 ], [ -58.326271, -34.727875 ], [ -58.327163, -34.728657 ], [ -58.328808, -34.730078 ], [ -58.329313, -34.730537 ], [ -58.328537, -34.731196 ], [ -58.327801, -34.731882 ], [ -58.327101, -34.732496 ], [ -58.326232, -34.733216 ], [ -58.325573, -34.733789 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 39.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.260612, -34.723787 ], [ -58.260131, -34.723545 ], [ -58.259575, -34.724308 ], [ -58.259026, -34.725058 ], [ -58.258174, -34.724614 ], [ -58.258083, -34.724596 ], [ -58.257989, -34.724567 ], [ -58.257129, -34.724131 ], [ -58.25618, -34.723642 ], [ -58.255224, -34.72315 ], [ -58.254309, -34.722672 ], [ -58.253747, -34.72345 ], [ -58.253162, -34.724242 ], [ -58.252585, -34.72503 ], [ -58.25198, -34.725866 ], [ -58.25141, -34.726657 ], [ -58.250898, -34.727362 ], [ -58.250862, -34.727451 ], [ -58.250823, -34.727536 ], [ -58.250375, -34.728155 ], [ -58.250259, -34.72819 ], [ -58.250156, -34.728226 ], [ -58.249413, -34.729311 ], [ -58.248623, -34.730459 ], [ -58.248589, -34.730537 ], [ -58.24776, -34.731578 ], [ -58.248303, -34.73186 ], [ -58.248367, -34.731895 ], [ -58.248442, -34.731931 ], [ -58.248914, -34.732181 ], [ -58.249518, -34.732488 ], [ -58.250332, -34.732903 ], [ -58.250452, -34.732945 ], [ -58.250569, -34.732983 ], [ -58.251282, -34.733392 ], [ -58.252182, -34.733846 ], [ -58.252414, -34.73393 ], [ -58.253426, -34.734399 ], [ -58.252866, -34.735275 ], [ -58.251657, -34.734737 ], [ -58.250928, -34.735545 ], [ -58.250269, -34.736324 ], [ -58.249576, -34.737129 ], [ -58.248648, -34.738211 ], [ -58.247742, -34.739259 ], [ -58.246821, -34.740325 ], [ -58.246158, -34.741107 ], [ -58.245643, -34.741701 ], [ -58.245133, -34.742326 ], [ -58.244632, -34.742911 ], [ -58.244548, -34.742985 ], [ -58.244484, -34.743063 ], [ -58.244049, -34.74356 ], [ -58.243541, -34.744083 ], [ -58.24292, -34.744775 ], [ -58.24221, -34.745491 ], [ -58.241497, -34.746222 ], [ -58.242374, -34.747105 ], [ -58.243397, -34.748155 ], [ -58.244081, -34.748873 ], [ -58.244726, -34.749533 ], [ -58.245358, -34.750122 ], [ -58.24608, -34.750906 ], [ -58.246285, -34.751114 ], [ -58.246964, -34.751798 ], [ -58.247112, -34.751957 ], [ -58.24766, -34.752533 ], [ -58.248213, -34.753087 ], [ -58.248361, -34.753237 ], [ -58.249012, -34.753893 ], [ -58.249056, -34.753937 ], [ -58.24978, -34.754684 ], [ -58.249581, -34.754745 ], [ -58.24892, -34.755169 ], [ -58.248237, -34.754457 ], [ -58.247362, -34.755022 ], [ -58.246488, -34.755583 ], [ -58.245823, -34.754877 ], [ -58.245169, -34.754187 ], [ -58.244322, -34.754724 ], [ -58.24346, -34.75523 ], [ -58.242685, -34.755708 ], [ -58.242732, -34.755594 ], [ -58.242509, -34.755032 ], [ -58.242184, -34.754256 ], [ -58.24186, -34.753466 ], [ -58.24154, -34.752701 ], [ -58.241228, -34.751906 ], [ -58.240936, -34.751127 ], [ -58.240656, -34.750392 ], [ -58.240346, -34.749546 ], [ -58.240048, -34.748772 ], [ -58.23875, -34.749116 ], [ -58.23847, -34.74942 ], [ -58.238241, -34.749667 ], [ -58.237942, -34.749951 ], [ -58.237518, -34.750359 ], [ -58.236491, -34.751015 ], [ -58.235493, -34.751509 ], [ -58.235153, -34.751679 ], [ -58.233686, -34.752345 ], [ -58.232337, -34.752984 ], [ -58.230473, -34.753854 ], [ -58.230277, -34.753927 ], [ -58.231421, -34.754526 ], [ -58.232118, -34.754903 ], [ -58.232263, -34.754978 ], [ -58.232576, -34.755144 ], [ -58.233246, -34.755503 ], [ -58.234234, -34.756033 ], [ -58.235356, -34.756644 ], [ -58.236448, -34.757223 ], [ -58.237643, -34.757887 ], [ -58.237042, -34.758778 ], [ -58.236415, -34.759612 ], [ -58.235832, -34.760305 ], [ -58.23563, -34.760572 ], [ -58.23522, -34.76115 ], [ -58.235363, -34.761579 ], [ -58.235398, -34.762506 ], [ -58.235497, -34.763717 ], [ -58.23528, -34.764716 ], [ -58.234698, -34.765646 ], [ -58.234082, -34.766603 ], [ -58.233461, -34.767559 ], [ -58.232866, -34.768477 ], [ -58.232181, -34.769509 ], [ -58.231639, -34.770346 ], [ -58.230951, -34.771496 ], [ -58.230504, -34.772119 ], [ -58.230105, -34.772803 ], [ -58.230943, -34.77321 ], [ -58.231419, -34.773425 ], [ -58.230663, -34.774461 ], [ -58.229977, -34.775434 ], [ -58.22929, -34.776409 ], [ -58.228615, -34.777342 ], [ -58.227943, -34.778299 ], [ -58.227339, -34.779266 ], [ -58.226705, -34.780162 ], [ -58.227472, -34.780602 ], [ -58.228247, -34.78099 ], [ -58.229019, -34.781398 ], [ -58.22974, -34.781808 ], [ -58.230368, -34.782139 ], [ -58.232099, -34.783079 ], [ -58.231447, -34.783964 ], [ -58.230944, -34.784711 ], [ -58.23049, -34.785334 ], [ -58.229617, -34.786513 ], [ -58.228023, -34.788841 ], [ -58.227441, -34.789651 ], [ -58.227181, -34.790002 ], [ -58.226876, -34.790436 ], [ -58.22624, -34.791386 ], [ -58.225607, -34.792341 ], [ -58.224875, -34.793443 ], [ -58.222612, -34.795413 ], [ -58.220873, -34.796902 ], [ -58.219995, -34.798077 ], [ -58.218371, -34.800202 ], [ -58.218884, -34.800706 ], [ -58.219504, -34.801249 ], [ -58.220327, -34.802004 ], [ -58.221452, -34.802992 ], [ -58.222608, -34.804038 ], [ -58.223772, -34.805129 ], [ -58.224809, -34.805999 ], [ -58.225256, -34.806426 ], [ -58.225444, -34.806678 ], [ -58.225976, -34.807137 ], [ -58.226553, -34.807648 ], [ -58.22777, -34.808769 ], [ -58.228624, -34.80949 ], [ -58.228635, -34.809647 ], [ -58.228052, -34.810102 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 38.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619247202999929, -34.647953727999948 ], [ -58.619777678999924, -34.647956847999922 ], [ -58.619766234999929, -34.647369384999934 ], [ -58.619762420999905, -34.647010802999944 ], [ -58.619758605999948, -34.646415709999928 ], [ -58.619762420999905, -34.645496367999954 ], [ -58.619777678999924, -34.644676207999908 ], [ -58.619758605999948, -34.644538878999924 ], [ -58.620510100999923, -34.643936156999928 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621177508999949, -34.643377913999927 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.631148434999943, -34.627987417999918 ], [ -58.63139951799991, -34.627303042999927 ], [ -58.631760920999909, -34.626308987999948 ], [ -58.632057599999939, -34.625383872999919 ], [ -58.632369560999905, -34.624550368999905 ], [ -58.632723377999923, -34.623625079999954 ], [ -58.632883160999938, -34.623196858999904 ], [ -58.63311522999993, -34.62258128499991 ], [ -58.633381484999916, -34.621759376999933 ], [ -58.633617298999923, -34.621006303999934 ], [ -58.633685763999949, -34.620792228999903 ], [ -58.633886696999923, -34.618767516999924 ], [ -58.633974186999922, -34.618511373999922 ], [ -58.634000719999904, -34.618232501999955 ], [ -58.634099263999929, -34.617181960999915 ], [ -58.634118494999939, -34.616914419999944 ], [ -58.634233990999917, -34.615813517999925 ], [ -58.634275333999938, -34.61540692299991 ], [ -58.634414635999917, -34.614145466999958 ], [ -58.63451793899992, -34.613439940999911 ], [ -58.634520422999913, -34.612982883999905 ], [ -58.634586992999914, -34.611799399999938 ], [ -58.634690847999934, -34.610718308999935 ], [ -58.63472846399992, -34.609790511999904 ], [ -58.634728578999955, -34.609775244999923 ], [ -58.634847772999933, -34.608182580999937 ], [ -58.634946413999899, -34.60677712599994 ], [ -58.635213024999928, -34.604936918999954 ], [ -58.635213374999921, -34.604934504999903 ], [ -58.63523852499992, -34.604760911999904 ], [ -58.635285821999901, -34.603868422999938 ], [ -58.635302796999952, -34.603582351999933 ], [ -58.635505530999922, -34.603593599999954 ], [ -58.636664301999929, -34.60365788799993 ], [ -58.63726726099992, -34.603188152999905 ], [ -58.638211998999907, -34.602457037999955 ], [ -58.639030021999929, -34.601820622999924 ], [ -58.639809617999902, -34.601218306999954 ], [ -58.640293784999926, -34.600793983999949 ], [ -58.640566374999935, -34.600597013999902 ], [ -58.641196439999931, -34.600066630999947 ], [ -58.642110564999939, -34.599339284999928 ], [ -58.642986257999951, -34.59864603199992 ], [ -58.643904519999921, -34.597901746999923 ], [ -58.644815305999941, -34.597161424999911 ], [ -58.645718615999954, -34.596425064999949 ], [ -58.646209940999938, -34.596043340999927 ], [ -58.646667479999905, -34.595687865999935 ], [ -58.647190093999939, -34.595256804999906 ], [ -58.64770806599995, -34.594832794999945 ], [ -58.648297337999907, -34.594346923999922 ], [ -58.648958835999906, -34.593796026999939 ], [ -58.649574740999924, -34.593306291999909 ], [ -58.65019824299992, -34.592805089999956 ], [ -58.6508027349999, -34.592319192999923 ], [ -58.651395824999952, -34.59184476799993 ], [ -58.652061141999923, -34.591305317999911 ], [ -58.653091438999923, -34.590475088999938 ], [ -58.654000083999904, -34.589748147999956 ], [ -58.654642594999927, -34.589231642999948 ], [ -58.655294519999927, -34.588711057999944 ], [ -58.655928028999938, -34.588201878999939 ], [ -58.656706559999918, -34.587574021999956 ], [ -58.657038702999955, -34.587237289999905 ], [ -58.657481340999936, -34.586911800999928 ], [ -58.658229351999921, -34.586303099999952 ], [ -58.658988815999919, -34.585682919999954 ], [ -58.659778793999919, -34.585047402999919 ], [ -58.66060312399992, -34.584381265999923 ], [ -58.660323556999913, -34.584141078999949 ], [ -58.6599067759999, -34.583783005999919 ], [ -58.659206604999952, -34.583192390999955 ], [ -58.658445564999909, -34.582540787999903 ], [ -58.657985133999944, -34.582148305999908 ], [ -58.657000335999953, -34.580878428999938 ], [ -58.656296909999924, -34.579970828999933 ], [ -58.655680942999936, -34.579173814999933 ], [ -58.656004966999944, -34.579008940999927 ], [ -58.656291235999902, -34.578863277999915 ], [ -58.656949339999926, -34.579537995999942 ], [ -58.657755807999933, -34.580361373999949 ], [ -58.657460031999904, -34.580563806999919 ], [ -58.657000335999953, -34.580878428999938 ], [ -58.656168558999923, -34.581445281999947 ], [ -58.65537493699992, -34.581985325999938 ], [ -58.654558423999902, -34.582540691999952 ], [ -58.653909793999901, -34.582981155999903 ], [ -58.653139057999908, -34.583509697999943 ], [ -58.65295260399995, -34.583349653999903 ], [ -58.652067251999938, -34.584042642999918 ], [ -58.650979650999943, -34.584888791999902 ], [ -58.649899666999943, -34.585738745999947 ], [ -58.649418837999917, -34.586110137999924 ], [ -58.64905656399992, -34.585858681999923 ], [ -58.648573842999951, -34.585523623999904 ], [ -58.647732659999917, -34.584937102999902 ], [ -58.64692954599991, -34.584373422999931 ], [ -58.646453763999943, -34.584042076999935 ], [ -58.646308354999917, -34.583871723999948 ], [ -58.646115288999908, -34.583645537999928 ], [ -58.645411312999954, -34.583051112999954 ], [ -58.645384675999935, -34.583028247999948 ], [ -58.644650312999943, -34.582376592999935 ], [ -58.643950194999945, -34.581755424999926 ], [ -58.643208342999912, -34.581096369999955 ], [ -58.642460412999924, -34.580432561999942 ], [ -58.641723867999929, -34.579780139999912 ], [ -58.641044265999938, -34.579180832999953 ], [ -58.640949253999906, -34.57912786299994 ], [ -58.640784960999952, -34.579253833999928 ], [ -58.6404417789999, -34.57951696799995 ], [ -58.639432322999937, -34.580290964999904 ], [ -58.638254710999945, -34.581200622999916 ], [ -58.63707329999994, -34.582106479999936 ], [ -58.635555649999901, -34.583267552999928 ], [ -58.633841815999915, -34.584642163999945 ], [ -58.631569660999901, -34.586450486999922 ], [ -58.630449660999943, -34.587335496999913 ], [ -58.630241105999914, -34.587495799999942 ], [ -58.630329884999924, -34.587575872999935 ], [ -58.630383106999943, -34.587623875999952 ], [ -58.630500667999911, -34.587729907999915 ], [ -58.631139767999912, -34.588309666999919 ], [ -58.631729961999952, -34.588839530999905 ], [ -58.632481061999954, -34.589511193999954 ], [ -58.633201295999925, -34.590130706999958 ], [ -58.6336076259999, -34.590497392999907 ], [ -58.633810954999944, -34.590680884999927 ], [ -58.634505641999908, -34.591298694999921 ], [ -58.634869845999901, -34.591609358999904 ], [ -58.635138423999933, -34.591402153999923 ], [ -58.637168122999924, -34.589836264999917 ], [ -58.637358994999943, -34.589773123999919 ], [ -58.638116669999931, -34.590030187999957 ], [ -58.638388529999929, -34.590169328999934 ], [ -58.639035963999902, -34.59059220599994 ], [ -58.639740966999909, -34.590018364999935 ], [ -58.639912370999923, -34.589855794999949 ], [ -58.640289296999924, -34.590177406999942 ], [ -58.640698285999918, -34.590526376999946 ], [ -58.641445886999918, -34.591170508999937 ], [ -58.642181980999908, -34.591803256999924 ], [ -58.642955216999951, -34.592470531999936 ], [ -58.643019196999944, -34.592523096999912 ], [ -58.643651615999943, -34.593071868999914 ], [ -58.644381917999908, -34.593707121999955 ], [ -58.645093383999949, -34.594323533999955 ], [ -58.645767211999953, -34.594905852999943 ], [ -58.646667479999905, -34.595687865999935 ], [ -58.647190093999939, -34.595256804999906 ], [ -58.647823333999952, -34.596042632999911 ], [ -58.648086286999899, -34.596375806999902 ], [ -58.648452334999945, -34.596839607999925 ], [ -58.648951525999905, -34.597468659999947 ], [ -58.649416419999909, -34.598051958999918 ], [ -58.649313707999909, -34.598078860999919 ], [ -58.649037209999904, -34.598299643999951 ], [ -58.648452758999952, -34.598766326999908 ], [ -58.647552489999953, -34.599494933999949 ], [ -58.64662551899994, -34.600242614999956 ], [ -58.646904949999907, -34.600482384999907 ], [ -58.647216796999942, -34.600749968999935 ], [ -58.647727965999934, -34.601192473999902 ], [ -58.647766112999932, -34.601219176999905 ], [ -58.648345946999939, -34.601711272999921 ], [ -58.648887633999948, -34.602169036999953 ], [ -58.649470956999949, -34.602670020999938 ], [ -58.650058522999927, -34.603163529999904 ], [ -58.650525752999954, -34.602778533999924 ], [ -58.650954975999923, -34.602424855999914 ], [ -58.651974874999951, -34.601656414999923 ], [ -58.65197411999992, -34.60153781899993 ], [ -58.652102615999922, -34.601376970999922 ], [ -58.653133625999942, -34.600568401999908 ], [ -58.65399003899995, -34.599859527999911 ], [ -58.654763449999905, -34.599277011999902 ], [ -58.655221948999952, -34.598893841999939 ], [ -58.655452883999942, -34.598667823999904 ], [ -58.655623525999943, -34.598545178999927 ], [ -58.656056769999907, -34.598208396999951 ], [ -58.65654337299992, -34.597787604999951 ], [ -58.657033818999935, -34.59740116699993 ], [ -58.65801470699995, -34.596624470999927 ], [ -58.658930952999924, -34.595889881999938 ], [ -58.659989332999942, -34.595039819999954 ], [ -58.660136137999928, -34.594921910999915 ], [ -58.661613975999899, -34.596171545999937 ], [ -58.661989827999946, -34.595872103999909 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 37.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.61960020999993, -34.647955803999935 ], [ -58.619777678999924, -34.647956847999922 ], [ -58.619781493999938, -34.648067473999902 ], [ -58.620948791999922, -34.648002624999947 ], [ -58.62107467699991, -34.64805221599994 ], [ -58.62107467699991, -34.647988000999931 ], [ -58.62107467699991, -34.64797210699993 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621062563999942, -34.64347082799992 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.631148434999943, -34.627987417999918 ], [ -58.63139951799991, -34.627303042999927 ], [ -58.631760920999909, -34.626308987999948 ], [ -58.632057599999939, -34.625383872999919 ], [ -58.632369560999905, -34.624550368999905 ], [ -58.632723377999923, -34.623625079999954 ], [ -58.632883160999938, -34.623196858999904 ], [ -58.63311522999993, -34.62258128499991 ], [ -58.633381484999916, -34.621759376999933 ], [ -58.633617298999923, -34.621006303999934 ], [ -58.633685763999949, -34.620792228999903 ], [ -58.633886696999923, -34.618767516999924 ], [ -58.633974186999922, -34.618511373999922 ], [ -58.634000719999904, -34.618232501999955 ], [ -58.634099263999929, -34.617181960999915 ], [ -58.634118494999939, -34.616914419999944 ], [ -58.634233990999917, -34.615813517999925 ], [ -58.634275333999938, -34.61540692299991 ], [ -58.634414635999917, -34.614145466999958 ], [ -58.63451793899992, -34.613439940999911 ], [ -58.634520422999913, -34.612982883999905 ], [ -58.634586992999914, -34.611799399999938 ], [ -58.634690847999934, -34.610718308999935 ], [ -58.63472846399992, -34.609790511999904 ], [ -58.634728578999955, -34.609775244999923 ], [ -58.634847772999933, -34.608182580999937 ], [ -58.634946413999899, -34.60677712599994 ], [ -58.635213024999928, -34.604936918999954 ], [ -58.635213374999921, -34.604934504999903 ], [ -58.63523852499992, -34.604760911999904 ], [ -58.635285821999901, -34.603868422999938 ], [ -58.635302796999952, -34.603582351999933 ], [ -58.635388574999922, -34.602651391999927 ], [ -58.635508586999947, -34.601754434999918 ], [ -58.635563475999902, -34.600832222999941 ], [ -58.635637647999943, -34.599872963999928 ], [ -58.635731128999907, -34.598879592999936 ], [ -58.635836354999924, -34.597836937999944 ], [ -58.635917414999938, -34.597014186999957 ], [ -58.635942224999951, -34.596775796999907 ], [ -58.636048326999912, -34.595624509999936 ], [ -58.636149831999944, -34.594175113999938 ], [ -58.636254507999922, -34.592956768999954 ], [ -58.636265431999902, -34.592829617999939 ], [ -58.635387419999915, -34.592056475999925 ], [ -58.634869845999901, -34.591609358999904 ], [ -58.634505641999908, -34.591298694999921 ], [ -58.633810954999944, -34.590680884999927 ], [ -58.6336076259999, -34.590497392999907 ], [ -58.633201295999925, -34.590130706999958 ], [ -58.632481061999954, -34.589511193999954 ], [ -58.631729961999952, -34.588839530999905 ], [ -58.631139767999912, -34.588309666999919 ], [ -58.630500667999911, -34.587729907999915 ], [ -58.630240939999908, -34.587732769999946 ], [ -58.629943620999939, -34.587736046999908 ], [ -58.629124532999924, -34.588390387999937 ], [ -58.628917902999945, -34.588559733999944 ], [ -58.628297962999909, -34.589063937999924 ], [ -58.628067869999938, -34.589214158999937 ], [ -58.627577911999936, -34.589602925999941 ], [ -58.627018537999902, -34.590000041999929 ], [ -58.626693318999912, -34.590273017999948 ], [ -58.625977592999902, -34.590850131999957 ], [ -58.624874924999915, -34.591734748999954 ], [ -58.624069456999905, -34.592377110999905 ], [ -58.623717705999923, -34.592635148999932 ], [ -58.623134401999948, -34.593081667999911 ], [ -58.6225282179999, -34.593539501999942 ], [ -58.62241102899992, -34.593438853999942 ], [ -58.621421607999935, -34.592589091999912 ], [ -58.620347045999949, -34.591670248999947 ], [ -58.619339657999944, -34.590805394999904 ], [ -58.619245703999923, -34.590724733999934 ], [ -58.620417458999952, -34.589787225999942 ], [ -58.621548165999911, -34.588889927999958 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 36.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619179467999913, -34.647379800999943 ], [ -58.619766234999929, -34.647369384999934 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621050615999934, -34.647238949999917 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621161155999914, -34.643391132999909 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.631148434999943, -34.627987417999918 ], [ -58.63139951799991, -34.627303042999927 ], [ -58.631760920999909, -34.626308987999948 ], [ -58.632057599999939, -34.625383872999919 ], [ -58.632369560999905, -34.624550368999905 ], [ -58.632723377999923, -34.623625079999954 ], [ -58.632883160999938, -34.623196858999904 ], [ -58.63311522999993, -34.62258128499991 ], [ -58.633381484999916, -34.621759376999933 ], [ -58.633617298999923, -34.621006303999934 ], [ -58.633685763999949, -34.620792228999903 ], [ -58.633886696999923, -34.618767516999924 ], [ -58.633974186999922, -34.618511373999922 ], [ -58.634000719999904, -34.618232501999955 ], [ -58.634099263999929, -34.617181960999915 ], [ -58.634118494999939, -34.616914419999944 ], [ -58.634233990999917, -34.615813517999925 ], [ -58.63436422299992, -34.615713850999953 ], [ -58.635023682999929, -34.615209160999939 ], [ -58.636032993999947, -34.614424052999937 ], [ -58.636287688999914, -34.614219768999931 ], [ -58.637106782999922, -34.613555916999928 ], [ -58.638221740999938, -34.612659453999925 ], [ -58.638908385999912, -34.612102508999953 ], [ -58.639656066999919, -34.611511229999905 ], [ -58.640369414999952, -34.610954284999934 ], [ -58.641040801999907, -34.61041641199995 ], [ -58.641052245999902, -34.610404967999955 ], [ -58.641742705999945, -34.609828948999905 ], [ -58.641854819999935, -34.609734231999937 ], [ -58.642848968999942, -34.608894347999922 ], [ -58.643565652999939, -34.608355887999949 ], [ -58.644371583999941, -34.607727333999946 ], [ -58.645142909999947, -34.607136663999938 ], [ -58.645961577999913, -34.606448448999913 ], [ -58.646223677999899, -34.606218614999932 ], [ -58.646654311999953, -34.60588275899994 ], [ -58.647300719999919, -34.605365752999944 ], [ -58.648239135999916, -34.604618072999926 ], [ -58.649093077999908, -34.603936419999911 ], [ -58.650058522999927, -34.603163529999904 ], [ -58.650954975999923, -34.602424855999914 ], [ -58.651974874999951, -34.601656414999923 ], [ -58.65197411999992, -34.60153781899993 ], [ -58.652102615999922, -34.601376970999922 ], [ -58.653133625999942, -34.600568401999908 ], [ -58.65399003899995, -34.599859527999911 ], [ -58.654763449999905, -34.599277011999902 ], [ -58.655221948999952, -34.598893841999939 ], [ -58.655452883999942, -34.598667823999904 ], [ -58.655623525999943, -34.598545178999927 ], [ -58.656056769999907, -34.598208396999951 ], [ -58.65654337299992, -34.597787604999951 ], [ -58.657033818999935, -34.59740116699993 ], [ -58.65801470699995, -34.596624470999927 ], [ -58.658930952999924, -34.595889881999938 ], [ -58.660136137999928, -34.594921910999915 ], [ -58.661257675999934, -34.594015168999931 ], [ -58.662341168999944, -34.593116127999906 ], [ -58.662882727999943, -34.592672102999927 ], [ -58.663550594999947, -34.592128483999943 ], [ -58.664687816999901, -34.591236408999919 ], [ -58.666787212999907, -34.589494920999925 ], [ -58.666944636999915, -34.589623003999918 ], [ -58.668392575999917, -34.590801078999903 ], [ -58.669185383999945, -34.59159539299992 ], [ -58.670066075999955, -34.592382108999914 ], [ -58.671194739999919, -34.593321614999923 ], [ -58.680243394999934, -34.601472176999948 ], [ -58.683248561999903, -34.604146637999918 ], [ -58.683875678999925, -34.60470879099995 ], [ -58.6838888179999, -34.604697921999957 ], [ -58.683994926999901, -34.604610146999903 ], [ -58.684027123999954, -34.604583512999909 ], [ -58.684851828999911, -34.603901306999944 ], [ -58.686016086999928, -34.602928499999905 ], [ -58.686993049999899, -34.602088633999927 ], [ -58.687566632999904, -34.601611626999954 ], [ -58.687666822999915, -34.601529536999919 ], [ -58.688436382999953, -34.600902545999929 ], [ -58.689229390999913, -34.600258774999929 ], [ -58.68973892899993, -34.599842483999907 ], [ -58.690835568999944, -34.598953726999923 ], [ -58.690978310999924, -34.599068513999953 ], [ -58.691345407999904, -34.599363716999903 ], [ -58.691391110999916, -34.599425614999916 ], [ -58.691448100999935, -34.599514597999928 ], [ -58.692163431999916, -34.600117982999905 ], [ -58.692764821999901, -34.600640043999931 ], [ -58.693659594999929, -34.601443994999954 ], [ -58.694545758999936, -34.602188769999941 ], [ -58.695431933999942, -34.602929754999934 ], [ -58.695512237999935, -34.602963348999936 ], [ -58.695293282999955, -34.603139386999942 ], [ -58.694397939999931, -34.603859233999913 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 35.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.605094408999946, -34.919180485999902 ], [ -58.604043601999933, -34.91797835299991 ], [ -58.602956870999947, -34.917048329999943 ], [ -58.601579021999953, -34.916028302999905 ], [ -58.601161828999921, -34.915681507999921 ], [ -58.599960134999947, -34.915860169999917 ], [ -58.599888531999909, -34.915947187999905 ], [ -58.599555848999955, -34.916351493999912 ], [ -58.599068852999949, -34.916971213999943 ], [ -58.598531661999914, -34.917652296999904 ], [ -58.598014188999912, -34.918290302999935 ], [ -58.597492903999921, -34.918928296999923 ], [ -58.597280810999905, -34.918816522999919 ], [ -58.596147944999927, -34.918219495999949 ], [ -58.594766929999935, -34.917535457999918 ], [ -58.593412928999953, -34.916831689999924 ], [ -58.59215495299992, -34.91616216299991 ], [ -58.590921303999949, -34.915501939999956 ], [ -58.591049857999906, -34.915331242999912 ], [ -58.5914124439999, -34.914849792999917 ], [ -58.591911100999937, -34.914197747999935 ], [ -58.592469969999911, -34.913523797999915 ], [ -58.592928597999901, -34.912910454999917 ], [ -58.593475080999951, -34.912208401999919 ], [ -58.593933490999916, -34.911633091999931 ], [ -58.594546134999916, -34.910796046999906 ], [ -58.594510865999951, -34.910519476999923 ], [ -58.594382000999929, -34.910406579999915 ], [ -58.593608605999918, -34.90972901899994 ], [ -58.592980215999944, -34.909208746999923 ], [ -58.592399078999904, -34.90880061699994 ], [ -58.591281902999924, -34.907911598999931 ], [ -58.590075411999919, -34.906961320999926 ], [ -58.588919159999932, -34.90608967199995 ], [ -58.5886296729999, -34.905847864999942 ], [ -58.586877898999944, -34.904487783999912 ], [ -58.586087359999908, -34.903867311999932 ], [ -58.585405329999901, -34.903331637999941 ], [ -58.584979020999924, -34.903000094999925 ], [ -58.584757522999951, -34.902874996999913 ], [ -58.584108489999949, -34.902515004999941 ], [ -58.58351908599991, -34.902082284999949 ], [ -58.582933546999925, -34.901653388999932 ], [ -58.582356256999901, -34.901191253999912 ], [ -58.581670362999944, -34.900651754999956 ], [ -58.581096936999927, -34.900193444999957 ], [ -58.58054321599991, -34.899724522999918 ], [ -58.579884834999916, -34.899229433999949 ], [ -58.578895939999938, -34.898525949999907 ], [ -58.57828970199995, -34.898005885999908 ], [ -58.577747619999911, -34.897611788999939 ], [ -58.577124238999943, -34.897081729999911 ], [ -58.576509960999942, -34.896590559999936 ], [ -58.57584728899991, -34.896023376999949 ], [ -58.575412965999931, -34.895672324999907 ], [ -58.5734817149999, -34.894263010999907 ], [ -58.57236856399993, -34.893425557999933 ], [ -58.571690685999954, -34.892937116999917 ], [ -58.570980296999949, -34.892399132999913 ], [ -58.570305341999926, -34.89187645699991 ], [ -58.569537584999921, -34.891186918999949 ], [ -58.568929612999909, -34.890694758999928 ], [ -58.568814292999946, -34.890699274999918 ], [ -58.567602064999903, -34.88978852799994 ], [ -58.56637423299992, -34.888836469999944 ], [ -58.565864788999932, -34.888482118999946 ], [ -58.565353006999942, -34.888093769999955 ], [ -58.565183895999951, -34.887978812999904 ], [ -58.565099274999909, -34.88786760499994 ], [ -58.564650616999927, -34.887187732999905 ], [ -58.564156358999924, -34.886782102999916 ], [ -58.563096360999907, -34.885947085999931 ], [ -58.562027641999919, -34.885050812999907 ], [ -58.561970711999948, -34.885047241999928 ], [ -58.56109129999993, -34.884356455999921 ], [ -58.560082989999955, -34.883575128999951 ], [ -58.55809284299994, -34.882069272999956 ], [ -58.557922799999915, -34.881972279999957 ], [ -58.557683309999902, -34.881835673999944 ], [ -58.556760741999938, -34.881956894999917 ], [ -58.556713002999913, -34.881027641999935 ], [ -58.556539370999928, -34.880902266999954 ], [ -58.556326322999951, -34.880748428999937 ], [ -58.555708259999903, -34.880299363999939 ], [ -58.555249234999906, -34.879955829999915 ], [ -58.555188544999908, -34.879899143999921 ], [ -58.555139234999899, -34.879853798999932 ], [ -58.554312267999933, -34.87918155199992 ], [ -58.553743243999918, -34.878732190999926 ], [ -58.553109707999909, -34.878264109999918 ], [ -58.552468591999911, -34.877780877999953 ], [ -58.551854080999931, -34.877248207999912 ], [ -58.550590116999899, -34.87626856299994 ], [ -58.550456780999923, -34.876052530999914 ], [ -58.545953794999946, -34.872593630999916 ], [ -58.545686312999919, -34.872388168999919 ], [ -58.545575911999947, -34.872289361999947 ], [ -58.543467394999936, -34.870644672999902 ], [ -58.543153226999948, -34.870358703999955 ], [ -58.542570309999917, -34.869828703999929 ], [ -58.540706028999921, -34.868386756999939 ], [ -58.540084786999955, -34.867861057999903 ], [ -58.539871923999954, -34.867680930999938 ], [ -58.539157037999928, -34.867179670999917 ], [ -58.538449632999914, -34.866655739999942 ], [ -58.537764754999955, -34.866113273999929 ], [ -58.537057828999934, -34.865617174999954 ], [ -58.536396758999899, -34.865120961999935 ], [ -58.53636201899991, -34.865075787999956 ], [ -58.536300415999904, -34.865015594999932 ], [ -58.534882308999954, -34.863966832999949 ], [ -58.534221510999942, -34.863457997999944 ], [ -58.533469235999917, -34.862882362999926 ], [ -58.533400772999926, -34.862791088999927 ], [ -58.533370848999937, -34.862673654999924 ], [ -58.531853851999927, -34.861519409999914 ], [ -58.531347446999916, -34.861134099999902 ], [ -58.531263337999917, -34.861088068999948 ], [ -58.530595305999952, -34.860568633999947 ], [ -58.529900417999954, -34.860048985999924 ], [ -58.529228599999954, -34.859521959999938 ], [ -58.528564303999929, -34.85901767699994 ], [ -58.527816224999924, -34.858418216999951 ], [ -58.527507071999935, -34.858170037999912 ], [ -58.52664453999995, -34.857471378999946 ], [ -58.526172358999929, -34.85707612899995 ], [ -58.525755448999917, -34.856727143999933 ], [ -58.524842940999918, -34.856043212999907 ], [ -58.524674054999934, -34.856053219999922 ], [ -58.523765852999929, -34.855354398999907 ], [ -58.522664620999933, -34.854454560999955 ], [ -58.521754023999904, -34.853781286999947 ], [ -58.521272434999901, -34.853421969999943 ], [ -58.521186412999953, -34.853323789999934 ], [ -58.520882339999901, -34.853051676999939 ], [ -58.520660426999939, -34.852881495999952 ], [ -58.520574577999923, -34.852772022999943 ], [ -58.520150409999928, -34.852390316999902 ], [ -58.519805343999906, -34.852061592999917 ], [ -58.518883905999928, -34.851350633999914 ], [ -58.518714632999945, -34.851222046999908 ], [ -58.517688779999901, -34.850371432999907 ], [ -58.517496215999927, -34.850272882999946 ], [ -58.516476318999935, -34.849779932999922 ], [ -58.515218912999899, -34.84914239099993 ], [ -58.515055418999907, -34.849130500999934 ], [ -58.514591966999944, -34.848882420999928 ], [ -58.514371358999938, -34.848776121999947 ], [ -58.514132265999933, -34.848660915999915 ], [ -58.513244460999942, -34.848193874999936 ], [ -58.512314867999919, -34.847741722999956 ], [ -58.51146278899995, -34.847287327999936 ], [ -58.510580030999904, -34.84686692899993 ], [ -58.510450477999939, -34.846842312999911 ], [ -58.509609839999939, -34.846388067999953 ], [ -58.508788534999951, -34.845880571999942 ], [ -58.508397158999912, -34.845585037999911 ], [ -58.507982900999934, -34.845289204999915 ], [ -58.506705988999954, -34.844673247999935 ], [ -58.506701687999907, -34.844671172999938 ], [ -58.506411485999934, -34.844531184999937 ], [ -58.506436983999947, -34.844420404999937 ], [ -58.506481642999915, -34.844226373999902 ], [ -58.506652103999954, -34.843429710999942 ], [ -58.506729029999917, -34.842972858999929 ], [ -58.506905626999924, -34.842184205999956 ], [ -58.50682147099991, -34.842143890999921 ], [ -58.506786065999904, -34.842126929999949 ], [ -58.506695800999921, -34.842083687999946 ], [ -58.505811073999951, -34.841374780999956 ], [ -58.505208558999925, -34.840880611999921 ], [ -58.503605988999936, -34.839592976999938 ], [ -58.502855599999918, -34.838990053999908 ], [ -58.502513055999941, -34.838708266999902 ], [ -58.50224555099993, -34.838499698999954 ], [ -58.50170404499994, -34.838029035999909 ], [ -58.501114940999912, -34.837547711999946 ], [ -58.500689336999926, -34.837220626999908 ], [ -58.500512968999942, -34.83708463499994 ], [ -58.499936138999942, -34.836637533999919 ], [ -58.499386952999942, -34.836217389999945 ], [ -58.4987504959999, -34.835703335999938 ], [ -58.498026270999901, -34.835153452999918 ], [ -58.497414378999906, -34.834643254999946 ], [ -58.496863317999953, -34.834194630999946 ], [ -58.496241749999911, -34.833705804999909 ], [ -58.495604658999923, -34.833201490999954 ], [ -58.495004803999905, -34.832745540999952 ], [ -58.494496799999922, -34.832374227999935 ], [ -58.493590086999916, -34.831594012999915 ], [ -58.492973096999947, -34.831103368999948 ], [ -58.492367828999932, -34.830639712999925 ], [ -58.491762206999908, -34.830202522999912 ], [ -58.491096568999922, -34.829655199999934 ], [ -58.490322876999926, -34.829047736999939 ], [ -58.489650206999954, -34.828561399999955 ], [ -58.488988606999953, -34.828033089999906 ], [ -58.48849701599994, -34.82765730299991 ], [ -58.488273097999922, -34.827486132999923 ], [ -58.487615694999931, -34.826992066999935 ], [ -58.486988779999933, -34.82647873399992 ], [ -58.485946166999952, -34.825734764999936 ], [ -58.484760692999942, -34.824880169999915 ], [ -58.483666890999928, -34.823998841999924 ], [ -58.482682073999911, -34.823185199999955 ], [ -58.482623102999924, -34.823136478999913 ], [ -58.482592204999946, -34.823113687999921 ], [ -58.482470605999936, -34.823297165999918 ], [ -58.482256633999953, -34.823620024999911 ], [ -58.481501647999949, -34.824674639999955 ], [ -58.481380835999914, -34.824842161999925 ], [ -58.481041107999943, -34.825318069999923 ], [ -58.480742707999923, -34.825717846999908 ], [ -58.479953604999935, -34.826806738999949 ], [ -58.479930297999942, -34.826794865999943 ], [ -58.479805338999938, -34.826731207999956 ], [ -58.478374015999918, -34.826002046999918 ], [ -58.477167473999941, -34.825326272999916 ], [ -58.476554950999912, -34.82501882899993 ], [ -58.475944518999938, -34.824672698999905 ], [ -58.47468392299993, -34.82403454599995 ], [ -58.473464523999951, -34.823369182999954 ], [ -58.472215373999916, -34.822708138999928 ], [ -58.470961526999929, -34.822034903999906 ], [ -58.469692437999925, -34.821354013999951 ], [ -58.46848052799993, -34.820707518999939 ], [ -58.467234301999952, -34.820038110999917 ], [ -58.466811400999916, -34.819846550999955 ], [ -58.466645893999953, -34.819875127999921 ], [ -58.465417527999932, -34.820087223999906 ], [ -58.465391524999916, -34.819974687999945 ], [ -58.465141941999946, -34.818894547999946 ], [ -58.465292142999942, -34.818869956999947 ], [ -58.465795767999907, -34.818787501999907 ], [ -58.466510452999955, -34.818680729999926 ], [ -58.466575785999908, -34.818594059999953 ], [ -58.466764061999925, -34.818344294999918 ], [ -58.467555207999908, -34.81730478399993 ], [ -58.468357874999924, -34.816295667999952 ], [ -58.469156696999903, -34.815275154999938 ], [ -58.468916615999944, -34.815148938999926 ], [ -58.467868603999932, -34.814597972999934 ], [ -58.467088192999938, -34.814158358999919 ], [ -58.466645649999919, -34.813913998999908 ], [ -58.465412527999945, -34.813253313999951 ], [ -58.464323134999916, -34.81267280499992 ], [ -58.464168125999947, -34.812562262999904 ], [ -58.46289717399992, -34.811882474999948 ], [ -58.461675447999937, -34.81121046599992 ], [ -58.46151754999994, -34.81142382999991 ], [ -58.460880862999943, -34.81228417199992 ], [ -58.460166023999932, -34.813168452999946 ], [ -58.460060122999948, -34.813298612999915 ], [ -58.459761330999925, -34.813666120999926 ], [ -58.45926579099995, -34.81431663199993 ], [ -58.458427459999939, -34.815385896999942 ], [ -58.458295926999938, -34.815315100999953 ], [ -58.457181370999933, -34.814715204999914 ], [ -58.45609023499992, -34.814153789999921 ], [ -58.455935575999945, -34.814021898999954 ], [ -58.455518973999915, -34.813795821999918 ], [ -58.454212091999921, -34.813126046999912 ], [ -58.453471042999922, -34.812725349999937 ], [ -58.453462377999927, -34.812720664999915 ], [ -58.453359599999942, -34.812666258999911 ], [ -58.452224033999926, -34.812065136999934 ], [ -58.450955286999942, -34.811401970999952 ], [ -58.449693968999952, -34.81075388499994 ], [ -58.449058156999911, -34.81041201599993 ], [ -58.448448828999915, -34.81008438799995 ], [ -58.447230068999943, -34.809464722999905 ], [ -58.445969784999932, -34.808799515999908 ], [ -58.444745547999901, -34.80811353699994 ], [ -58.443811094999944, -34.807658222999919 ], [ -58.443485589999909, -34.80750566699993 ], [ -58.442213414999912, -34.806838513999935 ], [ -58.440919595999901, -34.806147552999903 ], [ -58.440282290999903, -34.805807910999931 ], [ -58.439572066999915, -34.805433052999945 ], [ -58.439472581999951, -34.805458603999909 ], [ -58.439315180999927, -34.805487177999908 ], [ -58.43923312499993, -34.805508113999906 ], [ -58.439165974999923, -34.805525245999945 ], [ -58.439149759999907, -34.805529382999907 ], [ -58.439115544999936, -34.805538112999955 ], [ -58.439004204999947, -34.805605389999926 ], [ -58.43900250799993, -34.805569865999928 ], [ -58.439000377999946, -34.805525255999953 ], [ -58.439008067999907, -34.805441450999922 ], [ -58.438992723999945, -34.805361175999906 ], [ -58.439004254999929, -34.80526597699992 ], [ -58.439027204999945, -34.80518614999994 ], [ -58.439072711999927, -34.805129370999907 ], [ -58.439110460999927, -34.805057222999949 ], [ -58.439155886999913, -34.804988981999941 ], [ -58.439289002999942, -34.804879724999921 ], [ -58.439554640999916, -34.804807422999943 ], [ -58.439727633999951, -34.804760337999937 ], [ -58.439728400999911, -34.804760128999931 ], [ -58.439739808999946, -34.804757023999912 ], [ -58.439773860999935, -34.804747755999927 ], [ -58.439879935999954, -34.80459998799995 ], [ -58.440433389999953, -34.803880517999914 ], [ -58.44092601299991, -34.803213829999947 ], [ -58.441301275999933, -34.802704303999917 ], [ -58.44143377599994, -34.802524396999956 ], [ -58.441968078999935, -34.80180088599991 ], [ -58.442048667999927, -34.80169055999994 ], [ -58.442460647999951, -34.801126558999954 ], [ -58.442661156999918, -34.800856350999936 ], [ -58.442885076999914, -34.800554592999902 ], [ -58.442953630999909, -34.800463312999909 ], [ -58.443682656999954, -34.799492611999938 ], [ -58.443920290999927, -34.79918067299991 ], [ -58.44408907299993, -34.798959113999956 ], [ -58.444623882999906, -34.798280273999922 ], [ -58.445046389999902, -34.797743981999929 ], [ -58.445464411999922, -34.797210992999908 ], [ -58.4456482679999, -34.796977307999953 ], [ -58.445863061999944, -34.796704299999931 ], [ -58.446261755999899, -34.796193799999912 ], [ -58.446648923999931, -34.795690701999945 ], [ -58.447043541999903, -34.795149569999921 ], [ -58.447149841999931, -34.794996406999928 ], [ -58.447418844999902, -34.794608815999936 ], [ -58.447776133999923, -34.794103365999945 ], [ -58.448209481999925, -34.793576034999944 ], [ -58.449654396999904, -34.791692176999902 ], [ -58.449676453999928, -34.791663261999929 ], [ -58.450355501999923, -34.790773078999905 ], [ -58.451046559999952, -34.789819613999953 ], [ -58.451188478999939, -34.789623401999904 ], [ -58.451552093999908, -34.789120683999954 ], [ -58.45167078399993, -34.788956587999905 ], [ -58.453271973999904, -34.786759615999927 ], [ -58.453795996999929, -34.786037900999929 ], [ -58.454486254999949, -34.785087239999939 ], [ -58.455148089999909, -34.784238511999945 ], [ -58.455498173999899, -34.783789568999907 ], [ -58.45555248699992, -34.783724905999918 ], [ -58.455641360999948, -34.783619095999939 ], [ -58.455647393999925, -34.783611912999902 ], [ -58.456161104999921, -34.78300030999992 ], [ -58.457740300999944, -34.780978722999919 ], [ -58.459108468999943, -34.779231129999914 ], [ -58.45978273399993, -34.77826429299995 ], [ -58.459854684999925, -34.778161120999926 ], [ -58.461044755999922, -34.776668075999908 ], [ -58.46104478299992, -34.776668042999916 ], [ -58.46130977599995, -34.776335585999902 ], [ -58.46156958499995, -34.775953016999949 ], [ -58.462055350999947, -34.775237726999933 ], [ -58.46220552099993, -34.775016601999937 ], [ -58.465436822999948, -34.773525385999903 ], [ -58.467219204999935, -34.772936699999946 ], [ -58.469258275999948, -34.772203067999953 ], [ -58.4705776159999, -34.771639121999954 ], [ -58.470983249999904, -34.771465734999936 ], [ -58.470983688999922, -34.771465474999957 ], [ -58.473606307999944, -34.769912217999945 ], [ -58.473718496999936, -34.769816607999928 ], [ -58.475351344999922, -34.76835243499994 ], [ -58.475478491999922, -34.768192771999907 ], [ -58.475518983999905, -34.768137388999946 ], [ -58.476179625999919, -34.767233794999925 ], [ -58.476616518999947, -34.766600915999902 ], [ -58.477083787999902, -34.765928968999958 ], [ -58.478498242999933, -34.764046413999949 ], [ -58.478984561999937, -34.763367799999912 ], [ -58.479595509999911, -34.762449425999932 ], [ -58.479880752999918, -34.762096778999933 ], [ -58.480592011999931, -34.761141318999933 ], [ -58.481216638999911, -34.760336606999942 ], [ -58.48186996499993, -34.759533521999913 ], [ -58.482200534999947, -34.759105236999915 ], [ -58.482682681999904, -34.758495412999935 ], [ -58.483138265999912, -34.757798363999939 ], [ -58.483504422999943, -34.75732811499995 ], [ -58.483800512999949, -34.75694785099995 ], [ -58.484481883999933, -34.756089263999911 ], [ -58.485119877999921, -34.755252901999938 ], [ -58.485594698999932, -34.754605493999918 ], [ -58.486018054999931, -34.754013162999911 ], [ -58.486517652999908, -34.75335119999994 ], [ -58.487021107999908, -34.752694444999918 ], [ -58.487220986999944, -34.752450823999936 ], [ -58.488956914999903, -34.750145943999939 ], [ -58.489406623999912, -34.749475618999952 ], [ -58.489888805999954, -34.748808610999902 ], [ -58.490418289999923, -34.74809816599992 ], [ -58.490915431999952, -34.747372786999904 ], [ -58.491703542999915, -34.74635681399991 ], [ -58.491883719999919, -34.746124542999951 ], [ -58.492927564999945, -34.744784718999938 ], [ -58.493279884999936, -34.744281000999933 ], [ -58.493417206999936, -34.744098656999938 ], [ -58.493883969999899, -34.743506268999909 ], [ -58.49467119499991, -34.742450533999943 ], [ -58.494895719999931, -34.742164487999958 ], [ -58.496461229999909, -34.740128355999957 ], [ -58.497267535999924, -34.739038851999908 ], [ -58.49799143599995, -34.738170645999958 ], [ -58.498852771999907, -34.737024432999931 ], [ -58.499401760999945, -34.736189903999957 ], [ -58.4999237319999, -34.735600331999933 ], [ -58.500006415999906, -34.735486439999931 ], [ -58.500314553999942, -34.735076301999925 ], [ -58.500561871999935, -34.734736765999912 ], [ -58.501100641999926, -34.73396260599992 ], [ -58.501628292999953, -34.733289748999937 ], [ -58.50231307599995, -34.732383462999906 ], [ -58.502438153999947, -34.732216670999946 ], [ -58.502545119999922, -34.732074031999957 ], [ -58.503851245999954, -34.730288129999906 ], [ -58.504486753999913, -34.729441410999925 ], [ -58.505011181999919, -34.728747447999922 ], [ -58.505688353999915, -34.728031522999913 ], [ -58.50665207499992, -34.727216515999942 ], [ -58.506886574999953, -34.727018201999954 ], [ -58.506903539999939, -34.72699999799994 ], [ -58.508084607999933, -34.725732692999941 ], [ -58.508479361999946, -34.725382042999911 ], [ -58.509833245999914, -34.724270368999953 ], [ -58.511224592999952, -34.723107951999907 ], [ -58.511775384999908, -34.722647785999925 ], [ -58.512914691999924, -34.722031391999906 ], [ -58.51309204699993, -34.721945355999935 ], [ -58.513139536999915, -34.721904261999953 ], [ -58.513270441999907, -34.721790984999927 ], [ -58.513917617999937, -34.721230959999957 ], [ -58.514000079999903, -34.721159602999933 ], [ -58.514719616999912, -34.720372158999908 ], [ -58.514754915999902, -34.720333528999902 ], [ -58.514939458999947, -34.720206120999933 ], [ -58.515206357999944, -34.720021854999914 ], [ -58.515666181999904, -34.719704393999905 ], [ -58.515752906999921, -34.719638237999902 ], [ -58.517982482999912, -34.717937468999935 ], [ -58.517988746999947, -34.717932662999942 ], [ -58.518867492999902, -34.717258452999943 ], [ -58.519027709999932, -34.717136382999911 ], [ -58.519028854999931, -34.717135396999936 ], [ -58.519516634999945, -34.716715421999936 ], [ -58.519641748999902, -34.71660769999994 ], [ -58.519922057999906, -34.716366355999924 ], [ -58.521717071999944, -34.714820861999954 ], [ -58.522159385999942, -34.71450266599993 ], [ -58.522439021999901, -34.71430149999992 ], [ -58.522464751999905, -34.714282989999901 ], [ -58.523174285999914, -34.713726043999941 ], [ -58.523181914999952, -34.713722228999927 ], [ -58.524654387999931, -34.712692260999916 ], [ -58.52475738499993, -34.71261596699992 ], [ -58.525148171999945, -34.712322094999934 ], [ -58.525234221999938, -34.71225738499993 ], [ -58.525245666999922, -34.712245940999935 ], [ -58.526172637999935, -34.71154022199994 ], [ -58.527114867999899, -34.710784911999951 ], [ -58.528022765999935, -34.710075377999942 ], [ -58.528033027999925, -34.710067586999912 ], [ -58.528773885999954, -34.709505139999919 ], [ -58.531761168999935, -34.707237243999941 ], [ -58.535448919999908, -34.70428159699992 ], [ -58.536116392999929, -34.703746632999923 ], [ -58.536411284999929, -34.703510283999947 ], [ -58.536903065999923, -34.703179594999938 ], [ -58.539939879999906, -34.701137542999902 ], [ -58.540611266999917, -34.700572967999904 ], [ -58.540790557999912, -34.70026779199992 ], [ -58.54134750399993, -34.699745177999944 ], [ -58.541507720999903, -34.699596404999909 ], [ -58.541915893999942, -34.699523925999927 ], [ -58.542647197999941, -34.698994461999916 ], [ -58.542869567999901, -34.69883346599994 ], [ -58.543446361999941, -34.698397075999935 ], [ -58.544029235999915, -34.69795608499993 ], [ -58.544090270999902, -34.697910308999951 ], [ -58.544157054999914, -34.697859664999953 ], [ -58.54569694199995, -34.69669192799995 ], [ -58.548116580999931, -34.694857051999918 ], [ -58.548557280999944, -34.694522857999914 ], [ -58.549175261999949, -34.694061278999925 ], [ -58.549223097999914, -34.694024390999914 ], [ -58.549265417999948, -34.693991755999946 ], [ -58.550708770999904, -34.692878722999922 ], [ -58.551345824999942, -34.692394256999933 ], [ -58.552013396999939, -34.691841124999939 ], [ -58.55202941899995, -34.69182771699991 ], [ -58.5527381899999, -34.691234588999919 ], [ -58.553367568999931, -34.690764755999908 ], [ -58.554205552999917, -34.690168108999956 ], [ -58.555215585999917, -34.689357179999945 ], [ -58.556275325999934, -34.688477883999951 ], [ -58.556909962999953, -34.688011610999922 ], [ -58.559387206999929, -34.686191558999951 ], [ -58.559295113999951, -34.686109210999916 ], [ -58.558666228999925, -34.685546874999943 ], [ -58.558293166999931, -34.685230089999948 ], [ -58.557373046999942, -34.684612273999903 ], [ -58.556549071999939, -34.684040069999924 ], [ -58.556471768999927, -34.684098112999948 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 34.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.372722000320039, -34.648819000296555 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.372978999581107, -34.647380999633356 ], [ -58.373108000134039, -34.646630000074424 ], [ -58.373257999856776, -34.645664999639962 ], [ -58.373665999785999, -34.643604999970705 ], [ -58.373879999762153, -34.642360000113854 ], [ -58.374051999600056, -34.641587999586477 ], [ -58.374245000406404, -34.64055799975182 ], [ -58.374309999806599, -34.640300000444597 ], [ -58.374417000244307, -34.639656999570832 ], [ -58.374588000036113, -34.638668999874426 ], [ -58.374716999689724, -34.637832999992895 ], [ -58.374867000311781, -34.637188999972352 ], [ -58.37503099978079, -34.636204999561016 ], [ -58.375039000149684, -34.636159000137695 ], [ -58.375204999710945, -34.635289999633756 ], [ -58.375210999987644, -34.635257999956707 ], [ -58.375360999710324, -34.634592999866982 ], [ -58.375403999894615, -34.634421000029079 ], [ -58.375789999708672, -34.633240999572422 ], [ -58.376155000352924, -34.632188999622599 ], [ -58.376713000004884, -34.630816000158234 ], [ -58.377034999565524, -34.630064999699925 ], [ -58.377249000440997, -34.629722000070217 ], [ -58.377357000025484, -34.629550000232257 ], [ -58.377935999746569, -34.628562999682629 ], [ -58.378472000182626, -34.62742600030964 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.379136000226197, -34.626092999991897 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382849999727682, -34.62693200001172 ], [ -58.384351999744979, -34.62701800038036 ], [ -58.385725000108607, -34.627039000449486 ], [ -58.387206000056835, -34.62710399984968 ], [ -58.388300000144852, -34.627147000033972 ], [ -58.388772000327492, -34.627168000103097 ], [ -58.389458999633064, -34.627211000287389 ], [ -58.39025300027572, -34.627233000402612 ], [ -58.391174999626514, -34.627274999641486 ], [ -58.392205000360434, -34.62725399957236 ], [ -58.391776000362086, -34.629507000047965 ], [ -58.391540000270766, -34.630666000435554 ], [ -58.391368000432806, -34.631696000270153 ], [ -58.391174999626514, -34.632853999712268 ], [ -58.390896000250166, -34.63422800012205 ], [ -58.391969000269114, -34.63446400021337 ], [ -58.393857000100411, -34.634893000211719 ], [ -58.394844999796874, -34.63510800023397 ], [ -58.395959999954016, -34.635365000394415 ], [ -58.397440999902187, -34.635622999701638 ], [ -58.398899999735136, -34.635900999931152 ], [ -58.400488000121072, -34.636180000206821 ], [ -58.402118999791981, -34.636480999698335 ], [ -58.402976999788677, -34.636631000320392 ], [ -58.403791999601083, -34.636781000043072 ], [ -58.405252000379448, -34.637039000249615 ], [ -58.405616000078282, -34.637102999603712 ], [ -58.405744999731894, -34.635900999931152 ], [ -58.407675999747539, -34.636330999975598 ], [ -58.409134999580544, -34.636652000389461 ], [ -58.409028000042156, -34.637704000339284 ], [ -58.408620000112876, -34.639378000194483 ], [ -58.408663000297167, -34.639720999824249 ], [ -58.40877099988171, -34.639934999800346 ], [ -58.408849999927497, -34.640208999845413 ], [ -58.410009000315085, -34.640193000006889 ], [ -58.411752999801081, -34.639421000378832 ], [ -58.411839000169664, -34.639592000170637 ], [ -58.412847999935195, -34.639785000077666 ], [ -58.414199000183658, -34.640021000168986 ], [ -58.415550999578954, -34.640279000375529 ], [ -58.416088000061109, -34.640385999913917 ], [ -58.416709999966486, -34.640493000351626 ], [ -58.418255000168074, -34.640771999727974 ], [ -58.418554999613491, -34.639312999894969 ], [ -58.419542000163119, -34.639484999732929 ], [ -58.420915999673582, -34.639720999824249 ], [ -58.422310000106393, -34.639977999984694 ], [ -58.423490999709827, -34.64017199993782 ], [ -58.424928000326929, -34.640429000098209 ], [ -58.42617300018378, -34.64064400012046 ], [ -58.426774000020032, -34.640729000442946 ], [ -58.427416999994534, -34.640858000096557 ], [ -58.427996999761717, -34.640943999565877 ], [ -58.428576000382066, -34.641029999934517 ], [ -58.429262999687637, -34.641158999588129 ], [ -58.429927999777306, -34.641266000025837 ], [ -58.431171999588059, -34.641480000001934 ], [ -58.432353000090814, -34.641738000208477 ], [ -58.433124999718927, -34.641887999931214 ], [ -58.434669999920516, -34.642210000391174 ], [ -58.436258000306452, -34.642509999836591 ], [ -58.437781000392818, -34.642811000227425 ], [ -58.438660999605418, -34.642982000019231 ], [ -58.439240000225766, -34.643089999603774 ], [ -58.439604999970754, -34.642080999838242 ], [ -58.440033999969103, -34.640923000396128 ], [ -58.441278999825954, -34.641243999910614 ], [ -58.442522999636708, -34.641566000370574 ], [ -58.442609000005291, -34.641352000394477 ], [ -58.443081000187988, -34.641759000277602 ], [ -58.443317000279308, -34.641953000230728 ], [ -58.444239999676199, -34.642789000112202 ], [ -58.44524900034105, -34.642016999584825 ], [ -58.446235999991359, -34.641287000094962 ], [ -58.447201000425764, -34.640535999636654 ], [ -58.448188000076129, -34.639807000192889 ], [ -58.449454000002049, -34.638819999643204 ], [ -58.450377000298261, -34.638196999691729 ], [ -58.451450000317209, -34.637446000132741 ], [ -58.451921999600586, -34.636458999583112 ], [ -58.452029000038294, -34.636223000391112 ], [ -58.452072000222586, -34.636159000137695 ], [ -58.452414999852294, -34.635471999932804 ], [ -58.452909000150214, -34.634485000282496 ], [ -58.453381000332854, -34.633497999732867 ], [ -58.453874999731397, -34.632511000082559 ], [ -58.454367999983162, -34.631481000247902 ], [ -58.454925999635122, -34.630387000159885 ], [ -58.455484000186402, -34.629292000025714 ], [ -58.456041999838362, -34.628111999569057 ], [ -58.454517999705899, -34.627597000101446 ], [ -58.454710999612928, -34.62725399957236 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.470225000083644, -34.629420999679326 ], [ -58.470440000105896, -34.628906000211714 ], [ -58.470676000197216, -34.628412999959949 ], [ -58.471127000310787, -34.627404000194417 ], [ -58.471577000378204, -34.626353000290692 ], [ -58.472113999961095, -34.625150999718812 ], [ -58.472564000028513, -34.624164000068504 ], [ -58.473015000142084, -34.623177000418195 ], [ -58.473465000209558, -34.622168999799442 ], [ -58.473916000323129, -34.621181000103036 ], [ -58.474215999768546, -34.620516000013367 ], [ -58.475052999696118, -34.619465000109642 ], [ -58.475868999554621, -34.618456000344111 ], [ -58.476125999715066, -34.618069999630734 ], [ -58.476641000082054, -34.617447999725357 ], [ -58.477478000009626, -34.616461000075049 ], [ -58.478228999568614, -34.615452000309517 ], [ -58.479023000211271, -34.614421999575598 ], [ -58.479860000138842, -34.613434999925289 ], [ -58.480653999882122, -34.612427000205855 ], [ -58.481468999694528, -34.611418000440324 ], [ -58.481855000407904, -34.610903000073336 ], [ -58.482242000268059, -34.61040999982157 ], [ -58.480976000342082, -34.609744999731902 ], [ -58.479667000231814, -34.60905800042633 ], [ -58.479044000280339, -34.608714999897302 ], [ -58.478422000374962, -34.608393000336662 ], [ -58.477135000379917, -34.60770600013177 ], [ -58.475889999623746, -34.607041000042102 ], [ -58.474753000250701, -34.606440000205794 ], [ -58.473593999863169, -34.605860999585445 ], [ -58.472456999590804, -34.605259999749137 ], [ -58.472907999704375, -34.604615999728537 ], [ -58.472779000050764, -34.603651000193452 ], [ -58.472564000028513, -34.602512999874989 ], [ -58.472327999937193, -34.601269000064235 ], [ -58.47224199956861, -34.601097000226332 ], [ -58.472371000121541, -34.601076000157263 ], [ -58.475095999880466, -34.600496000390081 ], [ -58.475729000293086, -34.600357000275324 ], [ -58.477820999639391, -34.599894999654452 ], [ -58.478830000304242, -34.599680999678355 ], [ -58.478765000004728, -34.599487999771327 ], [ -58.478594000212922, -34.598951000188492 ], [ -58.478336000006379, -34.598329000283115 ], [ -58.477842999754614, -34.597084999573042 ], [ -58.477092000195626, -34.595024999903785 ], [ -58.476361999806386, -34.593049999657694 ], [ -58.476083000430094, -34.592256999960512 ], [ -58.476043000384095, -34.592147000283774 ], [ -58.475767000246833, -34.591390999594921 ], [ -58.475611000247397, -34.591205000010689 ], [ -58.475310999902661, -34.590968999919369 ], [ -58.475031999627049, -34.590754999943272 ], [ -58.474066000045809, -34.590003000338129 ], [ -58.473079000395501, -34.589230999810752 ], [ -58.472907999704375, -34.589081000088015 ], [ -58.47224199956861, -34.589789000362032 ], [ -58.471298000102593, -34.588909000250112 ], [ -58.470225000083644, -34.587921999700484 ], [ -58.47069200003574, -34.587553999817203 ], [ -58.470869000104244, -34.587364000048524 ], [ -58.471169000448981, -34.586785000327438 ], [ -58.472127999707368, -34.584976999688763 ], [ -58.472113999961095, -34.58500400003453 ], [ -58.47247799965993, -34.584316999829639 ], [ -58.472993000026861, -34.58333000017933 ], [ -58.473529999609752, -34.582321999560577 ], [ -58.473680000231809, -34.581956999815645 ], [ -58.473680000231809, -34.581850000277257 ], [ -58.473593999863169, -34.581763999908617 ], [ -58.474001999792392, -34.581614000185937 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474710000066409, -34.5808200004426 ], [ -58.475010000411146, -34.580475999867474 ], [ -58.475234999995223, -34.580221999845378 ], [ -58.475481999694466, -34.57994000033068 ], [ -58.477220999849237, -34.579532000401457 ], [ -58.478962000096203, -34.579134000034003 ], [ -58.479002000142145, -34.579123999572857 ], [ -58.480117000299288, -34.578395000129092 ], [ -58.481426000409556, -34.577493999948103 ], [ -58.482756999735727, -34.576591999720961 ], [ -58.484301999937315, -34.575584000001527 ], [ -58.482885000242504, -34.574747000073955 ], [ -58.481747999970196, -34.574103000053356 ], [ -58.480740000250762, -34.573545000401396 ], [ -58.480674999951248, -34.573503000263202 ], [ -58.479860000138842, -34.573030000034407 ], [ -58.479452000209619, -34.572772999874019 ], [ -58.478507999844282, -34.572237000337225 ], [ -58.477585000447391, -34.571678999785945 ], [ -58.476576999828637, -34.571099000018819 ], [ -58.47563300036262, -34.570520000297734 ], [ -58.474710000066409, -34.569982999815522 ], [ -58.473786999770198, -34.569426000209717 ], [ -58.472885999589153, -34.568867999658437 ], [ -58.471985000307484, -34.568331000075545 ], [ -58.472800000119889, -34.567344000425237 ], [ -58.473416999794665, -34.566683999666793 ], [ -58.472408000029134, -34.566105999991862 ], [ -58.471383999571856, -34.565455999694564 ], [ -58.470440000105896, -34.564854999858312 ], [ -58.469603000178267, -34.564319000321575 ], [ -58.468636999697765, -34.563653000185752 ], [ -58.467542999609691, -34.562967000026958 ], [ -58.466491999705966, -34.562173000283678 ], [ -58.465118000195503, -34.562752000004764 ], [ -58.463744999831817, -34.561958000261484 ], [ -58.462758000181509, -34.561378999641079 ], [ -58.461857000000521, -34.560843000104342 ], [ -58.460976999888601, -34.560327999737353 ], [ -58.460096999776681, -34.559791000154462 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469915000177082, -34.546786000273642 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476769999735666, -34.537131000195473 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.483315000287007, -34.527476000117247 ], [ -58.484515999913413, -34.528011999654041 ], [ -58.485675000301001, -34.528592000320486 ], [ -58.486919000111698, -34.529171000041572 ], [ -58.488099999715189, -34.529706999578309 ], [ -58.489323000356137, -34.530265000129589 ], [ -58.490502999913474, -34.530844999896772 ], [ -58.491704000439256, -34.53144599973308 ], [ -58.492841999858342, -34.532025000353428 ], [ -58.494128999853444, -34.532583000005388 ], [ -58.495331000425267, -34.533161999726474 ], [ -58.496467999798313, -34.533720000277754 ], [ -58.497648000254969, -34.534255999814491 ], [ -58.498870999996598, -34.534835999581674 ], [ -58.500093999738283, -34.53537200001773 ], [ -58.501275000241037, -34.535994999969205 ], [ -58.501897000146414, -34.536273000198776 ], [ -58.502475999867443, -34.536531000405319 ], [ -58.503656000324099, -34.537089000057279 ], [ -58.504857999996659, -34.53768999989353 ], [ -58.505502000017259, -34.537969000169198 ], [ -58.506123999922636, -34.538268999614615 ], [ -58.507283000310167, -34.538848000234964 ], [ -58.508398999614087, -34.539384999817855 ], [ -58.509063999703756, -34.539664000093467 ], [ -58.509749999862549, -34.539964000438204 ], [ -58.510909000250138, -34.540522000090164 ], [ -58.512131999991766, -34.541122999926472 ], [ -58.513312000448423, -34.541680999578432 ], [ -58.516874000134976, -34.543376000402077 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 32.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.486486214067206, -34.574925779080452 ], [ -58.474080306822998, -34.582014868934287 ], [ -58.461048891650513, -34.5860806704681 ], [ -58.450623759512524, -34.588999707466741 ], [ -58.438426354911073, -34.600154598854388 ], [ -58.432484029592423, -34.602239625281982 ], [ -58.40496168074813, -34.604741656995103 ], [ -58.370245990728627, -34.603177887174404 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 30.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.522242027999937, -34.854142105999927 ], [ -58.522664620999933, -34.854454560999955 ], [ -58.523765852999929, -34.855354398999907 ], [ -58.524674054999934, -34.856053219999922 ], [ -58.524842940999918, -34.856043212999907 ], [ -58.525755448999917, -34.856727143999933 ], [ -58.52664453999995, -34.857471378999946 ], [ -58.527507071999935, -34.858170037999912 ], [ -58.527816224999924, -34.858418216999951 ], [ -58.528564303999929, -34.85901767699994 ], [ -58.529228599999954, -34.859521959999938 ], [ -58.529900417999954, -34.860048985999924 ], [ -58.530595305999952, -34.860568633999947 ], [ -58.531263337999917, -34.861088068999948 ], [ -58.531347446999916, -34.861134099999902 ], [ -58.531853851999927, -34.861519409999914 ], [ -58.533370848999937, -34.862673654999924 ], [ -58.533400772999926, -34.862791088999927 ], [ -58.533469235999917, -34.862882362999926 ], [ -58.534221510999942, -34.863457997999944 ], [ -58.534882308999954, -34.863966832999949 ], [ -58.536300415999904, -34.865015594999932 ], [ -58.53636201899991, -34.865075787999956 ], [ -58.536396758999899, -34.865120961999935 ], [ -58.537057828999934, -34.865617174999954 ], [ -58.537764754999955, -34.866113273999929 ], [ -58.538449632999914, -34.866655739999942 ], [ -58.539157037999928, -34.867179670999917 ], [ -58.539871923999954, -34.867680930999938 ], [ -58.540706028999921, -34.868386756999939 ], [ -58.542570309999917, -34.869828703999929 ], [ -58.543153226999948, -34.870358703999955 ], [ -58.543467394999936, -34.870644672999902 ], [ -58.545575911999947, -34.872289361999947 ], [ -58.545686312999919, -34.872388168999919 ], [ -58.550456780999923, -34.876052530999914 ], [ -58.550590116999899, -34.87626856299994 ], [ -58.551854080999931, -34.877248207999912 ], [ -58.552468591999911, -34.877780877999953 ], [ -58.553109707999909, -34.878264109999918 ], [ -58.553743243999918, -34.878732190999926 ], [ -58.554312267999933, -34.87918155199992 ], [ -58.555139234999899, -34.879853798999932 ], [ -58.555188544999908, -34.879899143999921 ], [ -58.555249234999906, -34.879955829999915 ], [ -58.555708259999903, -34.880299363999939 ], [ -58.556326322999951, -34.880748428999937 ], [ -58.556713002999913, -34.881027641999935 ], [ -58.557683309999902, -34.881835673999944 ], [ -58.557922799999915, -34.881972279999957 ], [ -58.55809284299994, -34.882069272999956 ], [ -58.560082989999955, -34.883575128999951 ], [ -58.56109129999993, -34.884356455999921 ], [ -58.561970711999948, -34.885047241999928 ], [ -58.562027641999919, -34.885050812999907 ], [ -58.563096360999907, -34.885947085999931 ], [ -58.564156358999924, -34.886782102999916 ], [ -58.564650616999927, -34.887187732999905 ], [ -58.564737762999926, -34.887319789999935 ], [ -58.565099274999909, -34.88786760499994 ], [ -58.565183895999951, -34.887978812999904 ], [ -58.565353006999942, -34.888093769999955 ], [ -58.565864788999932, -34.888482118999946 ], [ -58.56637423299992, -34.888836469999944 ], [ -58.567602064999903, -34.88978852799994 ], [ -58.568814292999946, -34.890699274999918 ], [ -58.568929612999909, -34.890694758999928 ], [ -58.569537584999921, -34.891186918999949 ], [ -58.570305341999926, -34.89187645699991 ], [ -58.570980296999949, -34.892399132999913 ], [ -58.571690685999954, -34.892937116999917 ], [ -58.57236856399993, -34.893425557999933 ], [ -58.5734817149999, -34.894263010999907 ], [ -58.575412965999931, -34.895672324999907 ], [ -58.57584728899991, -34.896023376999949 ], [ -58.576509960999942, -34.896590559999936 ], [ -58.577124238999943, -34.897081729999911 ], [ -58.577747619999911, -34.897611788999939 ], [ -58.57828970199995, -34.898005885999908 ], [ -58.578895939999938, -34.898525949999907 ], [ -58.579884834999916, -34.899229433999949 ], [ -58.58054321599991, -34.899724522999918 ], [ -58.581096936999927, -34.900193444999957 ], [ -58.581670362999944, -34.900651754999956 ], [ -58.582356256999901, -34.901191253999912 ], [ -58.582933546999925, -34.901653388999932 ], [ -58.58351908599991, -34.902082284999949 ], [ -58.584108489999949, -34.902515004999941 ], [ -58.584757522999951, -34.902874996999913 ], [ -58.584979020999924, -34.903000094999925 ], [ -58.585405329999901, -34.903331637999941 ], [ -58.586087359999908, -34.903867311999932 ], [ -58.586877898999944, -34.904487783999912 ], [ -58.5886296729999, -34.905847864999942 ], [ -58.588919159999932, -34.90608967199995 ], [ -58.590075411999919, -34.906961320999926 ], [ -58.591281902999924, -34.907911598999931 ], [ -58.592399078999904, -34.90880061699994 ], [ -58.592980215999944, -34.909208746999923 ], [ -58.593608605999918, -34.90972901899994 ], [ -58.593704357999911, -34.909812905999956 ], [ -58.594510865999951, -34.910519476999923 ], [ -58.595746174999931, -34.911556348999909 ], [ -58.59806696499993, -34.913339305999955 ], [ -58.598557366999955, -34.913745581999933 ], [ -58.599213848999909, -34.914215549999938 ], [ -58.599904451999919, -34.914735954999912 ], [ -58.600523512999928, -34.915202449999924 ], [ -58.601161828999921, -34.915681507999921 ], [ -58.601579021999953, -34.916028302999905 ], [ -58.602956870999947, -34.917048329999943 ], [ -58.604043601999933, -34.91797835299991 ], [ -58.604590792999943, -34.918604344999949 ], [ -58.606268698999941, -34.920523884999909 ], [ -58.607687452999926, -34.922131171999922 ], [ -58.609052763999955, -34.923751005999918 ], [ -58.610396060999904, -34.925255686999947 ], [ -58.611036114999933, -34.925972636999916 ], [ -58.611621809999917, -34.926628697999945 ], [ -58.611788458999911, -34.92681536799995 ], [ -58.615426896999907, -34.930739881999955 ], [ -58.620300238999903, -34.936151233999908 ], [ -58.615461012999901, -34.942365074999941 ], [ -58.609311815999945, -34.939106917999936 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 29.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619807828611883, -34.64824294956064 ], [ -58.621090658572591, -34.64822869589441 ], [ -58.621033643907666, -34.645449230979544 ], [ -58.621055024407013, -34.6444799816759 ], [ -58.619715179781387, -34.644551250007055 ], [ -58.619098708716933, -34.645050128325103 ], [ -58.618200727744437, -34.644276866932117 ], [ -58.617199407691785, -34.643416301833476 ], [ -58.621610917389965, -34.639776271819962 ], [ -58.620556146088937, -34.638928178679279 ], [ -58.621963695629162, -34.637834209796125 ], [ -58.623937828402042, -34.636991461780276 ], [ -58.621860356549, -34.633207113396182 ], [ -58.621708911345301, -34.632987963277891 ], [ -58.619948583565886, -34.632930948612966 ], [ -58.620183769058684, -34.632239645800809 ], [ -58.620069739728841, -34.631940318809981 ], [ -58.619627876075711, -34.631833416313256 ], [ -58.619485339413409, -34.63179065531456 ], [ -58.619178885589463, -34.631348791661431 ], [ -58.618943700096665, -34.631184874499787 ], [ -58.618893812264858, -34.631028084171255 ], [ -58.619186012422574, -34.630906928008301 ], [ -58.626391240701878, -34.629552829716452 ], [ -58.626756490899012, -34.630750137679776 ], [ -58.625359631608426, -34.625710575813308 ], [ -58.625605507350897, -34.625560912317887 ], [ -58.625177897364011, -34.623946684617323 ], [ -58.623488837915737, -34.624247793316435 ], [ -58.622863458309872, -34.621749838309611 ], [ -58.621177962278182, -34.622036693342487 ], [ -58.620951685326759, -34.62108347941335 ], [ -58.631606300833738, -34.621026464748432 ], [ -58.631599174000634, -34.622031348217654 ], [ -58.633371973737987, -34.621740929768208 ], [ -58.633706934894398, -34.620586382803573 ], [ -58.634558591451643, -34.612928600621473 ], [ -58.633332776155854, -34.612889403039354 ], [ -58.632349273185973, -34.613274252027566 ], [ -58.629641076602269, -34.610950904432059 ], [ -58.628614812633685, -34.610145572290065 ], [ -58.63243479518335, -34.60712379504929 ], [ -58.631412094631337, -34.606211560410571 ], [ -58.632976434500087, -34.605046323196262 ], [ -58.632014312029561, -34.604201793472129 ], [ -58.6318432680348, -34.603496236993742 ], [ -58.630588945406551, -34.60250560719075 ], [ -58.632392034184662, -34.601144382065776 ], [ -58.625707064722747, -34.595339576493558 ], [ -58.627560041332664, -34.594010422117577 ], [ -58.626633553027709, -34.593197963142465 ], [ -58.631950170531525, -34.590532527557436 ], [ -58.631437038547247, -34.590332976230201 ], [ -58.632648600176807, -34.589463502590171 ], [ -58.631066443225265, -34.588223433628151 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 27.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.357228999918391, -34.637960999600409 ], [ -58.357400999756294, -34.637767999693381 ], [ -58.357916000123282, -34.636867000411712 ], [ -58.358388000305922, -34.636115999953404 ], [ -58.358880999658368, -34.635301000140998 ], [ -58.359396000025356, -34.634507000397718 ], [ -58.359632000116676, -34.634119999638244 ], [ -58.35978299988551, -34.63384200030805 ], [ -58.359890000323219, -34.63366999957077 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.360855999904459, -34.632038999899862 ], [ -58.362401000106047, -34.630965999880971 ], [ -58.363387999756355, -34.630343999975594 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.368001000245897, -34.62686799975836 ], [ -58.367980000176829, -34.625216000018327 ], [ -58.368044000430245, -34.624077999699864 ], [ -58.368194000152926, -34.622790999704819 ], [ -58.368279999622246, -34.621996999961539 ], [ -58.368322999806537, -34.621632000216607 ], [ -58.368452000359468, -34.620559000197659 ], [ -58.368473000428594, -34.620388000405853 ], [ -58.368494999644497, -34.619400999856225 ], [ -58.368602000082205, -34.618284999652985 ], [ -58.368687999551526, -34.617834000438734 ], [ -58.368708999620594, -34.616954000326814 ], [ -58.368859000242651, -34.61579599998538 ], [ -58.36822099959943, -34.615752999801032 ], [ -58.367572000247549, -34.61570999961674 ], [ -58.366735000319977, -34.615645000216546 ], [ -58.365983999861669, -34.615580999963129 ], [ -58.36602700004596, -34.615280999618392 ], [ -58.366280000021959, -34.612987999996164 ], [ -58.366327000390697, -34.612555999859467 ], [ -58.366306000321629, -34.612212000183604 ], [ -58.366155999699572, -34.612191000114535 ], [ -58.366070000230309, -34.612147999930187 ], [ -58.36602700004596, -34.612082999630672 ], [ -58.3661130004146, -34.611998000207507 ], [ -58.36626300013728, -34.611976000092284 ], [ -58.366391999790892, -34.611998000207507 ], [ -58.366499000228657, -34.612104999745895 ], [ -58.3671430002492, -34.612147999930187 ], [ -58.367958000061606, -34.612255000367952 ], [ -58.368044000430245, -34.611439999656227 ], [ -58.368194000152926, -34.611139000164655 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.369331000425291, -34.609916000423027 ], [ -58.369352999641194, -34.60952999970965 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.368044000430245, -34.607127000410685 ], [ -58.368300999691314, -34.606891000319365 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368944999711914, -34.606848000135074 ], [ -58.369460000078902, -34.606718999582142 ], [ -58.369609999801582, -34.606568999859405 ], [ -58.369739000354514, -34.606419000136725 ], [ -58.369763999708766, -34.606160999930182 ], [ -58.369845999892959, -34.605302999933429 ], [ -58.369932000261542, -34.604250999983606 ], [ -58.370104000099502, -34.60296399998856 ], [ -58.370210999637891, -34.601912000038737 ], [ -58.370383000375114, -34.600668000227984 ], [ -58.370661999751462, -34.599465999656104 ], [ -58.371027000395713, -34.598329000283115 ], [ -58.371177000118394, -34.59807200012267 ], [ -58.371670000370159, -34.597063000357139 ], [ -58.371755999839479, -34.596912999735082 ], [ -58.372099000368507, -34.596140000060927 ], [ -58.372334999560564, -34.595561000339842 ], [ -58.372722000320039, -34.594745999628117 ], [ -58.372872000042719, -34.594424000067534 ], [ -58.373193999603359, -34.594059000322545 ], [ -58.373516000063319, -34.593780000046934 ], [ -58.373836999577804, -34.593608000208974 ], [ -58.372893000111844, -34.59244999986754 ], [ -58.372570999651884, -34.591849000031289 ], [ -58.372592999767107, -34.591699000308552 ], [ -58.373516000063319, -34.591248000195037 ], [ -58.373836999577804, -34.591269000264106 ], [ -58.374031000430307, -34.591312000448397 ], [ -58.374202000222112, -34.591397999917717 ], [ -58.375424999963741, -34.592663999843694 ], [ -58.375639999985992, -34.592943000119305 ], [ -58.376970000165329, -34.594530999605922 ], [ -58.377506999748221, -34.594660000158854 ], [ -58.377593000116804, -34.594745999628117 ], [ -58.377742999839541, -34.595024999903785 ], [ -58.3784510001135, -34.595068000088077 ], [ -58.379953000130797, -34.595195999695591 ], [ -58.381476000217219, -34.595304000179397 ], [ -58.382012999800054, -34.595368000432813 ], [ -58.382462999867528, -34.595410999717842 ], [ -58.382742000143139, -34.595410999717842 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.391881999854377, -34.59585799964691 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.394650999843748, -34.595797000431162 ], [ -58.396088999607628, -34.595689999993454 ], [ -58.39737699964877, -34.595582000408967 ], [ -58.398534999990204, -34.595431999786911 ], [ -58.399673000308667, -34.595217999810814 ], [ -58.401153000210741, -34.594809999881534 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.403620999809277, -34.594080000391671 ], [ -58.405100999711351, -34.593372000117654 ], [ -58.406131000445271, -34.592578000374374 ], [ -58.407183000395094, -34.591634000009037 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.420764999904804, -34.581850000277257 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.429155000103151, -34.577278999925852 ], [ -58.430098999569111, -34.577021999765407 ], [ -58.431559000347534, -34.576591999720961 ], [ -58.431858999792951, -34.576507000297795 ], [ -58.432782000089219, -34.576120000437641 ], [ -58.434234999645469, -34.575501999817391 ], [ -58.435506999848144, -34.574962000096207 ], [ -58.436430000144355, -34.574510999982635 ], [ -58.437116000303149, -34.574103000053356 ], [ -58.438446999629264, -34.573394999779396 ], [ -58.439648000155046, -34.572708999620602 ], [ -58.440742000243063, -34.572085999669127 ], [ -58.441966000030845, -34.571420999579402 ], [ -58.442544999751874, -34.571099000018819 ], [ -58.442952999681154, -34.57090600011179 ], [ -58.443831999746976, -34.570456000044317 ], [ -58.444111000022588, -34.570305000275482 ], [ -58.444861999581576, -34.569940999677328 ], [ -58.445699000408524, -34.569532999748105 ], [ -58.446515000267027, -34.569146999934048 ], [ -58.447050999803764, -34.568867999658437 ], [ -58.448188000076129, -34.568331000075545 ], [ -58.449090000303215, -34.567858999892906 ], [ -58.449948000299912, -34.567386999710209 ], [ -58.45078500022754, -34.566935999596637 ], [ -58.451728999693557, -34.566422000175123 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.476757000035491, -34.537156999595823 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.482242000268059, -34.526660000258744 ], [ -58.482649000151184, -34.525908999800436 ], [ -58.482734999620504, -34.52573800000863 ], [ -58.483143000449047, -34.52502999973467 ], [ -58.483272000102659, -34.524814999712419 ], [ -58.483765000354424, -34.52391400043075 ], [ -58.484301999937315, -34.522970000065413 ], [ -58.484752000004733, -34.522089999953494 ], [ -58.485288999587624, -34.520910000396157 ], [ -58.485931999562069, -34.519751000008625 ], [ -58.486061000115001, -34.519558000101597 ], [ -58.486319000321544, -34.519042999734609 ], [ -58.486683000020378, -34.518398999714009 ], [ -58.4873490001562, -34.517198000087603 ], [ -58.488077999599966, -34.515932000161627 ], [ -58.488679000335537, -34.514623000051358 ], [ -58.488829000058274, -34.514279000375495 ], [ -58.488894000357789, -34.51419400005301 ], [ -58.489386999710234, -34.513185000287478 ], [ -58.489881000008097, -34.51228400010649 ], [ -58.490374000259862, -34.511425000063639 ], [ -58.490888999727531, -34.51061000025129 ], [ -58.491339999841102, -34.509837999723857 ], [ -58.491597000001491, -34.509407999679411 ], [ -58.491789999908519, -34.509021999865354 ], [ -58.492218999906868, -34.508271000306365 ], [ -58.492692000135662, -34.507326999941029 ], [ -58.493206999603331, -34.506361000359846 ], [ -58.493656999670748, -34.5054600001788 ], [ -58.49415099996861, -34.504494999744395 ], [ -58.494644000220376, -34.503572000347503 ], [ -58.495158999688044, -34.502627999982167 ], [ -58.495587999686393, -34.501834000238887 ], [ -58.496939999980953, -34.502478000259487 ], [ -58.497884000346289, -34.502885000142612 ], [ -58.498849999927529, -34.503293000071835 ], [ -58.499794000292866, -34.503765000254532 ], [ -58.500780999943174, -34.50419400025288 ], [ -58.501747000423677, -34.504623000251229 ], [ -58.502647999705403, -34.505116999649772 ], [ -58.503613000139808, -34.505567999763343 ], [ -58.504621999905339, -34.505996999761692 ], [ -58.505566000270676, -34.506403999644817 ], [ -58.506575000036207, -34.506833999689263 ], [ -58.507519000401487, -34.507262999687669 ], [ -58.508440999752281, -34.507734999870308 ], [ -58.509450000417132, -34.508163999868657 ], [ -58.510415999998372, -34.508592999867005 ], [ -58.511338000248486, -34.509021999865354 ], [ -58.512281999714503, -34.509472999978925 ], [ -58.513227000125937, -34.509901999977274 ], [ -58.512776000012366, -34.510653000435582 ], [ -58.512154000106989, -34.511532999648182 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 26.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -59.096998874786429, -35.199784429366268 ], [ -59.097300751185799, -35.186664416625 ], [ -59.095110212185332, -35.186638615223345 ], [ -59.095200517091129, -35.183986231133275 ], [ -59.09525211989444, -35.182087247971509 ], [ -59.095334684379722, -35.177391392870412 ], [ -59.087454936314465, -35.177267546142467 ], [ -59.087568462481741, -35.174506796165446 ], [ -59.087625225565368, -35.171619619320325 ], [ -59.08788839986228, -35.161812506551477 ], [ -59.089348759195921, -35.161812506551477 ], [ -59.089415842840218, -35.158644094428311 ], [ -59.089436483961549, -35.157710083688421 ], [ -59.092073387210633, -35.157761686491725 ], [ -59.094715450740033, -35.157792648173718 ], [ -59.094761893263019, -35.155460201464152 ], [ -59.094777374103998, -35.152807817374082 ], [ -59.093600830188556, -35.152436277190262 ], [ -59.093373777853998, -35.152389834667282 ], [ -59.093353136732674, -35.152343392144303 ], [ -59.093389258694991, -35.152209224855703 ], [ -59.09348214374095, -35.152116339809744 ], [ -59.093554387665577, -35.152100858968751 ], [ -59.093476983460619, -35.151197809910848 ], [ -59.089534529287818, -35.150625018794116 ], [ -59.088027727431204, -35.150449569262868 ], [ -59.085060566240948, -35.14789007021875 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 25.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.260876, -34.723937 ], [ -58.260612, -34.723787 ], [ -58.260131, -34.723545 ], [ -58.259575, -34.724308 ], [ -58.259026, -34.725058 ], [ -58.258174, -34.724614 ], [ -58.258083, -34.724596 ], [ -58.257989, -34.724567 ], [ -58.257129, -34.724131 ], [ -58.256531, -34.724889 ], [ -58.255938, -34.725672 ], [ -58.255347, -34.726447 ], [ -58.254717, -34.727297 ], [ -58.254137, -34.7281 ], [ -58.253474, -34.728911 ], [ -58.252962, -34.729614 ], [ -58.25219, -34.730678 ], [ -58.251786, -34.731236 ], [ -58.251296, -34.731906 ], [ -58.251147, -34.732105 ], [ -58.251034, -34.732221 ], [ -58.250974, -34.732287 ], [ -58.25052, -34.732887 ], [ -58.250452, -34.732945 ], [ -58.250332, -34.732903 ], [ -58.249518, -34.732488 ], [ -58.248914, -34.732181 ], [ -58.248442, -34.731931 ], [ -58.248367, -34.731895 ], [ -58.248303, -34.73186 ], [ -58.24776, -34.731578 ], [ -58.247465, -34.731428 ], [ -58.24665, -34.731015 ], [ -58.246515, -34.730966 ], [ -58.246347, -34.731031 ], [ -58.245613, -34.731804 ], [ -58.244872, -34.732583 ], [ -58.244238, -34.733219 ], [ -58.243576, -34.733883 ], [ -58.242481, -34.734983 ], [ -58.241539, -34.736038 ], [ -58.240624, -34.736948 ], [ -58.240025, -34.737556 ], [ -58.239442, -34.738143 ], [ -58.238865, -34.738731 ], [ -58.238224, -34.739384 ], [ -58.238198, -34.739395 ], [ -58.237154, -34.739878 ], [ -58.236069, -34.740348 ], [ -58.235135, -34.740772 ], [ -58.234213, -34.74119 ], [ -58.233986, -34.741284 ], [ -58.233556, -34.741524 ], [ -58.233107, -34.741787 ], [ -58.232645, -34.74205 ], [ -58.232254, -34.742293 ], [ -58.231409, -34.742853 ], [ -58.230627, -34.743378 ], [ -58.229652, -34.744 ], [ -58.229506, -34.744091 ], [ -58.229347, -34.744185 ], [ -58.228362, -34.745052 ], [ -58.227722, -34.745594 ], [ -58.227102, -34.746119 ], [ -58.226407, -34.746704 ], [ -58.225399, -34.747594 ], [ -58.225353, -34.747624 ], [ -58.225298, -34.747663 ], [ -58.223978, -34.748804 ], [ -58.223317, -34.749359 ], [ -58.222613, -34.74995 ], [ -58.220626, -34.750472 ], [ -58.219487999999899, -34.750692 ], [ -58.218642, -34.751034 ], [ -58.217168, -34.751676 ], [ -58.215669, -34.752413 ], [ -58.214225, -34.753039 ], [ -58.212853, -34.753713 ], [ -58.21201, -34.754121 ], [ -58.211332, -34.754444 ], [ -58.209895, -34.755132 ], [ -58.208851, -34.75599 ], [ -58.207879, -34.756843 ], [ -58.206879999999899, -34.757767 ], [ -58.207776, -34.758256 ], [ -58.208659, -34.75868 ], [ -58.209592, -34.759168 ], [ -58.210817, -34.759792 ], [ -58.212022, -34.760354 ], [ -58.213276, -34.76098 ], [ -58.212628, -34.761793 ], [ -58.212469, -34.76197 ], [ -58.21096, -34.762706 ], [ -58.209685, -34.76333 ], [ -58.209079, -34.76359 ], [ -58.208016, -34.764079 ], [ -58.207023, -34.764557 ], [ -58.203569, -34.766241 ], [ -58.202902, -34.765919 ], [ -58.202004, -34.765437 ], [ -58.201132, -34.764975 ], [ -58.200599, -34.765664 ], [ -58.200025, -34.766359 ], [ -58.200619, -34.766658 ], [ -58.200928, -34.766802 ], [ -58.201575, -34.767142 ], [ -58.201906, -34.767317 ], [ -58.202854, -34.767802 ], [ -58.203757, -34.768287 ], [ -58.204679, -34.768754 ], [ -58.203736, -34.769897 ], [ -58.202865, -34.769419 ], [ -58.201932, -34.768953 ], [ -58.201074, -34.770038 ], [ -58.200166, -34.771163 ], [ -58.201118, -34.771617 ], [ -58.20204, -34.772065 ], [ -58.203003, -34.772573 ], [ -58.203905, -34.77305 ], [ -58.204503, -34.773365 ], [ -58.204824, -34.773517 ], [ -58.20546, -34.773857 ], [ -58.205745, -34.773982 ], [ -58.206062, -34.774156 ], [ -58.206693, -34.774486 ], [ -58.207009, -34.774622 ], [ -58.207855, -34.773573 ], [ -58.208733, -34.772473 ], [ -58.209655, -34.771371 ], [ -58.210278, -34.771683 ], [ -58.210567, -34.771817 ], [ -58.210921, -34.77199 ], [ -58.211498, -34.77229 ], [ -58.212625, -34.772829 ], [ -58.213403, -34.773261 ], [ -58.213825, -34.773447 ], [ -58.214233, -34.773669 ], [ -58.214585, -34.773868 ], [ -58.214966, -34.774076 ], [ -58.215701, -34.774456 ], [ -58.217093, -34.775134 ], [ -58.217774, -34.775484 ], [ -58.218384, -34.775801 ], [ -58.218675, -34.775986 ], [ -58.219544, -34.776453 ], [ -58.220635, -34.776993 ], [ -58.22173, -34.777582 ], [ -58.222623, -34.778054 ], [ -58.223559, -34.778545 ], [ -58.223822, -34.77868 ], [ -58.224254, -34.778894 ], [ -58.224637, -34.779091 ], [ -58.225768, -34.779675 ], [ -58.226705, -34.780162 ], [ -58.227472, -34.780602 ], [ -58.228247, -34.78099 ], [ -58.229019, -34.781398 ], [ -58.22974, -34.781808 ], [ -58.230368, -34.782139 ], [ -58.232099, -34.783079 ], [ -58.232948, -34.783548 ], [ -58.236604, -34.78552 ], [ -58.236902, -34.78565 ], [ -58.237595, -34.786048 ], [ -58.238004, -34.786273 ], [ -58.238738, -34.786646 ], [ -58.23968, -34.787192 ], [ -58.240436, -34.787585 ], [ -58.241397, -34.788096 ], [ -58.242379, -34.788619 ], [ -58.243117, -34.789035 ], [ -58.243462, -34.789202 ], [ -58.245256, -34.790161 ], [ -58.244503, -34.790558 ], [ -58.243453, -34.791118 ], [ -58.243156, -34.791286 ], [ -58.242213, -34.791814 ], [ -58.241072, -34.792397 ], [ -58.240006, -34.793011 ], [ -58.239322999999899, -34.793381 ], [ -58.23859, -34.793767 ], [ -58.23791, -34.794138 ], [ -58.237231, -34.794523 ], [ -58.236524, -34.794866 ], [ -58.235814, -34.795278 ], [ -58.235131, -34.795584 ], [ -58.23447, -34.795993 ], [ -58.2337, -34.796378 ], [ -58.233126, -34.796687 ], [ -58.23221, -34.797133 ], [ -58.231481, -34.797553 ], [ -58.231176, -34.797748 ], [ -58.230401, -34.798157 ], [ -58.229714, -34.798542 ], [ -58.22887, -34.79895 ], [ -58.227973, -34.799469 ], [ -58.226984, -34.799992 ], [ -58.226282, -34.800401 ], [ -58.225617, -34.800782 ], [ -58.22425, -34.801495 ], [ -58.223215, -34.802061 ], [ -58.222441, -34.802469 ], [ -58.221452, -34.802992 ], [ -58.222608, -34.804038 ], [ -58.223772, -34.805129 ], [ -58.224809, -34.805999 ], [ -58.225256, -34.806426 ], [ -58.225444, -34.806678 ], [ -58.225976, -34.807137 ], [ -58.226553, -34.807648 ], [ -58.22777, -34.808769 ], [ -58.228624, -34.80949 ], [ -58.229664, -34.810422 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 23.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619781297999907, -34.648061803999951 ], [ -58.619781493999938, -34.648067473999902 ], [ -58.620948791999922, -34.648002624999947 ], [ -58.62107467699991, -34.64805221599994 ], [ -58.62107467699991, -34.64797210699993 ], [ -58.621074367999938, -34.647963714999946 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621048522999899, -34.643482177999942 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.62562455199992, -34.639732575999915 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.630772407999928, -34.629099930999928 ], [ -58.630854879999902, -34.629165716999921 ], [ -58.632231521999927, -34.628916477999951 ], [ -58.632275204999928, -34.629059840999957 ], [ -58.632450520999953, -34.629635201999918 ], [ -58.632454955999947, -34.629687745999945 ], [ -58.632580840999935, -34.630640498999924 ], [ -58.632714947999943, -34.631641993999949 ], [ -58.632756176999919, -34.631989964999946 ], [ -58.632868025999926, -34.631978989999936 ], [ -58.633568083999933, -34.631910298999912 ], [ -58.634658634999937, -34.631853398999908 ], [ -58.635733635999941, -34.631758559999923 ], [ -58.637544307999917, -34.631591639999954 ], [ -58.63753825099991, -34.631523742999946 ], [ -58.637506738999946, -34.631170503999954 ], [ -58.63764614999991, -34.63116440899995 ], [ -58.639588833999937, -34.631079467999939 ], [ -58.639714658999935, -34.631071880999912 ], [ -58.641501541999901, -34.630895877999933 ], [ -58.643373264999923, -34.630793577999953 ], [ -58.6434818379999, -34.630788631999906 ], [ -58.645143404999942, -34.630658742999913 ], [ -58.645955639999954, -34.630590932999951 ], [ -58.646986972999912, -34.630483481999931 ], [ -58.646987682999907, -34.630487638999909 ], [ -58.64705246199992, -34.630866748999949 ], [ -58.64707730799995, -34.630865701999937 ], [ -58.647839219999923, -34.63083359299992 ], [ -58.648867567999901, -34.630850727999928 ], [ -58.650370823999936, -34.630857744999958 ], [ -58.651679545999912, -34.630860528999904 ], [ -58.651989622999906, -34.630751611999926 ], [ -58.652035724999905, -34.630742374999954 ], [ -58.652428644999929, -34.630663643999924 ], [ -58.653053970999906, -34.630317066999908 ], [ -58.653202178999948, -34.63019167899995 ], [ -58.65341430299992, -34.630127066999933 ], [ -58.653626198999916, -34.630101000999957 ], [ -58.653769473999944, -34.630131748999929 ], [ -58.653859889999922, -34.630151152999929 ], [ -58.653879208999911, -34.63015529899991 ], [ -58.653900227999941, -34.630163265999954 ], [ -58.654075384999942, -34.630229655999926 ], [ -58.654332746999955, -34.630467640999939 ], [ -58.654456331999938, -34.630691388999935 ], [ -58.654501695999954, -34.630822236999904 ], [ -58.654554606999909, -34.630952991999948 ], [ -58.654776622999918, -34.63118679899992 ], [ -58.654919425999935, -34.631293926999945 ], [ -58.655091309999932, -34.631363156999953 ], [ -58.655322791999936, -34.631405375999918 ], [ -58.65544312499992, -34.631424097999911 ], [ -58.65554650699994, -34.631440181999949 ], [ -58.656508397999914, -34.631532413999935 ], [ -58.657367978999901, -34.631668975999958 ], [ -58.658892022999908, -34.631871044999912 ], [ -58.660533563999934, -34.632088897999949 ], [ -58.661829178999938, -34.632268561999922 ], [ -58.662540275999902, -34.632367435999925 ], [ -58.663741132999917, -34.63245788699993 ], [ -58.66388874799992, -34.632441448999941 ], [ -58.664024902999927, -34.632382862999918 ], [ -58.66418240999991, -34.632278048999922 ], [ -58.664379119999921, -34.63205008999995 ], [ -58.664752895999925, -34.631552083999907 ], [ -58.664820003999921, -34.631467126999951 ], [ -58.664958555999931, -34.631289629999912 ], [ -58.665184191999913, -34.631142410999928 ], [ -58.665251688999945, -34.631122924999943 ], [ -58.6654015229999, -34.631079668999917 ], [ -58.665559514999927, -34.631047993999914 ], [ -58.66570149699993, -34.631062468999914 ], [ -58.665827564999915, -34.631103904999918 ], [ -58.665941662999899, -34.631172277999951 ], [ -58.666216725999902, -34.63140851199995 ], [ -58.666538990999925, -34.631675155999915 ], [ -58.666951359999928, -34.632075559999919 ], [ -58.667018180999946, -34.632128873999932 ], [ -58.667132428999935, -34.632166545999951 ], [ -58.667254569999955, -34.63220416799993 ], [ -58.667391595999902, -34.632214131999945 ], [ -58.667400516999919, -34.632214780999902 ], [ -58.667566249999936, -34.63221375899991 ], [ -58.667826913999932, -34.632166100999939 ], [ -58.669719827999927, -34.63183373499993 ], [ -58.670169791999911, -34.631755766999902 ], [ -58.671204645999921, -34.631574267999952 ], [ -58.6734254939999, -34.631164905999924 ], [ -58.674443652999912, -34.631022619999953 ], [ -58.6745750259999, -34.631006516999946 ], [ -58.674596371999939, -34.630989688999932 ], [ -58.675160608999931, -34.630544870999927 ], [ -58.675933847999943, -34.629861916999914 ], [ -58.676809023999908, -34.629166727999916 ], [ -58.6769399289999, -34.629279077999911 ], [ -58.677448331999926, -34.629715417999932 ], [ -58.677991744999929, -34.630201166999939 ], [ -58.678158218999954, -34.630326926999942 ], [ -58.678336492999904, -34.630396486999928 ], [ -58.678847947999941, -34.630326682999907 ], [ -58.679816077999931, -34.630194551999921 ], [ -58.679944884999941, -34.630179925999926 ], [ -58.68201277299994, -34.629817876999937 ], [ -58.683583178999925, -34.62956799199992 ], [ -58.686469354999929, -34.629120635999925 ], [ -58.687228860999937, -34.628997695999942 ], [ -58.687528921999899, -34.628969827999924 ], [ -58.688787967999929, -34.628820225999903 ], [ -58.690798912999924, -34.628538454999955 ], [ -58.69094608499995, -34.628466686999957 ], [ -58.691739277999943, -34.628437039999937 ], [ -58.692457664999949, -34.628365661999908 ], [ -58.693476957999906, -34.628263227999923 ], [ -58.69515423799993, -34.628121247999957 ], [ -58.695331648999911, -34.628093207999939 ], [ -58.69647737899993, -34.627974107999933 ], [ -58.699194117999923, -34.62788327699991 ], [ -58.70079241399992, -34.627826349999907 ], [ -58.700933711999937, -34.627737760999935 ], [ -58.703241745999946, -34.627648422999926 ], [ -58.703443653999955, -34.627634766999904 ], [ -58.703446242999917, -34.627634255999908 ], [ -58.703835729999923, -34.627557415999945 ], [ -58.704067889999919, -34.627504862999956 ], [ -58.704223688999946, -34.627429947999929 ], [ -58.704861472999937, -34.627022097999941 ], [ -58.705089466999937, -34.626911712999913 ], [ -58.705337082999904, -34.626893725999935 ], [ -58.705539450999936, -34.62697948999994 ], [ -58.705229291999899, -34.626717350999911 ], [ -58.705099014999917, -34.626602940999931 ], [ -58.705127948999916, -34.62658014099992 ], [ -58.70609855899994, -34.625815314999954 ], [ -58.707178687999942, -34.624976247999939 ], [ -58.708323527999937, -34.624073320999912 ], [ -58.709141599999953, -34.623403349999933 ], [ -58.709931418999929, -34.622777828999915 ], [ -58.710764699999913, -34.622141317999933 ], [ -58.711629620999929, -34.621444194999924 ], [ -58.71274797399991, -34.620636136999906 ], [ -58.712815776999946, -34.620610221999925 ], [ -58.71341545599995, -34.620339872999921 ], [ -58.714062957999943, -34.619859512999938 ], [ -58.713932032999935, -34.61974661499994 ], [ -58.713006502999917, -34.618948520999936 ], [ -58.71284916399992, -34.61879356299994 ], [ -58.713009369999952, -34.618657992999943 ], [ -58.713347615999908, -34.618371762999914 ], [ -58.713834825999925, -34.617961477999927 ], [ -58.713656547999904, -34.617807797999944 ], [ -58.711647982999921, -34.616076359999909 ], [ -58.710524817999953, -34.61511308799993 ], [ -58.710517422999942, -34.615101741999922 ], [ -58.709449027999938, -34.614215793999904 ], [ -58.709411727999907, -34.614243343999931 ], [ -58.70901495499993, -34.614536397999927 ], [ -58.708445769999912, -34.614984345999915 ], [ -58.707740906999902, -34.61554672099993 ], [ -58.706980380999937, -34.616115586999911 ], [ -58.706783276999943, -34.616266764999921 ], [ -58.706204774999946, -34.616700108999908 ], [ -58.70587460999991, -34.616945754999904 ], [ -58.705786854999928, -34.616867854999953 ], [ -58.704964612999902, -34.616137950999928 ], [ -58.704129349999903, -34.615399713999921 ], [ -58.703289661999918, -34.614647391999938 ], [ -58.702435995999906, -34.613891981999927 ], [ -58.701569510999946, -34.613130468999941 ], [ -58.70072435499992, -34.612360289999913 ], [ -58.699817134999932, -34.611557802999926 ], [ -58.699237204999918, -34.611026686999935 ], [ -58.698675851999951, -34.61051466899994 ], [ -58.698593883999933, -34.610579075999908 ], [ -58.697569217999899, -34.611384215999919 ], [ -58.69643872599994, -34.612256745999957 ], [ -58.695478485999899, -34.613000718999956 ], [ -58.695408592999911, -34.612937012999907 ], [ -58.694804217999945, -34.61238613699993 ], [ -58.694197703999919, -34.611844448999932 ], [ -58.693417996999926, -34.611126215999946 ], [ -58.692702678999922, -34.610487883999951 ], [ -58.69187754099994, -34.609765215999914 ], [ -58.691416451999942, -34.609343700999943 ], [ -58.691376929999933, -34.609354510999935 ], [ -58.690212912999925, -34.609672892999924 ], [ -58.689800411999954, -34.610002353999903 ], [ -58.689742564999904, -34.609951845999944 ], [ -58.688382928999943, -34.608764700999927 ], [ -58.687510847999931, -34.607972251999911 ], [ -58.687080744999946, -34.607583366999904 ], [ -58.68665799799993, -34.607194306999929 ], [ -58.686419494999939, -34.606984954999916 ], [ -58.6857156559999, -34.606357025999955 ], [ -58.684531023999909, -34.605299784999943 ], [ -58.684530424999934, -34.605299249999916 ], [ -58.684409287999927, -34.605191139999931 ], [ -58.684394089999955, -34.605177401999924 ], [ -58.683875678999925, -34.60470879099995 ], [ -58.683248561999903, -34.604146637999918 ], [ -58.680243394999934, -34.601472176999948 ], [ -58.671194739999919, -34.593321614999923 ], [ -58.670066075999955, -34.592382108999914 ], [ -58.669185383999945, -34.59159539299992 ], [ -58.668392575999917, -34.590801078999903 ], [ -58.666787212999907, -34.589494920999925 ], [ -58.665778464999903, -34.588656345999937 ], [ -58.66522288099992, -34.588195302999907 ], [ -58.66510859899995, -34.588168789999941 ], [ -58.665020980999941, -34.588149863999945 ], [ -58.664286605999905, -34.587505847999921 ], [ -58.663578844999904, -34.586896151999952 ], [ -58.66297383999995, -34.586366459999908 ], [ -58.662848239999903, -34.586275042999944 ], [ -58.662155581999912, -34.585745519999932 ], [ -58.661744692999946, -34.585352942999918 ], [ -58.66060312399992, -34.584381265999923 ], [ -58.6599067759999, -34.583783005999919 ], [ -58.659206604999952, -34.583192390999955 ], [ -58.658445564999909, -34.582540787999903 ], [ -58.657985133999944, -34.582148305999908 ], [ -58.657000335999953, -34.580878428999938 ], [ -58.656296909999924, -34.579970828999933 ], [ -58.655680942999936, -34.579173814999933 ], [ -58.655565947999946, -34.579027319999909 ], [ -58.655399563999936, -34.578815358999918 ], [ -58.655399630999909, -34.578777166999942 ], [ -58.654970015999936, -34.578197484999919 ], [ -58.654821482999921, -34.57814430399992 ], [ -58.654718922999905, -34.577953543999911 ], [ -58.654151979999938, -34.577450511999928 ], [ -58.65339477099991, -34.576787443999933 ], [ -58.652629967999928, -34.576109113999905 ], [ -58.652534633999949, -34.57618612899995 ], [ -58.652198721999923, -34.576457495999932 ], [ -58.652090422999947, -34.576360860999955 ], [ -58.651570903999925, -34.575897294999947 ], [ -58.651478418999943, -34.57590519699994 ], [ -58.650884834999943, -34.575955912999916 ], [ -58.649520686999949, -34.576089153999931 ], [ -58.64793285199994, -34.576186684999925 ], [ -58.64786274699992, -34.576103003999947 ], [ -58.647834231999923, -34.576068965999923 ], [ -58.647762180999905, -34.575977811999905 ], [ -58.647135699999922, -34.575435445999915 ], [ -58.646482616999947, -34.574877941999944 ], [ -58.646322778999945, -34.574859508999907 ], [ -58.646270387999948, -34.574900462999949 ], [ -58.645735072999912, -34.575318918999926 ], [ -58.645486962999939, -34.575529400999926 ], [ -58.64461308999995, -34.576195628999926 ], [ -58.643212539999922, -34.577282937999939 ], [ -58.642407263999928, -34.577926045999902 ], [ -58.641727867999919, -34.57848866799992 ], [ -58.640949253999906, -34.57912786299994 ], [ -58.640784960999952, -34.579253833999928 ], [ -58.639432322999937, -34.580290964999904 ], [ -58.638254710999945, -34.581200622999916 ], [ -58.63707329999994, -34.582106479999936 ], [ -58.635555649999901, -34.583267552999928 ], [ -58.633841815999915, -34.584642163999945 ], [ -58.631569660999901, -34.586450486999922 ], [ -58.630449660999943, -34.587335496999913 ], [ -58.630241105999914, -34.587495799999942 ], [ -58.630329884999924, -34.587575872999935 ], [ -58.630344203999925, -34.587588787999948 ], [ -58.630500667999911, -34.587729907999915 ], [ -58.631139767999912, -34.588309666999919 ], [ -58.631729961999952, -34.588839530999905 ], [ -58.632481061999954, -34.589511193999954 ], [ -58.633201295999925, -34.590130706999958 ], [ -58.6336076259999, -34.590497392999907 ], [ -58.633810954999944, -34.590680884999927 ], [ -58.634505641999908, -34.591298694999921 ], [ -58.634869845999901, -34.591609358999904 ], [ -58.635387419999915, -34.592056475999925 ], [ -58.636265431999902, -34.592829617999939 ], [ -58.636257702999899, -34.592919577999908 ], [ -58.636149831999944, -34.594175113999938 ], [ -58.636048326999912, -34.595624509999936 ], [ -58.635942224999951, -34.596775796999907 ], [ -58.635917414999938, -34.597014186999957 ], [ -58.635836354999924, -34.597836937999944 ], [ -58.635731128999907, -34.598879592999936 ], [ -58.635637647999943, -34.599872963999928 ], [ -58.635563475999902, -34.600832222999941 ], [ -58.635508586999947, -34.601754434999918 ], [ -58.635388574999922, -34.602651391999927 ], [ -58.635302796999952, -34.603582351999933 ], [ -58.635285821999901, -34.603868422999938 ], [ -58.63523852499992, -34.604760911999904 ], [ -58.635213374999921, -34.604934504999903 ], [ -58.635213024999928, -34.604936918999954 ], [ -58.634946413999899, -34.60677712599994 ], [ -58.634847772999933, -34.608182580999937 ], [ -58.634728578999955, -34.609775244999923 ], [ -58.63472846399992, -34.609790511999904 ], [ -58.634690847999934, -34.610718308999935 ], [ -58.634586992999914, -34.611799399999938 ], [ -58.634520422999913, -34.612982883999905 ], [ -58.63451793899992, -34.613439940999911 ], [ -58.634414635999917, -34.614145466999958 ], [ -58.634275333999938, -34.61540692299991 ], [ -58.634233990999917, -34.615813517999925 ], [ -58.634118494999939, -34.616914419999944 ], [ -58.634099263999929, -34.617181960999915 ], [ -58.634000719999904, -34.618232501999955 ], [ -58.633974186999922, -34.618511373999922 ], [ -58.633886696999923, -34.618767516999924 ], [ -58.6336908749999, -34.62074072899992 ], [ -58.633685763999949, -34.620792228999903 ], [ -58.633617298999923, -34.621006303999934 ], [ -58.633381484999916, -34.621759376999933 ], [ -58.63311522999993, -34.62258128499991 ], [ -58.632883160999938, -34.623196858999904 ], [ -58.632723377999923, -34.623625079999954 ], [ -58.632369560999905, -34.624550368999905 ], [ -58.632057599999939, -34.625383872999919 ], [ -58.631760920999909, -34.626308987999948 ], [ -58.63139951799991, -34.627303042999927 ], [ -58.631148434999943, -34.627987417999918 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629316186999915, -34.633326158999921 ], [ -58.630438491999939, -34.633288180999955 ], [ -58.630462162999947, -34.633480061999933 ], [ -58.630569457999911, -34.634349822999923 ], [ -58.6306953429999, -34.635372161999953 ], [ -58.630521907999935, -34.635385622999934 ], [ -58.629417418999935, -34.635471343999939 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628256515999908, -34.635416497999927 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.62896801799991, -34.633309831999952 ], [ -58.628842536999912, -34.63331053099995 ], [ -58.628768327999921, -34.63330815899991 ], [ -58.62692790299991, -34.633249333999913 ], [ -58.625856882999926, -34.633246762999931 ], [ -58.624872238999899, -34.633232291999946 ], [ -58.623799604999931, -34.63319918499991 ], [ -58.62245650999995, -34.633203561999949 ], [ -58.621884238999939, -34.633211304999918 ], [ -58.621785679999903, -34.633218862999911 ], [ -58.621681461999913, -34.633226854999918 ], [ -58.620775591999916, -34.633296320999932 ], [ -58.620706788999939, -34.633301596999956 ], [ -58.619195857999955, -34.633628358999943 ], [ -58.618421066999929, -34.633694905999903 ], [ -58.617463977999932, -34.63377911799995 ], [ -58.616413382999951, -34.63373889099995 ], [ -58.615968309999914, -34.633721848999926 ], [ -58.615640166999924, -34.633709284999952 ], [ -58.614677428999926, -34.633838653999931 ], [ -58.61369323699995, -34.633979796999938 ], [ -58.612739562999934, -34.634117125999921 ], [ -58.612442440999928, -34.634160536999957 ], [ -58.611564635999912, -34.634288787999935 ], [ -58.610450744999923, -34.634456634999935 ], [ -58.610038756999927, -34.634525298999904 ], [ -58.609497069999918, -34.634609221999938 ], [ -58.607486724999944, -34.634918212999935 ], [ -58.606380462999937, -34.635089873999902 ], [ -58.605869292999955, -34.635169982999912 ], [ -58.604259490999937, -34.635414123999908 ], [ -58.603069304999906, -34.635593413999914 ], [ -58.602718485999901, -34.635690067999917 ], [ -58.602717089999942, -34.635690452999938 ], [ -58.602695464999954, -34.635696410999913 ], [ -58.60268137199995, -34.63569605899994 ], [ -58.602680763999899, -34.635696043999928 ], [ -58.602514662999909, -34.635691890999908 ], [ -58.601554997999926, -34.635667898999941 ], [ -58.601064066999925, -34.635655625999902 ], [ -58.60101699799992, -34.635654448999958 ], [ -58.601003475999903, -34.635653572999956 ], [ -58.600754603999917, -34.635637448999944 ], [ -58.59966278099995, -34.63556671099991 ], [ -58.599273681999932, -34.635555266999916 ], [ -58.598441426999955, -34.635549446999903 ], [ -58.598182677999944, -34.635547637999935 ], [ -58.597442626999907, -34.635524749999945 ], [ -58.597233856999935, -34.635503506999953 ], [ -58.596355437999932, -34.635414123999908 ], [ -58.595252990999938, -34.635391234999929 ], [ -58.594150542999955, -34.63536834699994 ], [ -58.593040465999934, -34.635349273999907 ], [ -58.592658308999944, -34.635370348999913 ], [ -58.592513538999924, -34.635378331999902 ], [ -58.592002868999941, -34.635406493999938 ], [ -58.591588808999916, -34.635367507999945 ], [ -58.591495599999917, -34.635358731999929 ], [ -58.590827941999919, -34.635295867999957 ], [ -58.589725493999936, -34.635272979999911 ], [ -58.58860397299992, -34.635242461999951 ], [ -58.58753585799991, -34.635219573999905 ], [ -58.587152777999904, -34.635315343999935 ], [ -58.587151864999953, -34.635315571999911 ], [ -58.586879729999907, -34.635383605999948 ], [ -58.586841789999937, -34.635418307999942 ], [ -58.586566924999943, -34.635669707999909 ], [ -58.585895537999932, -34.63617324799992 ], [ -58.584777831999929, -34.637020110999913 ], [ -58.583808898999905, -34.637744903999931 ], [ -58.582603454999912, -34.638607024999942 ], [ -58.580493926999907, -34.640186309999933 ], [ -58.579597472999922, -34.640861510999912 ], [ -58.578868865999937, -34.641418456999929 ], [ -58.57884634699991, -34.641397626999947 ], [ -58.578840491999927, -34.641392210999925 ], [ -58.578258513999913, -34.640853881999931 ], [ -58.578010558999949, -34.640636443999938 ], [ -58.578024149999919, -34.640576256999907 ], [ -58.578197478999925, -34.639808654999911 ], [ -58.578388213999915, -34.638961791999918 ], [ -58.578491210999914, -34.638355254999908 ], [ -58.578552245999902, -34.638252257999909 ], [ -58.578640145999941, -34.638247340999953 ], [ -58.579097747999924, -34.638221740999938 ], [ -58.580505370999902, -34.63814926099991 ], [ -58.580489063999948, -34.637939605999918 ], [ -58.580425261999949, -34.637119318999908 ], [ -58.580356597999923, -34.636114201999931 ], [ -58.580276488999914, -34.635109176999947 ], [ -58.580188750999923, -34.633857726999906 ], [ -58.580097197999919, -34.632648467999957 ], [ -58.58005142199994, -34.631832122999924 ], [ -58.580112456999927, -34.631763457999909 ], [ -58.579906463999919, -34.631698607999908 ], [ -58.579839525999944, -34.631667107999931 ], [ -58.579776763999917, -34.631637572999921 ], [ -58.579643249999947, -34.631599425999923 ], [ -58.579505919999917, -34.631576537999933 ], [ -58.578643798999906, -34.631591796999942 ], [ -58.577205657999912, -34.631595611999956 ], [ -58.576332091999916, -34.631610869999918 ], [ -58.575744628999928, -34.631584166999914 ], [ -58.575309752999942, -34.631599425999923 ], [ -58.575271224999938, -34.631560897999918 ], [ -58.575058569999953, -34.631348242999934 ], [ -58.574923671999954, -34.631213344999935 ], [ -58.574838414999931, -34.631128087999912 ], [ -58.574649810999915, -34.630939483999953 ], [ -58.57478834199992, -34.630941913999948 ], [ -58.575302123999904, -34.630950927999947 ], [ -58.575473784999929, -34.630950927999947 ], [ -58.576236724999944, -34.630916594999917 ], [ -58.576259580999931, -34.630884545999947 ], [ -58.576938628999926, -34.629932403999931 ], [ -58.576948237999943, -34.629946405999931 ], [ -58.577030942999954, -34.630066917999955 ], [ -58.577072143999942, -34.630126952999944 ], [ -58.5771636959999, -34.630901336999955 ], [ -58.577177515999949, -34.631129998999938 ], [ -58.577183954999953, -34.631236534999914 ], [ -58.577205657999912, -34.631595611999956 ], [ -58.577145522999899, -34.631596661999936 ], [ -58.576332091999916, -34.631610869999918 ], [ -58.575744628999928, -34.631584166999914 ], [ -58.575309752999942, -34.631599425999923 ], [ -58.575199126999905, -34.631652831999929 ], [ -58.575199029999908, -34.631662648999907 ], [ -58.575199126999905, -34.631652831999929 ], [ -58.574039458999948, -34.632358550999925 ], [ -58.573787688999914, -34.632526397999925 ], [ -58.573104857999908, -34.632942199999945 ], [ -58.572422027999949, -34.633358001999909 ], [ -58.572132110999917, -34.63352584799992 ], [ -58.571395873999904, -34.633979796999938 ], [ -58.571163176999903, -34.63410949699994 ], [ -58.570369719999917, -34.634597777999943 ], [ -58.570217132999915, -34.634693145999904 ], [ -58.569259643999942, -34.635276793999935 ], [ -58.56830978399995, -34.635860442999956 ], [ -58.567958831999931, -34.636089324999944 ], [ -58.567680358999951, -34.636249541999916 ], [ -58.566390990999935, -34.637039184999935 ], [ -58.566093444999922, -34.637214660999916 ], [ -58.565620421999938, -34.637508391999916 ], [ -58.565615150999918, -34.637567879999949 ], [ -58.565569600999936, -34.638081955999951 ], [ -58.565567881999925, -34.638101348999953 ], [ -58.565567016999921, -34.638111114999901 ], [ -58.565566143999945, -34.63811477999991 ], [ -58.565319060999911, -34.639152526999908 ], [ -58.565040587999931, -34.640293120999956 ], [ -58.564814701999921, -34.640258484999947 ], [ -58.563896178999926, -34.640117644999918 ], [ -58.563030242999901, -34.639987945999906 ], [ -58.561969756999929, -34.639862060999917 ], [ -58.561061858999949, -34.639770507999913 ], [ -58.55989074699994, -34.639656066999919 ], [ -58.558219838999946, -34.639545901999952 ], [ -58.557071442999927, -34.639469154999915 ], [ -58.554648726999915, -34.639440896999929 ], [ -58.554049716999941, -34.639442950999921 ], [ -58.553217968999945, -34.639448143999914 ], [ -58.549780194999926, -34.639537245999918 ], [ -58.549768264999955, -34.639537554999947 ], [ -58.549639167999942, -34.639540900999918 ], [ -58.549603631999901, -34.63954302399992 ], [ -58.548113026999943, -34.639632080999945 ], [ -58.546621223999921, -34.639685082999904 ], [ -58.54503785299994, -34.639733985999953 ], [ -58.543496448999917, -34.639752388999909 ], [ -58.542298427999924, -34.639779464999947 ], [ -58.540848591999918, -34.63977517099994 ], [ -58.539258608999944, -34.639671089999922 ], [ -58.537676332999922, -34.639555603999952 ], [ -58.536371691999932, -34.639463178999904 ], [ -58.535135819999937, -34.639362887999937 ], [ -58.533881193999946, -34.639270334999935 ], [ -58.530355350999912, -34.638957047999952 ], [ -58.530126766999899, -34.638937333999934 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 22.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.620187542999929, -34.648044915999947 ], [ -58.620948791999922, -34.648002624999947 ], [ -58.62107467699991, -34.64805221599994 ], [ -58.62107467699991, -34.64797210699993 ], [ -58.621070887999906, -34.647869184999934 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621092620999946, -34.643446531999928 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.631148434999943, -34.627987417999918 ], [ -58.63139951799991, -34.627303042999927 ], [ -58.631760920999909, -34.626308987999948 ], [ -58.632057599999939, -34.625383872999919 ], [ -58.632369560999905, -34.624550368999905 ], [ -58.632723377999923, -34.623625079999954 ], [ -58.632883160999938, -34.623196858999904 ], [ -58.63311522999993, -34.62258128499991 ], [ -58.633381484999916, -34.621759376999933 ], [ -58.633617298999923, -34.621006303999934 ], [ -58.633685763999949, -34.620792228999903 ], [ -58.633575188999941, -34.620559602999947 ], [ -58.633511173999921, -34.620480658999952 ], [ -58.633281711999928, -34.620197685999926 ], [ -58.632584223999913, -34.619325243999924 ], [ -58.632092556999908, -34.618719509999949 ], [ -58.631482735999953, -34.617965191999929 ], [ -58.630871683999942, -34.617193917999941 ], [ -58.630263240999909, -34.616432845999952 ], [ -58.630015053999955, -34.616124059999947 ], [ -58.629533933999937, -34.615517933999911 ], [ -58.629248700999938, -34.615171738999948 ], [ -58.62877543399992, -34.61456824499993 ], [ -58.628661835999935, -34.614427805999924 ], [ -58.62810524899993, -34.613725621999947 ], [ -58.627298751999945, -34.612712196999951 ], [ -58.627098068999942, -34.61246168699995 ], [ -58.626594470999919, -34.611831614999915 ], [ -58.6263702359999, -34.611559736999936 ], [ -58.62635967999995, -34.611546938999936 ], [ -58.626299255999925, -34.611425508999957 ], [ -58.625875124999936, -34.610909296999921 ], [ -58.625799209999911, -34.610867510999924 ], [ -58.625658737999913, -34.610799119999911 ], [ -58.624699639999903, -34.609922125999958 ], [ -58.624570561999917, -34.609857538999904 ], [ -58.624239990999911, -34.609773821999909 ], [ -58.622965640999951, -34.60878277799992 ], [ -58.622950468999932, -34.608771385999944 ], [ -58.62209019699992, -34.607909643999903 ], [ -58.621301837999908, -34.607146582999917 ], [ -58.62109765699995, -34.606808826999952 ], [ -58.620851814999924, -34.606421724999905 ], [ -58.620821803999945, -34.606304113999954 ], [ -58.620739014999913, -34.606053698999915 ], [ -58.620664176999924, -34.60570466799993 ], [ -58.620740689999934, -34.605575761999944 ], [ -58.620758338999906, -34.605547331999958 ], [ -58.620771286999911, -34.605526475999909 ], [ -58.620820818999903, -34.605499962999943 ], [ -58.62089691999995, -34.605488644999923 ], [ -58.620965361999936, -34.605492493999918 ], [ -58.62102236699991, -34.605503919999933 ], [ -58.621090808999952, -34.605507766999949 ], [ -58.6214547699999, -34.605830480999941 ], [ -58.621529782999914, -34.605774951999933 ], [ -58.622396565999907, -34.60513329999992 ], [ -58.623330716999931, -34.604447492999952 ], [ -58.623317992999944, -34.603690559999905 ], [ -58.623305398999946, -34.602941355999917 ], [ -58.623561709999933, -34.602741494999918 ], [ -58.624068182999906, -34.602346567999916 ], [ -58.624819523999918, -34.601759346999927 ], [ -58.625538241999948, -34.601192455999922 ], [ -58.626403041999936, -34.600506028999916 ], [ -58.627321599999902, -34.599784856999918 ], [ -58.628216928999905, -34.599109703999943 ], [ -58.629139380999902, -34.598377058999915 ], [ -58.628894867999918, -34.598161654999956 ], [ -58.628276265999943, -34.597616696999921 ], [ -58.627420805999918, -34.59685623699994 ], [ -58.626572909999936, -34.596122479999906 ], [ -58.625709805999918, -34.595388650999951 ], [ -58.625122434999923, -34.594893389999925 ], [ -58.625106013999925, -34.594879543999923 ], [ -58.625001647999909, -34.594667509999908 ], [ -58.624003066999933, -34.593829050999943 ], [ -58.623134401999948, -34.593081667999911 ], [ -58.622903811999947, -34.593255825999904 ], [ -58.6225282179999, -34.593539501999942 ], [ -58.621353984999928, -34.594436312999903 ], [ -58.620156873999917, -34.595348244999911 ], [ -58.61950113499995, -34.595851533999905 ], [ -58.618891229999917, -34.596431189999919 ], [ -58.618705699999907, -34.596587733999911 ], [ -58.618610832999934, -34.596667778999915 ], [ -58.618585137999901, -34.596689459999936 ], [ -58.618029668999952, -34.597158144999923 ], [ -58.617648503999931, -34.597552318999931 ], [ -58.617191075999926, -34.597988012999906 ], [ -58.616916566999919, -34.598180893999938 ], [ -58.616272235999929, -34.59863854699995 ], [ -58.615563239999915, -34.599335765999911 ], [ -58.614983794999944, -34.599839416999941 ], [ -58.614072353999916, -34.600189192999949 ], [ -58.61065299899991, -34.602005368999926 ], [ -58.610121951999929, -34.602287432999958 ], [ -58.609130527999923, -34.602800552999952 ], [ -58.60873012199994, -34.602977607999946 ], [ -58.607669951999924, -34.603383790999942 ], [ -58.6069186819999, -34.603673406999917 ], [ -58.606140698999923, -34.603951472999938 ], [ -58.605911679999906, -34.604019431999916 ], [ -58.605442002999951, -34.604129101999945 ], [ -58.604979913999955, -34.60422365799991 ], [ -58.604506264999941, -34.604291765999903 ], [ -58.603661792999901, -34.604329721999932 ], [ -58.602588110999932, -34.604394174999925 ], [ -58.598908739999899, -34.604439019999916 ], [ -58.598804728999937, -34.604440287999921 ], [ -58.597920157999908, -34.604410511999902 ], [ -58.597290709999925, -34.604389322999907 ], [ -58.597283614999924, -34.604389083999934 ], [ -58.59751259199993, -34.604170342999907 ], [ -58.597803383999917, -34.603892551999934 ], [ -58.598353528999951, -34.603367001999914 ], [ -58.598358010999902, -34.603362720999939 ], [ -58.59836508099994, -34.603355966999914 ], [ -58.598354806999907, -34.603339147999918 ], [ -58.596523426999909, -34.600341150999952 ], [ -58.595558249999954, -34.598724177999941 ], [ -58.595242832999929, -34.598168811999926 ], [ -58.594773551999936, -34.597341429999915 ], [ -58.594677454999953, -34.597190311999952 ], [ -58.594390057999931, -34.596717198999954 ], [ -58.594125413999905, -34.596274892999929 ], [ -58.593183930999942, -34.594717097999933 ], [ -58.592525977999912, -34.593571574999942 ], [ -58.592372470999919, -34.593322903999933 ], [ -58.592364755999938, -34.593322998999952 ], [ -58.592030222999938, -34.593301812999925 ], [ -58.591053645999921, -34.593239965999942 ], [ -58.591025070999933, -34.592963171999941 ], [ -58.590860254999939, -34.591366660999938 ], [ -58.590931498999907, -34.590893055999913 ], [ -58.590452255999935, -34.590153521999923 ], [ -58.590450498999928, -34.590150810999944 ], [ -58.590306481999903, -34.589928574999931 ], [ -58.590190366999934, -34.590032932999918 ], [ -58.589979266999933, -34.590191091999941 ], [ -58.589331614999935, -34.590676319999943 ], [ -58.588856317999955, -34.590225797999949 ], [ -58.588609424999902, -34.58999177499993 ], [ -58.588183965999917, -34.589569071999904 ], [ -58.588026719999903, -34.589412844999913 ], [ -58.589888540999937, -34.589362133999941 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 20.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.544469000144204, -34.52462199980539 ], [ -58.543675000400924, -34.52391400043075 ], [ -58.544083000330147, -34.523548999786442 ], [ -58.544276000237176, -34.52342000013283 ], [ -58.545069999980456, -34.522733999974093 ], [ -58.544210999937661, -34.521983000415105 ], [ -58.543675000400924, -34.52239000029823 ], [ -58.543203000218227, -34.52279800022751 ], [ -58.542193999553376, -34.523613000039859 ], [ -58.541121000433805, -34.52447200008271 ], [ -58.539876999723731, -34.52558800028595 ], [ -58.539018999727034, -34.526338999844938 ], [ -58.538202999868531, -34.527090000303247 ], [ -58.537259000402514, -34.527840999862235 ], [ -58.536443999690789, -34.527196999841635 ], [ -58.535842999854538, -34.526639000189675 ], [ -58.535285000202578, -34.526210000191327 ], [ -58.534533999744269, -34.525672999709116 ], [ -58.535328000386869, -34.524878999965836 ], [ -58.536014999692441, -34.524406999783196 ], [ -58.535092000295549, -34.523656000224207 ], [ -58.532903000073361, -34.522111000022562 ], [ -58.531937999638956, -34.521402999748602 ], [ -58.531078999596104, -34.522197000391202 ], [ -58.530499999875076, -34.522841000411802 ], [ -58.530070999876727, -34.523399000063762 ], [ -58.52968500006267, -34.523999999900013 ], [ -58.529211999833876, -34.524557999551973 ], [ -58.528612000043722, -34.52518000035667 ], [ -58.527839000369511, -34.525930999915659 ], [ -58.527989000092248, -34.52605999956927 ], [ -58.52747399972526, -34.526767999843287 ], [ -58.526830999750814, -34.527540000370664 ], [ -58.526273000098854, -34.528356000229167 ], [ -58.525800999916157, -34.52912799985728 ], [ -58.525177999964683, -34.529879000315589 ], [ -58.52462100035882, -34.530651999989743 ], [ -58.524898999689071, -34.53080199971248 ], [ -58.523290000133386, -34.531638999640052 ], [ -58.521744999931741, -34.532454000351777 ], [ -58.520586000443529, -34.531874999731428 ], [ -58.519513999571359, -34.53136000026376 ], [ -58.518999000103747, -34.531080999988092 ], [ -58.518461999621536, -34.530865999965897 ], [ -58.517368000432839, -34.530308000313937 ], [ -58.516165999860959, -34.52968600040856 ], [ -58.51504999965772, -34.529149999972503 ], [ -58.514493000051857, -34.528870999696835 ], [ -58.513977999684869, -34.528613000389612 ], [ -58.513441000102034, -34.528356000229167 ], [ -58.512689999643726, -34.527990999584915 ], [ -58.511918000015669, -34.527646999909052 ], [ -58.510737000412178, -34.527090000303247 ], [ -58.509535999886452, -34.526446000282647 ], [ -58.508956000119269, -34.526188000076104 ], [ -58.508334000213893, -34.525887999731367 ], [ -58.507174999826361, -34.525309000010282 ], [ -58.506210000291219, -34.52485799989671 ], [ -58.505931000015607, -34.52470800017403 ], [ -58.505050999903688, -34.524279000175682 ], [ -58.504729000343048, -34.524128000406847 ], [ -58.504170999791768, -34.52382800006211 ], [ -58.503505999702099, -34.523527999717373 ], [ -58.502068999984317, -34.522820000342676 ], [ -58.501060000218786, -34.522326000044814 ], [ -58.500523999782729, -34.522089999953494 ], [ -58.500136999922574, -34.521874999931242 ], [ -58.499922999946477, -34.521768000392854 ], [ -58.498827999812306, -34.521231999956797 ], [ -58.498271000206444, -34.520995999865477 ], [ -58.497776999908581, -34.5207599997741 ], [ -58.497347999910232, -34.521339000394505 ], [ -58.496939999980953, -34.521874999931242 ], [ -58.496489999913535, -34.522541000067065 ], [ -58.496081999984256, -34.523097999672927 ], [ -58.495652999985907, -34.523699000408499 ], [ -58.495245000056684, -34.52430000024475 ], [ -58.494902000426919, -34.52479399964335 ], [ -58.494451000313347, -34.525436999617796 ], [ -58.494085999669096, -34.52526599982599 ], [ -58.493699999855096, -34.525072999918962 ], [ -58.493121000134011, -34.524814999712419 ], [ -58.492284000206382, -34.52438599971407 ], [ -58.491939999631256, -34.524192999807042 ], [ -58.490888999727531, -34.523656000224207 ], [ -58.490760000073919, -34.52359199997079 ], [ -58.489837999823806, -34.523119999788094 ], [ -58.489087000264817, -34.522755000043162 ], [ -58.488443000244217, -34.522412000413453 ], [ -58.487648999601618, -34.523570999901665 ], [ -58.487090999949658, -34.524322000359973 ], [ -58.486446999929058, -34.525243999710767 ], [ -58.485738999655041, -34.526231000260395 ], [ -58.485116999749721, -34.527132999588218 ], [ -58.486361999606572, -34.527669000024275 ], [ -58.487542000063229, -34.528247999745361 ], [ -58.488700000404663, -34.52889199976596 ], [ -58.489881000008097, -34.529428000202017 ], [ -58.489323000356137, -34.530265000129589 ], [ -58.488679000335537, -34.531208999595606 ], [ -58.488099999715189, -34.532088999707526 ], [ -58.487455999694589, -34.532883000350125 ], [ -58.486919000111698, -34.533762999562725 ], [ -58.486276000137252, -34.534642999674645 ], [ -58.485696000370069, -34.53554399985569 ], [ -58.484472999729121, -34.534965000134605 ], [ -58.483272000102659, -34.534427999652394 ], [ -58.482692000335533, -34.534171000391325 ], [ -58.482070000430156, -34.533848999931365 ], [ -58.480867999858276, -34.533291000279405 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.47659099957491, -34.537488999617608 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.473294000417752, -34.542239000129712 ], [ -58.472735999866472, -34.5429899996887 ], [ -58.472157000145387, -34.543741000147008 ], [ -58.471598999594107, -34.544534999890288 ], [ -58.471062000011273, -34.545243000164305 ], [ -58.470483000290187, -34.546036999907585 ], [ -58.470011000107547, -34.546658999812962 ], [ -58.469881999554616, -34.546830999650865 ], [ -58.469431000340364, -34.54741000027127 ], [ -58.468915999973376, -34.548075000360939 ], [ -58.468766000250696, -34.548268000267967 ], [ -58.468594999559514, -34.548461000174996 ], [ -58.468229999814582, -34.548912000288567 ], [ -58.467585999794039, -34.549749000216138 ], [ -58.467370999771788, -34.550006000376584 ], [ -58.466984999957731, -34.550477999659904 ], [ -58.466727999797286, -34.550843000304155 ], [ -58.466427000305771, -34.551229000118212 ], [ -58.466126999961034, -34.551593999863144 ], [ -58.465805000400394, -34.552001999792424 ], [ -58.465203999664823, -34.552732000181607 ], [ -58.46456099969032, -34.55350399980972 ], [ -58.463595000109137, -34.554427000105932 ], [ -58.462565000274481, -34.555456999940532 ], [ -58.461943000369104, -34.556122000030257 ], [ -58.461641999978269, -34.556422000374994 ], [ -58.461235000095144, -34.556851000373342 ], [ -58.460805000050698, -34.557344999771885 ], [ -58.460591000074544, -34.557558999747982 ], [ -58.459925999984875, -34.558289000137222 ], [ -58.459089000057247, -34.559212000433433 ], [ -58.458295000313967, -34.56015599989945 ], [ -58.457543999855659, -34.56110000026473 ], [ -58.456750000112379, -34.562043999730747 ], [ -58.455913000184751, -34.563010000211307 ], [ -58.455119000441471, -34.563931999562101 ], [ -58.454281999614523, -34.564876999973535 ], [ -58.454196000145259, -34.564984000411243 ], [ -58.453360000263785, -34.56560600031662 ], [ -58.452330000429129, -34.566120999784289 ], [ -58.453874999731397, -34.566978999780986 ], [ -58.454775999912442, -34.56751600026314 ], [ -58.455677000093431, -34.568030999730809 ], [ -58.456578000274476, -34.568567000166865 ], [ -58.45743700031727, -34.569103999749757 ], [ -58.457736999762687, -34.569768999839425 ], [ -58.457866000315619, -34.570048000115094 ], [ -58.457929999669716, -34.570197999837774 ], [ -58.458230000014453, -34.570862999927442 ], [ -58.458809999781636, -34.572001000245905 ], [ -58.457929999669716, -34.572473000428602 ], [ -58.456878999765991, -34.57305200014963 ], [ -58.455956000369099, -34.573524000332327 ], [ -58.455098000372402, -34.573975000445898 ], [ -58.454175000076134, -34.574467999798287 ], [ -58.452673000058837, -34.57528399965679 ], [ -58.450978000134569, -34.575991999930807 ], [ -58.450054999838358, -34.576420999929155 ], [ -58.448896000350089, -34.576999999650241 ], [ -58.449410999817758, -34.577966000130743 ], [ -58.449990999584941, -34.57890999959676 ], [ -58.450570000205289, -34.579853999962097 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.451535999786529, -34.581399000163685 ], [ -58.451728999693557, -34.581698999609102 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.453917999915745, -34.587450000417164 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 19.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.61172, -34.646285 ], [ -58.612627, -34.645548 ], [ -58.613077, -34.645169 ], [ -58.613543, -34.644786 ], [ -58.614538, -34.645599 ], [ -58.615038, -34.646014 ], [ -58.615596, -34.646449 ], [ -58.616543, -34.647233 ], [ -58.616709, -34.647383 ], [ -58.617379, -34.647408 ], [ -58.61848, -34.647399 ], [ -58.61977, -34.647373 ], [ -58.621057, -34.647353 ], [ -58.622603, -34.64732 ], [ -58.624119, -34.647296 ], [ -58.625245, -34.647283 ], [ -58.625995, -34.647282 ], [ -58.625987, -34.648155 ], [ -58.628418, -34.647942 ], [ -58.629153, -34.647823 ], [ -58.630172, -34.647634 ], [ -58.631568999999899, -34.647382 ], [ -58.633176, -34.647084 ], [ -58.634223, -34.646898 ], [ -58.634617, -34.646834 ], [ -58.635576, -34.64666 ], [ -58.636047, -34.646559 ], [ -58.637489, -34.646311 ], [ -58.638105, -34.646191 ], [ -58.638708, -34.646083 ], [ -58.63887, -34.646054 ], [ -58.63984, -34.645883 ], [ -58.640056, -34.646896 ], [ -58.640257, -34.647864 ], [ -58.641813, -34.647618 ], [ -58.642025, -34.648624 ], [ -58.642226, -34.649635 ], [ -58.642373, -34.650314 ], [ -58.642533, -34.651074 ], [ -58.643662, -34.650877 ], [ -58.644595, -34.650715 ], [ -58.64583, -34.650513 ], [ -58.646802, -34.650349 ], [ -58.647795, -34.650184 ], [ -58.64884, -34.650015 ], [ -58.64976, -34.649864 ], [ -58.650686, -34.64972 ], [ -58.651483, -34.649595 ], [ -58.651974, -34.649518 ], [ -58.652523, -34.649427 ], [ -58.653485, -34.649263 ], [ -58.654623, -34.649074 ], [ -58.655757, -34.648878 ], [ -58.656879, -34.648686 ], [ -58.658043, -34.648453 ], [ -58.659648, -34.648356 ], [ -58.659373, -34.647253 ], [ -58.659163, -34.646353 ], [ -58.658873, -34.645419 ], [ -58.658683, -34.64452 ], [ -58.658445, -34.643572 ], [ -58.658344, -34.643114 ], [ -58.658228, -34.642671 ], [ -58.659836, -34.642401 ], [ -58.661358, -34.642135 ], [ -58.662903, -34.64186 ], [ -58.664382, -34.641608 ], [ -58.665853, -34.641356 ], [ -58.667296, -34.641106 ], [ -58.66771, -34.641041 ], [ -58.667861, -34.641036 ], [ -58.668056, -34.641028 ], [ -58.668678, -34.640982 ], [ -58.669748, -34.640916 ], [ -58.670172, -34.641337 ], [ -58.670405, -34.641164 ], [ -58.671344, -34.64197 ], [ -58.672228, -34.64276 ], [ -58.672617, -34.642459 ], [ -58.673542, -34.64175 ], [ -58.674453, -34.641049 ], [ -58.675214, -34.640469 ], [ -58.675806, -34.640034 ], [ -58.675981, -34.639885 ], [ -58.676431, -34.639545 ], [ -58.676812, -34.639225 ], [ -58.677693, -34.638557 ], [ -58.678473, -34.637944 ], [ -58.678407, -34.637807 ], [ -58.67768, -34.6372 ], [ -58.676972, -34.636577 ], [ -58.676212, -34.635955 ], [ -58.675578, -34.635439 ], [ -58.675418, -34.635337 ], [ -58.676768, -34.634323 ], [ -58.678112, -34.633321 ], [ -58.678863, -34.633939 ], [ -58.679579, -34.634583 ], [ -58.681126, -34.635954 ], [ -58.681827, -34.635432 ], [ -58.682648, -34.636165 ], [ -58.683469, -34.636937 ], [ -58.684531, -34.637899 ], [ -58.684612, -34.637982 ], [ -58.685407, -34.638674 ], [ -58.686131, -34.639304 ], [ -58.687016, -34.640109 ], [ -58.687976, -34.640914 ], [ -58.688574, -34.64046 ], [ -58.689199, -34.639988 ], [ -58.689415, -34.639819 ], [ -58.689798, -34.639538 ], [ -58.689992, -34.639377 ], [ -58.690378, -34.63907 ], [ -58.690569, -34.638924 ], [ -58.692516, -34.637465 ], [ -58.693328, -34.636797 ], [ -58.694683, -34.635756 ], [ -58.695361, -34.635226 ], [ -58.696032, -34.634712 ], [ -58.696663, -34.634233 ], [ -58.697298, -34.633742 ], [ -58.69799, -34.633221 ], [ -58.698689, -34.632689 ], [ -58.699658, -34.631933 ], [ -58.700515, -34.63127 ], [ -58.701066, -34.630821 ], [ -58.70185, -34.630235 ], [ -58.702267, -34.62991 ], [ -58.703327, -34.629109 ], [ -58.703693, -34.628991 ], [ -58.703931, -34.628863 ], [ -58.704231, -34.628703 ], [ -58.704458, -34.628392 ], [ -58.704575, -34.628194 ], [ -58.704744, -34.627986 ], [ -58.705002, -34.627645 ], [ -58.705362, -34.627429 ], [ -58.705616, -34.627327 ], [ -58.70583, -34.627183 ], [ -58.706069, -34.627424 ], [ -58.706437, -34.627742 ], [ -58.707191, -34.62781 ], [ -58.708234, -34.627809 ], [ -58.709554, -34.627832 ], [ -58.711194, -34.627839 ], [ -58.71142, -34.627834 ], [ -58.711886, -34.627844 ], [ -58.712284, -34.627821 ], [ -58.712594, -34.627742 ], [ -58.71282, -34.627582 ], [ -58.713389, -34.627137 ], [ -58.713727, -34.626924 ], [ -58.713807, -34.626855 ], [ -58.714272, -34.626796 ], [ -58.714368, -34.626914 ], [ -58.714427, -34.626924 ], [ -58.714531, -34.626918 ], [ -58.71438, -34.627043 ], [ -58.714193, -34.627204 ], [ -58.713862, -34.627446 ], [ -58.713477, -34.627768 ], [ -58.713233, -34.628092 ], [ -58.712395999999899, -34.629146 ], [ -58.712146, -34.629625 ], [ -58.712057999999899, -34.629928 ], [ -58.711593, -34.629748 ], [ -58.711096, -34.629538 ], [ -58.710373, -34.630102 ], [ -58.709708, -34.630639 ], [ -58.709523, -34.630741 ], [ -58.709102, -34.631094 ], [ -58.708786, -34.63134 ], [ -58.708363, -34.631658 ], [ -58.707751, -34.632141 ], [ -58.707016, -34.632722 ], [ -58.706151, -34.633376 ], [ -58.70523, -34.634081 ], [ -58.704344, -34.634736 ], [ -58.703413, -34.635431 ], [ -58.70254, -34.636112 ], [ -58.703578, -34.637026 ], [ -58.70459, -34.637948 ], [ -58.705426, -34.63871 ], [ -58.705491, -34.638767 ], [ -58.70632, -34.639635 ], [ -58.705646, -34.640183 ], [ -58.704993, -34.640707 ], [ -58.704351, -34.641249 ], [ -58.70375, -34.641743 ], [ -58.703116, -34.642264 ], [ -58.702445, -34.642804 ], [ -58.702415, -34.642782 ], [ -58.701614, -34.641953 ], [ -58.701518, -34.641869 ], [ -58.700565, -34.641032 ], [ -58.701232, -34.64052 ], [ -58.701934, -34.63999 ], [ -58.700919, -34.639071 ], [ -58.699905, -34.638185 ], [ -58.699871, -34.638158 ], [ -58.699194, -34.638674 ], [ -58.698522, -34.6392 ], [ -58.697843, -34.639734 ], [ -58.697225, -34.640194 ], [ -58.697155, -34.640254 ], [ -58.696361, -34.640872 ], [ -58.696256, -34.640946 ], [ -58.695398, -34.641621 ], [ -58.694424, -34.642365 ], [ -58.693824, -34.642823 ], [ -58.693602, -34.642976 ], [ -58.693204, -34.64324 ], [ -58.692388, -34.643924 ], [ -58.691376, -34.644709 ], [ -58.690527, -34.645383 ], [ -58.689485, -34.646158 ], [ -58.689133, -34.646419 ], [ -58.688902, -34.646605 ], [ -58.688384, -34.647001 ], [ -58.687703, -34.647545 ], [ -58.686926, -34.648115 ], [ -58.686272, -34.64862 ], [ -58.685988, -34.648873 ], [ -58.685719, -34.649056 ], [ -58.685017, -34.649589 ], [ -58.684396, -34.650053 ], [ -58.683569, -34.650685 ], [ -58.68262, -34.651418 ], [ -58.681798, -34.652058 ], [ -58.680696, -34.652915 ], [ -58.680348, -34.65321 ], [ -58.679903, -34.653578 ], [ -58.679534, -34.653872 ], [ -58.679196, -34.65417 ], [ -58.678762, -34.654508 ], [ -58.67848, -34.65474 ], [ -58.677947, -34.6552 ], [ -58.677305, -34.655742 ], [ -58.677093, -34.655938 ], [ -58.676583, -34.656315 ], [ -58.676213, -34.656633 ], [ -58.675303, -34.657347 ], [ -58.67469, -34.657826 ], [ -58.674367, -34.658076 ], [ -58.673466, -34.658783 ], [ -58.672788, -34.65856 ], [ -58.671337, -34.6581 ], [ -58.670962, -34.658983 ], [ -58.67057, -34.659818 ], [ -58.669134, -34.659408 ], [ -58.667842, -34.658994 ], [ -58.667704, -34.65894 ], [ -58.667618, -34.658906 ], [ -58.666236, -34.658483 ], [ -58.666035, -34.658909 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 17.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.411988999892401, -34.626481999944303 ], [ -58.413447999725349, -34.626652999736109 ], [ -58.414607000112937, -34.62678200028904 ], [ -58.415979999577303, -34.62693200001172 ], [ -58.417439000309571, -34.62710399984968 ], [ -58.417696999616794, -34.625645000016675 ], [ -58.417760999870211, -34.624506999698212 ], [ -58.417890000423142, -34.623476999863612 ], [ -58.417953999777239, -34.622575999682624 ], [ -58.418083000330171, -34.621073999665327 ], [ -58.418147999730365, -34.61989400010799 ], [ -58.418233000052851, -34.618649000251139 ], [ -58.418276000237199, -34.617447999725357 ], [ -58.418340999637394, -34.616631999866854 ], [ -58.418469000144228, -34.615773999870157 ], [ -58.418619999913005, -34.614700999851209 ], [ -58.418684000166422, -34.614271999852861 ], [ -58.419156000349119, -34.612791999950787 ], [ -58.419714000001079, -34.611118000095587 ], [ -58.419929000023274, -34.60970200044693 ], [ -58.420056999630788, -34.608520999944176 ], [ -58.419971000161468, -34.607255000018199 ], [ -58.419929000023274, -34.606676000297114 ], [ -58.419885999838982, -34.606011000207445 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.419649999747662, -34.604358999568149 ], [ -58.419578000024615, -34.603788000216014 ], [ -58.419521000094051, -34.603328999733492 ], [ -58.419328000187022, -34.602040999692349 ], [ -58.419177999564965, -34.600840000065887 ], [ -58.420594000112999, -34.600731999582081 ], [ -58.42222499978385, -34.600560999790275 ], [ -58.423768999939341, -34.600410000021441 ], [ -58.425314000140929, -34.600260000298704 ], [ -58.426571999698012, -34.600128999653577 ], [ -58.426751999904809, -34.600109999676704 ], [ -58.428210999737814, -34.599981000023092 ], [ -58.429734999870334, -34.599831000300355 ], [ -58.430184999937751, -34.599767000046995 ], [ -58.431043999980602, -34.600774999766372 ], [ -58.431108000233962, -34.600861000135012 ], [ -58.431858999792951, -34.601719000131709 ], [ -58.432545999997842, -34.601054000042041 ], [ -58.433296999556831, -34.600173999930121 ], [ -58.434069000084264, -34.599338000048647 ], [ -58.435142000103156, -34.600024000207384 ], [ -58.435935999846492, -34.599187000279812 ], [ -58.436600999936161, -34.598457999936727 ], [ -58.437481000048081, -34.597534999640459 ], [ -58.43836100016, -34.596591000174499 ], [ -58.439198000087572, -34.595689999993454 ], [ -58.440012999899977, -34.594809999881534 ], [ -58.440849999827606, -34.593951999884837 ], [ -58.441729999939525, -34.59300800041882 ], [ -58.442631000120514, -34.592041999938317 ], [ -58.443296000210182, -34.591269000264106 ], [ -58.443574999586531, -34.590991000034592 ], [ -58.444154000206879, -34.590433000382632 ], [ -58.445076999603828, -34.589595999555684 ], [ -58.445999999900039, -34.588652000089667 ], [ -58.447072999918987, -34.588223000091318 ], [ -58.448123999822712, -34.587793000046872 ], [ -58.449153999657312, -34.587364000048524 ], [ -58.450226999676261, -34.586935000050175 ], [ -58.45181500006214, -34.586334000213867 ], [ -58.452221999945323, -34.587150000072427 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.455076000257179, -34.587084999772856 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.455419999932985, -34.587214000325787 ], [ -58.455677000093431, -34.587150000072427 ], [ -58.456385000367447, -34.586870999796758 ], [ -58.457271999902844, -34.58656900025909 ], [ -58.457328999833408, -34.586549000236118 ], [ -58.458870999896703, -34.585973999800217 ], [ -58.459689999893556, -34.585669000124199 ], [ -58.459882999800584, -34.585625999939907 ], [ -58.460096999776681, -34.585625999939907 ], [ -58.460130000399147, -34.585631000170451 ], [ -58.460398000167515, -34.585669000124199 ], [ -58.460419000236641, -34.58547600021717 ], [ -58.460454000052039, -34.585311999848898 ], [ -58.460483999636836, -34.585175999872433 ], [ -58.46052599977503, -34.584854000311793 ], [ -58.460547999890252, -34.584037999553971 ], [ -58.462006999723201, -34.58397400019993 ], [ -58.462049999907549, -34.585110999572919 ], [ -58.463508999740498, -34.585047000218822 ], [ -58.464882000104183, -34.584575000036182 ], [ -58.466276999683771, -34.58412399992261 ], [ -58.467113999611342, -34.583844999646999 ], [ -58.467392999887011, -34.583759000177679 ], [ -58.468530000159319, -34.583394999579525 ], [ -58.469559999993976, -34.583050999903662 ], [ -58.470869000104244, -34.582621999905314 ], [ -58.472070999776804, -34.582236000091314 ], [ -58.473593999863169, -34.581763999908617 ], [ -58.474001999792392, -34.581614000185937 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474710000066409, -34.5808200004426 ], [ -58.475010000411146, -34.580475999867474 ], [ -58.475481999694466, -34.57994000033068 ], [ -58.477220999849237, -34.579532000401457 ], [ -58.478944000165427, -34.579138000218506 ], [ -58.479002000142145, -34.579123999572857 ], [ -58.480117000299288, -34.578395000129092 ], [ -58.481426000409556, -34.577493999948103 ], [ -58.482756999735727, -34.576591999720961 ], [ -58.484301999937315, -34.575584000001527 ], [ -58.482885000242504, -34.574747000073955 ], [ -58.483592999617201, -34.573889000077259 ], [ -58.484236999637801, -34.573073000218756 ], [ -58.485482000393972, -34.573802999708619 ], [ -58.486104000299349, -34.573030000034407 ], [ -58.487219999603269, -34.57360999980159 ], [ -58.488356999875577, -34.574210999637899 ], [ -58.489429999894526, -34.574853999612344 ], [ -58.490546000097765, -34.575455000347972 ], [ -58.491619000116714, -34.576056000184224 ], [ -58.492713000204731, -34.576657000020475 ], [ -58.493807000292804, -34.577257999856783 ], [ -58.494430000244279, -34.576464000113447 ], [ -58.495995999615673, -34.5773220001102 ], [ -58.497241000371844, -34.578009000315092 ], [ -58.498420999929181, -34.578716999689732 ], [ -58.499558000201489, -34.579424999963749 ], [ -58.500631000220437, -34.580090000053417 ], [ -58.500674000404729, -34.580154000306834 ], [ -58.501359999664203, -34.5793819997794 ], [ -58.502025999800026, -34.57867400040476 ], [ -58.502690999889694, -34.577922999946452 ], [ -58.503484999632974, -34.577042999834532 ], [ -58.504149999722642, -34.576313000344669 ], [ -58.504793999743242, -34.575605000070652 ], [ -58.505415999648619, -34.574918999911858 ], [ -58.506552999920984, -34.575605000070652 ], [ -58.507389999848556, -34.574682999820538 ], [ -58.508098000122573, -34.573889000077259 ], [ -58.509171000141521, -34.572623000151282 ], [ -58.506660000358693, -34.57137800029443 ], [ -58.507884000146476, -34.570692000135637 ], [ -58.507968999569641, -34.570648999951345 ], [ -58.508827999612436, -34.570176999768705 ], [ -58.509063999703756, -34.570048000115094 ], [ -58.509407000232841, -34.569833000092842 ], [ -58.509535999886452, -34.569746999724202 ], [ -58.509568999609598, -34.569704999586008 ], [ -58.509985999953869, -34.569168000003174 ], [ -58.510822999881498, -34.568008999615586 ], [ -58.511574000339806, -34.567323000356112 ], [ -58.512324999898794, -34.56663600015122 ], [ -58.513140999757297, -34.565906999808135 ], [ -58.513892000215606, -34.566313999691317 ], [ -58.5148139995664, -34.566851000173472 ], [ -58.515758999977834, -34.56736599964114 ], [ -58.516488000320919, -34.567794999639489 ], [ -58.517153000410588, -34.567065000149569 ], [ -58.517689999993479, -34.5664000000599 ], [ -58.518569000059244, -34.565392000340523 ], [ -58.519428000102096, -34.564403999744741 ], [ -58.520457999936696, -34.563374999956238 ], [ -58.521359000117741, -34.562387000259832 ], [ -58.522217000114438, -34.561378999641079 ], [ -58.523118000295426, -34.560369999875547 ], [ -58.523869999900512, -34.559490999809725 ], [ -58.524705999782043, -34.558568000412833 ], [ -58.524276999783694, -34.558181999699457 ], [ -58.523998000407346, -34.557903000323165 ], [ -58.523505000155581, -34.557474000324817 ], [ -58.523160999580398, -34.557151999864857 ], [ -58.522711000412301, -34.556743999935577 ], [ -58.523505000155581, -34.555799999570297 ], [ -58.524469999690666, -34.556358000121577 ], [ -58.525156999895614, -34.556507999844257 ], [ -58.525608000009129, -34.556379000190645 ], [ -58.526530000259243, -34.555521000193949 ], [ -58.527087999911203, -34.554920000357697 ], [ -58.527903999769705, -34.554255000268029 ], [ -58.528739999651236, -34.553718999831915 ], [ -58.529812999670185, -34.553288999787469 ], [ -58.530607000312784, -34.553139000064732 ], [ -58.531293999618356, -34.553161000179955 ], [ -58.53071499989727, -34.552152000414424 ], [ -58.530135000130088, -34.551143999795727 ], [ -58.529598999694031, -34.55020000032971 ], [ -58.529556000409059, -34.550091999845847 ], [ -58.528975999742556, -34.549105000195539 ], [ -58.528589999928499, -34.54844000010587 ], [ -58.528310999652888, -34.547924999738882 ], [ -58.528032000276539, -34.547431000340339 ], [ -58.527753000000928, -34.546959000157699 ], [ -58.52747399972526, -34.546443999790711 ], [ -58.528718999582111, -34.545243000164305 ], [ -58.528826000019819, -34.545156999795665 ], [ -58.529341000386808, -34.544621000258928 ], [ -58.529598999694031, -34.544384000121454 ], [ -58.529706000131739, -34.544298999798968 ], [ -58.530241999668533, -34.5437840003313 ], [ -58.530520999944144, -34.543505000055688 ], [ -58.530993000126841, -34.543032999872992 ], [ -58.531487000424704, -34.542560999690352 ], [ -58.530779000150687, -34.542003000038392 ], [ -58.529942000223116, -34.541380000086917 ], [ -58.528268000367859, -34.540350000252261 ], [ -58.528589999928499, -34.539707000277815 ], [ -58.528933999604362, -34.539106000441507 ], [ -58.529255000018168, -34.53848399963681 ], [ -58.529619999763156, -34.53777600026217 ], [ -58.529855999854476, -34.537325000148599 ], [ -58.530843000404104, -34.537947000053975 ], [ -58.531743999685773, -34.538504999705935 ], [ -58.532645999912916, -34.539084000326284 ], [ -58.533482999840544, -34.539598999793952 ], [ -58.535220999949161, -34.541380000086917 ], [ -58.535348999556618, -34.541508999740529 ], [ -58.535799999670189, -34.542046000222683 ], [ -58.536850999573915, -34.543203999664797 ], [ -58.537431000240417, -34.543805000400425 ], [ -58.537624000147446, -34.54402000042262 ], [ -58.537838000123543, -34.544213000329648 ], [ -58.538138999615114, -34.544599000143705 ], [ -58.538740000350685, -34.545221000049082 ], [ -58.539340000140839, -34.545821999885334 ], [ -58.539940999977148, -34.546465999905934 ], [ -58.540563999928622, -34.547130999995602 ], [ -58.541121000433805, -34.547709999716687 ], [ -58.541722000270056, -34.548332999668162 ], [ -58.542408999575628, -34.549105000195539 ], [ -58.542752000104656, -34.549469999940527 ], [ -58.54313899996481, -34.549855999754527 ], [ -58.543847000238827, -34.550607000212835 ], [ -58.544575999682593, -34.551466000255687 ], [ -58.545306000071832, -34.552302000137161 ], [ -58.546077999699889, -34.55318200024908 ], [ -58.546808000089072, -34.552581000412772 ], [ -58.547365999741032, -34.552131000345355 ], [ -58.548652999736134, -34.551079000395532 ], [ -58.549746999824151, -34.55020000032971 ], [ -58.549597000101414, -34.550070999776779 ], [ -58.55105599993442, -34.549169999595733 ], [ -58.551914999977214, -34.549898999938875 ], [ -58.552794000043036, -34.550650000397184 ], [ -58.554103000153304, -34.549598999594139 ], [ -58.555369000079224, -34.548568999759482 ], [ -58.556476999913571, -34.547667999578493 ], [ -58.556635000005201, -34.547538999924882 ], [ -58.557944000115469, -34.546486999975002 ], [ -58.559210000041446, -34.545457000140402 ], [ -58.560498000082589, -34.544427000305802 ], [ -58.561807000192857, -34.543396999571826 ], [ -58.563073000118834, -34.5423459996681 ], [ -58.564360000113879, -34.5413159998335 ], [ -58.565648000155022, -34.540285999998844 ], [ -58.566848999781485, -34.539320000417661 ], [ -58.568201000076044, -34.538183000145295 ], [ -58.569510000186312, -34.537153000310695 ], [ -58.570067999838272, -34.536703000243222 ], [ -58.570776000112289, -34.536122999576719 ], [ -58.571290999579901, -34.535715999693593 ], [ -58.572063000107335, -34.535092999742119 ], [ -58.572986000403546, -34.534364000298353 ], [ -58.573865999616146, -34.533633999909114 ], [ -58.573865999616146, -34.533633999909114 ], [ -58.572986000403546, -34.532883000350125 ], [ -58.572557000405197, -34.532517999705874 ], [ -58.573436999617797, -34.531789000262108 ], [ -58.574316999729717, -34.531080999988092 ], [ -58.574445000236551, -34.530973000403606 ], [ -58.575025000003734, -34.530523000336132 ], [ -58.574723999612843, -34.530051000153492 ], [ -58.574188000076106, -34.529021000318892 ], [ -58.573650999593895, -34.527990999584915 ], [ -58.573136000126283, -34.526981999819384 ], [ -58.572686000058809, -34.526188000076104 ], [ -58.572599999690169, -34.526038000353367 ], [ -58.572257000060461, -34.525458999733019 ], [ -58.572085000222557, -34.525201000425795 ], [ -58.571569999855569, -34.524343000429099 ], [ -58.571012000203609, -34.523013000249705 ], [ -58.570904999765901, -34.522777000158385 ], [ -58.570604000274329, -34.522025999700077 ], [ -58.570324999998718, -34.521339000394505 ], [ -58.571097999672929, -34.520716999589808 ], [ -58.571805999946889, -34.520158999937848 ], [ -58.572514000220906, -34.519579000170665 ], [ -58.57328699989506, -34.518979000380511 ], [ -58.573995000169077, -34.51837799964494 ], [ -58.574723999612843, -34.51781999999298 ], [ -58.575454000002082, -34.517219000156672 ], [ -58.576183000345168, -34.51661800032042 ], [ -58.576912999835031, -34.516038999700015 ], [ -58.577685000362408, -34.515416999794638 ], [ -58.578392999737105, -34.514859000142678 ], [ -58.577664000293339, -34.514258000306427 ], [ -58.578308000313939, -34.513742999939439 ], [ -58.579102000057219, -34.51307799984977 ], [ -58.579810000331236, -34.512498000082587 ], [ -58.580560999890167, -34.511919000361559 ], [ -58.581269000164184, -34.51131799962593 ], [ -58.582019999723173, -34.510716999789679 ], [ -58.582749000066258, -34.510116999999525 ], [ -58.582019999723173, -34.509537000232342 ], [ -58.580989999888516, -34.508700000304714 ], [ -58.579831000400304, -34.5077780000546 ], [ -58.580560999890167, -34.507155000103126 ], [ -58.580818000050613, -34.506941000127028 ], [ -58.581290000233309, -34.506533000197749 ], [ -58.581633999909116, -34.506253999922137 ], [ -58.582363000252201, -34.505609999901537 ], [ -58.582641999628549, -34.505373999810217 ], [ -58.583070999626898, -34.50498799999616 ], [ -58.583179000110704, -34.504901999627521 ], [ -58.583672000362469, -34.504451999560104 ], [ -58.583778999900858, -34.504366000090783 ], [ -58.584379999737166, -34.503850999723795 ], [ -58.583714999647498, -34.503314000140961 ], [ -58.583028000341926, -34.502756999635778 ], [ -58.582363000252201, -34.50224200016811 ], [ -58.582556000159229, -34.502070000330207 ], [ -58.581913000184784, -34.50153399989415 ], [ -58.581269000164184, -34.500997000311258 ], [ -58.580432000236556, -34.50033200022159 ], [ -58.579788000216013, -34.499752999601185 ], [ -58.578973000403607, -34.49912999964971 ], [ -58.579745000031664, -34.498486999675265 ], [ -58.580495999590653, -34.497821000438762 ], [ -58.581076000257156, -34.497349000256122 ], [ -58.581891000069561, -34.496640999982105 ], [ -58.582191000414298, -34.496383999821717 ], [ -58.582448999721521, -34.49488199980442 ], [ -58.582663999743772, -34.49359399976322 ], [ -58.582385000367424, -34.49256399992862 ], [ -58.582149000276104, -34.491426999656255 ], [ -58.582149000276104, -34.490782999635655 ], [ -58.582083999976589, -34.490504000259364 ], [ -58.581977000438201, -34.490332999568238 ], [ -58.581955000322978, -34.490160999730335 ], [ -58.58199799960795, -34.490097000376238 ], [ -58.582040999792241, -34.49005400019189 ], [ -58.582106000091812, -34.489882000353987 ], [ -58.582106000091812, -34.489625000193541 ], [ -58.58199799960795, -34.489130999895679 ], [ -58.581946999954027, -34.488833999689291 ], [ -58.581783999631853, -34.48782199978541 ], [ -58.581677000093464, -34.487392999787062 ], [ -58.581457999886766, -34.486915000227043 ], [ -58.581030999980612, -34.486315000436889 ], [ -58.580840000165836, -34.48582600036957 ], [ -58.580710999612904, -34.485312000048737 ], [ -58.580753999797196, -34.485161000279902 ], [ -58.580883000350127, -34.485074999911262 ], [ -58.581033000072864, -34.485097000026485 ], [ -58.581097000326281, -34.485183000395125 ], [ -58.581076000257156, -34.485333000117805 ], [ -58.58096799977335, -34.485439999656194 ], [ -58.58096799977335, -34.485612000393473 ], [ -58.581054000141933, -34.48582600036957 ], [ -58.581418999886921, -34.48638400002153 ], [ -58.581714000001057, -34.486750999858714 ], [ -58.581955000322978, -34.487050000157353 ], [ -58.582083999976589, -34.487156999695742 ], [ -58.582578000274452, -34.487370999671839 ], [ -58.583472000132645, -34.487496000040323 ], [ -58.584101000360818, -34.48767200006273 ], [ -58.585667999778309, -34.48758599969409 ], [ -58.586051000353336, -34.48755199992479 ], [ -58.586869000304091, -34.487479000155702 ], [ -58.587492000255565, -34.487307000317742 ], [ -58.588157000345234, -34.487220999949159 ], [ -58.588865999766028, -34.48720400006448 ], [ -58.589036000411056, -34.487199999880033 ], [ -58.589550999878725, -34.48726400013345 ], [ -58.589873000338628, -34.487243000064382 ], [ -58.590344999622005, -34.487156999695742 ], [ -58.590653000335635, -34.486908999950344 ], [ -58.590903000173284, -34.486705999582171 ], [ -58.591118000195536, -34.48662000011285 ], [ -58.591800000169826, -34.48654500025151 ], [ -58.592276999683747, -34.486491999606073 ], [ -58.592620000212776, -34.486512999675142 ], [ -58.592856000304153, -34.486663000297199 ], [ -58.593006000026833, -34.486856000204227 ], [ -58.593177999864736, -34.486920999604422 ], [ -58.593370999771764, -34.48694199967349 ], [ -58.595881000407815, -34.486727999697393 ], [ -58.595960999600436, -34.486716000043316 ], [ -58.597298000102569, -34.486512999675142 ], [ -58.598321999660527, -34.486428000251976 ], [ -58.599099999565283, -34.486362999952462 ], [ -58.600429999744676, -34.486276999583822 ], [ -58.600622999651648, -34.486276999583822 ], [ -58.601375000156111, -34.486276999583822 ], [ -58.602432000336478, -34.486297999652891 ], [ -58.602469000244128, -34.486298999699045 ], [ -58.604464999659967, -34.486170000045433 ], [ -58.604664999889792, -34.486148999976308 ], [ -58.606917000319243, -34.485919000161687 ], [ -58.607190000318212, -34.485890999769765 ], [ -58.607725999854949, -34.48582600036957 ], [ -58.609414000355798, -34.485605000070677 ], [ -58.610344000075486, -34.485482999840542 ], [ -58.611846000092783, -34.485289999933514 ], [ -58.61302599965012, -34.485140000210777 ], [ -58.614098999669068, -34.484989999588777 ], [ -58.614635000105125, -34.484925000188582 ], [ -58.615065000149571, -34.484838999819942 ], [ -58.615364999594988, -34.484796999681748 ], [ -58.616588000235993, -34.484602999728622 ], [ -58.616700000004982, -34.484591000074545 ], [ -58.61697400005005, -34.484560000443594 ], [ -58.618347999560513, -34.484345999568177 ], [ -58.619269999810626, -34.484216999914565 ], [ -58.619505999901946, -34.484173999730274 ], [ -58.621179999757146, -34.48395999975412 ], [ -58.621738000308426, -34.483895000353925 ], [ -58.62353999977114, -34.483616000078314 ], [ -58.623947999700363, -34.483551999824897 ], [ -58.624678000089602, -34.483383000125286 ], [ -58.625150000272242, -34.483273000448548 ], [ -58.626565999920899, -34.483037000357228 ], [ -58.626951999734956, -34.48301600028816 ], [ -58.627038000103596, -34.48301600028816 ], [ -58.628196999591808, -34.48292999991952 ], [ -58.628776000212213, -34.48284399955088 ], [ -58.629784999977744, -34.4826939998282 ], [ -58.630686000158732, -34.48252199999024 ], [ -58.631780000246749, -34.482306999968046 ], [ -58.632938999735018, -34.482092999991892 ], [ -58.634891999865886, -34.481535000339932 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 16.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.380530875960005, -34.628941424292435 ], [ -58.380633297966718, -34.638200373699583 ], [ -58.380735719973444, -34.645042163748222 ], [ -58.380407969551953, -34.647705135922841 ], [ -58.377929356989426, -34.656923116527302 ], [ -58.375594135236298, -34.666079643927738 ], [ -58.37493863439331, -34.668640194095644 ], [ -58.374508461965107, -34.669500538952057 ], [ -58.373873445523465, -34.670278946203105 ], [ -58.372623897041528, -34.671200744263551 ], [ -58.371456286164964, -34.671610432290414 ], [ -58.369899471662876, -34.671815276303846 ], [ -58.367318437093623, -34.671610432290414 ], [ -58.364901277735122, -34.671569463487728 ], [ -58.362258789961842, -34.672429808344141 ], [ -58.358510144516032, -34.674519217281151 ], [ -58.351852714079477, -34.676833954632933 ], [ -58.346711129342324, -34.67851367554308 ], [ -58.343003452699193, -34.679128207583382 ], [ -58.340197089715168, -34.680418724868005 ], [ -58.334133706917569, -34.685171105979641 ], [ -58.322211785335796, -34.693815523346487 ], [ -58.32038867361625, -34.694860227814992 ], [ -58.310125988543284, -34.697953372417821 ], [ -58.305025372608817, -34.700452469381695 ], [ -58.298040191750772, -34.702746722332137 ], [ -58.291239370504819, -34.704795162466461 ], [ -58.28595439495826, -34.707171353022275 ], [ -58.274380708199331, -34.712026156140624 ], [ -58.268829435435315, -34.714299924689726 ], [ -58.267026808117109, -34.715856739191814 ], [ -58.26604355685263, -34.717413553693895 ], [ -58.256497825826685, -34.730195820132082 ], [ -58.255760387378324, -34.731138102593867 ], [ -58.251581569504303, -34.73462045082222 ], [ -58.24478074825835, -34.742445492135339 ], [ -58.236668925326427, -34.750762159080686 ], [ -58.210407922804386, -34.763175706294696 ], [ -58.194430089756665, -34.770877841199749 ], [ -58.167267773575524, -34.784151733270171 ], [ -58.155427789599131, -34.790993523318818 ], [ -58.145349464138256, -34.796770124497613 ], [ -58.144110157856986, -34.797599742752013 ], [ -58.138661307099682, -34.801891224833419 ], [ -58.094087249776791, -34.836868340127012 ], [ -58.091424277602158, -34.838978233465369 ], [ -58.087737085360374, -34.84260397250312 ], [ -58.0852379883965, -34.844529506229385 ], [ -58.081509827352029, -34.846516493159676 ], [ -58.079379449612333, -34.847520228825495 ], [ -58.066228463949969, -34.853931846445931 ], [ -58.051541148186864, -34.861162840120095 ], [ -58.043470294057627, -34.865054876375311 ], [ -58.034231829051819, -34.869540960269482 ], [ -58.023928175176167, -34.874129466170366 ], [ -58.014300506544835, -34.87828779964304 ], [ -58.006332074422332, -34.881729179068707 ], [ -58.003331109625549, -34.882384679911688 ], [ -58.00111879428048, -34.882435890915048 ], [ -57.998650423918619, -34.882272015704302 ], [ -57.997615961650787, -34.881903296480125 ], [ -57.99422579322848, -34.880735685603561 ], [ -57.99178814946864, -34.879844614145121 ], [ -57.988357012243647, -34.879455410519604 ], [ -57.985970579487159, -34.879752434339082 ], [ -57.984331827379698, -34.880223575569971 ], [ -57.98325639630918, -34.880612779195495 ], [ -57.981617644201712, -34.88120682683445 ], [ -57.979855985686193, -34.882159351496917 ], [ -57.977039380501502, -34.884259002634593 ], [ -57.972164092981821, -34.887956437077051 ], [ -57.965854897368096, -34.892708818188687 ], [ -57.94967222030693, -34.904425895757022 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 15.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.468301, -34.814034 ], [ -58.467056, -34.813375 ], [ -58.467316, -34.813018 ], [ -58.467583, -34.812669 ], [ -58.466334, -34.812006 ], [ -58.467188, -34.810924 ], [ -58.467969, -34.809921 ], [ -58.466703, -34.809266 ], [ -58.46545, -34.808581 ], [ -58.464211, -34.807914 ], [ -58.462938, -34.807263 ], [ -58.461704, -34.806595 ], [ -58.460507, -34.805915 ], [ -58.45927, -34.805246 ], [ -58.458009, -34.804583 ], [ -58.45766, -34.804394 ], [ -58.457026, -34.804078 ], [ -58.456785, -34.803931 ], [ -58.455518, -34.803293 ], [ -58.454276, -34.802615 ], [ -58.454688, -34.802119 ], [ -58.455091, -34.801619 ], [ -58.455487, -34.801107 ], [ -58.455891, -34.800596 ], [ -58.456296, -34.800071 ], [ -58.456692, -34.799547 ], [ -58.457093, -34.799047 ], [ -58.45744, -34.798647 ], [ -58.45753, -34.798528 ], [ -58.457639, -34.798386 ], [ -58.458341, -34.797462 ], [ -58.457123, -34.796819 ], [ -58.455867, -34.796154 ], [ -58.455248, -34.796931 ], [ -58.455045, -34.797179 ], [ -58.454625, -34.797735 ], [ -58.454208, -34.798237 ], [ -58.453809, -34.798756 ], [ -58.453406, -34.799285 ], [ -58.452996, -34.7998 ], [ -58.452605, -34.800306 ], [ -58.452199, -34.800814 ], [ -58.451813999999899, -34.801327 ], [ -58.450814, -34.802576 ], [ -58.450109, -34.803494 ], [ -58.449854, -34.803849 ], [ -58.44963, -34.804068 ], [ -58.449151, -34.804697 ], [ -58.448659, -34.805384 ], [ -58.448118, -34.806074 ], [ -58.447563, -34.806753 ], [ -58.447042, -34.807438 ], [ -58.446504, -34.808109 ], [ -58.44596, -34.80884 ], [ -58.445311, -34.809636 ], [ -58.444373, -34.810852 ], [ -58.443579, -34.811895 ], [ -58.442728, -34.812949 ], [ -58.441778, -34.814223 ], [ -58.441157, -34.815009 ], [ -58.44069, -34.81563 ], [ -58.440225, -34.816197 ], [ -58.439779, -34.816789 ], [ -58.439256, -34.817438 ], [ -58.438717, -34.818101 ], [ -58.438282, -34.818676 ], [ -58.437836, -34.819243 ], [ -58.437401, -34.819831 ], [ -58.437, -34.820491 ], [ -58.436355, -34.821444 ], [ -58.435723, -34.822295 ], [ -58.435078, -34.823158 ], [ -58.434588, -34.823832 ], [ -58.434031, -34.824555 ], [ -58.433471, -34.825347 ], [ -58.432996, -34.826009 ], [ -58.432476, -34.826658 ], [ -58.431952, -34.827379 ], [ -58.43145, -34.828098 ], [ -58.430893, -34.828907 ], [ -58.430309, -34.829707 ], [ -58.431306, -34.830193 ], [ -58.432112, -34.830556 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 14.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.667565385081609, -34.682491045412334 ], [ -58.672467460067672, -34.678490974156901 ], [ -58.679628656859428, -34.672569004375056 ], [ -58.680867883869276, -34.671491534873084 ], [ -58.678806161056336, -34.669906859625904 ], [ -58.672335860739132, -34.664741585982846 ], [ -58.66297037519525, -34.661835434145459 ], [ -58.663422747886948, -34.66098003851031 ], [ -58.663850445704512, -34.660053359905554 ], [ -58.666794980679377, -34.660991005121012 ], [ -58.669972556131768, -34.662027349832833 ], [ -58.670630552774199, -34.661632551847376 ], [ -58.671041800675717, -34.660892305624643 ], [ -58.676640255441697, -34.656302779043713 ], [ -58.692740610786061, -34.643977679435253 ], [ -58.693820821940719, -34.642826185311009 ], [ -58.692197763556059, -34.641367626086961 ], [ -58.691044898605476, -34.640317573111744 ], [ -58.689981137366885, -34.639347028064165 ], [ -58.694691296665596, -34.635739013141524 ], [ -58.698485743970252, -34.639242845262451 ], [ -58.699889470140768, -34.638168117413144 ], [ -58.696056639698632, -34.634702668429696 ], [ -58.693238220746899, -34.636802774380108 ], [ -58.689054458762136, -34.631588150988875 ], [ -58.688171646600203, -34.630475040002082 ], [ -58.685213403361978, -34.632797219819331 ], [ -58.679155721772638, -34.637452546064473 ], [ -58.680016600713145, -34.638181825676497 ], [ -58.679232488047582, -34.638741122822552 ], [ -58.677730062380711, -34.637216763934262 ], [ -58.676989816157977, -34.63654505902845 ], [ -58.674697794520192, -34.638343583184415 ], [ -58.672904753669584, -34.639689734648719 ], [ -58.667281624029492, -34.634669768597533 ], [ -58.666530411196057, -34.633759539908837 ], [ -58.66564211572878, -34.631703300401249 ], [ -58.66461125432231, -34.630655989078718 ], [ -58.660975822872899, -34.627601787996788 ], [ -58.663037545685839, -34.625956796390717 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 12.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.565968999669565, -34.508528999613588 ], [ -58.565797999877759, -34.508679000235645 ], [ -58.566334000313816, -34.509923000046399 ], [ -58.566484000036553, -34.510330999975622 ], [ -58.566677999989679, -34.510502999813525 ], [ -58.566785000427387, -34.510803000158262 ], [ -58.567084999872804, -34.51140399999457 ], [ -58.567234999595541, -34.511789999808627 ], [ -58.567622000355016, -34.512777000358255 ], [ -58.567193000356667, -34.513142000103187 ], [ -58.566183999691816, -34.514022000215107 ], [ -58.565132999788091, -34.514880000211804 ], [ -58.564146000137782, -34.515760000323723 ], [ -58.563158999588097, -34.51661800032042 ], [ -58.562128999753497, -34.517518999602089 ], [ -58.561206000356606, -34.51829200017562 ], [ -58.560261999991269, -34.519000000449637 ], [ -58.559789999808629, -34.519429000447985 ], [ -58.559489000317058, -34.519751000008625 ], [ -58.558609000205138, -34.520501999567557 ], [ -58.557944000115469, -34.521060000118894 ], [ -58.557730000139372, -34.521231999956797 ], [ -58.557365000394384, -34.521532000301534 ], [ -58.556850000027453, -34.522025999700077 ], [ -58.556700000304716, -34.52215400020691 ], [ -58.555669999570796, -34.523013000249705 ], [ -58.554919000011807, -34.523699000408499 ], [ -58.554554000266876, -34.52397799978479 ], [ -58.55350300036315, -34.524814999712419 ], [ -58.552365000044688, -34.523849000131236 ], [ -58.551206999703254, -34.522820000342676 ], [ -58.550626999936071, -34.522326000044814 ], [ -58.550026000099763, -34.521768000392854 ], [ -58.548910999942677, -34.52262600038955 ], [ -58.547881000108021, -34.52342000013283 ], [ -58.546808000089072, -34.524192999807042 ], [ -58.547579999717186, -34.52485799989671 ], [ -58.548202999668661, -34.525394000332824 ], [ -58.549232000356483, -34.52629599966059 ], [ -58.550562999682654, -34.527432999932955 ], [ -58.551227999772323, -34.528011999654041 ], [ -58.5518499996777, -34.528527000020972 ], [ -58.552515999813522, -34.529106999788155 ], [ -58.553137999718899, -34.529665000339435 ], [ -58.553823999877636, -34.530221999945297 ], [ -58.552816000158259, -34.531080999988092 ], [ -58.5518499996777, -34.531938999984845 ], [ -58.551314000140962, -34.53239000009836 ], [ -58.550692000235586, -34.532904999566028 ], [ -58.550111999569083, -34.533441000002085 ], [ -58.549489999663706, -34.533977999584977 ], [ -58.548824999574038, -34.534514000021034 ], [ -58.548223999737729, -34.535049999557771 ], [ -58.547601999832409, -34.535587000039982 ], [ -58.547343999625866, -34.535801000016079 ], [ -58.546957999811809, -34.536144999691942 ], [ -58.546356999975501, -34.536681000127999 ], [ -58.545841999608569, -34.537110000126347 ], [ -58.545134000233872, -34.537754000146947 ], [ -58.543890000423119, -34.538848000234964 ], [ -58.543545999847993, -34.539148999726535 ], [ -58.542731000035587, -34.539813999816204 ], [ -58.542644999666948, -34.539900000184844 ], [ -58.541635999901416, -34.540822999581735 ], [ -58.541442999994388, -34.541016000388083 ], [ -58.540843000204234, -34.54155199992482 ], [ -58.540220000252759, -34.54210999957678 ], [ -58.539468999794451, -34.54275399959738 ], [ -58.539147000233811, -34.543053999942117 ], [ -58.538846999889074, -34.543290000033437 ], [ -58.537838000123543, -34.544213000329648 ], [ -58.537624000147446, -34.54402000042262 ], [ -58.537431000240417, -34.543805000400425 ], [ -58.536850999573915, -34.543203999664797 ], [ -58.535799999670189, -34.542046000222683 ], [ -58.535348999556618, -34.541508999740529 ], [ -58.535220999949161, -34.541380000086917 ], [ -58.533482999840544, -34.539598999793952 ], [ -58.532645999912916, -34.539084000326284 ], [ -58.531743999685773, -34.538504999705935 ], [ -58.530843000404104, -34.537947000053975 ], [ -58.529855999854476, -34.537325000148599 ], [ -58.529619999763156, -34.53777600026217 ], [ -58.529255000018168, -34.53848399963681 ], [ -58.528933999604362, -34.539106000441507 ], [ -58.528589999928499, -34.539707000277815 ], [ -58.528268000367859, -34.540350000252261 ], [ -58.527945999907956, -34.540973000203735 ], [ -58.527560000093899, -34.54163800029346 ], [ -58.527731999931802, -34.541723999762723 ], [ -58.529018999926848, -34.542388999852392 ], [ -58.528183000045374, -34.543290000033437 ], [ -58.527796000185219, -34.543741000147008 ], [ -58.527410000371162, -34.544170000145357 ], [ -58.526658999912854, -34.545007000072928 ], [ -58.525757999731866, -34.54755999999395 ], [ -58.525349999802586, -34.548546999644259 ], [ -58.524578000174529, -34.55043600042103 ], [ -58.524191000314374, -34.551143999795727 ], [ -58.523632999763095, -34.551979999677201 ], [ -58.523225999879969, -34.552560000343703 ], [ -58.522840000065912, -34.553161000179955 ], [ -58.522196000045312, -34.55397599999236 ], [ -58.521574000139935, -34.554748999666572 ], [ -58.521123000026364, -34.555264000033503 ], [ -58.520758000281432, -34.555714000100977 ], [ -58.520501000121044, -34.555993000376645 ], [ -58.520242999914501, -34.556358000121577 ], [ -58.519792999847027, -34.557066000395537 ], [ -58.519598999893901, -34.557387999956177 ], [ -58.519192000010776, -34.557988999792485 ], [ -58.519084000426233, -34.558159999584291 ], [ -58.518226000429536, -34.55919000031821 ], [ -58.517431999786936, -34.560199000083742 ], [ -58.516638000043599, -34.561228999918342 ], [ -58.515823000231251, -34.562279999822067 ], [ -58.51504999965772, -34.563331999771947 ], [ -58.51425599991444, -34.564382999675672 ], [ -58.513741000446771, -34.565090999949632 ], [ -58.513140999757297, -34.565906999808135 ], [ -58.512324999898794, -34.56663600015122 ], [ -58.511574000339806, -34.567323000356112 ], [ -58.510822999881498, -34.568008999615586 ], [ -58.509985999953869, -34.569168000003174 ], [ -58.509555999909423, -34.569721000323852 ], [ -58.509535999886452, -34.569746999724202 ], [ -58.509407000232841, -34.569833000092842 ], [ -58.509063999703756, -34.570048000115094 ], [ -58.508827999612436, -34.570176999768705 ], [ -58.507968999569641, -34.570648999951345 ], [ -58.507884000146476, -34.570692000135637 ], [ -58.506660000358693, -34.57137800029443 ], [ -58.505330000179299, -34.572128999853419 ], [ -58.504192999906991, -34.572793999943087 ], [ -58.502991000234431, -34.573524000332327 ], [ -58.502282999960414, -34.574059999869064 ], [ -58.501747000423677, -34.574467999798287 ], [ -58.501489000217134, -34.574660999705316 ], [ -58.500674000404729, -34.575304999725915 ], [ -58.499601000385837, -34.574703999889664 ], [ -58.498507000297764, -34.574125000168578 ], [ -58.497733999724289, -34.573739000354522 ], [ -58.496962000096175, -34.573309000310076 ], [ -58.495866999962061, -34.572751999804893 ], [ -58.494750999758764, -34.57217200003771 ], [ -58.494107999784319, -34.571829000408002 ], [ -58.493656999670748, -34.571593000316682 ], [ -58.493099000018788, -34.571291999925791 ], [ -58.492520000297759, -34.570991999581054 ], [ -58.492091000299411, -34.570776999558859 ], [ -58.491360999910171, -34.570390999744802 ], [ -58.490266999822154, -34.569789999908551 ], [ -58.489171999687983, -34.569211000187465 ], [ -58.488549999782606, -34.569982999815522 ], [ -58.487948999946354, -34.570735000319985 ], [ -58.4873490001562, -34.571485999878973 ], [ -58.486748000319892, -34.572237000337225 ], [ -58.485460000278749, -34.571550000132333 ], [ -58.484151000168481, -34.570798999674025 ], [ -58.483958000261453, -34.570928000227013 ], [ -58.483701000101007, -34.571164000318333 ], [ -58.483228999918367, -34.571528000017167 ], [ -58.48252099964435, -34.572085999669127 ], [ -58.481641000431807, -34.57272999968967 ], [ -58.480674999951248, -34.573503000263202 ], [ -58.479730999585911, -34.57416800035287 ], [ -58.478700999751311, -34.574918999911858 ], [ -58.478035999661643, -34.575391000094555 ], [ -58.477434999825334, -34.575841000161972 ], [ -58.476576999828637, -34.576464000113447 ], [ -58.475590000178329, -34.577172000387463 ], [ -58.473786999770198, -34.577601000385812 ], [ -58.473550999678878, -34.577643999670784 ], [ -58.472157000145387, -34.577987000199869 ], [ -58.471298000102593, -34.578180000106897 ], [ -58.470869000104244, -34.578265999576161 ], [ -58.470353999737256, -34.578373000013869 ], [ -58.469473999625336, -34.578544999851829 ], [ -58.468636999697765, -34.578737999758857 ], [ -58.468337000252347, -34.578803000058372 ], [ -58.467177999864759, -34.579039000149692 ], [ -58.466684999612994, -34.57914599968808 ], [ -58.466062999707617, -34.579017000034469 ], [ -58.464689000197154, -34.578694999574509 ], [ -58.463230000364206, -34.578373000013869 ], [ -58.461813999816172, -34.578265999576161 ], [ -58.460568999959321, -34.578287999691383 ], [ -58.460226000329612, -34.578287999691383 ], [ -58.459689999893556, -34.578308999760509 ], [ -58.458509000290064, -34.5783519999448 ], [ -58.458016000038356, -34.578395000129092 ], [ -58.45735099994863, -34.578544999851829 ], [ -58.457222000295019, -34.57858800003612 ], [ -58.455977000438168, -34.578888000380857 ], [ -58.454862000281025, -34.579209999941497 ], [ -58.453531000055591, -34.579661000055069 ], [ -58.453037999803826, -34.579832999892972 ], [ -58.452115000406877, -34.58011200016864 ], [ -58.450956000019346, -34.580497999982697 ], [ -58.449990999584941, -34.580862999727628 ], [ -58.450698999858901, -34.582064000253354 ], [ -58.451214000225889, -34.582901000180982 ], [ -58.452200999876197, -34.582450000067411 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.453423999617826, -34.58436000001393 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.452221999945323, -34.587150000072427 ], [ -58.45181500006214, -34.586334000213867 ], [ -58.451277999579986, -34.585283000310199 ], [ -58.450763000112318, -34.584273999645347 ], [ -58.450290999929678, -34.58333000017933 ], [ -58.449818999746981, -34.582385999813994 ], [ -58.448875000281021, -34.582750999558925 ], [ -58.447630000424112, -34.583265999925914 ], [ -58.446449999967456, -34.583781000292902 ], [ -58.444798000227479, -34.584552999920959 ], [ -58.444626000389576, -34.584661000404822 ], [ -58.443511000232434, -34.58541199996381 ], [ -58.442459000282611, -34.586098000122547 ], [ -58.441408000378885, -34.586785000327438 ], [ -58.440162999622714, -34.587600000139844 ], [ -58.439412000063726, -34.588114999607512 ], [ -58.438446999629264, -34.588758999628112 ], [ -58.438146000137749, -34.588909000250112 ], [ -58.438059999769109, -34.588952000434404 ], [ -58.437138000418372, -34.589616999624809 ], [ -58.436215000122104, -34.590260999645352 ], [ -58.435335000010184, -34.590840000265757 ], [ -58.434369999575779, -34.591463000217232 ], [ -58.433468000247956, -34.592085000122609 ], [ -58.432353000090814, -34.592813999566374 ], [ -58.431236999887574, -34.593565000024682 ], [ -58.430078000399362, -34.594315999583671 ], [ -58.429177000218317, -34.594874000134951 ], [ -58.428104000199426, -34.595540000270773 ], [ -58.427052000249546, -34.596183000245219 ], [ -58.426216000368072, -34.59654799999015 ], [ -58.424820999889221, -34.597126999711236 ], [ -58.423576000032313, -34.597642000078224 ], [ -58.423405000240507, -34.597770999731836 ], [ -58.421794999739404, -34.59774999966271 ], [ -58.420186000183719, -34.597770999731836 ], [ -58.418941000326868, -34.597792999847002 ], [ -58.417267999618446, -34.59783600003135 ], [ -58.415979999577303, -34.597857000100419 ], [ -58.41462900022816, -34.597921000353836 ], [ -58.413254999818321, -34.597963999638807 ], [ -58.411945999708053, -34.598028999938379 ], [ -58.410316000083299, -34.598093000191739 ], [ -58.409413999856156, -34.598093000191739 ], [ -58.408170000045402, -34.59807200012267 ], [ -58.406624999843814, -34.598028999938379 ], [ -58.405595000009214, -34.598050000007447 ], [ -58.404737000012517, -34.598028999938379 ], [ -58.404499999875043, -34.598050000007447 ], [ -58.403749000316054, -34.598479000005796 ], [ -58.403084000226386, -34.598822999681659 ], [ -58.402504999605981, -34.599123000026395 ], [ -58.402011000207438, -34.599380000186841 ], [ -58.401088999957324, -34.599487999771327 ], [ -58.399929999569792, -34.599638000393384 ], [ -58.398771000081524, -34.599767000046995 ], [ -58.397225999879936, -34.599767000046995 ], [ -58.395810000231279, -34.599723999862647 ], [ -58.394393999683302, -34.599723999862647 ], [ -58.392934999850297, -34.599658999563133 ], [ -58.391562000385989, -34.599552000024744 ], [ -58.39016699990708, -34.599444999587035 ], [ -58.389652000439412, -34.599380000186841 ], [ -58.388150000422115, -34.599315999933424 ], [ -58.386862000380972, -34.599272999749076 ], [ -58.385445999832996, -34.599209000395035 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.382528000167042, -34.599079999842047 ], [ -58.382077000053471, -34.599036999657756 ], [ -58.381648000055122, -34.599015999588687 ], [ -58.381154999803357, -34.599015999588687 ], [ -58.379738000108603, -34.598951000188492 ], [ -58.378279000275597, -34.598886999935075 ], [ -58.376799000373524, -34.59878000039663 ], [ -58.375360999710324, -34.598671999912824 ], [ -58.374202000222112, -34.598586999590339 ], [ -58.372828999858427, -34.598501000121018 ], [ -58.371498999679034, -34.598371999568087 ], [ -58.371326999841131, -34.598351000398281 ], [ -58.371198000187519, -34.598329000283115 ], [ -58.371027000395713, -34.598329000283115 ], [ -58.369566999617291, -34.598199999730184 ], [ -58.369180999803234, -34.598286000098767 ], [ -58.369031000080554, -34.598329000283115 ], [ -58.368987999896262, -34.598371999568087 ], [ -58.368987999896262, -34.598501000121018 ], [ -58.369137999618943, -34.599209000395035 ], [ -58.369095000333971, -34.599315999933424 ], [ -58.368645000266497, -34.600453000205732 ], [ -58.368409000175177, -34.600989999788624 ], [ -58.368279999622246, -34.601784000431223 ], [ -58.368173000083857, -34.60281400026588 ], [ -58.368258000406342, -34.60281400026588 ], [ -58.369008999965331, -34.602877999619921 ], [ -58.370104000099502, -34.60296399998856 ], [ -58.369932000261542, -34.604250999983606 ], [ -58.369845999892959, -34.605302999933429 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 11.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.367206999603297, -34.642724999858785 ], [ -58.365768999839418, -34.642488999767465 ], [ -58.365211000187458, -34.642403000298202 ], [ -58.363709000170161, -34.642124000022534 ], [ -58.362465000359464, -34.641673999955117 ], [ -58.361069999880556, -34.64088000021178 ], [ -58.361477999809779, -34.64055799975182 ], [ -58.361649999647739, -34.640193000006889 ], [ -58.36160700036271, -34.639741999893317 ], [ -58.361564000178419, -34.639484999732929 ], [ -58.361413000409584, -34.639248999641552 ], [ -58.36034100043679, -34.63897000026526 ], [ -58.358473999775242, -34.63897000026526 ], [ -58.358044999776894, -34.638819999643204 ], [ -58.357143000449071, -34.638411999713981 ], [ -58.357036000011362, -34.638196999691729 ], [ -58.356928999573654, -34.637960999600409 ], [ -58.356971999757945, -34.637897000246312 ], [ -58.357100000264779, -34.637876000177243 ], [ -58.357228999918391, -34.637960999600409 ], [ -58.357400999756294, -34.637767999693381 ], [ -58.357916000123282, -34.636867000411712 ], [ -58.358388000305922, -34.636115999953404 ], [ -58.358880999658368, -34.635301000140998 ], [ -58.359396000025356, -34.634507000397718 ], [ -58.359632000116676, -34.634119999638244 ], [ -58.35978299988551, -34.63384200030805 ], [ -58.359890000323219, -34.63366999957077 ], [ -58.36034100043679, -34.632832999643199 ], [ -58.360855999904459, -34.632038999899862 ], [ -58.362401000106047, -34.630965999880971 ], [ -58.363387999756355, -34.630343999975594 ], [ -58.364139000214664, -34.629849999677674 ], [ -58.364804000304332, -34.629420999679326 ], [ -58.365575999932389, -34.628906000211714 ], [ -58.36658499969792, -34.628241000121989 ], [ -58.36746499980984, -34.627682999570709 ], [ -58.367572000247549, -34.627619000216669 ], [ -58.367871999692966, -34.62719000021832 ], [ -58.368022000315023, -34.627124999918749 ], [ -58.368150999968634, -34.627147000033972 ], [ -58.368473000428594, -34.627468999594612 ], [ -58.369439000009777, -34.628305000375406 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.370661999751462, -34.629184999588006 ], [ -58.370769000189171, -34.628091000399309 ], [ -58.370962000096199, -34.626609999551818 ], [ -58.371068999634588, -34.625343999625841 ], [ -58.371198000187519, -34.624228000321921 ], [ -58.37267900013569, -34.624292999722115 ], [ -58.374009000315084, -34.624422000275047 ], [ -58.375490000263255, -34.624549999882561 ], [ -58.376756000189232, -34.625108000433841 ], [ -58.378, -34.625645000016675 ], [ -58.378965999581169, -34.626051999899857 ], [ -58.380232000406465, -34.626353000290692 ], [ -58.382205999707082, -34.626910999942652 ], [ -58.382248999891374, -34.625945000361412 ], [ -58.382269999960499, -34.624658000366367 ], [ -58.382936000096265, -34.624658000366367 ], [ -58.38439499992927, -34.624700999651395 ], [ -58.385789000362024, -34.624742999789589 ], [ -58.387183999941612, -34.624829000158172 ], [ -58.387183999941612, -34.624014000345824 ], [ -58.387183999941612, -34.623778000254447 ], [ -58.387183999941612, -34.623306000071807 ], [ -58.387162999872487, -34.622447000029013 ], [ -58.387206000056835, -34.62124600040255 ], [ -58.388729000143201, -34.621375000056162 ], [ -58.390038000253469, -34.621439000309579 ], [ -58.391562000385989, -34.621545999847967 ], [ -58.393105999642103, -34.621611000147482 ], [ -58.393942999569731, -34.62165400033183 ], [ -58.394457999936719, -34.621675000400899 ], [ -58.395638000393376, -34.621738999754996 ], [ -58.396775999812519, -34.621781999939287 ], [ -58.398192000360496, -34.62189000042315 ], [ -58.399586999940027, -34.622061000214956 ], [ -58.400616999774684, -34.622210999937636 ], [ -58.401368000232992, -34.622297000306276 ], [ -58.402483000390134, -34.622425999959887 ], [ -58.404306999968014, -34.622726000304624 ], [ -58.405980999823271, -34.623004999680973 ], [ -58.407225999680122, -34.623198999634099 ], [ -58.40900699997303, -34.623498999978835 ], [ -58.410486999875104, -34.623712999954932 ], [ -58.411453000355664, -34.623884999792836 ], [ -58.412224999983721, -34.623971000161475 ], [ -58.413662999747601, -34.624186000183727 ], [ -58.414756999835618, -34.624356999975532 ], [ -58.414800000019966, -34.623585000347418 ], [ -58.416065999945886, -34.623927999977184 ], [ -58.416215999668623, -34.624014000345824 ], [ -58.417052999596194, -34.624464999560018 ], [ -58.417760999870211, -34.624506999698212 ], [ -58.419113000164771, -34.624593000066852 ], [ -58.420528999813428, -34.624700999651395 ], [ -58.421129999649736, -34.624721999720464 ], [ -58.421860000038919, -34.624764999904755 ], [ -58.422525000128587, -34.624808000089104 ], [ -58.423212000333535, -34.624872000342521 ], [ -58.424520000397649, -34.624936999742715 ], [ -58.425980000276752, -34.625044000180424 ], [ -58.427180999903157, -34.625108000433841 ], [ -58.428596999551871, -34.625258000156521 ], [ -58.430078000399362, -34.625429999994481 ], [ -58.431407999679379, -34.625558999648092 ], [ -58.43282500027351, -34.625709000270092 ], [ -58.433124999718927, -34.624292999722115 ], [ -58.433254000271859, -34.623670999816738 ], [ -58.433425000063664, -34.62292000025775 ], [ -58.434648999851447, -34.623026999796139 ], [ -58.436279000375521, -34.623219999703167 ], [ -58.436923000396121, -34.623219999703167 ], [ -58.437738000208526, -34.623198999634099 ], [ -58.437932000161652, -34.622575999682624 ], [ -58.438274999791361, -34.62156799996319 ], [ -58.438724999858835, -34.620173000383602 ], [ -58.439026000249669, -34.619421999925294 ], [ -58.440270000060423, -34.619958000361407 ], [ -58.441172000287565, -34.620388000405853 ], [ -58.441450999663857, -34.620494999944242 ], [ -58.442867000211834, -34.621138999964842 ], [ -58.443511000232434, -34.621418000240453 ], [ -58.444347000113908, -34.621825000123636 ], [ -58.44516299997241, -34.622146999684219 ], [ -58.44580699999301, -34.622425999959887 ], [ -58.447007999619473, -34.622877000073458 ], [ -58.447265999826016, -34.622983999611847 ], [ -58.448210000191295, -34.623349000256098 ], [ -58.448724999658964, -34.623542000163127 ], [ -58.449410999817758, -34.623799000323572 ], [ -58.449883000000398, -34.624014000345824 ], [ -58.450676999743678, -34.624313999791241 ], [ -58.452029000038294, -34.624872000342521 ], [ -58.452973000403631, -34.625237000087452 ], [ -58.454046000422522, -34.625645000016675 ], [ -58.455376999748694, -34.62613800026844 ], [ -58.456706999928087, -34.626652999736109 ], [ -58.457844000200396, -34.627124999918749 ], [ -58.458852999965927, -34.627532999848029 ], [ -58.459882999800584, -34.627940999777252 ], [ -58.461212999979921, -34.628390999844726 ], [ -58.462714999997218, -34.628841999958297 ], [ -58.463251999580052, -34.628970999611909 ], [ -58.463551999924789, -34.629078000049617 ], [ -58.464109999576806, -34.629227999772354 ], [ -58.465526000124783, -34.629635999701577 ], [ -58.466898999589091, -34.629979000230605 ], [ -58.467457000140428, -34.630128999953342 ], [ -58.468316000183222, -34.630343999975594 ], [ -58.469646000362559, -34.630686999605302 ], [ -58.470225000083644, -34.629420999679326 ], [ -58.470440000105896, -34.628906000211714 ], [ -58.470676000197216, -34.628412999959949 ], [ -58.471127000310787, -34.627404000194417 ], [ -58.471577000378204, -34.626353000290692 ], [ -58.472113999961095, -34.625150999718812 ], [ -58.472564000028513, -34.624164000068504 ], [ -58.473015000142084, -34.623177000418195 ], [ -58.473465000209558, -34.622168999799442 ], [ -58.473916000323129, -34.621181000103036 ], [ -58.472542999959444, -34.620752000104687 ], [ -58.472949999842569, -34.619850999923642 ], [ -58.474215999768546, -34.620516000013367 ], [ -58.475481999694466, -34.62116000003391 ], [ -58.475739999901009, -34.621288999687522 ], [ -58.476769999735666, -34.621825000123636 ], [ -58.477799999570266, -34.622382999775596 ], [ -58.478014000445739, -34.622469000144179 ], [ -58.478808000189019, -34.622898000142527 ], [ -58.479365999840979, -34.623198999634099 ], [ -58.479794999839328, -34.623412999610196 ], [ -58.480846999789151, -34.623841999608544 ], [ -58.481791000154487, -34.624228000321921 ], [ -58.482799999920019, -34.624636000251144 ], [ -58.484130000099412, -34.625193999903104 ], [ -58.484752000004733, -34.624679000435492 ], [ -58.485031000280401, -34.624443000344172 ], [ -58.486125000368418, -34.623585000347418 ], [ -58.487198000387366, -34.622726000304624 ], [ -58.488250000337189, -34.621847000238802 ], [ -58.489323000356137, -34.620988000196007 ], [ -58.490417000444154, -34.62013000019931 ], [ -58.491489999563782, -34.619272000202614 ], [ -58.492562999582731, -34.618435000274985 ], [ -58.493635999601679, -34.617555000163065 ], [ -58.49470899962057, -34.616718000235494 ], [ -58.495780999593421, -34.615839000169672 ], [ -58.496790000258272, -34.615023000311169 ], [ -58.497926999631261, -34.61562400014742 ], [ -58.499042999834558, -34.616224999983729 ], [ -58.500093999738283, -34.616782999635689 ], [ -58.501209999941523, -34.617341000186968 ], [ -58.502432999683151, -34.618006000276637 ], [ -58.503055999634626, -34.618327999837277 ], [ -58.503527999817322, -34.618584999997722 ], [ -58.504363999698796, -34.619013999996071 ], [ -58.504750999558951, -34.619206999903099 ], [ -58.505952000084676, -34.619829999854574 ], [ -58.506895999550693, -34.620323000106339 ], [ -58.507733000377641, -34.620795000288979 ], [ -58.508377000398184, -34.621396000125287 ], [ -58.509021000418784, -34.621953999777247 ], [ -58.509643000324161, -34.622490000213304 ], [ -58.509942999769578, -34.622768999589596 ], [ -58.510265000229538, -34.623047999865264 ], [ -58.510415999998372, -34.623177000418195 ], [ -58.510608999905401, -34.623327000140875 ], [ -58.510952000434429, -34.623648999701516 ], [ -58.511015999788526, -34.623712999954932 ], [ -58.511295000064138, -34.623950000092407 ], [ -58.511659999809126, -34.624270999606892 ], [ -58.512218000360406, -34.623841999608544 ], [ -58.512753999897143, -34.623412999610196 ], [ -58.513291000379297, -34.623004999680973 ], [ -58.513826999916091, -34.622575999682624 ], [ -58.514278000029663, -34.622233000052859 ], [ -58.5148139995664, -34.621825000123636 ], [ -58.515479999702166, -34.621309999756647 ], [ -58.515929999769639, -34.620967000126939 ], [ -58.517002999788588, -34.620193999553408 ], [ -58.517776000362062, -34.619593999763254 ], [ -58.518268999714508, -34.619250000087391 ], [ -58.518591000174467, -34.619013999996071 ], [ -58.518912999735107, -34.618713999651334 ], [ -58.519384999917747, -34.618392000090694 ], [ -58.520178999661084, -34.617770000185317 ], [ -58.521036999657781, -34.617105000095648 ], [ -58.522003000138284, -34.616395999775534 ], [ -58.523160999580398, -34.61547400042474 ], [ -58.524319999967986, -34.61459400031282 ], [ -58.525135999826489, -34.613972000407443 ], [ -58.525757999731866, -34.613563999578901 ], [ -58.526552000374465, -34.612984999857815 ], [ -58.527002000441939, -34.612684000366301 ], [ -58.527367000186871, -34.612405000090632 ], [ -58.527796000185219, -34.612082999630672 ], [ -58.528204000114499, -34.611783000185255 ], [ -58.528589999928499, -34.611482999840518 ], [ -58.529341000386808, -34.610946000257684 ], [ -58.529426999856128, -34.611139000164655 ], [ -58.529834999785351, -34.611932999907992 ], [ -58.529899000038768, -34.612041000391798 ], [ -58.530027999692379, -34.612191000114535 ], [ -58.530123999622845, -34.612249000091253 ], [ -58.531015000242007, -34.612791999950787 ], [ -58.531616000078316, -34.613113000364649 ], [ -58.532474000075013, -34.613649999947484 ], [ -58.533418000440349, -34.61418600038354 ], [ -58.534490999559921, -34.614615000381946 ], [ -58.536035999761566, -34.615195000149072 ], [ -58.536657999666886, -34.615409000125226 ], [ -58.537667000331737, -34.61579599998538 ], [ -58.538954000326839, -34.61626800016802 ], [ -58.540155999999342, -34.616740000350717 ], [ -58.541357999671902, -34.617169000349065 ], [ -58.542279999922016, -34.617534000093997 ], [ -58.542837999573976, -34.617748000070094 ], [ -58.543611000147507, -34.618027000345762 ], [ -58.544877000073427, -34.618498999629082 ], [ -58.546593000066878, -34.617425999610134 ], [ -58.546764999904781, -34.617298000002677 ], [ -58.547322999556741, -34.616933000257688 ], [ -58.547966000430563, -34.61650400025934 ], [ -58.548716999989495, -34.6160320000767 ], [ -58.549468999594637, -34.615516999709712 ], [ -58.550197999937723, -34.615045000426392 ], [ -58.550605999866946, -34.614787000219849 ], [ -58.550928000326905, -34.614573000243695 ], [ -58.551142000303003, -34.614443999690764 ], [ -58.551656999770671, -34.614100000014957 ], [ -58.552666000435522, -34.613434999925289 ], [ -58.553738999555151, -34.612726999651272 ], [ -58.554146000337596, -34.612470000390147 ], [ -58.554790000358196, -34.612041000391798 ], [ -58.555905999662116, -34.611332000071684 ], [ -58.556914000280869, -34.610645999912947 ], [ -58.557494000047996, -34.610281000167959 ], [ -58.559102999603681, -34.610216999914599 ], [ -58.560668999874395, -34.610131000445278 ], [ -58.560604999620978, -34.609078999596136 ], [ -58.56054100026688, -34.608027999692411 ], [ -58.560475999967366, -34.607041000042102 ], [ -58.560389999598783, -34.605968000023154 ], [ -58.562064000353303, -34.605903999769737 ], [ -58.563866999862114, -34.605818000300417 ], [ -58.564811000227451, -34.605796000185194 ], [ -58.565712000408439, -34.605753000000902 ], [ -58.566591999621039, -34.605710999862708 ], [ -58.567513999871153, -34.605667999678417 ], [ -58.568329999729656, -34.605625000393388 ], [ -58.56925199997977, -34.605582000209097 ], [ -58.571055000387901, -34.605495999840457 ], [ -58.571118999741998, -34.606568999859405 ], [ -58.571161999926289, -34.607598999694062 ], [ -58.572965000334477, -34.607513000224742 ], [ -58.574745999728066, -34.607426999856102 ], [ -58.576527000020974, -34.607341000386839 ], [ -58.577449000271088, -34.607298000202491 ], [ -58.578392999737105, -34.607255000018199 ], [ -58.578479000105744, -34.608328000037147 ], [ -58.578522000290036, -34.609357999871747 ], [ -58.578586999690231, -34.610366999637279 ], [ -58.578650999943648, -34.611439999656227 ], [ -58.58041000012139, -34.611354000186907 ], [ -58.582276999883618, -34.611267999818267 ], [ -58.584080000291749, -34.611182000349004 ], [ -58.585153000310697, -34.611161000279878 ], [ -58.586247000398714, -34.611439999656227 ], [ -58.587320000417662, -34.611804000254381 ], [ -58.588307000067971, -34.612234000298827 ], [ -58.589271999603056, -34.612684000366301 ], [ -58.590130999645851, -34.611632999563255 ], [ -58.590387999806296, -34.611311000002615 ], [ -58.590667000081964, -34.610925000188558 ], [ -58.591354000286856, -34.610001999892347 ], [ -58.591504000009536, -34.609808999985319 ], [ -58.592061999661496, -34.609015000242039 ], [ -58.592318999821941, -34.60873599996637 ], [ -58.592877000373221, -34.608005999577188 ], [ -58.593112999565221, -34.607812999670159 ], [ -58.593370999771764, -34.607619999763131 ], [ -58.593563999678793, -34.60747000004045 ], [ -58.594400999606421, -34.606739999651211 ], [ -58.594530000159352, -34.606633000112822 ], [ -58.594614999582518, -34.606546999744182 ], [ -58.595645000316495, -34.605667999678417 ], [ -58.595839000269621, -34.605516999909582 ], [ -58.596996999711735, -34.605516999909582 ], [ -58.598327999937226, -34.605495999840457 ], [ -58.598734999820351, -34.605495999840457 ], [ -58.598864000373283, -34.60543199958704 ], [ -58.598906999658254, -34.605389000302068 ], [ -58.598906999658254, -34.605324000002554 ], [ -58.598713999751226, -34.604594999659469 ], [ -58.598713999751226, -34.604487000074926 ], [ -58.598800000119866, -34.60440199975244 ], [ -58.599465000209534, -34.60440199975244 ], [ -58.602189999968459, -34.60440199975244 ], [ -58.603044999826864, -34.604392000190614 ], [ -58.604143000099327, -34.604379999637217 ], [ -58.604872000442413, -34.604337000352245 ], [ -58.605601999932333, -34.604186999730189 ], [ -58.607540000270774, -34.603560999640365 ], [ -58.607725999854949, -34.603500000424617 ], [ -58.608347999760326, -34.603264000333297 ], [ -58.609249999987469, -34.602856999550852 ], [ -58.609428000102071, -34.602763999758736 ], [ -58.610279999822069, -34.60231999996796 ], [ -58.612590000228295, -34.601028999788468 ], [ -58.613004999581051, -34.600796999881595 ], [ -58.613497999832759, -34.600517999605927 ], [ -58.614657000220348, -34.599894999654452 ], [ -58.615472000032753, -34.599359000117715 ], [ -58.61665199959009, -34.598286000098767 ], [ -58.616888999727507, -34.598093000191739 ], [ -58.616984999657973, -34.5980120000537 ], [ -58.617145999887953, -34.597878000169544 ], [ -58.618583999651833, -34.59663400035879 ], [ -58.618927000180861, -34.596334000014053 ], [ -58.619484999832821, -34.595882999900482 ], [ -58.620214000175906, -34.595368000432813 ], [ -58.621351999595049, -34.594488000320894 ], [ -58.622575000236054, -34.593543999955614 ], [ -58.623110999772791, -34.593114999957265 ], [ -58.623711999609043, -34.592642999774569 ], [ -58.62401199995378, -34.592427999752317 ], [ -58.624892000065699, -34.591720000377677 ], [ -58.625471999832882, -34.591269000264106 ], [ -58.626008000268939, -34.590840000265757 ], [ -58.626737999758859, -34.590281999714477 ], [ -58.627081000287887, -34.590003000338129 ], [ -58.627552999571208, -34.589595999555684 ], [ -58.628132000191613, -34.589166999557335 ], [ -58.628304000029516, -34.589037999903724 ], [ -58.628948000050116, -34.588523000436055 ], [ -58.629162000026213, -34.588350999698832 ], [ -58.629973999700269, -34.587777000208348 ], [ -58.630042000138133, -34.587728999793455 ], [ -58.63034199958355, -34.587450000417164 ], [ -58.630556999605801, -34.587277999679884 ], [ -58.631587000339778, -34.586462999867479 ], [ -58.633904000169423, -34.584639000289599 ], [ -58.635600000139846, -34.583286999994982 ], [ -58.636114999607514, -34.582944000365273 ], [ -58.637102000157142, -34.582170999791742 ], [ -58.638281999714479, -34.581249000440948 ], [ -58.639483000240205, -34.580326000144737 ], [ -58.640769000189152, -34.579216000218196 ], [ -58.640899999935016, -34.579103000403109 ], [ -58.640899999935016, -34.579017000034469 ], [ -58.64182200018513, -34.577751000108549 ], [ -58.642037000207381, -34.577643999670784 ], [ -58.642209000045284, -34.577643999670784 ], [ -58.642551999674993, -34.577836999577812 ], [ -58.643195999695592, -34.577343000179269 ], [ -58.644590000128346, -34.576228000022127 ], [ -58.645427000055975, -34.575561999886361 ], [ -58.645748999616615, -34.575304999725915 ], [ -58.646199999730186, -34.574962000096207 ], [ -58.646350000352186, -34.574833000442595 ], [ -58.647187000279814, -34.57416800035287 ], [ -58.647380000186843, -34.573995999615647 ], [ -58.648024000207386, -34.573503000263202 ], [ -58.648516999559831, -34.573116000403047 ], [ -58.648860000088916, -34.572837000127436 ], [ -58.649504000109459, -34.572321999760447 ], [ -58.649783000385128, -34.572107999784293 ], [ -58.650512999874991, -34.571593000316682 ], [ -58.650770000035436, -34.571314000041014 ], [ -58.651071000426271, -34.571077999949694 ], [ -58.651650000147356, -34.570520000297734 ], [ -58.652101000260927, -34.570025999999871 ], [ -58.652403999844694, -34.569676000047309 ], [ -58.652657999866733, -34.569383000025368 ], [ -58.653124999818829, -34.568823000281213 ], [ -58.654163000022379, -34.567577000378208 ], [ -58.654268000367892, -34.567450999963626 ], [ -58.654869000204144, -34.566742999689666 ], [ -58.655319000271618, -34.566313999691317 ], [ -58.655468999994298, -34.566142999899455 ], [ -58.655600999786259, -34.566033000222717 ], [ -58.656219999553286, -34.565519999947981 ], [ -58.656501999967304, -34.565316000433029 ], [ -58.657164999964721, -34.564833999789244 ], [ -58.65802199991532, -34.56422000025276 ], [ -58.658903000073337, -34.563588999932335 ], [ -58.660346000067818, -34.562544000305309 ], [ -58.661627999832263, -34.561614999732399 ], [ -58.662106000291658, -34.561264999779894 ], [ -58.663878000169518, -34.559967000176869 ], [ -58.664352999591244, -34.559619000316559 ], [ -58.665984000161416, -34.558438999859902 ], [ -58.666177000068444, -34.558289000137222 ], [ -58.668901999827369, -34.556292999822062 ], [ -58.669994999869289, -34.555502000217075 ], [ -58.671626999586294, -34.554318999622069 ], [ -58.6720559995847, -34.553998000107583 ], [ -58.672185000137631, -34.55397599999236 ], [ -58.672914999627494, -34.55462000001296 ], [ -58.673065000249494, -34.55476999973564 ], [ -58.673600999786288, -34.555264000033503 ], [ -58.673836999877608, -34.555478000009657 ], [ -58.674244999806831, -34.555863999823714 ], [ -58.674630999620888, -34.556228999568646 ], [ -58.674888999827431, -34.55644399959084 ], [ -58.675468000447836, -34.557023000211245 ], [ -58.676132999638185, -34.557645000116622 ], [ -58.676519000351561, -34.558009999861554 ], [ -58.676776999658784, -34.558245999952874 ], [ -58.677163000372104, -34.558610999697862 ], [ -58.677398999564161, -34.558846999789182 ], [ -58.678042999584704, -34.559447999625434 ], [ -58.678665000389401, -34.560027000245839 ], [ -58.679287000294778, -34.56062800008209 ], [ -58.679394999879321, -34.560734999620479 ], [ -58.680081000038058, -34.561357000425176 ], [ -58.680747000173881, -34.56198000037665 ], [ -58.682098000422343, -34.563224000187404 ], [ -58.682742000442943, -34.562752000004764 ], [ -58.68360000043964, -34.562109000030262 ], [ -58.684350999998628, -34.561572000447427 ], [ -58.684995000019171, -34.562173000283678 ], [ -58.685639000039771, -34.562795000189055 ], [ -58.686389999598759, -34.562279999822067 ], [ -58.686453999852176, -34.562215999568707 ], [ -58.687934999800348, -34.561121000333856 ], [ -58.689414999702421, -34.560049000361062 ], [ -58.690445000436398, -34.559297999902753 ], [ -58.690982000019233, -34.558911000042599 ], [ -58.691432000086706, -34.558568000412833 ], [ -58.691626000039832, -34.558438999859902 ], [ -58.692440999852238, -34.557838000023651 ], [ -58.693600000239769, -34.556980000026954 ], [ -58.694736999612815, -34.556143000099325 ], [ -58.695809999631763, -34.555349000356046 ], [ -58.696710999812751, -34.554706000381543 ], [ -58.69602399960786, -34.55397599999236 ], [ -58.696969000019294, -34.553288999787469 ], [ -58.698212999830048, -34.552367000436675 ], [ -58.698471000036591, -34.552152000414424 ], [ -58.698986000403579, -34.551786999770172 ], [ -58.699200000379676, -34.551637000047492 ], [ -58.699565000124608, -34.551357999771824 ], [ -58.699950999938665, -34.551058000326407 ], [ -58.700895000304001, -34.550371000121515 ], [ -58.701838999769961, -34.549684999962722 ], [ -58.70276200006623, -34.549018999826956 ], [ -58.703620000062926, -34.548375999852453 ], [ -58.704435999921429, -34.547775000016202 ], [ -58.705208000448806, -34.54723800043331 ], [ -58.705595000308961, -34.546938000088574 ], [ -58.706516999659755, -34.546272999998905 ], [ -58.707632999862994, -34.545436000071277 ], [ -58.708749000066234, -34.544621000258928 ], [ -58.709886000338599, -34.5437840003313 ], [ -58.711022999711645, -34.542947000403728 ], [ -58.712053000445565, -34.542217000014489 ], [ -58.713491000209444, -34.541166000110763 ], [ -58.714906999858101, -34.540136000276163 ], [ -58.714135000230044, -34.539405999886924 ], [ -58.713404999840805, -34.538719999728187 ], [ -58.711989000192148, -34.539770999631912 ], [ -58.712717999635913, -34.540457999836804 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 10.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.657567426999947, -34.685553834999951 ], [ -58.656295775999922, -34.685779571999944 ], [ -58.655002593999939, -34.686016082999913 ], [ -58.653701781999928, -34.686244964999958 ], [ -58.652408599999944, -34.68648529099994 ], [ -58.651682560999916, -34.686617297999931 ], [ -58.651107787999933, -34.686721801999909 ], [ -58.651325078999946, -34.687624199999902 ], [ -58.65143203699995, -34.688068389999955 ], [ -58.651790618999939, -34.689514159999931 ], [ -58.652160644999924, -34.690979003999928 ], [ -58.652530669999919, -34.692432403999931 ], [ -58.652908324999942, -34.693943023999907 ], [ -58.6530341859999, -34.694464677999918 ], [ -58.653177154999923, -34.695057235999911 ], [ -58.652426618999925, -34.695176886999946 ], [ -58.651863097999922, -34.695266723999907 ], [ -58.651172330999941, -34.695377811999947 ], [ -58.650558471999943, -34.69547653199993 ], [ -58.650680251999916, -34.695960287999924 ], [ -58.6507956989999, -34.696418888999915 ], [ -58.647529601999906, -34.696723937999934 ], [ -58.646520589999909, -34.696577419999926 ], [ -58.644981383999948, -34.69635391199995 ], [ -58.644439545999944, -34.696273543999951 ], [ -58.644184112999937, -34.696235656999932 ], [ -58.643402099999946, -34.696109771999943 ], [ -58.643232114999932, -34.695718069999941 ], [ -58.643138884999928, -34.695503234999933 ], [ -58.642913817999954, -34.694660186999954 ], [ -58.642726897999921, -34.694000243999938 ], [ -58.642539977999945, -34.69334030199991 ], [ -58.642314910999914, -34.692493438999918 ], [ -58.642139434999933, -34.691841124999939 ], [ -58.641967772999919, -34.691173552999942 ], [ -58.641761779999911, -34.690402984999935 ], [ -58.641532897999923, -34.689563750999923 ], [ -58.641403197999921, -34.689083098999902 ], [ -58.641296386999954, -34.688686370999903 ], [ -58.640998839999952, -34.687572478999925 ], [ -58.640731811999899, -34.68658828699995 ], [ -58.640533446999939, -34.685882567999954 ], [ -58.64035034199992, -34.685195922999924 ], [ -58.640094756999929, -34.684230803999924 ], [ -58.639888762999931, -34.683479308999949 ], [ -58.639686583999946, -34.682731627999942 ], [ -58.639671325999927, -34.682674407999912 ], [ -58.639484405999951, -34.681987761999949 ], [ -58.639259337999931, -34.681144713999913 ], [ -58.639076232999912, -34.68045806899994 ], [ -58.638877868999941, -34.679763793999939 ], [ -58.638702392999903, -34.679084777999947 ], [ -58.638557685999899, -34.678555003999918 ], [ -58.63847732499994, -34.678260802999944 ], [ -58.637946675999899, -34.678357284999947 ], [ -58.637680053999929, -34.678405761999954 ], [ -58.636867522999921, -34.678550719999919 ], [ -58.636070250999921, -34.678714751999905 ], [ -58.636058806999927, -34.678714751999905 ], [ -58.635665434999908, -34.678844750999929 ], [ -58.635169982999912, -34.679008483999951 ], [ -58.634936874999937, -34.678514162999932 ], [ -58.634632110999917, -34.677867888999913 ], [ -58.633859957999903, -34.678122577999943 ], [ -58.633319435999908, -34.678300865999915 ], [ -58.633314950999932, -34.678302344999906 ], [ -58.6331748959999, -34.678348540999934 ], [ -58.63294504299995, -34.677982477999933 ], [ -58.63286590599995, -34.677856444999918 ], [ -58.632602691999921, -34.677204131999929 ], [ -58.632183074999944, -34.676307677999944 ], [ -58.631580352999947, -34.675022124999941 ], [ -58.631011962999935, -34.673770904999913 ], [ -58.630958556999929, -34.673450469999921 ], [ -58.630462645999955, -34.672611236999956 ], [ -58.629779815999939, -34.67116165199991 ], [ -58.629146575999926, -34.669784545999903 ], [ -58.629062652999949, -34.669620513999917 ], [ -58.628410338999913, -34.668224334999934 ], [ -58.627967833999946, -34.66731262199994 ], [ -58.627784728999927, -34.666973113999916 ], [ -58.627479552999944, -34.666378020999957 ], [ -58.627151488999914, -34.665752410999914 ], [ -58.626777648999905, -34.665012359999935 ], [ -58.626720427999942, -34.664897918999941 ], [ -58.626529693999942, -34.664535521999937 ], [ -58.626380919999917, -34.664253234999933 ], [ -58.625911712999937, -34.663448333999952 ], [ -58.625446319999924, -34.66255187999991 ], [ -58.625232696999944, -34.662147521999941 ], [ -58.625045775999922, -34.661750792999953 ], [ -58.62461471599994, -34.660793303999924 ], [ -58.624347686999954, -34.660511016999919 ], [ -58.624240874999941, -34.660305022999921 ], [ -58.624320983999951, -34.659400939999955 ], [ -58.624305724999942, -34.658382415999938 ], [ -58.624294280999948, -34.657146453999928 ], [ -58.624263762999931, -34.655685424999945 ], [ -58.624254971999903, -34.655249394999942 ], [ -58.624244689999955, -34.65473937999991 ], [ -58.623373126999923, -34.654746066999905 ], [ -58.622753142999954, -34.654750823999905 ], [ -58.621269225999924, -34.654758452999943 ], [ -58.619850158999952, -34.654781341999922 ], [ -58.619838600999913, -34.654228876999923 ], [ -58.61983108499993, -34.653869628999928 ], [ -58.619838714999901, -34.652950286999953 ], [ -58.619834899999944, -34.651714324999944 ], [ -58.619823455999949, -34.650516509999932 ], [ -58.619817184999931, -34.649820474999956 ], [ -58.619812011999954, -34.649246215999938 ], [ -58.619808196999941, -34.64884948699995 ], [ -58.619180593999943, -34.648854975999939 ], [ -58.618499755999949, -34.648860930999945 ], [ -58.618503570999906, -34.649257659999932 ], [ -58.618509133999908, -34.649635950999937 ], [ -58.618522643999938, -34.65055465699993 ], [ -58.618530272999919, -34.651035308999951 ], [ -58.618549346999941, -34.651737212999933 ], [ -58.618549346999941, -34.652308762999951 ], [ -58.618549346999941, -34.652973174999943 ], [ -58.618568419999917, -34.653884887999936 ], [ -58.618583678999926, -34.654800414999954 ], [ -58.618610381999929, -34.655830382999909 ], [ -58.618631171999937, -34.656717764999939 ], [ -58.618639748999954, -34.657083827999941 ], [ -58.618096212999944, -34.657078954999918 ], [ -58.617577221999909, -34.657074302999945 ], [ -58.616438812999945, -34.657064917999946 ], [ -58.61528778099995, -34.657043456999929 ], [ -58.614804418999938, -34.657041850999917 ], [ -58.61413955699993, -34.657039641999916 ], [ -58.614154815999939, -34.65754699699994 ], [ -58.613910730999919, -34.657346877999942 ], [ -58.613540648999901, -34.657043456999929 ], [ -58.612922667999953, -34.657577514999957 ], [ -58.612270354999907, -34.658084868999936 ], [ -58.611614226999905, -34.65861511199995 ], [ -58.611298237999904, -34.658875337999916 ], [ -58.610965728999929, -34.659149169999921 ], [ -58.612255095999899, -34.66020965599995 ], [ -58.612426757999913, -34.660346984999933 ], [ -58.612663960999953, -34.66055702999995 ], [ -58.6130835539999, -34.660900458999947 ], [ -58.613587502999906, -34.66129686499994 ], [ -58.613866603999952, -34.661516404999929 ], [ -58.613796751999928, -34.661557959999925 ], [ -58.613154511999937, -34.662099060999935 ], [ -58.61281387899993, -34.662369617999957 ], [ -58.612411508999912, -34.662689211999918 ], [ -58.611293792999902, -34.663604735999911 ], [ -58.611236571999939, -34.663650512999936 ], [ -58.610496520999902, -34.664253234999933 ], [ -58.610393523999903, -34.664333343999942 ], [ -58.609580993999941, -34.664966582999909 ], [ -58.608627318999936, -34.665721892999954 ], [ -58.608951769999919, -34.666078495999955 ], [ -58.609050750999927, -34.666187285999911 ], [ -58.609123229999909, -34.666240691999917 ], [ -58.609638213999915, -34.666751861999956 ], [ -58.610389708999946, -34.667373656999928 ], [ -58.611175536999951, -34.668014525999922 ], [ -58.6119613649999, -34.668663024999944 ], [ -58.61275863599991, -34.669311522999919 ], [ -58.613521575999926, -34.669960021999941 ], [ -58.614284514999952, -34.670589446999941 ], [ -58.615051269999924, -34.67121887199994 ], [ -58.615779876999909, -34.671840667999902 ], [ -58.616737365999938, -34.672698974999946 ], [ -58.617759704999912, -34.673542022999925 ], [ -58.618804931999932, -34.67440795899995 ], [ -58.619987487999936, -34.675403594999921 ], [ -58.621055602999945, -34.676273345999903 ], [ -58.622356414999899, -34.677352904999907 ], [ -58.623538970999903, -34.678329467999902 ], [ -58.624507903999927, -34.679149627999948 ], [ -58.625595092999902, -34.680038451999906 ], [ -58.625606536999953, -34.680046081999933 ], [ -58.626640319999922, -34.680904387999931 ], [ -58.626705169999923, -34.680965423999908 ], [ -58.627704619999918, -34.68178176899994 ], [ -58.628201413999932, -34.682191405999902 ], [ -58.628791808999949, -34.682678222999925 ], [ -58.62868881199995, -34.682758330999945 ], [ -58.628442143999905, -34.682962243999953 ], [ -58.628116607999914, -34.683231353999929 ], [ -58.627388, -34.683826446999944 ], [ -58.626747130999945, -34.684360503999926 ], [ -58.626182555999947, -34.684822082999915 ], [ -58.625408172999926, -34.685470580999947 ], [ -58.624820708999948, -34.68595886199995 ], [ -58.624244689999955, -34.686420440999939 ], [ -58.623648475999914, -34.686904324999944 ], [ -58.623455047999926, -34.687061309999933 ], [ -58.623730087999945, -34.687315192999904 ], [ -58.624050139999952, -34.687610625999923 ], [ -58.624546050999925, -34.688056945999904 ], [ -58.624794005999945, -34.688285827999948 ], [ -58.625137328999926, -34.688594817999956 ], [ -58.625325845999953, -34.688437862999933 ], [ -58.625635368999951, -34.688180159999945 ], [ -58.625980376999905, -34.687892913999917 ], [ -58.626422881999929, -34.687519072999919 ], [ -58.626035719999948, -34.687195620999944 ], [ -58.625820159999932, -34.687015532999908 ], [ -58.625736236999899, -34.686946868999939 ], [ -58.625389098999904, -34.686664580999945 ], [ -58.625167846999943, -34.686462401999904 ], [ -58.624946593999937, -34.68623733499993 ], [ -58.624820708999948, -34.68595886199995 ], [ -58.625132796999935, -34.685699463999924 ], [ -58.625408172999926, -34.685470580999947 ], [ -58.626182555999947, -34.684822082999915 ], [ -58.626747130999945, -34.684360503999926 ], [ -58.627388, -34.683826446999944 ], [ -58.628116607999914, -34.683231353999929 ], [ -58.62868881199995, -34.682758330999945 ], [ -58.628791808999949, -34.682678222999925 ], [ -58.629444121999938, -34.682136535999916 ], [ -58.630096435999917, -34.681610106999926 ], [ -58.630771636999953, -34.681049346999941 ], [ -58.631347655999946, -34.680580138999915 ], [ -58.631564450999917, -34.680402760999925 ], [ -58.631935119999923, -34.68009948699995 ], [ -58.632507323999903, -34.679630279999913 ], [ -58.633094787999937, -34.679149627999948 ], [ -58.633426665999934, -34.678890227999943 ], [ -58.633318240999927, -34.678656949999947 ], [ -58.6331748959999, -34.678348540999934 ], [ -58.63286590599995, -34.677856444999918 ], [ -58.632602691999921, -34.677204131999929 ], [ -58.632183074999944, -34.676307677999944 ], [ -58.631580352999947, -34.675022124999941 ], [ -58.631262453999909, -34.67432232099992 ], [ -58.631011962999935, -34.673770904999913 ], [ -58.630958556999929, -34.673450469999921 ], [ -58.630462645999955, -34.672611236999956 ], [ -58.629779815999939, -34.67116165199991 ], [ -58.629146575999926, -34.669784545999903 ], [ -58.629062652999949, -34.669620513999917 ], [ -58.628410338999913, -34.668224334999934 ], [ -58.627967833999946, -34.66731262199994 ], [ -58.627784728999927, -34.666973113999916 ], [ -58.627479552999944, -34.666378020999957 ], [ -58.627151488999914, -34.665752410999914 ], [ -58.626777648999905, -34.665012359999935 ], [ -58.626720427999942, -34.664897918999941 ], [ -58.626529693999942, -34.664535521999937 ], [ -58.626380919999917, -34.664253234999933 ], [ -58.625911712999937, -34.663448333999952 ], [ -58.625446319999924, -34.66255187999991 ], [ -58.625232696999944, -34.662147521999941 ], [ -58.625045775999922, -34.661750792999953 ], [ -58.624844667999923, -34.661304083999937 ], [ -58.62461471599994, -34.660793303999924 ], [ -58.624347686999954, -34.660511016999919 ], [ -58.624240874999941, -34.660305022999921 ], [ -58.624320983999951, -34.659400939999955 ], [ -58.624305724999942, -34.658382415999938 ], [ -58.624297740999907, -34.657520162999901 ], [ -58.624294280999948, -34.657146453999928 ], [ -58.624263762999931, -34.655685424999945 ], [ -58.624253302999932, -34.655166581999936 ], [ -58.624244689999955, -34.65473937999991 ], [ -58.622753142999954, -34.654750823999905 ], [ -58.621569380999915, -34.654756909999946 ], [ -58.621269225999924, -34.654758452999943 ], [ -58.621238707999908, -34.653858184999933 ], [ -58.621221032999927, -34.653244594999933 ], [ -58.621212005999951, -34.652931212999931 ], [ -58.621189116999915, -34.65168762199994 ], [ -58.621143340999936, -34.650470733999953 ], [ -58.621132380999939, -34.650070064999909 ], [ -58.621109008999952, -34.649215697999921 ], [ -58.621047973999907, -34.648345946999939 ], [ -58.621057033999932, -34.648246288999928 ], [ -58.62107467699991, -34.64805221599994 ], [ -58.62107467699991, -34.64797210699993 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621036859999947, -34.645860344999903 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621043001999908, -34.644055882999908 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621949550999943, -34.642753846999938 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622027675999902, -34.642063168999925 ], [ -58.621574401999908, -34.641620635999914 ], [ -58.620635985999911, -34.640651702999946 ], [ -58.620597838999913, -34.640621184999929 ], [ -58.619965732999901, -34.640102119999938 ], [ -58.61955261199995, -34.639762877999942 ], [ -58.619487761999949, -34.639781951999908 ], [ -58.619106210999917, -34.640113493999934 ], [ -58.618701934999933, -34.640464782999913 ], [ -58.618171691999919, -34.640907287999937 ], [ -58.617565154999909, -34.64139556899994 ], [ -58.616821288999915, -34.642063140999937 ], [ -58.616600036999955, -34.642242431999932 ], [ -58.616386605999935, -34.642417963999947 ], [ -58.616191863999916, -34.642578124999943 ], [ -58.616165160999913, -34.642570495999905 ], [ -58.615621064999914, -34.642134300999942 ], [ -58.615261077999946, -34.641845702999944 ], [ -58.615146636999953, -34.641784667999957 ], [ -58.615043639999953, -34.641723632999913 ], [ -58.615034094999942, -34.641717074999917 ], [ -58.61503254899992, -34.64171601299995 ], [ -58.614543914999899, -34.641380309999931 ], [ -58.61399459799992, -34.640922545999956 ], [ -58.610006114999919, -34.63802245699992 ], [ -58.609577178999928, -34.637710570999957 ], [ -58.609474287999944, -34.637806950999902 ], [ -58.609275817999901, -34.637992858999951 ], [ -58.608855447999929, -34.638390957999945 ], [ -58.608699798999908, -34.638538360999917 ], [ -58.608076402999927, -34.638438617999952 ], [ -58.607364654999913, -34.638324737999937 ], [ -58.606483458999946, -34.638179778999927 ], [ -58.605818409999927, -34.638073014999918 ], [ -58.605342864999955, -34.637996673999908 ], [ -58.605597722999903, -34.637690477999911 ], [ -58.605873107999912, -34.637359618999938 ], [ -58.606418609999935, -34.636707305999948 ], [ -58.606941222999922, -34.636074065999935 ], [ -58.607291172999908, -34.635662935999903 ], [ -58.607486724999944, -34.635433196999941 ], [ -58.607524871999942, -34.635204314999953 ], [ -58.607489820999945, -34.634941435999906 ], [ -58.607488884999952, -34.634934413999929 ], [ -58.607486724999944, -34.634918212999935 ], [ -58.60731506299993, -34.634708404999913 ], [ -58.606929778999927, -34.634227752999948 ], [ -58.606449126999905, -34.633628844999919 ], [ -58.606049988999928, -34.633127527999932 ], [ -58.605972289999954, -34.633029937999936 ], [ -58.605945586999951, -34.633018493999941 ], [ -58.605614721999927, -34.633063611999944 ], [ -58.605358123999906, -34.633098601999905 ], [ -58.6051468309999, -34.633131745999947 ], [ -58.604969024999946, -34.633159636999949 ], [ -58.604797362999932, -34.63325500499991 ], [ -58.6045504679999, -34.633112210999911 ], [ -58.603775023999901, -34.632663726999908 ], [ -58.603612848999944, -34.632663726999908 ], [ -58.603416442999901, -34.632663726999908 ], [ -58.60332107499994, -34.632663726999908 ], [ -58.602558135999914, -34.632663726999908 ], [ -58.602298736999899, -34.632694243999936 ], [ -58.601802825999926, -34.632751464999956 ], [ -58.601409911999951, -34.632812499999943 ], [ -58.601211547999924, -34.632839202999946 ], [ -58.600944518999938, -34.632881164999958 ], [ -58.600746154999911, -34.632907866999915 ], [ -58.600009917999955, -34.632926940999937 ], [ -58.599620634999951, -34.632915232999949 ], [ -58.59950256299993, -34.632911681999929 ], [ -58.599881816999925, -34.632429270999921 ], [ -58.600020186999927, -34.632253263999928 ], [ -58.600456237999936, -34.631698607999908 ], [ -58.600517272999923, -34.631622313999912 ], [ -58.600595992999899, -34.631524284999955 ], [ -58.600719451999908, -34.631370543999935 ], [ -58.600552597999922, -34.631284055999913 ], [ -58.599887847999923, -34.630939483999953 ], [ -58.600085562999936, -34.630688220999957 ], [ -58.600620269999922, -34.630008697999926 ], [ -58.60134506199995, -34.629089354999905 ], [ -58.601915513999927, -34.628364065999904 ], [ -58.602146148999907, -34.628070830999945 ], [ -58.601938068999914, -34.627961136999943 ], [ -58.601444243999936, -34.62770080599995 ], [ -58.600742339999954, -34.627323150999928 ], [ -58.600677489999953, -34.627288817999954 ], [ -58.600063323999905, -34.626972197999919 ], [ -58.599803957999939, -34.626830410999958 ], [ -58.599491118999936, -34.626659392999954 ], [ -58.599330901999906, -34.62676620499991 ], [ -58.5992660739999, -34.626787813999954 ], [ -58.59923682099992, -34.626797564999947 ], [ -58.599216460999912, -34.626804351999908 ], [ -58.599110053999937, -34.62683095299991 ], [ -58.599048614999901, -34.62684631299993 ], [ -58.59895324699994, -34.626853942999958 ], [ -58.598770141999921, -34.626853942999958 ], [ -58.598674773999903, -34.626819610999917 ], [ -58.598602150999909, -34.626752797999927 ], [ -58.598579406999932, -34.626731872999926 ], [ -58.598522185999911, -34.626686095999958 ], [ -58.598476409999932, -34.626613616999919 ], [ -58.598243712999931, -34.626750945999902 ], [ -58.598156832999905, -34.626784478999923 ], [ -58.598026275999928, -34.626834868999936 ], [ -58.597690581999927, -34.626922606999926 ], [ -58.5973243709999, -34.626949309999929 ], [ -58.597064971999941, -34.626907348999907 ], [ -58.596797942999899, -34.626796721999938 ], [ -58.596481322999921, -34.626636504999908 ], [ -58.596443175999923, -34.626617431999932 ], [ -58.595767974999944, -34.626159667999957 ], [ -58.595073699999944, -34.625766753999926 ], [ -58.595024108999951, -34.625736236999956 ], [ -58.594600339999943, -34.625486212999931 ], [ -58.594261168999935, -34.625286101999905 ], [ -58.594203948999905, -34.625267028999929 ], [ -58.594467616999907, -34.624937925999916 ], [ -58.594726562999938, -34.62461471599994 ], [ -58.595027923999908, -34.62425613399995 ], [ -58.595359801999905, -34.623855590999938 ], [ -58.595851897999921, -34.623249053999928 ], [ -58.596630095999899, -34.622291564999955 ], [ -58.597309112999937, -34.621471404999909 ], [ -58.59809875499991, -34.620506286999955 ], [ -58.598278045999905, -34.620292663999919 ], [ -58.598522185999911, -34.619979857999908 ], [ -58.599357604999909, -34.618972777999943 ], [ -58.599918354999943, -34.61805751199995 ], [ -58.599844993999909, -34.617673878999938 ], [ -58.599735250999913, -34.617099990999918 ], [ -58.59968566099991, -34.616848205999929 ], [ -58.599570685999936, -34.616217768999945 ], [ -58.599456777999933, -34.615593181999941 ], [ -58.598914919999913, -34.615294242999937 ], [ -58.598419188999912, -34.615020751999907 ], [ -58.597373961999949, -34.614448546999938 ], [ -58.5963363649999, -34.613880156999926 ], [ -58.5957776219999, -34.613571323999906 ], [ -58.595287322999923, -34.613300322999919 ], [ -58.595920461999924, -34.612532683999916 ], [ -58.596023559999935, -34.612407683999947 ], [ -58.595794677999947, -34.612277984999935 ], [ -58.595783186999938, -34.611969381999927 ], [ -58.595741271999941, -34.610843657999908 ], [ -58.595729139999946, -34.609771263999903 ], [ -58.595713091999926, -34.608698799999956 ], [ -58.595697044999952, -34.607626336999942 ], [ -58.595657495999944, -34.606534384999918 ], [ -58.595596190999913, -34.605701067999917 ], [ -58.595594537999943, -34.605678591999947 ], [ -58.595813750999923, -34.605499267999903 ], [ -58.595807406999938, -34.605495186999917 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 9.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.455913000184751, -34.593479999702197 ], [ -58.455012000003762, -34.592642999774569 ], [ -58.454110999822717, -34.591783999731774 ], [ -58.453251999779923, -34.590991000034592 ], [ -58.452330000429129, -34.590154000106963 ], [ -58.452565999621129, -34.58998200026906 ], [ -58.455098000372402, -34.588211000437298 ], [ -58.455419999932985, -34.587985999953901 ], [ -58.455462000071179, -34.587450000417164 ], [ -58.455033000072831, -34.587470999586913 ], [ -58.454110999822717, -34.587771999977747 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.453124000172409, -34.586098000122547 ], [ -58.452973000403631, -34.58588400014645 ], [ -58.452350999598934, -34.584811000127502 ], [ -58.451749999762626, -34.58380200036197 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.454025000353454, -34.582944000365273 ], [ -58.455376999748694, -34.582557999651897 ], [ -58.456706999928087, -34.582149999722674 ], [ -58.458401999852356, -34.581850000277257 ], [ -58.459453999802236, -34.581850000277257 ], [ -58.460547999890252, -34.581850000277257 ], [ -58.461900000184812, -34.581807000092908 ], [ -58.461964000438229, -34.582901000180982 ], [ -58.462006999723201, -34.58397400019993 ], [ -58.462049999907549, -34.585110999572919 ], [ -58.463508999740498, -34.585047000218822 ], [ -58.464882000104183, -34.584575000036182 ], [ -58.466276999683771, -34.58412399992261 ], [ -58.467113999611342, -34.583844999646999 ], [ -58.467392999887011, -34.583759000177679 ], [ -58.468530000159319, -34.583394999579525 ], [ -58.469559999993976, -34.583050999903662 ], [ -58.470869000104244, -34.582621999905314 ], [ -58.472070999776804, -34.582236000091314 ], [ -58.472091999845873, -34.581548999886365 ], [ -58.472135000030164, -34.580454999798349 ], [ -58.472135000030164, -34.5800259998 ], [ -58.473680000231809, -34.580904999865822 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474409999721672, -34.581334999910268 ], [ -58.475481999694466, -34.582149999722674 ], [ -58.476641000082054, -34.583007999719371 ], [ -58.477993000376614, -34.584037999553971 ], [ -58.478936999842631, -34.584745999827987 ], [ -58.479431000140494, -34.585132999688142 ], [ -58.480697000066471, -34.586077000053479 ], [ -58.481704999785848, -34.586827999612467 ], [ -58.482541999713476, -34.587450000417164 ], [ -58.483421999825396, -34.588136999722735 ], [ -58.484236999637801, -34.588737000412209 ], [ -58.484687999751372, -34.589081000088015 ], [ -58.486340000390669, -34.590110999922672 ], [ -58.487476999763715, -34.590819000196632 ], [ -58.488592999966954, -34.59150600040158 ], [ -58.489301000240914, -34.590732999828049 ], [ -58.489966000330583, -34.590003000338129 ], [ -58.490631999567086, -34.589273999995044 ], [ -58.491275000440851, -34.588586999790152 ], [ -58.491898000392382, -34.587900999631358 ], [ -58.492541000366828, -34.587171000141495 ], [ -58.493185000387427, -34.586462999867479 ], [ -58.493829000408027, -34.585733000377616 ], [ -58.494493999598376, -34.585025000103656 ], [ -58.495180999803267, -34.584338999944862 ], [ -58.495823999777713, -34.583630999670845 ], [ -58.496962000096175, -34.584316999829639 ], [ -58.498056000184192, -34.584981999919307 ], [ -58.499172000387489, -34.585690000193324 ], [ -58.500308999760477, -34.586398999614119 ], [ -58.501489000217134, -34.587106999888078 ], [ -58.502734000073985, -34.587900999631358 ], [ -58.504086000368602, -34.588716000343084 ], [ -58.505394000432716, -34.589531000155489 ], [ -58.506724999758887, -34.590347000013992 ], [ -58.508077000053447, -34.591161999826397 ], [ -58.509407000232841, -34.591998999753969 ], [ -58.509685999609133, -34.592170999591929 ], [ -58.510994999719401, -34.591720000377677 ], [ -58.5124330003826, -34.591269000264106 ], [ -58.513892000215606, -34.590840000265757 ], [ -58.515372000117679, -34.590411000267409 ], [ -58.516681000227948, -34.590003000338129 ], [ -58.517947000153868, -34.589638999739975 ], [ -58.518268999714508, -34.589553000270712 ], [ -58.519126999711204, -34.589251999879821 ], [ -58.520479000005821, -34.588866000065821 ], [ -58.522282000413952, -34.588329999629764 ], [ -58.523160999580398, -34.588072000322541 ], [ -58.524105999991889, -34.587793000046872 ], [ -58.525865000169574, -34.587256999610815 ], [ -58.526509000190174, -34.586506000051827 ], [ -58.527174000279842, -34.585775999662587 ], [ -58.527839000369511, -34.58500400003453 ], [ -58.528375999952402, -34.584424000267347 ], [ -58.528826000019819, -34.583866999762165 ], [ -58.529320000317739, -34.583265999925914 ], [ -58.529470000040419, -34.583179999557274 ], [ -58.530070999876727, -34.582515000366925 ], [ -58.530241999668533, -34.582300000344674 ], [ -58.531164999964744, -34.581291999725977 ], [ -58.531680000331733, -34.580711999958794 ], [ -58.532022999961441, -34.580326000144737 ], [ -58.532517000259304, -34.580734000074017 ], [ -58.533653999632349, -34.579810999777749 ], [ -58.534705999582172, -34.578952999781052 ], [ -58.535757000385217, -34.578093999738257 ], [ -58.536808000288943, -34.577257999856783 ], [ -58.537860000238766, -34.576377999744864 ], [ -58.538911000142491, -34.575540999817235 ], [ -58.539940999977148, -34.574682999820538 ], [ -58.541013999996039, -34.573823999777744 ], [ -58.542065999945919, -34.572987999896213 ], [ -58.543116999849644, -34.572085999669127 ], [ -58.543417000194381, -34.572321999760447 ], [ -58.544554999613524, -34.571442999694625 ], [ -58.545585000347444, -34.570626999836122 ], [ -58.546658000366392, -34.569812000023717 ], [ -58.547730000339186, -34.568975000096145 ], [ -58.548782000289066, -34.56816000028374 ], [ -58.549833000192791, -34.567323000356112 ], [ -58.550970999611877, -34.566443000244249 ], [ -58.551134999980206, -34.566616000128249 ], [ -58.551034999865294, -34.566356999875609 ], [ -58.550798999773974, -34.56569199978594 ], [ -58.550562999682654, -34.565047999765341 ], [ -58.550197999937723, -34.564040000045907 ], [ -58.550133999684306, -34.563911000392295 ], [ -58.550520000397682, -34.563825000023712 ], [ -58.551206999703254, -34.563352999841015 ], [ -58.5518499996777, -34.56285999958925 ], [ -58.552343999975562, -34.562494999844318 ], [ -58.553030000134356, -34.562022999661679 ], [ -58.553717000339248, -34.561529000263135 ], [ -58.554403999644819, -34.561013999896147 ], [ -58.555047999665419, -34.560563999828673 ], [ -58.555733999824213, -34.560027000245839 ], [ -58.556999999750133, -34.559082999880502 ], [ -58.558438000413332, -34.557988999792485 ], [ -58.559210000041446, -34.557365999840954 ], [ -58.560003999784726, -34.556743999935577 ], [ -58.56054100026688, -34.556336000006354 ], [ -58.561764000008566, -34.55541399975624 ], [ -58.561076999803674, -34.554812999919989 ], [ -58.560326000244686, -34.554147999830263 ], [ -58.559402999948475, -34.553354000086983 ], [ -58.558438000413332, -34.552517000159412 ], [ -58.557450999863704, -34.551680000231784 ], [ -58.558416000298109, -34.550885999589184 ], [ -58.559402999948475, -34.550091999845847 ], [ -58.558416000298109, -34.549277000033499 ], [ -58.558330999975624, -34.549127000310762 ], [ -58.558222000344983, -34.548963999988587 ], [ -58.558072999769081, -34.548739999551287 ], [ -58.557515000117121, -34.548268000267967 ], [ -58.556635000005201, -34.547538999924882 ], [ -58.557944000115469, -34.546486999975002 ], [ -58.559210000041446, -34.545457000140402 ], [ -58.560498000082589, -34.544427000305802 ], [ -58.561807000192857, -34.543396999571826 ], [ -58.563073000118834, -34.5423459996681 ], [ -58.564360000113879, -34.5413159998335 ], [ -58.565648000155022, -34.540285999998844 ], [ -58.564789000112228, -34.539535000439855 ], [ -58.563887999931239, -34.538783999981547 ], [ -58.563051000003611, -34.538053999592364 ], [ -58.562149999822566, -34.537303000033376 ], [ -58.563330000279223, -34.536358999668039 ], [ -58.562429000098234, -34.535630000224273 ], [ -58.562578999820971, -34.53554399985569 ], [ -58.56292200035, -34.53522200029505 ], [ -58.563608999655571, -34.534663999743771 ], [ -58.563844999746891, -34.534470999836742 ], [ -58.564360000113879, -34.534062999907462 ], [ -58.565110999672868, -34.533419999933017 ], [ -58.565862000131176, -34.532840000165834 ], [ -58.566398999714011, -34.53239000009836 ], [ -58.567193000356667, -34.531767000146885 ], [ -58.567685999709056, -34.53136000026376 ], [ -58.568716000443032, -34.530523000336132 ], [ -58.568973999750256, -34.530308000313937 ], [ -58.569616999724701, -34.529792999946949 ], [ -58.569725000208564, -34.529706999578309 ], [ -58.570390000298232, -34.529192000110697 ], [ -58.571270000410152, -34.529942999669629 ], [ -58.572128000406849, -34.530673000058869 ], [ -58.573007999619449, -34.531423999617857 ], [ -58.573436999617797, -34.531789000262108 ], [ -58.573436999617797, -34.531789000262108 ], [ -58.574316999729717, -34.531080999988092 ], [ -58.574445000236551, -34.530973000403606 ], [ -58.575025000003734, -34.530523000336132 ], [ -58.575046000072803, -34.530608999805452 ], [ -58.575132000441442, -34.530544000405257 ], [ -58.575690000093402, -34.53007200022256 ], [ -58.576548000090099, -34.529428000202017 ], [ -58.577213000179768, -34.528848999581612 ], [ -58.577900000384659, -34.528290999929652 ], [ -58.578586999690231, -34.527733000277692 ], [ -58.57938100033283, -34.527090000303247 ], [ -58.578586999690231, -34.526424000167424 ], [ -58.577814000016019, -34.525759000077755 ], [ -58.577042000387962, -34.525137000172379 ], [ -58.576247999745362, -34.524449999967487 ], [ -58.575475000071151, -34.525072999918962 ], [ -58.574809999981483, -34.525609000355018 ], [ -58.574122999776591, -34.526167000006978 ], [ -58.573136000126283, -34.526981999819384 ], [ -58.572686000058809, -34.526188000076104 ], [ -58.572599999690169, -34.526038000353367 ], [ -58.572257000060461, -34.525458999733019 ], [ -58.572085000222557, -34.525201000425795 ], [ -58.571569999855569, -34.524343000429099 ], [ -58.571012000203609, -34.523013000249705 ], [ -58.570904999765901, -34.522777000158385 ], [ -58.570604000274329, -34.522025999700077 ], [ -58.570324999998718, -34.521339000394505 ], [ -58.570067999838272, -34.520716999589808 ], [ -58.569595999655633, -34.519579000170665 ], [ -58.569553000370604, -34.51949399984818 ], [ -58.569230999910701, -34.518677999989677 ], [ -58.568758999728004, -34.517368999879409 ], [ -58.568501000420781, -34.516467999698364 ], [ -58.568350999798781, -34.515781000392792 ], [ -58.568307999614433, -34.515524000232404 ], [ -58.568072000422433, -34.514600999936135 ], [ -58.567858000446336, -34.513678999686022 ], [ -58.568888000280936, -34.512819999643227 ], [ -58.569896000000369, -34.51196199964653 ], [ -58.570904999765901, -34.51108200043393 ], [ -58.571934999600501, -34.51020200032201 ], [ -58.572900000034906, -34.509323000256188 ], [ -58.573995000169077, -34.508443000144325 ], [ -58.574573999890163, -34.508978999681062 ], [ -58.575217999910706, -34.509494000047994 ], [ -58.575947000253791, -34.510051999700011 ], [ -58.576633999559419, -34.510589000182165 ], [ -58.577042000387962, -34.51020200032201 ], [ -58.577577999924699, -34.509709000070245 ], [ -58.577706999578311, -34.509601999632537 ], [ -58.578435999921396, -34.508978999681062 ], [ -58.578544000405259, -34.508872000142674 ], [ -58.579144000195413, -34.508356999775685 ], [ -58.579637999593956, -34.507927999777337 ], [ -58.579831000400304, -34.5077780000546 ], [ -58.580560999890167, -34.507155000103126 ], [ -58.580818000050613, -34.506941000127028 ], [ -58.581290000233309, -34.506533000197749 ], [ -58.581633999909116, -34.506253999922137 ], [ -58.582363000252201, -34.505609999901537 ], [ -58.582641999628549, -34.505373999810217 ], [ -58.583070999626898, -34.50498799999616 ], [ -58.583179000110704, -34.504901999627521 ], [ -58.583672000362469, -34.504451999560104 ], [ -58.583778999900858, -34.504366000090783 ], [ -58.584379999737166, -34.503850999723795 ], [ -58.58491700021932, -34.503442999794572 ], [ -58.584980999573418, -34.503379000440475 ], [ -58.584551999575069, -34.502605999866944 ], [ -58.584509000290097, -34.502521000443778 ], [ -58.584165999761012, -34.501855000307955 ], [ -58.583950999738818, -34.50144800042483 ], [ -58.583714999647498, -34.501060999665356 ], [ -58.583436000271149, -34.500546000197687 ], [ -58.583285999649149, -34.500289000037299 ], [ -58.582920999904161, -34.499601999832407 ], [ -58.582663999743772, -34.498464999560042 ], [ -58.582427999652396, -34.497477999909734 ], [ -58.582191000414298, -34.496383999821717 ], [ -58.582964000088509, -34.495739999801117 ], [ -58.583693999578372, -34.495138999964809 ], [ -58.584466000105806, -34.494494999944266 ], [ -58.585174000379766, -34.493895000154112 ], [ -58.585947000053977, -34.493229000018289 ], [ -58.586676000397063, -34.492629000228135 ], [ -58.587513000324691, -34.491963000092312 ], [ -58.588263999883623, -34.491320000117867 ], [ -58.588736000066319, -34.490912000188587 ], [ -58.590496000290159, -34.489516999709736 ], [ -58.591139000264604, -34.488981000172998 ], [ -58.591482999940467, -34.488722999966456 ], [ -58.591740000100856, -34.488530000059427 ], [ -58.592104999845844, -34.488337000152399 ], [ -58.592663000397124, -34.48814400024537 ], [ -58.593370999771764, -34.488036999807662 ], [ -58.594294000068032, -34.488079999991953 ], [ -58.593923000046402, -34.489310000056435 ], [ -58.593821999885336, -34.489646000262667 ], [ -58.593211999634036, -34.490632999912975 ], [ -58.591615999778526, -34.492035999861457 ], [ -58.591182000448896, -34.492414000205883 ], [ -58.591529000263108, -34.492693999628329 ], [ -58.592726999751221, -34.493659000062735 ], [ -58.59283400018893, -34.493659000062735 ], [ -58.593049000211124, -34.493508000293957 ], [ -58.59315599974957, -34.493487000224832 ], [ -58.593380000186812, -34.493583000155297 ], [ -58.594250999883684, -34.493959000407472 ], [ -58.594508000044129, -34.494109000130209 ], [ -58.594744000135449, -34.494131000245432 ], [ -58.594915999973352, -34.494065999945917 ], [ -58.595002000341992, -34.493959000407472 ], [ -58.595069999880536, -34.493785999624151 ], [ -58.595494999694438, -34.492713999651301 ], [ -58.595759000177679, -34.491651000093555 ], [ -58.596268000267969, -34.489603000078375 ], [ -58.596415999898454, -34.489045999573193 ], [ -58.596439000059775, -34.488959000057775 ], [ -58.596395999875426, -34.488679999782107 ], [ -58.596268000267969, -34.488401000405815 ], [ -58.596096000430009, -34.488187000429662 ], [ -58.596010000061426, -34.487929000223119 ], [ -58.596032000176649, -34.487693000131799 ], [ -58.596012000153621, -34.486865999766053 ], [ -58.596010000061426, -34.486770999881685 ], [ -58.595938000338379, -34.486719000181665 ], [ -58.595938000338379, -34.486719000181665 ], [ -58.597136999872589, -34.486536999882617 ], [ -58.597298000102569, -34.486512999675142 ], [ -58.597940000030917, -34.486459999929025 ], [ -58.598947999750351, -34.486375999652637 ], [ -58.599099999565283, -34.486362999952462 ], [ -58.600429999744676, -34.486276999583822 ], [ -58.601375000156111, -34.486276999583822 ], [ -58.602469000244128, -34.486298999699045 ], [ -58.604002999938473, -34.48619999963023 ], [ -58.604464999659967, -34.486170000045433 ], [ -58.606774000020039, -34.485926999631261 ], [ -58.607725999854949, -34.48582600036957 ], [ -58.610344000075486, -34.485482999840542 ], [ -58.611846000092783, -34.485289999933514 ], [ -58.61302599965012, -34.485140000210777 ], [ -58.614098999669068, -34.484989999588777 ], [ -58.614421000129028, -34.485118000095611 ], [ -58.615086000218696, -34.485461999771417 ], [ -58.615337000102443, -34.485629000278095 ], [ -58.615472000032753, -34.485718999931862 ], [ -58.616029999684713, -34.486062999607725 ], [ -58.617081999634536, -34.48662000011285 ], [ -58.61823999997597, -34.487156999695742 ], [ -58.619312999994918, -34.487649999947507 ], [ -58.619870999646878, -34.486577999974656 ], [ -58.620321999760449, -34.485654999678445 ], [ -58.6206870004047, -34.484925000188582 ], [ -58.620819000196661, -34.484665999935885 ], [ -58.621179999757146, -34.48395999975412 ], [ -58.621309000310077, -34.483659000262605 ], [ -58.621780999593398, -34.482671999712977 ], [ -58.622230999660871, -34.48172800024696 ], [ -58.622703999889666, -34.480740999697332 ], [ -58.623153999957083, -34.479797000231315 ], [ -58.623605000070654, -34.478830999750812 ], [ -58.624226999976031, -34.477543999755767 ], [ -58.624848999881408, -34.476298999898859 ], [ -58.625492999902008, -34.474946999604299 ], [ -58.625921999900356, -34.474131999791894 ], [ -58.625944000015522, -34.473982000069213 ], [ -58.625900999831231, -34.473659999609254 ], [ -58.625557000155368, -34.472780000396654 ], [ -58.625128000157019, -34.471556999755705 ], [ -58.624902999673679, -34.471090999849707 ], [ -58.624506000251642, -34.47026999976066 ], [ -58.624334000413739, -34.469840999762312 ], [ -58.624249000091254, -34.469668999924352 ], [ -58.624098000322419, -34.46938999964874 ], [ -58.623884000346322, -34.469003999834683 ], [ -58.623648000254946, -34.468595999905403 ], [ -58.623648000254946, -34.46827400034482 ], [ -58.623691000439294, -34.468144999791889 ], [ -58.624763000412088, -34.466794000442746 ], [ -58.625751000108551, -34.465506000401547 ], [ -58.625900999831231, -34.465312999595199 ], [ -58.626866000265636, -34.46408999985357 ], [ -58.627209999941499, -34.463660999855222 ], [ -58.628390000398156, -34.46217999990705 ], [ -58.628561000189961, -34.462030000184313 ], [ -58.629097999772853, -34.461299999795131 ], [ -58.62995599976955, -34.460226999776182 ], [ -58.630556999605801, -34.459498000332417 ], [ -58.631200999626401, -34.458661000404788 ], [ -58.631243999810692, -34.458575000036205 ], [ -58.631929999969486, -34.458939999781137 ], [ -58.633261000194977, -34.45967000017032 ], [ -58.634570000305246, -34.460378000444337 ], [ -58.634869999750663, -34.460549000236142 ], [ -58.634912999934954, -34.460506000051794 ], [ -58.635942999769611, -34.459604999870805 ], [ -58.637015999788503, -34.458703999689817 ], [ -58.638131999991742, -34.457717000039452 ], [ -58.639269000264107, -34.456730000389143 ], [ -58.640106000191736, -34.455657000370252 ], [ -58.640985000257501, -34.454563000282178 ], [ -58.641049999657696, -34.454476999913595 ], [ -58.641478999656044, -34.453897000146412 ], [ -58.641801000116004, -34.453639999985967 ], [ -58.641972999953964, -34.45357599973255 ], [ -58.642165999860936, -34.453533000447578 ], [ -58.642358999767964, -34.453511000332355 ], [ -58.643667999878232, -34.453553999617327 ], [ -58.643881999854386, -34.45357599973255 ], [ -58.644461999621569, -34.453596999801675 ], [ -58.645685000262517, -34.453596999801675 ], [ -58.647015000441854, -34.453639999985967 ], [ -58.648238000183539, -34.453683000170258 ], [ -58.648496000390082, -34.453661000055092 ], [ -58.649160999580431, -34.453468000148064 ], [ -58.649483000040391, -34.453360999710299 ], [ -58.650104999945768, -34.453188999872395 ], [ -58.650362000106156, -34.45310400044923 ], [ -58.650919999758116, -34.452909999596784 ], [ -58.651155999849493, -34.45286800035791 ], [ -58.651671000216425, -34.45269599962063 ], [ -58.651949999592773, -34.452631000220435 ], [ -58.652551000328344, -34.452438000313407 ], [ -58.652701000051081, -34.452395000129115 ], [ -58.653324000002556, -34.45222400033731 ], [ -58.653860000438613, -34.452094999784379 ], [ -58.654160999930184, -34.45198800024599 ], [ -58.654912000388492, -34.451773000223739 ], [ -58.655684000016549, -34.451537000132419 ], [ -58.656949999942526, -34.451193999603333 ], [ -58.659568000163063, -34.450529000412985 ], [ -58.661155999649623, -34.450099000368539 ], [ -58.662765000104628, -34.449712999655162 ], [ -58.663537999778839, -34.449519999748134 ], [ -58.664352999591244, -34.449326999841105 ], [ -58.665125000118621, -34.449133999934133 ], [ -58.66596200004625, -34.448941000027105 ], [ -58.667314000340809, -34.448618999567145 ], [ -58.668087000015021, -34.448446999729185 ], [ -58.670039000099734, -34.447996999661768 ], [ -58.670339999591249, -34.447911000192448 ], [ -58.671391000394294, -34.447652999985905 ], [ -58.671497999932683, -34.447631999916837 ], [ -58.672636000251146, -34.447373999710294 ], [ -58.672785999973883, -34.447331000425265 ], [ -58.674974000149973, -34.44677399992014 ], [ -58.674974000149973, -34.446730999735792 ], [ -58.675630999870691, -34.44640299989851 ], [ -58.675790000008476, -34.446322999806569 ], [ -58.675960999800282, -34.44627999962222 ], [ -58.676111999569059, -34.446343999875637 ], [ -58.676476000167213, -34.446409000175152 ], [ -58.676558000351406, -34.44639999976016 ], [ -58.678128999953344, -34.446237000337248 ], [ -58.679030000134333, -34.446258999553152 ], [ -58.679652000039709, -34.446343999875637 ], [ -58.682077000353217, -34.446623000151305 ], [ -58.682398999913858, -34.446666000335597 ], [ -58.683729000093251, -34.446859000242625 ], [ -58.685402999948451, -34.447095000333945 ], [ -58.686196999691731, -34.447223999987557 ], [ -58.687033999619359, -34.447331000425265 ], [ -58.688707000327781, -34.447546000447517 ], [ -58.689865999815993, -34.447675000101128 ], [ -58.690403000298204, -34.447675000101128 ], [ -58.695531000255414, -34.447546000447517 ], [ -58.696302999883471, -34.447525000378448 ], [ -58.697269000364031, -34.4474820001941 ], [ -58.698900000034939, -34.447631999916837 ], [ -58.699221999595579, -34.447267000171905 ], [ -58.699335000309986, -34.447154000356761 ], [ -58.700230000214276, -34.446258999553152 ], [ -58.700329000283091, -34.446127999807288 ], [ -58.701486999725205, -34.444613000089817 ], [ -58.702311999998756, -34.443532999748072 ], [ -58.702642999974444, -34.443099000418499 ], [ -58.703475999717568, -34.442007999569455 ], [ -58.703835000085121, -34.441538000378387 ], [ -58.704329000383041, -34.441000999896175 ], [ -58.70434700031376, -34.440973000403631 ], [ -58.705153999757215, -34.439712999855033 ], [ -58.705208000448806, -34.43962800043181 ], [ -58.705422999571738, -34.439284999902782 ], [ -58.705910999592902, -34.438855999904433 ], [ -58.706130999845698, -34.438662999997405 ], [ -58.706324999798881, -34.438516999559852 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 7.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.447609000355044, -34.591699000308552 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.451736000016354, -34.589577999624964 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45102100031886, -34.588673000158792 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.45270599978204, -34.587886999885086 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.455076000257179, -34.587084999772856 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.455419999932985, -34.587214000325787 ], [ -58.455677000093431, -34.587150000072427 ], [ -58.456385000367447, -34.586870999796758 ], [ -58.457328999833408, -34.586549000236118 ], [ -58.458123999622842, -34.586253000075828 ], [ -58.459689999893556, -34.585669000124199 ], [ -58.459882999800584, -34.585625999939907 ], [ -58.460096999776681, -34.585625999939907 ], [ -58.460398000167515, -34.585669000124199 ], [ -58.461106000441532, -34.585840999962159 ], [ -58.461514000370755, -34.58603399986913 ], [ -58.461816999954522, -34.586206999753188 ], [ -58.461964000438229, -34.586291000029576 ], [ -58.462157000345258, -34.58644199979841 ], [ -58.462907999904246, -34.587084999772856 ], [ -58.463465999556206, -34.587643000324135 ], [ -58.465806999593326, -34.589838999969857 ], [ -58.466234000398742, -34.590239999576283 ], [ -58.466555999959382, -34.590560999990089 ], [ -58.466578000074605, -34.590647000358729 ], [ -58.466578000074605, -34.590925999735077 ], [ -58.466255999614646, -34.591227000125912 ], [ -58.465246999849114, -34.592063000007386 ], [ -58.466020000422645, -34.592578000374374 ], [ -58.467093000441594, -34.593286999795168 ], [ -58.468186999630291, -34.593995000069128 ], [ -58.468679999882056, -34.594337999698894 ], [ -58.468250999883708, -34.59575400024687 ], [ -58.468101000160971, -34.596268999714539 ], [ -58.469002000342016, -34.596268999714539 ], [ -58.470417999990673, -34.596247999645414 ], [ -58.471254999918244, -34.596419000336539 ], [ -58.474120999884178, -34.596974999896304 ], [ -58.476641000082054, -34.597042000288013 ], [ -58.477842999754614, -34.597084999573042 ], [ -58.478336000006379, -34.598329000283115 ], [ -58.478594000212922, -34.598951000188492 ], [ -58.478743999935602, -34.599144000095464 ], [ -58.478980000026922, -34.599315999933424 ], [ -58.479624000047522, -34.599079999842047 ], [ -58.480460999975151, -34.598973000303658 ], [ -58.480803999604859, -34.598822999681659 ], [ -58.482133999784196, -34.59822199984535 ], [ -58.482605999966893, -34.59798599975403 ], [ -58.483228999918367, -34.597770999731836 ], [ -58.483399999710173, -34.59774999966271 ], [ -58.484859000442498, -34.597621000009099 ], [ -58.485181000003081, -34.597599999939973 ], [ -58.486146999584321, -34.59751399957139 ], [ -58.486490000113349, -34.597492000355487 ], [ -58.486683000020378, -34.597471000286419 ], [ -58.487155000203074, -34.597449000171196 ], [ -58.487799000223617, -34.597405999986847 ], [ -58.488571999897829, -34.597362999802556 ], [ -58.489601999732486, -34.597299000448459 ], [ -58.490223999637806, -34.597256000264167 ], [ -58.491211000187491, -34.59719200001075 ], [ -58.492970000365176, -34.597063000357139 ], [ -58.494816000058336, -34.59695599991943 ], [ -58.496703999889633, -34.596827000265819 ], [ -58.496790000258272, -34.596848000334887 ], [ -58.497198000187495, -34.596806000196693 ], [ -58.498420999929181, -34.596376000152247 ], [ -58.499558000201489, -34.595926000084773 ], [ -58.500716999689757, -34.595497000086425 ], [ -58.501810999777774, -34.595110000226271 ], [ -58.502690999889694, -34.594788999812465 ], [ -58.502904999865791, -34.594703000343145 ], [ -58.503227000325751, -34.594552999721088 ], [ -58.503592000070682, -34.594445000136602 ], [ -58.504021000069031, -34.594274000344797 ], [ -58.505137000272327, -34.593866000415517 ], [ -58.505887999831259, -34.593587000139905 ], [ -58.506295999760539, -34.593437000417168 ], [ -58.507410999917681, -34.593028999588626 ], [ -58.508549000236144, -34.592599999590277 ], [ -58.508999000303561, -34.592427999752317 ], [ -58.509685999609133, -34.592170999591929 ], [ -58.510994999719401, -34.591720000377677 ], [ -58.5124330003826, -34.591269000264106 ], [ -58.513892000215606, -34.590840000265757 ], [ -58.515372000117679, -34.590411000267409 ], [ -58.516681000227948, -34.590003000338129 ], [ -58.517947000153868, -34.589638999739975 ], [ -58.518268999714508, -34.589553000270712 ], [ -58.519126999711204, -34.589251999879821 ], [ -58.520479000005821, -34.588866000065821 ], [ -58.522282000413952, -34.588329999629764 ], [ -58.523160999580398, -34.588072000322541 ], [ -58.524105999991889, -34.587793000046872 ], [ -58.525865000169574, -34.587256999610815 ], [ -58.526509000190174, -34.586506000051827 ], [ -58.527174000279842, -34.585775999662587 ], [ -58.527839000369511, -34.58500400003453 ], [ -58.528375999952402, -34.584424000267347 ], [ -58.528826000019819, -34.583866999762165 ], [ -58.529320000317739, -34.583265999925914 ], [ -58.529470000040419, -34.583179999557274 ], [ -58.530070999876727, -34.582515000366925 ], [ -58.530241999668533, -34.582300000344674 ], [ -58.531164999964744, -34.581291999725977 ], [ -58.531680000331733, -34.580711999958794 ], [ -58.532022999961441, -34.580326000144737 ], [ -58.532517000259304, -34.580734000074017 ], [ -58.533653999632349, -34.579810999777749 ], [ -58.534705999582172, -34.578952999781052 ], [ -58.535757000385217, -34.578093999738257 ], [ -58.536808000288943, -34.577257999856783 ], [ -58.537860000238766, -34.576377999744864 ], [ -58.538911000142491, -34.575540999817235 ], [ -58.539940999977148, -34.574682999820538 ], [ -58.541013999996039, -34.573823999777744 ], [ -58.542065999945919, -34.572987999896213 ], [ -58.543116999849644, -34.572085999669127 ], [ -58.543417000194381, -34.572321999760447 ], [ -58.544554999613524, -34.571442999694625 ], [ -58.545585000347444, -34.570626999836122 ], [ -58.546658000366392, -34.569812000023717 ], [ -58.547730000339186, -34.568975000096145 ], [ -58.548782000289066, -34.56816000028374 ], [ -58.549833000192791, -34.567323000356112 ], [ -58.550970999611877, -34.566443000244249 ], [ -58.550434000029043, -34.566014000245843 ], [ -58.549897999592986, -34.565563000132329 ], [ -58.548888999827454, -34.564748000319923 ], [ -58.548160000383689, -34.564104000299324 ], [ -58.547343999625866, -34.563417000094432 ], [ -58.546658000366392, -34.56285999958925 ], [ -58.546056999630764, -34.562323000006415 ], [ -58.545004999680941, -34.563137999818821 ], [ -58.543974999846341, -34.563974999746392 ], [ -58.542967000126907, -34.563137999818821 ], [ -58.541979999577279, -34.56230199993729 ], [ -58.543010000311199, -34.56150800019401 ], [ -58.543868000307953, -34.560649000151216 ], [ -58.543804000054536, -34.560499000428479 ], [ -58.542880999758268, -34.559726999901102 ], [ -58.541979999577279, -34.558976000342113 ], [ -58.543052999596227, -34.558117000299262 ], [ -58.544104000399273, -34.557281000417788 ], [ -58.545177000418221, -34.556401000305868 ], [ -58.545971000161501, -34.555950000192297 ], [ -58.546699999605266, -34.555542000263074 ], [ -58.547815999808506, -34.554684000266377 ], [ -58.549124999918774, -34.553611000247429 ], [ -58.550412999959917, -34.552602999628675 ], [ -58.551528000117059, -34.551680000231784 ], [ -58.552794000043036, -34.550650000397184 ], [ -58.554103000153304, -34.549598999594139 ], [ -58.553224000087482, -34.54884800003515 ], [ -58.552365000044688, -34.54811799964591 ], [ -58.551485999978865, -34.547389000202145 ], [ -58.550605999866946, -34.546637999743837 ], [ -58.549704999685957, -34.545887000184848 ], [ -58.548910999942677, -34.545199999979957 ], [ -58.548117000199341, -34.544534999890288 ], [ -58.547343999625866, -34.543868999754466 ], [ -58.546636000251169, -34.54331200014866 ], [ -58.547945000361437, -34.542282000314003 ], [ -58.549232000356483, -34.54123000036418 ], [ -58.550520000397682, -34.540199999630261 ], [ -58.551807000392728, -34.539169999795604 ], [ -58.553073000318648, -34.538139999961004 ], [ -58.554361000359847, -34.537066999942056 ], [ -58.555648000354893, -34.536059000222622 ], [ -58.556956999565841, -34.53498600020373 ], [ -58.558244999606984, -34.533956000369074 ], [ -58.557537000232344, -34.533376999748668 ], [ -58.556893000211744, -34.532819000096708 ], [ -58.556228000122076, -34.532239000329582 ], [ -58.555561999986253, -34.531702999893469 ], [ -58.554853999712293, -34.531102000057217 ], [ -58.554339000244624, -34.530673000058869 ], [ -58.553823999877636, -34.530221999945297 ], [ -58.553137999718899, -34.529665000339435 ], [ -58.552515999813522, -34.529106999788155 ], [ -58.5518499996777, -34.528527000020972 ], [ -58.551227999772323, -34.528011999654041 ], [ -58.550562999682654, -34.527432999932955 ], [ -58.549232000356483, -34.52629599966059 ], [ -58.548202999668661, -34.525394000332824 ], [ -58.547579999717186, -34.52485799989671 ], [ -58.546808000089072, -34.524192999807042 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 6.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.337981999969259, -34.721688999947332 ], [ -58.337209000295104, -34.722310999852709 ], [ -58.336393999583379, -34.721582000408944 ], [ -58.335620999909167, -34.722161000130029 ], [ -58.334912999635208, -34.722718999781989 ], [ -58.334097999822802, -34.723340999687366 ], [ -58.333325000148591, -34.723921000353812 ], [ -58.332703000243214, -34.724392999637189 ], [ -58.331951999784906, -34.723663000147269 ], [ -58.331180000156849, -34.722976999988532 ], [ -58.330471999882832, -34.722310999852709 ], [ -58.329720000277746, -34.721645999763041 ], [ -58.328926999681244, -34.720959999604247 ], [ -58.328176000122255, -34.720294000367801 ], [ -58.327403000448044, -34.719651000393299 ], [ -58.326695000174084, -34.719070999726796 ], [ -58.325793999993039, -34.718255999914447 ], [ -58.324828000411856, -34.717397999917694 ], [ -58.323819999793102, -34.716560999990122 ], [ -58.322854000211919, -34.715724000062494 ], [ -58.323432999932947, -34.715251999879854 ], [ -58.322488999567611, -34.714437000067448 ], [ -58.321909999846582, -34.714909000250145 ], [ -58.321159000287594, -34.715509000040299 ], [ -58.321072999918954, -34.715401999602534 ], [ -58.320643999920605, -34.714972999604186 ], [ -58.320214999922257, -34.714522000389991 ], [ -58.320107000337771, -34.714414999952226 ], [ -58.319635000155074, -34.713942999769586 ], [ -58.319141999903309, -34.713449000371043 ], [ -58.318584000251349, -34.712869999750637 ], [ -58.317318000325429, -34.711603999824661 ], [ -58.318218999607097, -34.710875000380895 ], [ -58.317167999703372, -34.709995000269032 ], [ -58.316115999753549, -34.709094000087987 ], [ -58.31688900032708, -34.708471000136512 ], [ -58.317704000139429, -34.70782800016201 ], [ -58.318369000229154, -34.707290999679856 ], [ -58.319098999719017, -34.70671199995877 ], [ -58.3198290001082, -34.706132000191587 ], [ -58.320451000013577, -34.705616999824656 ], [ -58.321095000034177, -34.705123999572891 ], [ -58.321630999570914, -34.704694999574542 ], [ -58.322167000007028, -34.704265999576194 ], [ -58.323026000049822, -34.703579000270622 ], [ -58.324142000253062, -34.702655999974354 ], [ -58.325149999972496, -34.701797999977657 ], [ -58.326136999622804, -34.700983000165309 ], [ -58.326910000196335, -34.700339000144709 ], [ -58.327617999570975, -34.699717000239332 ], [ -58.328454000351769, -34.698986999850092 ], [ -58.328968999819438, -34.698514999667452 ], [ -58.329355999679592, -34.698193000106812 ], [ -58.329612999840037, -34.698128999853395 ], [ -58.32987100004658, -34.698085999669104 ], [ -58.330041999838386, -34.697978000084618 ], [ -58.33066499978986, -34.697505999901921 ], [ -58.331587000039974, -34.696797999627961 ], [ -58.332489000267117, -34.696069000184195 ], [ -58.333304000079522, -34.695425000163596 ], [ -58.334205000260511, -34.694694999774356 ], [ -58.335106000441499, -34.69396600033059 ], [ -58.335835999931419, -34.693364999595019 ], [ -58.336028999838447, -34.693192999757116 ], [ -58.336737000112407, -34.692592999966905 ], [ -58.336952000134659, -34.692421000129002 ], [ -58.337638000293452, -34.691842000407974 ], [ -58.338324999599024, -34.691283999856637 ], [ -58.339032999872984, -34.690704000089511 ], [ -58.339741000147001, -34.690125000368425 ], [ -58.340557000005504, -34.689438000163534 ], [ -58.341328999633561, -34.688859000442449 ], [ -58.342272999998897, -34.68804399973078 ], [ -58.342895999950372, -34.687529000263112 ], [ -58.343517999855749, -34.687013999896124 ], [ -58.343924999738931, -34.686670000220317 ], [ -58.344269000314057, -34.686369999875524 ], [ -58.344590999874697, -34.686133999784204 ], [ -58.344954999573531, -34.685833000292689 ], [ -58.345684999962714, -34.685211000387312 ], [ -58.345771000331354, -34.685147000133895 ], [ -58.346478999706051, -34.684546000297644 ], [ -58.347186999980011, -34.683987999746364 ], [ -58.347895000254027, -34.683386999910056 ], [ -58.34830300018325, -34.683044000280347 ], [ -58.348560000343696, -34.682829000258096 ], [ -58.349074999811364, -34.682400000259747 ], [ -58.349911999738936, -34.681691999985787 ], [ -58.350234000198896, -34.681434999825342 ], [ -58.350685000312467, -34.68107000008041 ], [ -58.351671999962775, -34.680233000152782 ], [ -58.352701999797432, -34.679375000156085 ], [ -58.353731999632032, -34.678538000228457 ], [ -58.353945999608129, -34.678345000321485 ], [ -58.35471900018166, -34.677701000300885 ], [ -58.355577000178357, -34.676993000026869 ], [ -58.356457000290277, -34.67624199956856 ], [ -58.357357999572002, -34.67553400019392 ], [ -58.358280999868214, -34.674782999735612 ], [ -58.359138999864911, -34.674353999737264 ], [ -58.359911000392287, -34.673945999807984 ], [ -58.360319000321567, -34.673730999785789 ], [ -58.360790999604887, -34.673473999625344 ], [ -58.361585000247544, -34.673023000411092 ], [ -58.361585000247544, -34.672744000135481 ], [ -58.36151699980968, -34.67268700020486 ], [ -58.361303999879624, -34.672503999859657 ], [ -58.361177000318264, -34.672294000068007 ], [ -58.362679000335561, -34.670019000376499 ], [ -58.363151999665035, -34.669333000217762 ], [ -58.363859999938995, -34.668238000083591 ], [ -58.364353000190761, -34.667551999924797 ], [ -58.364867999658429, -34.666779000250642 ], [ -58.365448000324932, -34.665964000438237 ], [ -58.365575999932389, -34.665770999631889 ], [ -58.365898000392349, -34.665169999795637 ], [ -58.366477000113434, -34.664289999683717 ], [ -58.367077999949686, -34.6633460002177 ], [ -58.367743000039354, -34.662401999852364 ], [ -58.368430000244302, -34.661415000202055 ], [ -58.369439000009777, -34.660212999630176 ], [ -58.370125000168571, -34.659719000231632 ], [ -58.370318000075599, -34.659505000255535 ], [ -58.370038999799988, -34.659076000257187 ], [ -58.370017999730862, -34.658967999773324 ], [ -58.370060999915154, -34.658861000234936 ], [ -58.370147000283794, -34.658774999866296 ], [ -58.370318000075599, -34.658538999774976 ], [ -58.370383000375114, -34.658345999867947 ], [ -58.370297000006531, -34.657852999616182 ], [ -58.370318000075599, -34.657659999709153 ], [ -58.370383000375114, -34.657294999964222 ], [ -58.370468999844434, -34.657102000057193 ], [ -58.370704999935754, -34.656758000381387 ], [ -58.370918999911851, -34.656414999852302 ], [ -58.371241000371811, -34.655770999831759 ], [ -58.371456000394062, -34.655062999557742 ], [ -58.371670000370159, -34.654268999814462 ], [ -58.372059000322565, -34.653126000164718 ], [ -58.372377999744856, -34.65218800007608 ], [ -58.37291500022701, -34.651264999779869 ], [ -58.373064999949747, -34.650943000219229 ], [ -58.373387000409707, -34.650536000336103 ], [ -58.373718000385395, -34.650303000383133 ], [ -58.373966000130736, -34.650128000406824 ], [ -58.374545999897919, -34.649784999877795 ], [ -58.374931999711976, -34.648540000020944 ], [ -58.373836999577804, -34.648347000113915 ], [ -58.372828999858427, -34.648154000206887 ], [ -58.371606000116799, -34.647939000184692 ], [ -58.370512000028725, -34.647746000277664 ], [ -58.369503000263194, -34.647553000370635 ], [ -58.368173000083857, -34.647317000279315 ], [ -58.368300999691314, -34.646437000167396 ], [ -58.368430000244302, -34.64562200035499 ], [ -58.368558999897914, -34.644721000174002 ], [ -58.368671999713001, -34.6439279995775 ], [ -58.368687999551526, -34.643818999946859 ], [ -58.368816000058303, -34.642917999765814 ], [ -58.368966999827137, -34.641931000115505 ], [ -58.369095000333971, -34.6411160003031 ], [ -58.369246000102805, -34.640106999638306 ], [ -58.369395999825485, -34.639163000172289 ], [ -58.369546000447542, -34.638239999876077 ], [ -58.369566999617291, -34.638003999784701 ], [ -58.369675000101154, -34.637360999810255 ], [ -58.369802999708611, -34.636480999698335 ], [ -58.369954000376765, -34.635558000301444 ], [ -58.370104000099502, -34.63454999968269 ], [ -58.370253999822182, -34.633605000170576 ], [ -58.370361000259891, -34.632660999805239 ], [ -58.370468999844434, -34.631717000339279 ], [ -58.370533000097851, -34.630795000089165 ], [ -58.370618999567114, -34.629678999885869 ], [ -58.370639999636239, -34.629463999863674 ], [ -58.371670000370159, -34.630515999813497 ], [ -58.371991999930799, -34.629378000394354 ], [ -58.372078000299439, -34.629034999865326 ], [ -58.372314000390759, -34.628197999937697 ], [ -58.372420999929147, -34.627790000008474 ], [ -58.372570999651884, -34.626739000104749 ], [ -58.372635999951399, -34.625452000109647 ], [ -58.37267900013569, -34.624292999722115 ], [ -58.372743000389107, -34.623134000233904 ], [ -58.372849999927496, -34.621868000307927 ], [ -58.372849999927496, -34.620708999920339 ], [ -58.372936000296136, -34.619593999763254 ], [ -58.373021999765456, -34.618477999560014 ], [ -58.373086000018873, -34.6170619999113 ], [ -58.373129000203164, -34.6160320000767 ], [ -58.373193999603359, -34.614872999689169 ], [ -58.373257999856776, -34.613757000385192 ], [ -58.373322000110193, -34.612512999675175 ], [ -58.374738999804947, -34.612597999997661 ], [ -58.376155000352924, -34.612748999766495 ], [ -58.377571000001581, -34.612834000088981 ], [ -58.376218999707021, -34.611568000163061 ], [ -58.375039000149684, -34.610474000074987 ], [ -58.375039000149684, -34.610324000352307 ], [ -58.374825000173587, -34.610109000330056 ], [ -58.374653000335684, -34.610131000445278 ], [ -58.373580000316736, -34.609100999711302 ], [ -58.373450999763804, -34.60897200005769 ], [ -58.373450999763804, -34.60849999987505 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.373580000316736, -34.607899000038799 ], [ -58.375039000149684, -34.607169999695714 ], [ -58.375575999732575, -34.606869000204142 ], [ -58.376520000097912, -34.606397000021502 ], [ -58.377399000163678, -34.605924999838805 ], [ -58.377956999815638, -34.605645999563194 ], [ -58.379437999763866, -34.604808999635566 ], [ -58.380274999691437, -34.60440199975244 ], [ -58.380746999874077, -34.604123000376148 ], [ -58.381105000195589, -34.603923000146324 ], [ -58.381325999595163, -34.603800999916189 ], [ -58.381906000261665, -34.603821999985257 ], [ -58.382033999869179, -34.603800999916189 ], [ -58.382142000352985, -34.603715000446869 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.385124000272356, -34.603887000284772 ], [ -58.386562000036236, -34.603950999638869 ], [ -58.387871000146504, -34.604037000007509 ], [ -58.389394000232869, -34.604207999799314 ], [ -58.390809999881526, -34.60431600028312 ], [ -58.392290999829754, -34.604422999821566 ], [ -58.393857000100411, -34.604487000074926 ], [ -58.395294999864291, -34.604487000074926 ], [ -58.395363000302154, -34.60448800012108 ], [ -58.396775999812519, -34.604509000190149 ], [ -58.398213000429564, -34.604552000374497 ], [ -58.399479000355541, -34.604594999659469 ], [ -58.400830999750781, -34.60463799984376 ], [ -58.402139999861049, -34.604702000097177 ], [ -58.403641999878346, -34.604766000350594 ], [ -58.404499999875043, -34.604681000028108 ], [ -58.405508999640574, -34.604573000443565 ], [ -58.406645999912939, -34.60440199975244 ], [ -58.407826000369596, -34.604229999914537 ], [ -58.408920999604391, -34.604101000260926 ], [ -58.410358000221493, -34.604037000007509 ], [ -58.411752999801081, -34.6040800001918 ], [ -58.413211999634029, -34.60416599966112 ], [ -58.414520999744298, -34.604037000007509 ], [ -58.415658000016663, -34.603800999916189 ], [ -58.416774000219903, -34.60360800000916 ], [ -58.418040000145822, -34.603457000240326 ], [ -58.419521000094051, -34.603328999733492 ], [ -58.420979999926999, -34.603179000010812 ], [ -58.421088999557639, -34.603167000356734 ], [ -58.422568000312936, -34.603007000172852 ], [ -58.424155999799495, -34.602856999550852 ], [ -58.425657999816792, -34.602705999782017 ], [ -58.427116999649797, -34.602578000174503 ], [ -58.428596999551871, -34.602427000405726 ], [ -58.430163999868682, -34.602233999599378 ], [ -58.431065000049671, -34.602149000176155 ], [ -58.431901999977299, -34.602105999991863 ], [ -58.432181000252911, -34.602083999876641 ], [ -58.43361900001679, -34.601569000408972 ], [ -58.434841999758419, -34.601160999580429 ], [ -58.436215000122104, -34.600711000412275 ], [ -58.437587999586469, -34.600260000298704 ], [ -58.438746999974001, -34.599873999585384 ], [ -58.43994899964656, -34.600603999974567 ], [ -58.441106999987994, -34.601290000133361 ], [ -58.442351999844902, -34.602062999807572 ], [ -58.442544999751874, -34.60217000024528 ], [ -58.442581999659524, -34.602197999737882 ], [ -58.443402999748571, -34.602835000334949 ], [ -58.444347000113908, -34.603479000355549 ], [ -58.445355999879439, -34.60416599966112 ], [ -58.446300000244776, -34.604808999635566 ], [ -58.447115000057181, -34.605324000002554 ], [ -58.447222999641667, -34.605410000371194 ], [ -58.448231000260421, -34.606117999745834 ], [ -58.449174999726438, -34.606804999950725 ], [ -58.450011999654009, -34.607341000386839 ], [ -58.450633999559386, -34.606503999559891 ], [ -58.450742000043249, -34.606483000390085 ], [ -58.45102100031886, -34.606419000136725 ], [ -58.451069999880531, -34.60640600043655 ], [ -58.452007999969169, -34.606160999930182 ], [ -58.453015999688603, -34.605881999654514 ], [ -58.454025000353454, -34.605645999563194 ], [ -58.454989999888539, -34.605389000302068 ], [ -58.455805999747042, -34.605174000279874 ], [ -58.45594199972345, -34.605136000326127 ], [ -58.456578000274476, -34.604959000257622 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.458488000220996, -34.604466000005857 ], [ -58.458939000334567, -34.604358999568149 ], [ -58.460118999891904, -34.604058000076577 ], [ -58.461492000255589, -34.603715000446869 ], [ -58.461726000254657, -34.603655000377898 ], [ -58.462157000345258, -34.603542999709646 ], [ -58.462907999904246, -34.603349999802617 ], [ -58.464366999737194, -34.602985000057686 ], [ -58.464947000403697, -34.602835000334949 ], [ -58.465805000400394, -34.602621000358852 ], [ -58.466083999776743, -34.602556000059337 ], [ -58.467349999702662, -34.602233999599378 ], [ -58.468938000088599, -34.601847999785321 ], [ -58.469101000410774, -34.601810999877671 ], [ -58.470353999737256, -34.601526000224681 ], [ -58.471277000033467, -34.601312000248583 ], [ -58.47224199956861, -34.601097000226332 ], [ -58.472371000121541, -34.601076000157263 ], [ -58.473121999680473, -34.601054000042041 ], [ -58.474001999792392, -34.600861000135012 ], [ -58.474946000157729, -34.600668000227984 ], [ -58.475585999993882, -34.600525999974877 ], [ -58.475911999738969, -34.600453000205732 ], [ -58.47619100001458, -34.601741000246932 ], [ -58.476383999921609, -34.602342000083183 ], [ -58.476920000357666, -34.60264200042792 ], [ -58.477478000009626, -34.602941999873337 ], [ -58.478594000212922, -34.603564999824812 ], [ -58.479881000207968, -34.604273000098829 ], [ -58.480525000228511, -34.604615999728537 ], [ -58.481147000133888, -34.604959000257622 ], [ -58.481940999877224, -34.605259999749137 ], [ -58.482734999620504, -34.605582000209097 ], [ -58.483980000376675, -34.606247000298765 ], [ -58.485228000371876, -34.60692700018086 ], [ -58.486361999606572, -34.607598999694062 ], [ -58.487628000431812, -34.60826399978373 ], [ -58.488894000357789, -34.608950999988622 ], [ -58.489386999710234, -34.608393000336662 ], [ -58.489881000008097, -34.607834999785382 ], [ -58.490716999889571, -34.60691200038849 ], [ -58.491855000208034, -34.605625000393388 ], [ -58.492670000020439, -34.604702000097177 ], [ -58.493484999832845, -34.60384400010048 ], [ -58.494172000037736, -34.602920999804269 ], [ -58.494687000404724, -34.602233999599378 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 5.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.61172, -34.646285 ], [ -58.612627, -34.645548 ], [ -58.613077, -34.645169 ], [ -58.613543, -34.644786 ], [ -58.614538, -34.645599 ], [ -58.615038, -34.646014 ], [ -58.615596, -34.646449 ], [ -58.616543, -34.647233 ], [ -58.616709, -34.647383 ], [ -58.617379, -34.647408 ], [ -58.61848, -34.647399 ], [ -58.61977, -34.647373 ], [ -58.621057, -34.647353 ], [ -58.622603, -34.64732 ], [ -58.624119, -34.647296 ], [ -58.625245, -34.647283 ], [ -58.625995, -34.647282 ], [ -58.625987, -34.648155 ], [ -58.628418, -34.647942 ], [ -58.629153, -34.647823 ], [ -58.630172, -34.647634 ], [ -58.631568999999899, -34.647382 ], [ -58.633176, -34.647084 ], [ -58.634223, -34.646898 ], [ -58.634617, -34.646834 ], [ -58.635576, -34.64666 ], [ -58.636047, -34.646559 ], [ -58.637489, -34.646311 ], [ -58.638105, -34.646191 ], [ -58.638708, -34.646083 ], [ -58.63887, -34.646054 ], [ -58.63984, -34.645883 ], [ -58.640311, -34.645799 ], [ -58.641398, -34.645605 ], [ -58.643035, -34.645298 ], [ -58.643428, -34.645228 ], [ -58.644613, -34.644997 ], [ -58.645624, -34.644816 ], [ -58.646617, -34.64464 ], [ -58.647639, -34.644452 ], [ -58.648679999999899, -34.644255 ], [ -58.649514, -34.644119 ], [ -58.650723, -34.643913 ], [ -58.651355, -34.643797 ], [ -58.652079, -34.643668 ], [ -58.653866, -34.643348 ], [ -58.655212, -34.643099 ], [ -58.65667, -34.64292 ], [ -58.65805, -34.642047 ], [ -58.658754, -34.641619 ], [ -58.659509, -34.641167 ], [ -58.660844, -34.640355 ], [ -58.660921, -34.640315 ], [ -58.660996, -34.640269 ], [ -58.6623, -34.639495 ], [ -58.663501, -34.638775 ], [ -58.663698, -34.63866 ], [ -58.664485, -34.638203 ], [ -58.664982, -34.637899 ], [ -58.665703, -34.637461 ], [ -58.666809, -34.636813 ], [ -58.667465, -34.636399 ], [ -58.668509, -34.635796 ], [ -58.6678, -34.635165 ], [ -58.667309, -34.634735 ], [ -58.667217, -34.63464 ], [ -58.666796, -34.634207 ], [ -58.666218999999899, -34.632838 ], [ -58.665712, -34.631765 ], [ -58.665403, -34.631292 ], [ -58.66516, -34.631149 ], [ -58.665217, -34.63111 ], [ -58.665356, -34.631074 ], [ -58.665568, -34.631081 ], [ -58.665712, -34.6311 ], [ -58.665863, -34.631149 ], [ -58.66598, -34.631203 ], [ -58.666122, -34.631318 ], [ -58.666551, -34.631742 ], [ -58.666991, -34.63212 ], [ -58.667062, -34.632171 ], [ -58.667179, -34.632204 ], [ -58.667306, -34.632237 ], [ -58.667454, -34.632242 ], [ -58.667621, -34.632236 ], [ -58.667954, -34.632189 ], [ -58.669820999999899, -34.63185 ], [ -58.670292, -34.631761 ], [ -58.671063, -34.631626 ], [ -58.672602, -34.631328 ], [ -58.67328, -34.631133 ], [ -58.673396, -34.6311 ], [ -58.674333, -34.630845 ], [ -58.675158, -34.630599 ], [ -58.675944, -34.629378 ], [ -58.676524, -34.629208 ], [ -58.676888, -34.62924 ], [ -58.677439, -34.629717 ], [ -58.677974, -34.630209 ], [ -58.678142, -34.63034 ], [ -58.678323, -34.630413 ], [ -58.679822, -34.630208 ], [ -58.679949, -34.630195 ], [ -58.682015, -34.629831 ], [ -58.683344, -34.629617 ], [ -58.683668, -34.629565 ], [ -58.686409, -34.629122 ], [ -58.687238, -34.628967 ], [ -58.688792, -34.628781 ], [ -58.690756, -34.628531 ], [ -58.691906, -34.627622 ], [ -58.692619, -34.627092 ], [ -58.693861, -34.626103 ], [ -58.695396, -34.624942 ], [ -58.696348, -34.624212 ], [ -58.697003, -34.623695 ], [ -58.698868, -34.622278 ], [ -58.699567, -34.621738 ], [ -58.700289, -34.621183 ], [ -58.700627, -34.620927 ], [ -58.701438, -34.620296 ], [ -58.701671, -34.620122 ], [ -58.702607, -34.619409 ], [ -58.702826, -34.619238 ], [ -58.703622, -34.618636 ], [ -58.704472, -34.617986 ], [ -58.704751, -34.617764 ], [ -58.705284, -34.617344 ], [ -58.705836, -34.616923 ], [ -58.706161, -34.616679 ], [ -58.706737, -34.616239 ], [ -58.706937, -34.616084 ], [ -58.707701, -34.615503 ], [ -58.708428, -34.614938 ], [ -58.709006, -34.614495 ], [ -58.709437, -34.61417 ], [ -58.710131, -34.613631 ], [ -58.710714, -34.613187 ], [ -58.711322, -34.612718 ], [ -58.711506, -34.612576 ], [ -58.712271, -34.611987 ], [ -58.712753, -34.611624 ], [ -58.713619, -34.610963 ], [ -58.714226, -34.610506 ], [ -58.715046, -34.609845 ], [ -58.715209, -34.609727 ], [ -58.716058, -34.609083 ], [ -58.717441, -34.608037 ], [ -58.717488, -34.607972 ], [ -58.717528999999899, -34.60787 ], [ -58.717832, -34.607644 ], [ -58.718155, -34.607407 ], [ -58.718758, -34.606944 ], [ -58.719072, -34.606707 ], [ -58.719656, -34.606278 ], [ -58.720397, -34.605735 ], [ -58.720717, -34.605471 ], [ -58.721041, -34.605203 ], [ -58.721812, -34.604619 ], [ -58.723196, -34.603574 ], [ -58.723809, -34.603117 ], [ -58.724568, -34.602547 ], [ -58.725714, -34.601695 ], [ -58.726558, -34.601044 ], [ -58.72732, -34.600479 ], [ -58.728259, -34.599787 ], [ -58.729154, -34.599162 ], [ -58.730092, -34.598468 ], [ -58.730976, -34.597819 ], [ -58.731719, -34.597275 ], [ -58.73282, -34.596451 ], [ -58.733506, -34.595943 ], [ -58.735586, -34.59443 ], [ -58.736714, -34.593615 ], [ -58.736992, -34.593405 ], [ -58.738238, -34.592485 ], [ -58.739282, -34.591716 ], [ -58.740135, -34.591083 ], [ -58.741046, -34.590374 ], [ -58.741149, -34.590302 ], [ -58.741393, -34.590119 ], [ -58.741473, -34.590054 ], [ -58.742567, -34.589214 ], [ -58.743359, -34.588678 ], [ -58.743648, -34.588483 ], [ -58.743931, -34.588273 ], [ -58.745405, -34.587171 ], [ -58.745863, -34.58684 ], [ -58.747161, -34.585894 ], [ -58.748727, -34.584751 ], [ -58.747493, -34.583604 ], [ -58.747481, -34.583597 ], [ -58.746715, -34.582862 ], [ -58.746075, -34.582236 ], [ -58.747095, -34.581497 ], [ -58.747897, -34.580925 ], [ -58.74876, -34.580303 ], [ -58.74971, -34.579618 ], [ -58.750478, -34.579068 ], [ -58.750539, -34.579 ], [ -58.750604, -34.578928 ], [ -58.751433, -34.578326 ], [ -58.752048, -34.577875 ], [ -58.752662, -34.577428 ], [ -58.753266, -34.576988 ], [ -58.75385, -34.576556 ], [ -58.753161, -34.575899 ], [ -58.753779, -34.575452 ], [ -58.754413, -34.574993 ], [ -58.754998, -34.574569 ], [ -58.75578, -34.573993 ], [ -58.756593, -34.573398 ], [ -58.757319, -34.572871 ], [ -58.757472, -34.572762 ], [ -58.758075, -34.572318 ], [ -58.758701, -34.57186 ], [ -58.75932, -34.571413 ], [ -58.758688, -34.570805 ], [ -58.758139, -34.570301 ], [ -58.757595, -34.569746 ], [ -58.757058, -34.569242 ], [ -58.756505, -34.568737 ], [ -58.755922, -34.568202 ], [ -58.754003, -34.566436 ], [ -58.7532, -34.565675 ], [ -58.753104, -34.565652 ], [ -58.753058, -34.565637 ], [ -58.752369, -34.564999 ], [ -58.751718, -34.56439 ], [ -58.751173, -34.563885 ], [ -58.751047, -34.563866 ], [ -58.750194, -34.563197 ], [ -58.749622, -34.56361 ], [ -58.748726, -34.562768 ], [ -58.747824, -34.561924 ], [ -58.746912, -34.561068 ], [ -58.745967, -34.560187 ], [ -58.744907, -34.559191 ], [ -58.744050999999899, -34.558382 ], [ -58.743129, -34.557513 ], [ -58.742364, -34.556799 ], [ -58.743277, -34.556121 ], [ -58.743273, -34.556114 ], [ -58.742494, -34.555804 ], [ -58.741772, -34.555356 ], [ -58.741292, -34.554799 ], [ -58.740757, -34.554235 ], [ -58.740211, -34.553724 ], [ -58.73963, -34.553205 ], [ -58.739227, -34.553526 ], [ -58.73859, -34.552923 ], [ -58.737948, -34.552321 ], [ -58.737357, -34.551745 ], [ -58.736692, -34.551096 ], [ -58.736062, -34.550554 ], [ -58.735494, -34.550019 ], [ -58.734955, -34.54947 ], [ -58.734337, -34.548925 ], [ -58.733822, -34.548444 ], [ -58.733184, -34.547897 ], [ -58.732623, -34.547394 ], [ -58.731406, -34.546257 ], [ -58.730214, -34.545132 ], [ -58.728703, -34.5437 ], [ -58.727921, -34.542953 ], [ -58.727206, -34.542312 ], [ -58.726424, -34.541549 ], [ -58.725776, -34.540965 ], [ -58.725443, -34.540637 ], [ -58.724821, -34.540064 ], [ -58.723786, -34.53908 ], [ -58.722885, -34.538266 ], [ -58.722586, -34.537987 ], [ -58.721968, -34.53741 ], [ -58.72162, -34.537083 ], [ -58.721286, -34.536785 ], [ -58.720237, -34.537574 ], [ -58.719094, -34.538425 ], [ -58.717892, -34.539307 ], [ -58.716896, -34.540042 ], [ -58.715788, -34.540816 ], [ -58.714413, -34.541873 ], [ -58.712972, -34.542936 ], [ -58.712121, -34.542179 ], [ -58.71132, -34.541448 ], [ -58.710588, -34.540765 ], [ -58.709534, -34.539784 ], [ -58.708664, -34.538986 ], [ -58.707904, -34.538284 ], [ -58.707148, -34.53759 ], [ -58.705988, -34.536536 ], [ -58.704830999999899, -34.535462 ], [ -58.704327, -34.534987 ], [ -58.703356, -34.534062 ], [ -58.702451, -34.533209 ], [ -58.701642, -34.533805 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 4.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.569114999957264, -34.526360999960161 ], [ -58.568673000258741, -34.526724999658938 ], [ -58.568029000238141, -34.527240000025927 ], [ -58.567622000355016, -34.526938999635092 ], [ -58.567320999964124, -34.526703000443092 ], [ -58.567256999710708, -34.526639000189675 ], [ -58.566870999896707, -34.526316999729715 ], [ -58.566720000127873, -34.526188000076104 ], [ -58.566441999898359, -34.525995000169075 ], [ -58.566141000406787, -34.52573800000863 ], [ -58.565775999762536, -34.525458999733019 ], [ -58.565539999671216, -34.52526599982599 ], [ -58.564811000227451, -34.524686000058807 ], [ -58.564016999584794, -34.52406400015343 ], [ -58.56324399991064, -34.523442000248053 ], [ -58.562493000351651, -34.52279800022751 ], [ -58.562021000168954, -34.523227000225859 ], [ -58.561698999709051, -34.52350599960215 ], [ -58.561184000241383, -34.52391400043075 ], [ -58.560948000150063, -34.524107000337779 ], [ -58.560196999691755, -34.524751000358322 ], [ -58.560112000268532, -34.524814999712419 ], [ -58.559446000132766, -34.525416000448047 ], [ -58.559060000318709, -34.52573800000863 ], [ -58.558694999674458, -34.52605999956927 ], [ -58.558308999860401, -34.526380999983132 ], [ -58.557900999931178, -34.526724999658938 ], [ -58.557171999588093, -34.527368999679538 ], [ -58.556999999750133, -34.527519000301595 ], [ -58.556398999913881, -34.527990999584915 ], [ -58.555799000123727, -34.528527000020972 ], [ -58.555627000285767, -34.528676999743709 ], [ -58.554811000427264, -34.5293639999486 ], [ -58.553823999877636, -34.530221999945297 ], [ -58.552816000158259, -34.531080999988092 ], [ -58.5518499996777, -34.531938999984845 ], [ -58.551314000140962, -34.53239000009836 ], [ -58.550692000235586, -34.532904999566028 ], [ -58.550111999569083, -34.533441000002085 ], [ -58.549768999939374, -34.533741000346822 ], [ -58.549489999663706, -34.533977999584977 ], [ -58.548824999574038, -34.534514000021034 ], [ -58.548223999737729, -34.535049999557771 ], [ -58.547601999832409, -34.535587000039982 ], [ -58.547343999625866, -34.535801000016079 ], [ -58.546957999811809, -34.536144999691942 ], [ -58.546356999975501, -34.536681000127999 ], [ -58.545841999608569, -34.537110000126347 ], [ -58.545134000233872, -34.537754000146947 ], [ -58.543890000423119, -34.538848000234964 ], [ -58.543545999847993, -34.539148999726535 ], [ -58.542731000035587, -34.539813999816204 ], [ -58.542644999666948, -34.539900000184844 ], [ -58.541635999901416, -34.540822999581735 ], [ -58.541442999994388, -34.541016000388083 ], [ -58.540843000204234, -34.54155199992482 ], [ -58.540220000252759, -34.54210999957678 ], [ -58.539468999794451, -34.54275399959738 ], [ -58.539147000233811, -34.543053999942117 ], [ -58.538846999889074, -34.543290000033437 ], [ -58.537838000123543, -34.544213000329648 ], [ -58.538138999615114, -34.544599000143705 ], [ -58.538740000350685, -34.545221000049082 ], [ -58.539340000140839, -34.545821999885334 ], [ -58.539940999977148, -34.546465999905934 ], [ -58.539275999887423, -34.547023999557894 ], [ -58.538374999706434, -34.54773199983191 ], [ -58.537709999616766, -34.547109999926533 ], [ -58.537023000311194, -34.546486999975002 ], [ -58.536401000405817, -34.545908000253974 ], [ -58.535736000316149, -34.545328999633568 ], [ -58.534919999558269, -34.544599000143705 ], [ -58.533847000438698, -34.545413999956111 ], [ -58.53300999961175, -34.546036999907585 ], [ -58.532882000004236, -34.546123000276225 ], [ -58.531765999800996, -34.546959000157699 ], [ -58.531423000171287, -34.547217000364242 ], [ -58.531272000402453, -34.547346000017853 ], [ -58.530135000130088, -34.548225000083619 ], [ -58.528975999742556, -34.549105000195539 ], [ -58.527818000300442, -34.550520999844196 ], [ -58.528804999950751, -34.551079000395532 ], [ -58.529598999694031, -34.55020000032971 ], [ -58.530135000130088, -34.551143999795727 ], [ -58.53071499989727, -34.552152000414424 ], [ -58.531293999618356, -34.553161000179955 ], [ -58.530607000312784, -34.553139000064732 ], [ -58.529812999670185, -34.553288999787469 ], [ -58.528739999651236, -34.553718999831915 ], [ -58.527903999769705, -34.554255000268029 ], [ -58.527087999911203, -34.554920000357697 ], [ -58.526530000259243, -34.555521000193949 ], [ -58.525608000009129, -34.556379000190645 ], [ -58.525156999895614, -34.556507999844257 ], [ -58.524469999690666, -34.556358000121577 ], [ -58.523505000155581, -34.555799999570297 ], [ -58.522711000412301, -34.556743999935577 ], [ -58.523160999580398, -34.557151999864857 ], [ -58.523505000155581, -34.557474000324817 ], [ -58.523998000407346, -34.557903000323165 ], [ -58.524276999783694, -34.558181999699457 ], [ -58.524705999782043, -34.558568000412833 ], [ -58.524963999988586, -34.558783000435085 ], [ -58.525286000448546, -34.559103999949571 ], [ -58.525929000422991, -34.559661999601531 ], [ -58.526186999730214, -34.559897999692907 ], [ -58.526851999819883, -34.560520999644382 ], [ -58.527087999911203, -34.560756999735702 ], [ -58.52770999981658, -34.561315000286982 ], [ -58.528310999652888, -34.561850999823719 ], [ -58.528891000319391, -34.562409000374998 ], [ -58.529534000293836, -34.562988000096084 ], [ -58.530135000130088, -34.563545999748044 ], [ -58.529556000409059, -34.564189999768644 ], [ -58.528697000366208, -34.56519800038734 ], [ -58.527818000300442, -34.566207000152872 ], [ -58.526959000257591, -34.567236999987529 ], [ -58.526037000007477, -34.568287999891254 ], [ -58.525177999964683, -34.569296999656785 ], [ -58.524319999967986, -34.570327000390705 ], [ -58.523762000316026, -34.570971000411305 ], [ -58.523140000410649, -34.571678999785945 ], [ -58.522410000021466, -34.571248999741499 ], [ -58.521680999678324, -34.570798999674025 ], [ -58.520930000119392, -34.570412999860025 ], [ -58.520221999845376, -34.569982999815522 ], [ -58.519513999571359, -34.569532999748105 ], [ -58.518719999828079, -34.569124999818825 ], [ -58.51796900026909, -34.568674999751408 ], [ -58.517217999810782, -34.568244999706906 ], [ -58.516488000320919, -34.567794999639489 ], [ -58.515758999977834, -34.56736599964114 ], [ -58.5148139995664, -34.566851000173472 ], [ -58.513892000215606, -34.566313999691317 ], [ -58.513140999757297, -34.565906999808135 ], [ -58.512324999898794, -34.56663600015122 ], [ -58.511574000339806, -34.567323000356112 ], [ -58.510822999881498, -34.568008999615586 ], [ -58.509985999953869, -34.569168000003174 ], [ -58.509535999886452, -34.569746999724202 ], [ -58.509407000232841, -34.569833000092842 ], [ -58.509063999703756, -34.570048000115094 ], [ -58.508827999612436, -34.570176999768705 ], [ -58.507968999569641, -34.570648999951345 ], [ -58.507884000146476, -34.570692000135637 ], [ -58.506660000358693, -34.57137800029443 ], [ -58.505330000179299, -34.572128999853419 ], [ -58.504192999906991, -34.572793999943087 ], [ -58.502991000234431, -34.573524000332327 ], [ -58.502282999960414, -34.574059999869064 ], [ -58.501747000423677, -34.574467999798287 ], [ -58.501489000217134, -34.574660999705316 ], [ -58.500674000404729, -34.575304999725915 ], [ -58.500159000037797, -34.575691000439292 ], [ -58.499664999739878, -34.576077000253292 ], [ -58.498870999996598, -34.576743000389115 ], [ -58.498056000184192, -34.57738600036356 ], [ -58.497241000371844, -34.578009000315092 ], [ -58.496361000259924, -34.578694999574509 ], [ -58.495351999595073, -34.579446000032817 ], [ -58.494430000244279, -34.580176000422057 ], [ -58.494343999875639, -34.580239999776097 ], [ -58.493463999763719, -34.580862999727628 ], [ -58.492583999651799, -34.581592000070714 ], [ -58.491789999908519, -34.582279000275605 ], [ -58.491060999565434, -34.582901000180982 ], [ -58.490502999913474, -34.583415999648594 ], [ -58.490287999891223, -34.583588000385873 ], [ -58.489902000077223, -34.583931000015582 ], [ -58.489579999617263, -34.584231000360319 ], [ -58.488829000058274, -34.584832000196627 ], [ -58.488099999715189, -34.585539999571267 ], [ -58.487455999694589, -34.586204999660936 ], [ -58.486811999673989, -34.586870999796758 ], [ -58.486446999929058, -34.587277999679884 ], [ -58.486125000368418, -34.587622000255067 ], [ -58.485439000209624, -34.588329999629764 ], [ -58.485073999565373, -34.588716000343084 ], [ -58.484687999751372, -34.589081000088015 ], [ -58.484130000099412, -34.589317000179392 ], [ -58.483657999916716, -34.589489000017295 ], [ -58.482499000428504, -34.589895999900421 ], [ -58.482027000245807, -34.59006799973838 ], [ -58.481468999694528, -34.590239999576283 ], [ -58.481190000318236, -34.590324999898769 ], [ -58.479730999585911, -34.589187999626461 ], [ -58.478615000281991, -34.588329999629764 ], [ -58.477820999639391, -34.587707999724387 ], [ -58.476877000173374, -34.586978000234467 ], [ -58.476019000176677, -34.586334000213867 ], [ -58.474710000066409, -34.58532599959517 ], [ -58.473743999585849, -34.58421000029125 ], [ -58.472993000026861, -34.58333000017933 ], [ -58.47247799965993, -34.584316999829639 ], [ -58.472113999961095, -34.58500400003453 ], [ -58.471169000448981, -34.586785000327438 ], [ -58.470869000104244, -34.587364000048524 ], [ -58.470719000381507, -34.587535999886427 ], [ -58.470654000081993, -34.587579000070775 ], [ -58.470225000083644, -34.587921999700484 ], [ -58.469238000433336, -34.588737000412209 ], [ -58.468894999904307, -34.588973999650307 ], [ -58.468207999699359, -34.589531000155489 ], [ -58.467908000253942, -34.589767000246809 ], [ -58.467672000162622, -34.589961000199935 ], [ -58.467177999864759, -34.590368000083117 ], [ -58.466984999957731, -34.590496999736729 ], [ -58.466642000328022, -34.590583000105312 ], [ -58.466234000398742, -34.590239999576283 ], [ -58.466191000214451, -34.590197000291312 ], [ -58.464768000242998, -34.588862999927471 ], [ -58.463465999556206, -34.587643000324135 ], [ -58.462907999904246, -34.587084999772856 ], [ -58.462157000345258, -34.58644199979841 ], [ -58.461964000438229, -34.586291000029576 ], [ -58.461514000370755, -34.58603399986913 ], [ -58.461106000441532, -34.585840999962159 ], [ -58.460398000167515, -34.585669000124199 ], [ -58.460096999776681, -34.585625999939907 ], [ -58.459882999800584, -34.585625999939907 ], [ -58.459689999893556, -34.585669000124199 ], [ -58.458551999575093, -34.586092999892003 ], [ -58.457328999833408, -34.586549000236118 ], [ -58.456385000367447, -34.586870999796758 ], [ -58.455753000000925, -34.587119999588253 ], [ -58.455677000093431, -34.587150000072427 ], [ -58.455419999932985, -34.587214000325787 ], [ -58.455248000095082, -34.587127999957204 ], [ -58.455076000257179, -34.587084999772856 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.451304999925753, -34.588444000390268 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.45102100031886, -34.588673000158792 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.447609000355044, -34.591699000308552 ], [ -58.446793999643319, -34.590991000034592 ], [ -58.446642999874484, -34.590819000196632 ], [ -58.446343000429067, -34.589810000431157 ], [ -58.445999999900039, -34.588652000089667 ], [ -58.445119999788119, -34.588136999722735 ], [ -58.444282999860491, -34.587492999702135 ], [ -58.443381999679502, -34.586806000396564 ], [ -58.442459000282611, -34.586098000122547 ], [ -58.441450999663857, -34.58524000012585 ], [ -58.440227999922229, -34.584146000037833 ], [ -58.439175999972406, -34.584938999735016 ], [ -58.43812500006868, -34.585712000308547 ], [ -58.437180999703344, -34.58491799966589 ], [ -58.436321999660493, -34.584146000037833 ], [ -58.435400000309698, -34.583352000294553 ], [ -58.434648999851447, -34.582686000158731 ], [ -58.433490000363179, -34.581656000324131 ], [ -58.432567000066967, -34.580862999727628 ], [ -58.431966000230659, -34.580326000144737 ], [ -58.430936000396059, -34.579424999963749 ], [ -58.429927999777306, -34.578566999967052 ], [ -58.428639999736163, -34.577428999648589 ], [ -58.428061000015077, -34.577601000385812 ], [ -58.427330999625894, -34.577857999646938 ], [ -58.426580000066906, -34.57811599985348 ], [ -58.425701000001084, -34.578459000382509 ], [ -58.425293000071861, -34.578716999689732 ], [ -58.424391999890815, -34.579275000241012 ], [ -58.423448000424855, -34.579725000308486 ], [ -58.422332000221616, -34.580411999614057 ], [ -58.421731000385307, -34.580711999958794 ], [ -58.421344999671931, -34.580690999889669 ], [ -58.420936999742707, -34.580690999889669 ], [ -58.420879999812087, -34.580706999728193 ], [ -58.420485999629136, -34.5808200004426 ], [ -58.420314999837331, -34.581055999634657 ], [ -58.420208000298942, -34.581334999910268 ], [ -58.420208000298942, -34.581548999886365 ], [ -58.420250000437136, -34.581656000324131 ], [ -58.420444000390262, -34.581828000162034 ], [ -58.420528999813428, -34.581892000415451 ], [ -58.420507999744359, -34.582043000184285 ], [ -58.420078999746011, -34.582385999813994 ], [ -58.418319000421491, -34.583588000385873 ], [ -58.417138999964834, -34.584403000198279 ], [ -58.416731000035554, -34.584639000289599 ], [ -58.415937000292274, -34.585175999872433 ], [ -58.414992999926938, -34.585775999662587 ], [ -58.414070999676881, -34.586398999614119 ], [ -58.413169000349058, -34.586999000303592 ], [ -58.412353999637332, -34.587556999955552 ], [ -58.412203999914595, -34.587643000324135 ], [ -58.411538999824927, -34.588094000437707 ], [ -58.411045000426384, -34.588393999883124 ], [ -58.410078999945824, -34.589058999972849 ], [ -58.409522000340019, -34.589531000155489 ], [ -58.408899000388544, -34.590003000338129 ], [ -58.408642000228099, -34.59021800036038 ], [ -58.407955000023208, -34.590882999550729 ], [ -58.407183000395094, -34.591634000009037 ], [ -58.406131000445271, -34.592578000374374 ], [ -58.405100999711351, -34.593372000117654 ], [ -58.403620999809277, -34.594080000391671 ], [ -58.402332999768078, -34.594467000251825 ], [ -58.401357999771847, -34.59474999981262 ], [ -58.400912999934974, -34.594876000227202 ], [ -58.399909000399987, -34.595153000410619 ], [ -58.399673000308667, -34.595217999810814 ], [ -58.399450999963619, -34.595259999949008 ], [ -58.398534999990204, -34.595431999786911 ], [ -58.39737699964877, -34.595582000408967 ], [ -58.396155999999337, -34.595683999716755 ], [ -58.395959999954016, -34.595699000408501 ], [ -58.394650999843748, -34.595797000431162 ], [ -58.393320999664354, -34.595882999900482 ], [ -58.391969000269114, -34.595860999785259 ], [ -58.389974, -34.595776000362093 ], [ -58.388449999867532, -34.595733000177745 ], [ -58.387140999757264, -34.595711000062579 ], [ -58.385725000108607, -34.595646999809162 ], [ -58.384308999560631, -34.595561000339842 ], [ -58.384179999907019, -34.596912999735082 ], [ -58.38407300036863, -34.598093000191739 ], [ -58.384094000437756, -34.598242999914476 ], [ -58.384051000253407, -34.599144000095464 ], [ -58.383922999746574, -34.600410000021441 ], [ -58.383943999815699, -34.600753999697304 ], [ -58.383879999562282, -34.601418999786972 ], [ -58.38383700027731, -34.602599000243629 ], [ -58.383728999793448, -34.603821999985257 ], [ -58.383622000255059, -34.605066999842109 ], [ -58.382163000422111, -34.604981000372845 ], [ -58.381712000308539, -34.604938000188497 ], [ -58.381368999779454, -34.604917000119428 ], [ -58.380876000427065, -34.604895000004205 ], [ -58.380317999875729, -34.60487399993508 ], [ -58.379437999763866, -34.604808999635566 ], [ -58.377956999815638, -34.605645999563194 ], [ -58.377399000163678, -34.605924999838805 ], [ -58.376520000097912, -34.606397000021502 ], [ -58.375575999732575, -34.606869000204142 ], [ -58.375039000149684, -34.607169999695714 ], [ -58.373580000316736, -34.607899000038799 ], [ -58.373516000063319, -34.607964000338313 ], [ -58.372163999768759, -34.607921000153965 ], [ -58.371229999864568, -34.607847000338779 ], [ -58.370941000027074, -34.607598999694062 ], [ -58.370833000442587, -34.607448999971325 ], [ -58.370533000097851, -34.607255000018199 ], [ -58.370274999891308, -34.607147999580491 ], [ -58.370274999891308, -34.606933999604337 ], [ -58.370104000099502, -34.606676000297114 ], [ -58.369889000077251, -34.606568999859405 ], [ -58.369439000009777, -34.606503999559891 ], [ -58.368944999711914, -34.606655000228045 ], [ -58.368816000058303, -34.606739999651211 ], [ -58.368452000359468, -34.606869000204142 ], [ -58.368300999691314, -34.606891000319365 ], [ -58.368041000291896, -34.607133999834161 ], [ -58.367893999808189, -34.607534000293811 ], [ -58.367850999623897, -34.608242999714605 ], [ -58.367871999692966, -34.608543000059342 ], [ -58.368022000315023, -34.608800000219787 ], [ -58.368107999784343, -34.608885999689107 ], [ -58.368966999827137, -34.609208000149067 ], [ -58.369001999642535, -34.609213000379611 ], [ -58.369267000171874, -34.609251000333359 ], [ -58.369352999641194, -34.60952999970965 ], [ -58.369331000425291, -34.609916000423027 ], [ -58.369288000240999, -34.611139000164655 ], [ -58.368194000152926, -34.611139000164655 ], [ -58.368044000430245, -34.611439999656227 ], [ -58.367958000061606, -34.612255000367952 ], [ -58.3671430002492, -34.612147999930187 ], [ -58.366641999628541, -34.612115000207041 ], [ -58.366499000228657, -34.612104999745895 ], [ -58.366391999790892, -34.611998000207507 ], [ -58.36626300013728, -34.611976000092284 ], [ -58.3661130004146, -34.611998000207507 ], [ -58.36602700004596, -34.612082999630672 ], [ -58.366070000230309, -34.612147999930187 ], [ -58.366155999699572, -34.612191000114535 ], [ -58.366306000321629, -34.612212000183604 ], [ -58.366327000390697, -34.612555999859467 ], [ -58.366185000137591, -34.613811000177463 ], [ -58.365983999861669, -34.615580999963129 ], [ -58.36587700032328, -34.616718000235494 ], [ -58.365768999839418, -34.617855999654637 ], [ -58.36564100023196, -34.617876999723705 ], [ -58.365554999863321, -34.617984000161414 ], [ -58.365598000047612, -34.618091999745957 ], [ -58.365747999770349, -34.618133999884151 ], [ -58.365834000138932, -34.618133999884151 ], [ -58.365898000392349, -34.618091999745957 ], [ -58.365919999608252, -34.618027000345762 ], [ -58.366456000044309, -34.618069999630734 ], [ -58.366327000390697, -34.619229000018265 ], [ -58.3671430002492, -34.619315000386905 ], [ -58.367814999762402, -34.619356999625779 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 3.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.408791999950779, -34.609208000149067 ], [ -58.406303000283174, -34.608950999988622 ], [ -58.406024000007562, -34.608885999689107 ], [ -58.404671999713003, -34.608800000219787 ], [ -58.403405999787026, -34.608714999897302 ], [ -58.40347100008654, -34.607534000293811 ], [ -58.403556000409026, -34.606397000021502 ], [ -58.404650999643877, -34.606440000205794 ], [ -58.405937999638923, -34.606546999744182 ], [ -58.407354000186899, -34.606633000112822 ], [ -58.408748999766487, -34.606698000412337 ], [ -58.409972000407436, -34.606739999651211 ], [ -58.411344999871801, -34.606546999744182 ], [ -58.412417999890749, -34.606397000021502 ], [ -58.413640999632378, -34.606096999676765 ], [ -58.414928999673577, -34.605839000369542 ], [ -58.416022999761594, -34.605645999563194 ], [ -58.417052999596194, -34.605473999725291 ], [ -58.418361999706462, -34.605259999749137 ], [ -58.419757000185371, -34.605066999842109 ], [ -58.42119499994925, -34.60487399993508 ], [ -58.422804000404255, -34.604681000028108 ], [ -58.424348999706524, -34.604487000074926 ], [ -58.425871999792889, -34.604294000167954 ], [ -58.427330999625894, -34.604186999730189 ], [ -58.428832999643191, -34.604101000260926 ], [ -58.430399999960002, -34.604014999892286 ], [ -58.431323000256214, -34.603971999707994 ], [ -58.432309999906522, -34.603971999707994 ], [ -58.433211000087567, -34.604273000098829 ], [ -58.433919000361527, -34.60296399998856 ], [ -58.434498000082613, -34.602298999898892 ], [ -58.435656999570824, -34.603028000241977 ], [ -58.436986999750218, -34.603865000169606 ], [ -58.437760000323692, -34.603071000426269 ], [ -58.438510999882681, -34.60217000024528 ], [ -58.439304999626017, -34.601290000133361 ], [ -58.43994899964656, -34.600603999974567 ], [ -58.440806999643257, -34.599810000231287 ], [ -58.441772000077719, -34.598951000188492 ], [ -58.442737999658902, -34.598093000191739 ], [ -58.443682000024239, -34.597235000195042 ], [ -58.444668999674548, -34.596376000152247 ], [ -58.445505999602176, -34.595582000408967 ], [ -58.44627900017565, -34.594917000319242 ], [ -58.447309000010307, -34.595689999993454 ], [ -58.448380999983101, -34.596461999621567 ], [ -58.449432999932981, -34.597235000195042 ], [ -58.450204999561038, -34.596570000105373 ], [ -58.450978000134569, -34.595839999716191 ], [ -58.451407000132917, -34.595474999971202 ], [ -58.451706999578334, -34.595195999695591 ], [ -58.450592000320512, -34.594358999767962 ], [ -58.449540000370689, -34.593457999586974 ], [ -58.448639000189644, -34.592620999659346 ], [ -58.449454000002049, -34.591870000100357 ], [ -58.450226999676261, -34.591140999757272 ], [ -58.45181500006214, -34.589659999809101 ], [ -58.451042000387986, -34.588844999996695 ], [ -58.45102100031886, -34.588673000158792 ], [ -58.451214000225889, -34.588480000251764 ], [ -58.451428000201986, -34.588393999883124 ], [ -58.45181500006214, -34.588223000091318 ], [ -58.452608999805477, -34.587921999700484 ], [ -58.453917999915745, -34.587450000417164 ], [ -58.454840000165859, -34.587106999888078 ], [ -58.454968999819471, -34.58691399998105 ], [ -58.454968999819471, -34.586720000027924 ], [ -58.453960000053939, -34.585175999872433 ], [ -58.453509999986466, -34.585669000124199 ], [ -58.452973000403631, -34.58588400014645 ], [ -58.452350999598934, -34.584811000127502 ], [ -58.451749999762626, -34.58380200036197 ], [ -58.452759000427477, -34.58333000017933 ], [ -58.454025000353454, -34.582944000365273 ], [ -58.455376999748694, -34.582557999651897 ], [ -58.456706999928087, -34.582149999722674 ], [ -58.458401999852356, -34.581850000277257 ], [ -58.459453999802236, -34.581850000277257 ], [ -58.460547999890252, -34.581850000277257 ], [ -58.461900000184812, -34.581807000092908 ], [ -58.461964000438229, -34.582901000180982 ], [ -58.462006999723201, -34.58397400019993 ], [ -58.462049999907549, -34.585110999572919 ], [ -58.463508999740498, -34.585047000218822 ], [ -58.464882000104183, -34.584575000036182 ], [ -58.466276999683771, -34.58412399992261 ], [ -58.467113999611342, -34.583844999646999 ], [ -58.467392999887011, -34.583759000177679 ], [ -58.468530000159319, -34.583394999579525 ], [ -58.469559999993976, -34.583050999903662 ], [ -58.470869000104244, -34.582621999905314 ], [ -58.472070999776804, -34.582236000091314 ], [ -58.473593999863169, -34.581763999908617 ], [ -58.474001999792392, -34.581614000185937 ], [ -58.474302000137129, -34.581269999610754 ], [ -58.474710000066409, -34.5808200004426 ], [ -58.475010000411146, -34.580475999867474 ], [ -58.475481999694466, -34.57994000033068 ], [ -58.477220999849237, -34.579532000401457 ], [ -58.479002000142145, -34.579123999572857 ], [ -58.480117000299288, -34.578395000129092 ], [ -58.481426000409556, -34.577493999948103 ], [ -58.482756999735727, -34.576591999720961 ], [ -58.484301999937315, -34.575584000001527 ], [ -58.482885000242504, -34.574747000073955 ], [ -58.483592999617201, -34.573889000077259 ], [ -58.484236999637801, -34.573073000218756 ], [ -58.485482000393972, -34.573802999708619 ], [ -58.486104000299349, -34.573030000034407 ], [ -58.486748000319892, -34.572237000337225 ], [ -58.4873490001562, -34.571485999878973 ], [ -58.487948999946354, -34.570735000319985 ], [ -58.488549999782606, -34.569982999815522 ], [ -58.489171999687983, -34.569211000187465 ], [ -58.489923000146291, -34.568223999637837 ], [ -58.490825000373434, -34.567065000149569 ], [ -58.491619000116714, -34.566035000314969 ], [ -58.492369999675702, -34.565069999880564 ], [ -58.493335000110108, -34.563760999770295 ], [ -58.491939999631256, -34.56309599968057 ], [ -58.490996000165239, -34.562644999567055 ], [ -58.490523999982599, -34.562409000374998 ], [ -58.490051999799903, -34.562194000352804 ], [ -58.489108000333886, -34.561722000170107 ], [ -58.488141999853383, -34.56127200010269 ], [ -58.487177000318297, -34.560820999989119 ], [ -58.488120999784257, -34.559468999694559 ], [ -58.488506999598314, -34.558911000042599 ], [ -58.488872000242566, -34.558374999606485 ], [ -58.487948999946354, -34.557945999608137 ], [ -58.487004999581018, -34.557474000324817 ], [ -58.486854999858338, -34.557387999956177 ], [ -58.486061000115001, -34.557023000211245 ], [ -58.486618999766961, -34.556228999568646 ], [ -58.487134000133949, -34.555478000009657 ], [ -58.487542000063229, -34.554899000288572 ], [ -58.487198000387366, -34.554899000288572 ], [ -58.486661999951309, -34.554899000288572 ], [ -58.486254000022029, -34.554899000288572 ], [ -58.486254000022029, -34.554899000288572 ], [ -58.486726000204726, -34.554191000014612 ], [ -58.487262999787561, -34.553397000271275 ], [ -58.486512000228572, -34.55301000041112 ], [ -58.485675000301001, -34.552560000343703 ], [ -58.484730999935664, -34.552088000161007 ], [ -58.483807999639453, -34.551593999863144 ], [ -58.484387000259801, -34.550843000304155 ], [ -58.484988000096109, -34.550027999592487 ], [ -58.484022999661647, -34.549598999594139 ], [ -58.483100000264756, -34.549105000195539 ], [ -58.482176999968544, -34.548611999943773 ], [ -58.482478000359379, -34.548225000083619 ], [ -58.482756999735727, -34.547839000269619 ], [ -58.483336000356076, -34.547087999811311 ], [ -58.483915000077161, -34.546316000183197 ], [ -58.484515999913413, -34.545522000439917 ], [ -58.483572000447396, -34.545050000257277 ], [ -58.482649000151184, -34.544599000143705 ], [ -58.481704999785848, -34.54410599989194 ], [ -58.480525000228511, -34.54369799996266 ], [ -58.479516999609814, -34.543376000402077 ], [ -58.478507999844282, -34.543032999872992 ], [ -58.477499000078751, -34.542711000312352 ], [ -58.476491000359317, -34.542388999852392 ], [ -58.47563300036262, -34.542089000406975 ], [ -58.474645999812992, -34.541766999947072 ], [ -58.4743670004367, -34.541680999578432 ], [ -58.473829999954489, -34.541530999855695 ], [ -58.474430999790741, -34.540714999997192 ], [ -58.474710000066409, -34.540393000436552 ], [ -58.475031999627049, -34.539985999654107 ], [ -58.475524999878814, -34.539405999886924 ], [ -58.476297999552969, -34.538075999707587 ], [ -58.47674899966654, -34.537173000333667 ], [ -58.477135000379917, -34.536401999852387 ], [ -58.477627999732363, -34.535415000202079 ], [ -58.478122000030226, -34.534470999836742 ], [ -58.478551000028574, -34.533590999724822 ], [ -58.478830000304242, -34.533055000188085 ], [ -58.479086999565311, -34.532539999821097 ], [ -58.479580999863231, -34.53159600035508 ], [ -58.480030999930648, -34.530629999874577 ], [ -58.480588999582608, -34.529665000339435 ], [ -58.481018999627111, -34.528934999950252 ], [ -58.481232999603208, -34.528505999951904 ], [ -58.481576000132236, -34.527861999931304 ], [ -58.482112999715127, -34.526875000280995 ], [ -58.482242000268059, -34.526660000258744 ], [ -58.482649000151184, -34.525908999800436 ], [ -58.482734999620504, -34.52573800000863 ], [ -58.483143000449047, -34.52502999973467 ], [ -58.483272000102659, -34.524814999712419 ], [ -58.483765000354424, -34.52391400043075 ], [ -58.484301999937315, -34.522970000065413 ], [ -58.484752000004733, -34.522089999953494 ], [ -58.485288999587624, -34.520910000396157 ], [ -58.485931999562069, -34.519751000008625 ], [ -58.486061000115001, -34.519558000101597 ], [ -58.486319000321544, -34.519042999734609 ], [ -58.486683000020378, -34.518398999714009 ], [ -58.4873490001562, -34.517198000087603 ], [ -58.488077999599966, -34.515932000161627 ], [ -58.488679000335537, -34.514623000051358 ], [ -58.488829000058274, -34.514279000375495 ], [ -58.488894000357789, -34.51419400005301 ], [ -58.489386999710234, -34.513185000287478 ], [ -58.489881000008097, -34.51228400010649 ], [ -58.490374000259862, -34.511425000063639 ], [ -58.490888999727531, -34.51061000025129 ], [ -58.491339999841102, -34.509837999723857 ], [ -58.491597000001491, -34.509407999679411 ], [ -58.491789999908519, -34.509021999865354 ], [ -58.492218999906868, -34.508271000306365 ], [ -58.492692000135662, -34.507326999941029 ], [ -58.493206999603331, -34.506361000359846 ], [ -58.493656999670748, -34.5054600001788 ], [ -58.49415099996861, -34.504494999744395 ], [ -58.494644000220376, -34.503572000347503 ], [ -58.495158999688044, -34.502627999982167 ], [ -58.495587999686393, -34.501834000238887 ], [ -58.495953000330644, -34.501082999780579 ], [ -58.496424999614021, -34.500139000314562 ], [ -58.496747000073981, -34.499516000363087 ], [ -58.497047000418718, -34.498915999673613 ], [ -58.497648000254969, -34.497757000185345 ], [ -58.498634999905278, -34.498208000298916 ], [ -58.499450999763781, -34.49857199999775 ], [ -58.500438000313409, -34.499002000042196 ], [ -58.501275000241037, -34.499431000040602 ], [ -58.501446000032843, -34.499495000293962 ], [ -58.502411999614026, -34.49992400029231 ], [ -58.503334999910294, -34.500353000290715 ], [ -58.503656000324099, -34.50048199994427 ], [ -58.504363999698796, -34.50080400040423 ], [ -58.504986999650271, -34.501082999780579 ], [ -58.505286999995008, -34.50121200033351 ], [ -58.505588000385842, -34.50136200005619 ], [ -58.506188000176053, -34.501662000400927 ], [ -58.506811000127527, -34.501940999777275 ], [ -58.507196999941527, -34.502091000399332 ], [ -58.508011999753933, -34.502478000259487 ], [ -58.508141000306864, -34.502541999613527 ], [ -58.508612999590241, -34.502756999635778 ], [ -58.509127999957173, -34.503013999796224 ], [ -58.509256999610784, -34.503078000049641 ], [ -58.509815000162064, -34.503336000256184 ], [ -58.510157999791829, -34.503485999978864 ], [ -58.510437000067441, -34.503635999701601 ], [ -58.511145000341457, -34.50395800016156 ], [ -58.512281999714503, -34.5044300003442 ], [ -58.513248000195006, -34.504944999811869 ], [ -58.513397999917743, -34.505010000111383 ], [ -58.514427999752343, -34.505439000109732 ], [ -58.514642999774594, -34.50554599964812 ], [ -58.515801000116028, -34.506083000130332 ], [ -58.517002999788588, -34.506597999597943 ], [ -58.517388999602588, -34.50674800022 ], [ -58.518096999876605, -34.507090999849709 ], [ -58.518912999735107, -34.507434000378794 ], [ -58.519235000195067, -34.507563000032405 ], [ -58.519985999754056, -34.507884999592989 ], [ -58.520350000352209, -34.508057000330268 ], [ -58.521402000302032, -34.508571999797937 ], [ -58.522130999745798, -34.508872000142674 ], [ -58.522475000320981, -34.509021999865354 ], [ -58.522731999582049, -34.509130000349217 ], [ -58.522904000319329, -34.509214999772382 ], [ -58.523569000408997, -34.509516000163217 ], [ -58.524148000130083, -34.509795000438885 ], [ -58.524512999875014, -34.50996600023069 ], [ -58.524985000057654, -34.510159000137719 ], [ -58.525585999893963, -34.510417000344262 ], [ -58.526229999914506, -34.510738999904902 ], [ -58.526808999635591, -34.511039000249639 ], [ -58.527667999678386, -34.511425000063639 ], [ -58.527968000023122, -34.51155399971725 ], [ -58.528483000390111, -34.511789999808627 ], [ -58.529018999926848, -34.512025999899947 ], [ -58.529426999856128, -34.512218999806976 ], [ -58.530114000061019, -34.512541000266879 ], [ -58.530371000221464, -34.512648999851422 ], [ -58.531272000402453, -34.513121000034062 ], [ -58.532066000145733, -34.513742999939439 ], [ -58.531444000240356, -34.514536999682718 ], [ -58.532216999914567, -34.515029999934484 ], [ -58.533288999887418, -34.515760000323723 ], [ -58.533547000093961, -34.515953000230752 ], [ -58.533998000207475, -34.516274999791392 ], [ -58.534470000390172, -34.516597000251295 ], [ -58.534620000112852, -34.516682999720615 ], [ -58.535113000364618, -34.517047000318769 ], [ -58.535736000316149, -34.517518999602089 ], [ -58.536443999690789, -34.5180560000843 ], [ -58.537151999964806, -34.518549000336066 ], [ -58.537860000238766, -34.517948999646592 ], [ -58.538525000328434, -34.517347999810283 ], [ -58.538675000051171, -34.517241000271895 ], [ -58.539405000440354, -34.517884000246397 ], [ -58.539940999977148, -34.518313000244746 ], [ -58.540091999745925, -34.518464000013523 ], [ -58.540713999651302, -34.518979000380511 ], [ -58.541508000293959, -34.5197299999395 ], [ -58.542451999759919, -34.520481000397808 ], [ -58.543331999871839, -34.521253000025865 ], [ -58.544210999937661, -34.521983000415105 ], [ -58.545069999980456, -34.522733999974093 ], [ -58.545841999608569, -34.52350599960215 ], [ -58.545511999678979, -34.523797999577994 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 2.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.458987, -34.779186 ], [ -58.460533, -34.780004 ], [ -58.461808, -34.780696 ], [ -58.464458, -34.782074 ], [ -58.466053, -34.782939 ], [ -58.465223, -34.783996 ], [ -58.463116, -34.786677 ], [ -58.464367, -34.787357 ], [ -58.465637999999899, -34.788032 ], [ -58.466476, -34.788459 ], [ -58.467324, -34.788958 ], [ -58.468177, -34.789399 ], [ -58.468989, -34.78985 ], [ -58.469783, -34.79024 ], [ -58.470597, -34.790669 ], [ -58.471387, -34.791077 ], [ -58.472355, -34.791571 ], [ -58.47308, -34.791972 ], [ -58.474526, -34.792767 ], [ -58.475377, -34.793209 ], [ -58.475894, -34.793499 ], [ -58.477284, -34.794214 ], [ -58.47868, -34.794911 ], [ -58.479364, -34.795248 ], [ -58.480131, -34.795622 ], [ -58.479264, -34.796783 ], [ -58.47838, -34.797991 ], [ -58.478234, -34.798238 ], [ -58.478171, -34.798502 ], [ -58.478173, -34.798755 ], [ -58.478155999999899, -34.798881 ], [ -58.478135, -34.798995 ], [ -58.478037, -34.799107 ], [ -58.477838, -34.799398 ], [ -58.477418, -34.799964 ], [ -58.476987, -34.800541 ], [ -58.476387, -34.801362 ], [ -58.475741, -34.802303 ], [ -58.47485, -34.803367 ], [ -58.474041, -34.804419 ], [ -58.473251, -34.80543 ], [ -58.472419, -34.80646 ], [ -58.471616, -34.807491 ], [ -58.470823, -34.808558 ], [ -58.47, -34.809554 ], [ -58.469191, -34.810559 ], [ -58.468441, -34.81159 ], [ -58.467583, -34.812669 ], [ -58.467316, -34.813018 ], [ -58.467056, -34.813375 ], [ -58.468301, -34.814034 ], [ -58.469255, -34.814793 ], [ -58.469368, -34.814781 ], [ -58.469477, -34.814789 ], [ -58.46956, -34.814906 ], [ -58.470869, -34.815314 ], [ -58.470785, -34.815399 ], [ -58.470367, -34.815908 ], [ -58.469554, -34.816999 ], [ -58.468764, -34.818019 ], [ -58.467969, -34.819035 ], [ -58.467171, -34.820036 ], [ -58.468398, -34.820717 ], [ -58.469657, -34.821379 ], [ -58.470932, -34.822056 ], [ -58.472191, -34.822725 ], [ -58.473012, -34.82168 ], [ -58.473934, -34.822135 ], [ -58.474257, -34.822312 ], [ -58.47509, -34.821253 ], [ -58.475238, -34.821365 ], [ -58.475671, -34.821597 ], [ -58.476287, -34.821926 ], [ -58.476898, -34.822269 ], [ -58.477517, -34.8226 ], [ -58.478155999999899, -34.822944 ], [ -58.478784, -34.823264 ], [ -58.479427, -34.823585 ], [ -58.48004, -34.82392 ], [ -58.480673, -34.82426 ], [ -58.481408, -34.824665 ], [ -58.481807, -34.824167 ], [ -58.482107, -34.823846 ], [ -58.482322, -34.823739 ], [ -58.482645, -34.82365 ], [ -58.482891, -34.823625 ], [ -58.483244, -34.823682 ], [ -58.483677, -34.823895 ], [ -58.484864, -34.824749 ], [ -58.486055, -34.825627 ], [ -58.487065, -34.826388 ], [ -58.486963, -34.826539 ], [ -58.487111, -34.826669 ], [ -58.488248, -34.827512 ], [ -58.487269, -34.827582 ], [ -58.486927, -34.828048 ], [ -58.486731, -34.828435 ], [ -58.48665, -34.828611 ], [ -58.486713, -34.828927 ], [ -58.486258, -34.829539 ], [ -58.486092, -34.829764 ], [ -58.486031, -34.829885 ], [ -58.485995, -34.830032 ], [ -58.485968, -34.830194 ], [ -58.485957, -34.83038 ], [ -58.485983, -34.830556 ], [ -58.486172, -34.830658 ], [ -58.486693, -34.830918 ], [ -58.486906, -34.83104 ], [ -58.488271, -34.831704 ], [ -58.488693, -34.832059 ], [ -58.489349, -34.832533 ], [ -58.489936, -34.832955 ], [ -58.488819, -34.834066 ], [ -58.487699, -34.835152 ], [ -58.487291, -34.835607 ], [ -58.486517, -34.836299 ], [ -58.487148, -34.836766 ], [ -58.487783, -34.837186 ], [ -58.488349, -34.836646 ], [ -58.488906, -34.836061 ], [ -58.489394, -34.836387 ], [ -58.489599, -34.836533 ], [ -58.490263, -34.836951 ], [ -58.490569, -34.83669 ], [ -58.491378, -34.835947 ], [ -58.491982, -34.835393 ], [ -58.4926, -34.83488 ], [ -58.49322, -34.83439 ], [ -58.493777, -34.83388 ], [ -58.494964, -34.832834 ], [ -58.49557, -34.833309 ], [ -58.494368, -34.834357 ], [ -58.494975, -34.834815 ], [ -58.495584, -34.835272 ], [ -58.49441, -34.836274 ], [ -58.493177, -34.837339 ], [ -58.493765, -34.837789 ], [ -58.494386, -34.838292 ], [ -58.495059, -34.83883 ], [ -58.495699, -34.839319 ], [ -58.496284, -34.839764 ], [ -58.496851, -34.840218 ], [ -58.49744, -34.840691 ], [ -58.498008, -34.8412 ], [ -58.498601, -34.841644 ], [ -58.499243, -34.84212 ], [ -58.499841, -34.842567 ], [ -58.500587, -34.843155 ], [ -58.501401, -34.843781 ], [ -58.502328, -34.844288 ], [ -58.503055, -34.844652 ], [ -58.503798, -34.844996 ], [ -58.505042, -34.84557 ] ] } }, +{ "type": "Feature", "properties": { "id_linea": 1.0 }, "geometry": { "type": "LineString", "coordinates": [ [ -58.619776776999913, -34.647910550999939 ], [ -58.619777678999924, -34.647956847999922 ], [ -58.619781493999938, -34.648067473999902 ], [ -58.619834900999933, -34.648064506999958 ], [ -58.620948791999922, -34.648002624999947 ], [ -58.62107467699991, -34.64805221599994 ], [ -58.62107467699991, -34.648019839999904 ], [ -58.62107467699991, -34.64797210699993 ], [ -58.621051787999932, -34.647350310999911 ], [ -58.621047973999907, -34.646987914999954 ], [ -58.621047973999907, -34.646400451999909 ], [ -58.621028899999942, -34.645473479999907 ], [ -58.621021270999904, -34.644527434999929 ], [ -58.621059417999902, -34.643699645999902 ], [ -58.621006011999953, -34.64351654099994 ], [ -58.621022937999953, -34.643502859999955 ], [ -58.622379302999946, -34.642406463999919 ], [ -58.622393577999901, -34.642417067999929 ], [ -58.622512816999915, -34.642505645999904 ], [ -58.622522100999902, -34.64249768499991 ], [ -58.624065398999903, -34.641174315999933 ], [ -58.624372557999948, -34.640927089999934 ], [ -58.624378203999925, -34.640922545999956 ], [ -58.624992370999905, -34.640506743999936 ], [ -58.625497603999918, -34.639888035999945 ], [ -58.625705718999939, -34.639633178999929 ], [ -58.62612914999994, -34.63856506299993 ], [ -58.626747130999945, -34.637931823999907 ], [ -58.627140044999919, -34.637279509999928 ], [ -58.627578734999929, -34.636535644999924 ], [ -58.627948760999914, -34.635925292999957 ], [ -58.628196715999934, -34.635551452999948 ], [ -58.628479003999928, -34.634914397999921 ], [ -58.628836605999936, -34.634086341999932 ], [ -58.629167254999913, -34.63333119899994 ], [ -58.629287306999913, -34.63298868399994 ], [ -58.62929448999995, -34.632968188999939 ], [ -58.629373228999953, -34.632743542999947 ], [ -58.629378888999952, -34.632727393999915 ], [ -58.629400558999919, -34.632665569999915 ], [ -58.629404793999925, -34.632654312999932 ], [ -58.629434810999953, -34.632574532999911 ], [ -58.629478648999907, -34.63245801599993 ], [ -58.629521622999903, -34.632339177999938 ], [ -58.629545503999907, -34.632273136999913 ], [ -58.629746455999907, -34.631752307999932 ], [ -58.630006986999945, -34.631080497999903 ], [ -58.630378885999903, -34.630095547999929 ], [ -58.630702527999915, -34.629246416999933 ], [ -58.630762063999953, -34.629091679999931 ], [ -58.631053334999933, -34.628262679999921 ], [ -58.631148434999943, -34.627987417999918 ], [ -58.63139951799991, -34.627303042999927 ], [ -58.631760920999909, -34.626308987999948 ], [ -58.632057599999939, -34.625383872999919 ], [ -58.632369560999905, -34.624550368999905 ], [ -58.632723377999923, -34.623625079999954 ], [ -58.632883160999938, -34.623196858999904 ], [ -58.63311522999993, -34.62258128499991 ], [ -58.633381484999916, -34.621759376999933 ], [ -58.633617298999923, -34.621006303999934 ], [ -58.633670367999912, -34.620840369999939 ], [ -58.633685763999949, -34.620792228999903 ], [ -58.633886696999923, -34.618767516999924 ], [ -58.633974186999922, -34.618511373999922 ], [ -58.634000719999904, -34.618232501999955 ], [ -58.634099263999929, -34.617181960999915 ], [ -58.634118494999939, -34.616914419999944 ], [ -58.634233990999917, -34.615813517999925 ], [ -58.634275333999938, -34.61540692299991 ], [ -58.634414635999917, -34.614145466999958 ], [ -58.63451793899992, -34.613439940999911 ], [ -58.634520422999913, -34.612982883999905 ], [ -58.634586992999914, -34.611799399999938 ], [ -58.634690847999934, -34.610718308999935 ], [ -58.63472846399992, -34.609790511999904 ], [ -58.634728578999955, -34.609775244999923 ], [ -58.634847772999933, -34.608182580999937 ], [ -58.634946413999899, -34.60677712599994 ], [ -58.635213024999928, -34.604936918999954 ], [ -58.635213374999921, -34.604934504999903 ], [ -58.63523852499992, -34.604760911999904 ], [ -58.635285821999901, -34.603868422999938 ], [ -58.635302796999952, -34.603582351999933 ], [ -58.635388574999922, -34.602651391999927 ], [ -58.635505727999941, -34.601775801999906 ], [ -58.635508586999947, -34.601754434999918 ], [ -58.635563475999902, -34.600832222999941 ], [ -58.635637647999943, -34.599872963999928 ], [ -58.635731128999907, -34.598879592999936 ], [ -58.635836354999924, -34.597836937999944 ], [ -58.635917414999938, -34.597014186999957 ], [ -58.635942224999951, -34.596775796999907 ], [ -58.636048326999912, -34.595624509999936 ], [ -58.636149831999944, -34.594175113999938 ], [ -58.636265431999902, -34.592829617999939 ], [ -58.636314646999949, -34.592698875999929 ], [ -58.636348012999918, -34.592574264999939 ], [ -58.636314646999949, -34.592698875999929 ], [ -58.636265431999902, -34.592829617999939 ], [ -58.635387419999915, -34.592056475999925 ], [ -58.634869845999901, -34.591609358999904 ], [ -58.634505641999908, -34.591298694999921 ], [ -58.633810954999944, -34.590680884999927 ], [ -58.6336076259999, -34.590497392999907 ], [ -58.633201295999925, -34.590130706999958 ], [ -58.633164756999918, -34.590146697999955 ], [ -58.631783864999932, -34.590751046999912 ], [ -58.631732566999915, -34.590706273999956 ], [ -58.631370919999938, -34.59039062699992 ], [ -58.630627367999921, -34.589711936999947 ], [ -58.629124532999924, -34.588390387999937 ], [ -58.629141746999949, -34.588376635999907 ], [ -58.629943620999939, -34.587736046999908 ], [ -58.630134188999932, -34.587582145999932 ], [ -58.630241105999914, -34.587495799999942 ], [ -58.630282498999918, -34.587533133999955 ], [ -58.630329884999924, -34.587575872999935 ], [ -58.630500667999911, -34.587729907999915 ], [ -58.631139767999912, -34.588309666999919 ], [ -58.631186103999937, -34.588308783999935 ], [ -58.632448627999906, -34.588284724999937 ], [ -58.63317862699995, -34.588252622999903 ], [ -58.634014381999918, -34.588257522999925 ], [ -58.635698929999933, -34.588164629999937 ], [ -58.635709673999941, -34.588157402999911 ], [ -58.635918518999915, -34.588016918999926 ], [ -58.63683188899995, -34.587318459999949 ], [ -58.636882698999955, -34.587279630999944 ], [ -58.638598922999904, -34.58596809699992 ], [ -58.638602765999906, -34.585957399999927 ], [ -58.639288109999939, -34.58404960799993 ], [ -58.639357877999942, -34.58385736799994 ], [ -58.639774627999941, -34.582550282999932 ], [ -58.640306405999922, -34.581032308999909 ], [ -58.64038727499991, -34.580815452999957 ], [ -58.640937289999954, -34.57930315099992 ], [ -58.640949253999906, -34.57912786299994 ], [ -58.640975189999949, -34.579090966999956 ], [ -58.643618323999931, -34.575330860999941 ], [ -58.644129354999905, -34.574428523999927 ], [ -58.644651875999955, -34.57350589899994 ], [ -58.644628330999922, -34.573485170999902 ], [ -58.643186736999951, -34.572216040999933 ], [ -58.642456900999946, -34.571569520999958 ], [ -58.641673991999937, -34.570896455999957 ], [ -58.640936549999935, -34.570249959999956 ], [ -58.640214147999927, -34.569630135999944 ], [ -58.639889165999932, -34.569306744999949 ], [ -58.639898396999911, -34.569273938999913 ], [ -58.640033220999953, -34.568794772999922 ], [ -58.640196315999901, -34.568081603999929 ], [ -58.640201925999918, -34.568057071999931 ], [ -58.640224378999903, -34.567958891999922 ], [ -58.640280336999922, -34.567714202999923 ], [ -58.640448181999943, -34.566980258999934 ], [ -58.640450124999916, -34.566971589999923 ], [ -58.640871220999941, -34.565093194999918 ], [ -58.641315827999904, -34.562965486999929 ], [ -58.641326375999938, -34.562915006999958 ], [ -58.641332525999928, -34.562915062999934 ], [ -58.641629923999915, -34.562917771999935 ], [ -58.641674583999929, -34.562914802999956 ], [ -58.641993943999921, -34.562893574999919 ], [ -58.642285746999903, -34.562854341999923 ], [ -58.642922206999913, -34.562745118999942 ], [ -58.643186847999914, -34.562662254999907 ], [ -58.643440592999923, -34.562582802999941 ], [ -58.643947235999917, -34.562378488999911 ], [ -58.644404624999936, -34.562181989999942 ], [ -58.644641896999929, -34.562089077999929 ], [ -58.644835244999911, -34.562013366999906 ], [ -58.644857777999903, -34.562004542999944 ], [ -58.644877286999929, -34.561996902999908 ], [ -58.645099521999953, -34.561854973999914 ], [ -58.645099911999921, -34.561854724999932 ], [ -58.645239033999928, -34.561795104999931 ], [ -58.645395379999911, -34.56172810399994 ], [ -58.649926531999938, -34.559864700999924 ], [ -58.651716218999923, -34.559128704999921 ], [ -58.65191391399992, -34.559128360999921 ], [ -58.652104029999919, -34.559139430999949 ], [ -58.653407111999911, -34.558684857999936 ], [ -58.653462177999927, -34.558687896999913 ], [ -58.655076313999928, -34.558776966999915 ], [ -58.655138092999948, -34.558736359999955 ], [ -58.657001206999951, -34.55751173099992 ], [ -58.658220037999911, -34.556764638999937 ], [ -58.660037707999948, -34.55513090799991 ], [ -58.661894214999904, -34.553888594999933 ], [ -58.663758317999907, -34.552642467999931 ], [ -58.665078489999928, -34.551671713999951 ], [ -58.665234967999936, -34.551556651999931 ], [ -58.667467902999931, -34.550690253999903 ], [ -58.669764504999932, -34.550197719999915 ], [ -58.671877188999929, -34.549338916999943 ], [ -58.67468361199991, -34.548540235999951 ], [ -58.675650169999926, -34.548026690999905 ], [ -58.677445244999944, -34.546686828999952 ], [ -58.67744468199993, -34.546747450999931 ], [ -58.677420695999899, -34.549331399999915 ], [ -58.67741742599992, -34.549683670999912 ], [ -58.67741577299995, -34.549861713999917 ], [ -58.677461945999937, -34.549828976999947 ], [ -58.678104207999922, -34.549373607999939 ], [ -58.679587566999942, -34.548317912999948 ], [ -58.681139366999901, -34.547205410999936 ], [ -58.682326055999908, -34.546361616999945 ], [ -58.6834518739999, -34.545555626999942 ], [ -58.684855349999907, -34.544552882999938 ], [ -58.68646420999994, -34.543402558999958 ], [ -58.6872477309999, -34.542846341999905 ], [ -58.68805406599995, -34.542271188999905 ], [ -58.688845167999943, -34.541699775999916 ], [ -58.689598253999918, -34.541162460999942 ], [ -58.690092706999906, -34.540810562999923 ], [ -58.691256561999921, -34.53997808999992 ], [ -58.693219161999934, -34.538581851999936 ], [ -58.694019773999912, -34.538005974999919 ], [ -58.69478644499992, -34.537452093999946 ], [ -58.695686622999915, -34.536810361999926 ], [ -58.696487624999918, -34.536233562999939 ], [ -58.697231411999951, -34.535698783999919 ], [ -58.698425283999939, -34.534839314999942 ], [ -58.699340714999948, -34.53418230099993 ], [ -58.699962444999926, -34.533735376999914 ], [ -58.700965606999944, -34.533017245999929 ], [ -58.701092704999951, -34.532937216999926 ], [ -58.701316562999921, -34.53279626199992 ], [ -58.701319596999952, -34.532794351999939 ], [ -58.701335626999935, -34.532784257999936 ], [ -58.701296959999922, -34.532748387999902 ], [ -58.697736542999905, -34.529445559999942 ], [ -58.697564611999951, -34.529284935999954 ], [ -58.696769884999924, -34.528523893999932 ], [ -58.69672021699995, -34.528478 ], [ -58.694553866999911, -34.526447257999905 ], [ -58.69451076799993, -34.526424211999938 ], [ -58.694493268999906, -34.526414854999928 ], [ -58.6939886319999, -34.52614501499994 ], [ -58.693781322999939, -34.526106973999902 ], [ -58.69376643499993, -34.526104241999917 ], [ -58.6936335769999, -34.52607986299995 ], [ -58.693247605999943, -34.526127149999922 ], [ -58.693198483999936, -34.526133167999944 ], [ -58.693169195999928, -34.526159406999909 ], [ -58.693116624999902, -34.526206504999948 ], [ -58.692732581999906, -34.526550565999912 ], [ -58.692729409999913, -34.526553407999927 ], [ -58.692253324999911, -34.526967021999951 ], [ -58.69149376799993, -34.527626910999913 ], [ -58.689339054999948, -34.529533257999958 ], [ -58.68925515299992, -34.529605842999956 ], [ -58.689202913999907, -34.529617493999922 ], [ -58.689113984999949, -34.529637326999932 ], [ -58.688927361999902, -34.529678947999912 ], [ -58.688793389999944, -34.529708826999922 ], [ -58.688457502999938, -34.529723953999905 ], [ -58.68817121099994, -34.529712348999908 ], [ -58.687994308999919, -34.529702773999929 ], [ -58.687957441999913, -34.529700778999938 ], [ -58.687682405999908, -34.529498058999934 ], [ -58.687400963999949, -34.529299736999917 ], [ -58.687129171999914, -34.529108214999951 ], [ -58.686960460999899, -34.528989330999934 ], [ -58.685910262999926, -34.528218486999947 ], [ -58.685708928999929, -34.528070707999916 ], [ -58.685214751999922, -34.527707982999914 ], [ -58.68517542099994, -34.527680937999946 ], [ -58.684068826999919, -34.526920013999927 ], [ -58.682865574999937, -34.526063214999908 ], [ -58.681822765999925, -34.525328809999905 ], [ -58.680879274999938, -34.524667079999915 ], [ -58.68005418599995, -34.524078030999931 ], [ -58.678663503999928, -34.523127214999931 ], [ -58.677995347999911, -34.522670392999942 ], [ -58.676979985999935, -34.521936102999916 ], [ -58.676826462999941, -34.521825077999949 ], [ -58.675780391999922, -34.52115965899992 ], [ -58.674240628999939, -34.520180195999956 ], [ -58.673168482999927, -34.519491722999931 ], [ -58.672786448999943, -34.519245649999903 ], [ -58.672718800999917, -34.519202076999932 ], [ -58.672164958999929, -34.518845341999906 ], [ -58.671517984999923, -34.518399532999922 ], [ -58.671232923999924, -34.51820310599993 ], [ -58.67035539099993, -34.517640846999939 ], [ -58.669571980999933, -34.517086638999956 ], [ -58.668694536999908, -34.516528175999952 ], [ -58.667872918999933, -34.515947210999911 ], [ -58.667016908999926, -34.515476810999928 ], [ -58.667008730999953, -34.515472316999933 ], [ -58.666970611999943, -34.515449356999909 ], [ -58.666283850999946, -34.515009491999933 ], [ -58.665547245999903, -34.514527631999954 ], [ -58.664829701999906, -34.51405725099994 ], [ -58.664809426999909, -34.514043408999953 ], [ -58.66408495099995, -34.51354878099994 ], [ -58.66334029099994, -34.513044106999928 ], [ -58.662844120999921, -34.512719044999926 ], [ -58.662514734999945, -34.512455530999944 ], [ -58.661507453999945, -34.511809131999939 ], [ -58.660934776999909, -34.511426761999928 ], [ -58.660831694999899, -34.511357933999932 ], [ -58.658773363999899, -34.509962437999945 ], [ -58.657640798999921, -34.509219078999934 ], [ -58.657345880999912, -34.509025509999958 ], [ -58.656972031999942, -34.508788347999939 ], [ -58.655753837999953, -34.507962518999932 ], [ -58.654065869999954, -34.506815553999957 ], [ -58.652343448999943, -34.505641849999904 ], [ -58.652309178999928, -34.505622703999904 ], [ -58.652074869999922, -34.505456174999949 ], [ -58.651701509999953, -34.505190818999949 ], [ -58.651113171999953, -34.504781800999922 ], [ -58.650593847999914, -34.504422030999933 ], [ -58.650517226999909, -34.504368950999947 ], [ -58.6498717099999, -34.50392549299994 ], [ -58.649226192999947, -34.503482034999934 ], [ -58.648313848999919, -34.502877851999926 ], [ -58.648246637999932, -34.502877522999938 ], [ -58.648035773999936, -34.502876491999928 ], [ -58.645055327999955, -34.50283913599992 ], [ -58.644991400999913, -34.502841324999906 ], [ -58.644982015999915, -34.502841645999922 ], [ -58.644938769999953, -34.502843126999949 ], [ -58.643891502999907, -34.502878991999921 ], [ -58.643886350999935, -34.502838274999931 ], [ -58.643860740999912, -34.502635854999937 ], [ -58.643817499999955, -34.502294091999943 ], [ -58.643788914999902, -34.502039641999943 ], [ -58.6436434929999, -34.500820512999951 ], [ -58.643615046999912, -34.500806078999915 ], [ -58.643099642999914, -34.500544562999949 ], [ -58.642207528999904, -34.500001210999926 ], [ -58.641095480999923, -34.499373275999915 ], [ -58.640135555999905, -34.498835034999956 ], [ -58.639044810999906, -34.498236967999958 ], [ -58.637958977999915, -34.497646652999947 ], [ -58.636919106999926, -34.497090515999957 ], [ -58.635867771999926, -34.496526775999939 ], [ -58.634838462999937, -34.495972025999947 ], [ -58.633748159999925, -34.495386654999947 ], [ -58.632726474999913, -34.494835731999956 ], [ -58.631735284999934, -34.494296314999929 ], [ -58.630794430999913, -34.493787783999949 ], [ -58.630571106999923, -34.493667458999937 ], [ -58.629792571999928, -34.49326887299992 ], [ -58.628870382999935, -34.492742460999921 ], [ -58.628081183999939, -34.492321319999917 ], [ -58.627903499999945, -34.492215704999921 ], [ -58.626811093999947, -34.491627085999937 ], [ -58.625896289999901, -34.491140286999951 ], [ -58.625592599999948, -34.49097551199992 ], [ -58.624953779999942, -34.490634021999938 ], [ -58.623881198999925, -34.490060934999917 ], [ -58.622901393999939, -34.489528850999932 ], [ -58.622103781999954, -34.489114482999923 ], [ -58.621921584999939, -34.489000554999905 ], [ -58.621404919999918, -34.488749537999922 ], [ -58.620607582999924, -34.488293620999912 ], [ -58.619387545999928, -34.487632545999929 ], [ -58.618339723999952, -34.487104716999909 ], [ -58.617211631999908, -34.48658101299992 ], [ -58.616176039999914, -34.48602253699994 ], [ -58.615551015999927, -34.485711557999934 ], [ -58.615550263999921, -34.485711183999911 ], [ -58.6150520569999, -34.485487339999906 ], [ -58.614782918999936, -34.48534241099992 ], [ -58.614527403999944, -34.485204817999943 ], [ -58.614238206999914, -34.485048205999931 ], [ -58.6140097359999, -34.484933644999956 ], [ -58.61381530299991, -34.48484968899993 ], [ -58.613620868999931, -34.484765731999914 ], [ -58.612453941999945, -34.484162399999946 ] ] } } +] +} From d0d05253b240f06f1397ca3309a73b5ba46c5f0f Mon Sep 17 00:00:00 2001 From: Felipe Gonzalez Date: Fri, 22 Nov 2024 11:56:39 -0300 Subject: [PATCH 15/18] Fixes missing columns in plot basic kpi (#184) --- urbantrips/viz/viz.py | 69 +++++++++++++++++++++++++------------------ 1 file changed, 41 insertions(+), 28 deletions(-) diff --git a/urbantrips/viz/viz.py b/urbantrips/viz/viz.py index 0a47121..c46fb52 100755 --- a/urbantrips/viz/viz.py +++ b/urbantrips/viz/viz.py @@ -264,6 +264,7 @@ def load_route_section_load_data_q( q_main_data = q_main_data + ";" return q_main_data + def standarize_size(series, min_size, max_size): if series.min() == series.max(): return pd.Series([min_size] * len(series)) @@ -271,6 +272,7 @@ def standarize_size(series, min_size, max_size): series.max() - series.min() ) + def viz_etapas_x_tramo_recorrido( df, stat="totals", factor=500, factor_min=10, return_gdfs=False, save_gdf=False ): @@ -343,13 +345,13 @@ def viz_etapas_x_tramo_recorrido( print("Produciendo grafico de ocupacion por tramos", line_id) # set a expansion factor for viz purposes - #df["buff_factor"] = df[indicator_col] * factor + # df["buff_factor"] = df[indicator_col] * factor # Set a minimum for each section to be displated in map - #df["buff_factor"] = np.where(df["buff_factor"] <= factor_min, factor_min, df["buff_factor"]) + # df["buff_factor"] = np.where(df["buff_factor"] <= factor_min, factor_min, df["buff_factor"]) - df['buff_factor'] = standarize_size( + df["buff_factor"] = standarize_size( series=df[indicator_col], min_size=factor_min, max_size=factor - ) + ) cols = [ "id_linea", @@ -2578,14 +2580,13 @@ def plot_dispatched_services_by_line_day(df): f, ax = plt.subplots(figsize=(8, 6)) sns.barplot(data=df, x="hora", y="servicios", hue="id_linea", ax=ax) - + ax.get_legend().remove() ax.set_xlabel("Hora") ax.set_ylabel("Cantidad de servicios despachados") - - f.suptitle( - f"Cantidad de servicios despachados por hora y día" ) - + + f.suptitle(f"Cantidad de servicios despachados por hora y día") + ax.set_title( f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", fontdict={"fontsize": 11}, @@ -2594,34 +2595,44 @@ def plot_dispatched_services_by_line_day(df): # f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", # fontdict={"fontsize": 11}, # ) - + ax.spines.right.set_visible(False) ax.spines.top.set_visible(False) ax.spines.bottom.set_visible(False) ax.spines.left.set_visible(False) ax.spines.left.set_position(("outward", 10)) ax.spines.bottom.set_position(("outward", 10)) - + ax.grid(axis="y") - + for frm in ["png", "pdf"]: archivo = f"servicios_despachados_id_linea_{line_id}_{day}.{frm}" db_path = os.path.join("resultados", frm, archivo) f.savefig(db_path, dpi=300) plt.close() except: - print('ERROR') + print("ERROR") + def plot_basic_kpi_wrapper(): sns.set_style("whitegrid") + configs = leer_configs_generales() conn_data = iniciar_conexion_db(tipo="data") + lineas_principales = configs["imprimir_lineas_principales"] + # get top trx id_lines q = """ - select * - from basic_kpi_by_line_hr - where dia = 'weekday'; - """ + select * + from basic_kpi_by_line_hr + where dia = 'weekday' + """ + + if lineas_principales != "All": + q += f"limit {lineas_principales}" + + q += ";" + kpi_data = pd.read_sql(q, conn_data) if len(kpi_data) > 0: @@ -2738,9 +2749,8 @@ def plot_basic_kpi(kpi_by_line_hr, standarize_supply_demand=False, *args, **kwar ax.set_xlabel("Hora") ax.set_ylabel(ylabel_str) - f.suptitle( - f"Indicadores de oferta y demanda estadarizados") - + f.suptitle(f"Indicadores de oferta y demanda estadarizados") + ax.set_title( f"{id_linea_str} id linea: {line_id} - Dia: {day_str}", fontdict={"fontsize": 11}, @@ -2774,6 +2784,9 @@ def plot_basic_kpi(kpi_by_line_hr, standarize_supply_demand=False, *args, **kwar # add to dash kpi_stats_line_plot["nombre_linea"] = id_linea_str kpi_stats_line_plot["dia"] = day + kpi_stats_line_plot["yr_mo"] = kpi_stats_line_plot.yr_mo.dropna().unique()[0] + kpi_stats_line_plot = kpi_stats_line_plot.fillna(0) + kpi_stats_line_plot = kpi_stats_line_plot.reindex( columns=[ "dia", @@ -2898,9 +2911,11 @@ def indicadores_dash(): indicadores["tipo_dia"] = "Hábil" indicadores.loc[indicadores.dow >= 5, "tipo_dia"] = "Fin de semana" - indicadores = indicadores.groupby( - ["desc_dia", "tipo_dia", "detalle"], as_index=False - ).agg({"indicador": "mean", "porcentaje": "mean"}).round(2) + indicadores = ( + indicadores.groupby(["desc_dia", "tipo_dia", "detalle"], as_index=False) + .agg({"indicador": "mean", "porcentaje": "mean"}) + .round(2) + ) indicadores.loc[ indicadores.detalle == "Cantidad de etapas con destinos validados", "detalle" @@ -3022,9 +3037,6 @@ def indicadores_dash(): conn_dash.close() - - - def extract_hex_colors_from_cmap(cmap, n=5): # Choose a colormap cmap = plt.get_cmap(cmap) @@ -3085,6 +3097,8 @@ def viz_travel_times_poly(polygon): gdf = gdf.merge(travel_time_choro, on="h3_o") return gdf + + @duracion def create_visualizations(): """ @@ -3162,7 +3176,6 @@ def create_visualizations(): (etapas.yr == i.yr) & (etapas.mo == i.mo) & (etapas.tipo_dia == i.tipo_dia) ] - # print("Imprimiendo tabla de matrices OD") # # Impirmir tablas con matrices OD # imprimir_matrices_od( @@ -3241,4 +3254,4 @@ def create_visualizations(): plot_dispatched_services_wrapper() # plot basic kpi if exists - plot_basic_kpi_wrapper() \ No newline at end of file + plot_basic_kpi_wrapper() From 6449eb991aeda49c3acc36ce94a80e5c76d27866 Mon Sep 17 00:00:00 2001 From: alephcero Date: Fri, 22 Nov 2024 14:56:57 -0300 Subject: [PATCH 16/18] Fix bug in basic kpi plot with amount of lines --- urbantrips/viz/viz.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/urbantrips/viz/viz.py b/urbantrips/viz/viz.py index c46fb52..823dade 100755 --- a/urbantrips/viz/viz.py +++ b/urbantrips/viz/viz.py @@ -2625,13 +2625,14 @@ def plot_basic_kpi_wrapper(): q = """ select * from basic_kpi_by_line_hr - where dia = 'weekday' + where dia = 'weekday'; """ - if lineas_principales != "All": - q += f"limit {lineas_principales}" + kpi_data = pd.read_sql(q, conn_data) - q += ";" + if lineas_principales != "All": + top_lines = list(kpi_data.id_linea.value_counts().index[:lineas_principales]) + kpi_data = kpi_data.loc[kpi_data.id_linea.isin(top_lines)] kpi_data = pd.read_sql(q, conn_data) From 6f11c559c17b1676c309f2352d3003c743dbf24b Mon Sep 17 00:00:00 2001 From: alephcero Date: Tue, 26 Nov 2024 17:36:26 -0300 Subject: [PATCH 17/18] Add id_ramal to services_stats table --- urbantrips/datamodel/services.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/urbantrips/datamodel/services.py b/urbantrips/datamodel/services.py index 363464d..07bfafc 100644 --- a/urbantrips/datamodel/services.py +++ b/urbantrips/datamodel/services.py @@ -573,6 +573,8 @@ def compute_new_services_stats(line_day_services): DataFrame with stats for each line and day """ id_linea = line_day_services.id_linea.unique() + id_ramal = line_day_services.id_ramal.unique() + dia = line_day_services.dia.unique() n_original_services = line_day_services.drop_duplicates( @@ -613,6 +615,7 @@ def compute_new_services_stats(line_day_services): day_line_stats = pd.DataFrame( { "id_linea": id_linea, + "id_ramal": id_ramal, "dia": dia, "cant_servicios_originales": n_original_services, "cant_servicios_nuevos": n_new_services, From 234e649bd16c5204911bd7a6c5a2347c01604b6b Mon Sep 17 00:00:00 2001 From: alephcero Date: Wed, 27 Nov 2024 14:47:02 -0300 Subject: [PATCH 18/18] Change version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5909754..66f7593 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name='urbantrips', - version='0.4.0', + version='0.3.0', author="Felipe Gonzalez & Sebastian Anapolsky", author_email="", description="A library to process public transit smart card data.",