diff --git a/Advance analytics course/Appendix-1_2.qmd b/Advance analytics course/Appendix-1_2.qmd new file mode 100644 index 0000000..523612e --- /dev/null +++ b/Advance analytics course/Appendix-1_2.qmd @@ -0,0 +1,2883 @@ +# Appendix 1 {.appendix, .unnumbered} + +12/05/2025 + +### Andres Cervantes \[76\] + +#### Maestría en Matemáticas Aplicadas y Ciencias de la Computación + +#### Mayo 2025 + +Diagonal Values: + +The entries on the diagonal (e.g., (42.8134) for sum_24HOM, (4.905) for sum_24LP, etc.) represent the conditional variance of each variable. These values ​​indicate how much each variable varies relative to its relationship with all other variables in the model. A higher value implies that the variable has greater conditional variability. + +For the assignment we selected three departments: Antioquia \[05\], Valle del Cauca \[76\] and Atlántico \[08\]; and ran the statistic analysis for each individually. From the data summary, for most crime variables, from the first to the third quantile values are 0, whereas the maximum value usually is a bigger number, which allows us to inquire that crime is focused in some polygons. + +We decided to focus on the problem of personal injury. The box plot and quantile analysis show that, like other crime data, homicides in Atlántico are concentrated in a few industrial areas, and 10% of these industrial areas accounted for all homicides in 2024. + +```{r} +#| include: false +source('setup.R') + +# Load the dataset +delitos_data <- st_read("data/spatial/crime_spatial_course.gpkg") +delitos_data <- delitos_data[delitos_data$dpto_ccdgo == '76', ] +``` + +```{r} +#PorAndrés Cervantes +#------------------------------------------------ +# delitos_data$sum_24HP es un vector. +# Tamaño del vector: +#---largo <- length(delitos_data$sum_24HP) +#---cat("Cantidad de columnas:", largo, "\n") +#------------------------------------------------ +#---media <- mean(delitos_data$sum_24HP, na.rm = TRUE) # na.rm = TRUE para ignorar valores NA +#---print(media) +#------------------------------------------------ +#Descargar Dataset en Excel +#---install.packages("openxlsx") +#---library(openxlsx) +# Suponiendo que 'delitos_data$sum_24HP' es un vector o parte de un data frame +#---write.xlsx(data.frame(sum_24HP = delitos_data$sum_24HP), "delitos_data_sum_24HP.xlsx") +#------------------------------------------------ +#Ruta de trabajo actual +###-getwd() +#------------------------------------------------ +``` + +```{r} +#| echo: true +#| message: false +#| warning: false +# working directory +#setwd(dirname(rstudioapi::getSourceEditorContext()$path)) + +# packages +list_packages = c('readxl', 'dplyr', 'moments', 'tidyr', 'tibble', 'gt', 'ggplot2', 'fmsb', 'car', 'reshape2', 'knitr', 'gridExtra', 'ggExtra', 'sf', 'leaflet', 'igraph', 'ggraph', 'tidygraph', 'spdep') +new.packages = list_packages[!(list_packages %in% installed.packages()[,"Package"])] +if (length(new.packages)) { + install.packages(new.packages) +} +for (package in list_packages){ + library(package, character.only = T) +} + +# Load the dataset +delitos_data <- st_read("data/spatial/crime_spatial_course.gpkg") +delitos_data <- delitos_data[delitos_data$dpto_ccdgo == c("76" ), ] # Valle del Cauca + +dim(delitos_data) +summary(delitos_data) + +# interactive polygons location +leaflet(delitos_data) %>% + addTiles() %>% # Base map + addPolygons(color = "steelblue", weight = 1, fillOpacity = 0.5) + +# quantile +quantile(delitos_data$sum_24HP, probs = seq(0, 1, 0.1), na.rm = TRUE) + +#boxplot +boxplot(delitos_data$sum_24HP, main = "Boxplot of Homicides in Valle del Cauca", horizontal = TRUE) +``` + +```{r} +> # quantile +> quantile(delitos_data$sum_24HP, probs = seq(0, 1, 0.1), na.rm = TRUE) + 0% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100% + 0 0 0 0 0 0 0 0 0 1 80 +``` + +Here we have the data divided into 10 quantiles (1 decile). That is, all observations have been taken and divided into 10 equal parts. Remember that a data set can be divided into quantiles. Quantile is a generic term for grouping: quartiles, quintiles, deciles, percentiles. It is clear that up to the 80th percentile, the result of each observation is 0. That is, no crimes were recorded in 80% of the total set of observations. Then, at the 90th percentile, it can be determined that there was at least one recorded crime. Finally, in the last decile, or rather, in the last 10% of the data, the maximum number of recorded crimes was 80. + +## Skewness + +```{r} +#| echo: true +#| message: false +#| warning: false + +# step by step +n <- length(delitos_data$sum_24HP) +mean_x <- mean(delitos_data$sum_24HP) +dato = mean_x <- mean(delitos_data$sum_24HP) +sd_x <- sd(delitos_data$sum_24HP) # Uses (n-1) denominator +z_scores <- (delitos_data$sum_24HP - mean_x) / sd_x +z_cubed <- z_scores^3 +sum_cubed <- sum(z_cubed) +skewness <- (n / ((n - 1) * (n - 2))) * sum_cubed +paste0('sum_24HP: ', skewness) + +# function +skewness(delitos_data$sum_24HP, na.rm = TRUE) + +# skewness +delitos_data %>% + st_drop_geometry() %>% + select(dpto_ccdgo, contains('24')) %>% + group_by(dpto_ccdgo) %>% + summarise(across(everything(), ~ skewness(.x, na.rm = TRUE))) %>% + pivot_longer( + cols = -dpto_ccdgo, + names_to = "Crime Type", + values_to = "Skewness" + ) %>% + mutate(Skewness = round(Skewness, 2)) %>% + pivot_wider( + names_from = dpto_ccdgo, + values_from = Skewness + ) %>% + gt() + +``` + +Robberies in **Valle del Cauca** data have a skewness of *23.45458*.\ +This is an extremely high value, implying that the data distribution is strongly skewed to the right. This high level of skewness indicates that there are many outliers (extreme values) at the top of the distribution. The shape of the distribution under these conditions would not be symmetrical. Instead, it would be "right-skewed," meaning that most of the data are clustered on the left side of the graph, with a long tail extending to the right. + +```{r} +library(ggplot2) +library(moments) +library(dplyr) + +# Calcular la asimetría +skewness_value <- skewness(delitos_data$sum_24HP, na.rm = TRUE) +print(paste("Asimetría:", skewness_value)) + +# Crear el gráfico de frecuencia +ggplot(delitos_data, aes(x = sum_24HP)) + + geom_bar(stat = "count", fill = "lightblue", color = "black", alpha = 0.7) + + labs(title = "Frecuencia de Delitos (sum_24HP)", + x = "Número de delitos (sum_24HP)", + y = "Frecuencia") + + theme_minimal() + + scale_x_continuous(breaks = seq(0, 80, by = 5)) # Muestra valores en el eje X desde 0 hasta 80, en incrementos de 5 +``` + +------------------------------------------------------------------------ + +> paste0('sum_24HP: ', skewness) \[1\] "sum_24HP: 108.920265681" \> \> \# function \> skewness(delitos_data\$sum_24HP, na.rm = TRUE) \[1\] 108.917 + +```{r} +# Calcular la asimetría +skewness_value <- skewness(delitos_data$sum_24HP, na.rm = TRUE) +print(paste("Asimetría:", skewness_value)) + +# Crear el gráfico +ggplot(delitos_data, aes(x = sum_24HP)) + + geom_histogram(aes(y = ..density..), bins = 30, fill = "lightblue", color = "black", alpha = 0.7) + + geom_density(color = "red", linewidth = 1) + # Cambiado a linewidth + geom_vline(aes(xintercept = mean(sum_24HP, na.rm = TRUE)), color = "green", linetype = "dashed", linewidth = 1) + # Cambiado a linewidth + geom_vline(aes(xintercept = median(sum_24HP, na.rm = TRUE)), color = "blue", linetype = "dashed", linewidth = 1) + # Cambiado a linewidth + labs(title = "Histograma de sum_24HP con Densidad", + x = "Número de delitos (sum_24HP)", + y = "Densidad") + + theme_minimal() + +``` + +## Kurtosis + +```{r} +#| echo: true +#| message: false +#| warning: false + +# step by step +z_fourth <- z_scores^4 +sum_fourth <- sum(z_fourth) +kurtosis <- ((n * (n + 1)) / ((n - 1) * (n - 2) * (n - 3))) * sum_fourth - (3 * (n - 1)^2) / ((n - 2) * (n - 3)) +print(kurtosis) + +# function +kurtosis(delitos_data$sum_24HP, na.rm = TRUE) + +# Kurtosis +delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + summarise(across(everything(), ~ kurtosis(.x, na.rm = TRUE))) %>% + t() %>% + as.data.frame() %>% + tibble::rownames_to_column(var = "Crime Type") %>% + mutate(V1 = round(V1, 2)) %>% + rename(Kurtosis = V1) %>% + gt() + +``` + +For the case of **Valle del Cauca**: we have a kurtosis of 1056, indicates that the distribution not only has heavy tails, but also has a very sharp peak. This behavior is common in distributions where there are significant outliers. This will be a leptokurtic distribution. + +## Coefficient of Variation + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Compute statistics +mean_val <- mean(delitos_data$sum_24HP, na.rm = TRUE) +print(mean_val) +std_dev <- sd(delitos_data$sum_24HP, na.rm = TRUE) +print(std_dev) + +# Compute the range for first standard deviation +lower_bound <- mean_val - std_dev +upper_bound <- mean_val + std_dev +paste0('lower_bound: ', round(lower_bound, 2), ' - upper_bound: ', round(upper_bound, 2)) + +# Count the number of points within 1 standard deviation +within_1sd <- sum(delitos_data$sum_24HP >= lower_bound & delitos_data$sum_24HP <= upper_bound, na.rm = TRUE) +percentage_1sd <- (within_1sd / nrow(delitos_data)) * 100 +paste0('within_1sd: ', round(within_1sd, 2), ' - percentage_1sd: ', round(percentage_1sd, 2)) + +# Create histogram +ggplot(delitos_data, aes(x = sum_24HP)) + + geom_histogram(binwidth = 5, fill = "blue", alpha = 0.5, color = "black") + + + # Add vertical lines for mean, median, and 1st SD + geom_vline(aes(xintercept = mean_val), color = "red", linetype = "dashed", size = 1.2) + + #geom_vline(aes(xintercept = median_val), color = "green", linetype = "dashed", size = 1.2) + + geom_vline(aes(xintercept = lower_bound), color = "purple", linetype = "dashed", size = 1) + + geom_vline(aes(xintercept = upper_bound), color = "purple", linetype = "dashed", size = 1) + + + # Labels and title + labs(title = "Histogram of AUTOMOTORES with Mean, and 1SD Range", + x = "AUTOMOTORES Values", y = "Frequency") + + + # Add annotation for 1SD range + annotate("text", x = mean_val, y = 10, + label = paste(round(percentage_1sd, 1), "1SD", sep = ""), + color = "black", size = 5, hjust = 0.5, vjust = -1) + + + theme_minimal() + +# cv +paste0('cv: ', round(std_dev / mean_val * 100), 2) + +# variation +delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + summarise( + across( + everything(), + ~ ifelse(mean(.x, na.rm = TRUE) != 0, + sd(.x, na.rm = TRUE) / mean(.x, na.rm = TRUE), + NA), # Compute CV safely + .names = "{col}" + ) + ) %>% + t() %>% + as.data.frame() %>% + tibble::rownames_to_column(var = "Crime Type") %>% + mutate(V1 = round(V1, 2)) %>% + rename(Variation = V1) %>% + gt() +``` + +For the case of **Valle del Cauca**: this value (4392) indicates that the standard deviation is more than 43 times larger than the mean (0.2616484). Such a high CV suggests that the values ​​in your data set are extremely dispersed relative to the mean. A CV of 4.39 in sum_24HP (or 439%) also indicates that the variability of this data is high relative to its mean. However, this number, although significant, is considerably lower compared to the overall coefficient of variation. We are definitely facing a high dispersion in the data set. + +## Median Absolute Deviation MAD and MAD/median + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Compute statistics +median_val <- median(delitos_data$sum_24HP, na.rm = TRUE) +print(median_val) +mad_val <- mad(delitos_data$sum_24HP, na.rm = TRUE) # Compute MAD +print(mad_val) + +# Compute the range for first standard deviation +lower_bound <- median_val - mad_val +upper_bound <- median_val + mad_val +paste0('lower_bound: ', round(lower_bound, 2), ' - upper_bound: ', round(upper_bound, 2)) + +# Count the number of points within 1 MAD +within_1mad <- sum(delitos_data$sum_24HP >= lower_bound & delitos_data$sum_24HP <= upper_bound, na.rm = TRUE) +percentage_1mad <- (within_1mad / nrow(delitos_data)) * 100 +paste0('within_1mad: ', round(within_1mad, 2), ' - percentage_1mad: ', round(percentage_1mad, 2)) + +# Create histogram +ggplot(delitos_data, aes(x = sum_24HP)) + + geom_histogram(binwidth = 5, fill = "blue", alpha = 0.5, color = "black") + + + # Add vertical lines for mean, median, and 1st SD + #geom_vline(aes(xintercept = mean_val), color = "red", linetype = "dashed", size = 1.2) + + geom_vline(aes(xintercept = median_val), color = "green", linetype = "dashed", size = 1.2) + + geom_vline(aes(xintercept = lower_bound), color = "purple", linetype = "dashed", size = 1) + + geom_vline(aes(xintercept = upper_bound), color = "purple", linetype = "dashed", size = 1) + + + # Labels and title + labs(title = "Histogram of AUTOMOTORES with Median, and 1MAD Range", + x = "AUTOMOTORES Values", y = "Frequency") + + + # Add annotation for 1SD range + annotate("text", x = median_val, y = 10, + label = paste(within_1mad, "points (", round(percentage_1mad, 1), "1MAD", sep = ""), + color = "black", size = 5, hjust = 0.5, vjust = -1) + + + theme_minimal() + +# MAD/Median +paste0('MAD/Median: ', round(mad_val / median_val * 100), 2) +``` + +**Valle del Cauca:** The formula to calculate the MAD of the data is as follows. + +Here we have a dataset of 45,328 values. They're distributed in 2 groups: + +Zero values = 38484. + +Non-zero values = 6844. + +1st: x = calculate the median for all dataset. R/ 0. + +2nd: y(array) = calculate absolute deviations. \[median - each dataset value\]. + +3th: z = calculate the median of the absolute deviations. \[median (all absolute deviations obtained)\]. + +So, MAD = \[z\] = 0 and MAD/median = \[(z / x)\*100\] then 0 as well. If you ask why multiply by 100, it is because we want to obtain a value as a percentage. + +A MAD of 0 indicates that there is no dispersion in the data around the median. In other words, all the values ​​in your data set are equal to the median (in this case, 0). There is no variance in the data, meaning there are no absolute deviations from the median. + +Equality to zero in both cases (MAD and median) indicates that there is a lack of variability in the data set and may be an indicator that all elements are homogeneous. + +## Covariance Matrix + +```{r} +#| echo: true +#| message: false +#| warning: false +delitos_data %>% + st_drop_geometry() %>% + select(contains("24")) %>% + cov() %>% + round(2) %>% + knitr::kable(digits = 2, caption = "Covariance Matrix") +``` + +**Valle del Cauca**: this matrix is ​​constructed using data from the year 2024. Of all the crimes, the central variable is "sum_24HP", which, as we saw before, in this data set has a variance of 1.32 and a mean of 0.2616. + +```{r} +Covariance Matrix for sum_24HP +sum_24HP Value +sum_24HOM 0 +sum_24LP 0.13 +sum_24VI 0.18 +sum_24DS 0.05 +sum_24HP 1.32 +sum_24HR 0.02 +sum_24HC 0.18 +sum_24HA 0.03 +sum_24HM 0.06 +sum_24SS 0 +sum_24SE 0 +sum_24EX 0.02 +sum_24TR 0 + +``` + +**Prompt :** let's talk about Covariance Matrix. + +Is this a multivariate calculation? + +Yes, it is used to describe the joint variability of a set of variables. Specifically, it measures how two variables change relative to each other. + +It contains the covariances between all combinations of a set of variables. Each element (C\_{ij}) of the matrix represents the covariance between variable (i) and variable (j). + +**Interpreting the Elements:** + +If (C\_{ij}) is positive, it indicates that when one of the variables increases, the other tends to increase as well. + +If (C\_{ij}) is negative, it indicates that when one of the variables increases, the other tends to decrease. + +If (C\_{ij}) is zero, it suggests that there is no linear relationship between the two variables. + +For us in this case is important to evaluate "sum_24HP" against others. Here we can see how strong is its covariance and how two variables change relative to each other. + +------------------------------------------------------------------------ + +## Covariance Matrix of Log-Transformed Data + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Define the dataset +x <- delitos_data$sum_24HP + +# 1. Compute Raw Arithmetic Mean +arithmetic_mean <- mean(x) +print(arithmetic_mean) + +# 2. Compute Log-Mean (Multiplicative Center) +log_x <- log(x + 1) # Take logarithm of values +head(log_x) +log_mean <- mean(log_x) # Compute mean in log-space +print(log_mean) +log_mean_exp <- exp(log_mean) # Convert back to original scale +print(log_mean_exp) + +# Create the comparison table +comparison_table <- data.frame( + Index = seq_along(x), # Just an index for x-axis + Original_Value = x, + Log_Value = log_x +) + +p1 <- ggplot(comparison_table, aes(x = Original_Value, y = Log_Value)) + + geom_line(color = "gray70", size = 0.7, alpha = 0.5) + # Thin line connecting points + geom_point(alpha = 0.7, color = "blue") + # Scatter points with transparency + labs( + title = "Scatter Plot: Original vs. Log-Transformed Values", + x = "Original Values", + y = "Log-Transformed Values" + ) + + theme_minimal() + +# Add marginal histogram +ggMarginal( + p1, + type = "histogram", # Add marginal histograms + bins = 40, # Number of bins for the histogram + margins = "both", # Add histogram to both x and y margins + size = 5, # Size of the histograms relative to the scatter plot + fill = "gray", # Fill color for the histogram + color = "black", # Outline color for the histogram + alpha = 0.5 # Transparency +) +``` + +```{r} +#| include: false +# Store values for inline Quarto text +log_values <- paste(round(head(comparison_table$Log_Value), 2), collapse = ", ") +original_values <- paste(head(comparison_table$Original_Value), collapse = ", ") +``` + +**Valle del Cauca:** + +**Prompt** #1: + +What is Covariance Matrix of Log-Transformed Data and what is its relationship with Covariance Matrix? + +#### **Log-Transformación** + +- It's a technique that converts data by applying the logarithmic function. This can help stabilize variance and make the data follow a distribution closer to normal, especially if the original data are highly skewed or have a wide range of values. + +#### **Covariance Matrix of Log-Transformed Data** + +- **Calculation**: to obtain the covariance matrix of log-transformed data, you first apply the logarithmic transformation to your data and then calculate the covariance matrix of the transformed data. This is done as follows: + + 1. **Transform Data**: applies the logarithmic function (can be log base 10 or natural log, depending on the context) to each element of the data set. + + 2. **Calculate the Covariance Matrix**: use the covariance formula mentioned above to calculate the matrix, but now using the log-transformed values. + +#### **Relatioship between Covariance Matrix and Covariance Matrix of Log-Transformed Data** + +- The covariance matrix of the original data and that of the log-transformed data can differ significantly, especially if the original data are skewed. Log-transformation can make these relationships more evident or interpretable, especially in cases where the relationship between variables is nonlinear. + +- The main difference is that the covariance matrix of log-transformed data reflects the relationships and variability of the data in a logarithmic space, which may be more suitable for statistical models that assume normality. + +**Prompt** #2: + +Again, we're talking about the relationship between the covariance matrix and the covariance matrix of log-transformed data. It's not clear to me why applying a logarithm is convenient, what does it change? How does it benefit me? Can you create an example with fictitious data? Also, what is heteroskedasticity? + +#### Example with Fictitious Data + +```{r} +# Crear datos de ejemplo +set.seed(1) +años <- 1:10 +# Ejemplo de ganancias (en miles de dólares) +ganancias <- c(1, 2, 1.5, 3, 50, 100, 200, 400, 800, 2000) +# Generar una segunda variable, ingresos +ingresos <- c(5, 10, 15, 20, 60, 110, 220, 400, 900, 2500) # otra variable + +# Crear un marco de datos +datos <- data.frame(años, ganancias, ingresos) + +# Visualizar los datos originales +print(datos) + +# Calcular la matriz de covarianza original +cov_original <- cov(datos[, c("ganancias", "ingresos")]) +print("Covarianza original:") +print(cov_original) + +# Aplicar logaritmo a las ganancias y a los ingresos +datos$log_ganancias <- log(datos$ganancias) +datos$log_ingresos <- log(datos$ingresos) + +# Visualizar los datos transformados +print(datos) + +# Calcular la matriz de covarianza log-transformada +cov_log <- cov(datos[, c("log_ganancias", "log_ingresos")]) +print("Covarianza log-transformada:") +print(cov_log) +``` + +We have a data set representing a company's earnings in thousands of dollars over several years: + +Analysis: + +Original Data: The earnings have a wide range (from 1 to 2000), which could be causing the variance to be inconsistent (heteroskedasticity). The covariance could make interpretation difficult due to these biases. + +Log-transformed Data: By applying the logarithm, we are compressing these values ​​to a more manageable range. The data will now be less skewed, and the variance will become more constant. + +```{r} + +años------ganancias------ingresos +1-------------1--------------5 +2-------------2--------------10 +3-------------1.5------------15 +4-------------3--------------20 +5-------------50-------------60 +6-------------100------------110 +7-------------200------------220 +8-------------400------------400 +9-------------800------------900 +10-----------2000------------2500 + +[1] "Covarianza original:" + ganancias ingresos +ganancias 398548.4 492191.9 +ingresos 492191.9 609676.7 + +[1] "Covarianza log-transformada:" + log_ganancias log_ingresos +log_ganancias 8.121839 5.762011 +log_ingresos 5.762011 4.244732 +``` + +```{r} +años ganancias ingresos log_ganancias log_ingresos +1 1 5 0 1.609438 +2 2 10 0.6931472 2.302585 +3 1.5 15 0.4054651 2.70805 +4 3 20 1.0986123 2.995732 +5 50 60 3.912023 4.094345 +6 100 110 4.6051702 4.70048 +7 200 220 5.2983174 5.393628 +8 400 400 5.9914645 5.991465 +9 800 900 6.6846117 6.802395 +10 2000 2500 7.6009025 7.824046 +``` + +It is important to clarify that the natural logarithm has been used to make these transformations. + +#### Heteroscedasticity + +Refers to a condition in which the error variance of a regression model is not constant across all levels of the independent variable. + +### Benefits of Logarithmic Transformation and Heteroskedasticity Resolution + +By applying a logarithm: + +**We reduce the impact of extreme values:** Extremely high data values ​​have less influence. + +**We stabilize the variance:** Residuals become more consistent throughout the prediction. + +**We facilitate interpretation:** Relationships are often expressed in percentage terms, which can be more intuitive. + +The logarithmic transformation is a powerful tool in statistical and data analysis, especially when working with skewed data or in situations where variability is not constant (heteroskedasticity). + +#### Returning to results for Valle del Cauca + +The arithmetic mean of the data set is: **0.261648** + +**First 6 logarithmic transformations (with +1 to avoid log(0)): \[1\] 0 0 0 0 0 0** + +This may indicate that many of the data in sum_24HP are zeros, which could be a reflection of the nature of your data set (for example, if sum_24HP corresponds to counts of events that do not occur regularly). + +**The log mean (multiplicative center) is: 0.134861** + +The calculated log mean is approximately (0.134861). This is a value in log space and suggests that, although most of the values ​​are zero, there are some higher values ​​influencing this mean. + +**The log mean converted back to the original scale is: 1.144378** + +The combined value (multiplicative center) converted back to the original scale is approximately (1.144378). This means that the typical (average) value of the data, when considering multiplicative variability, is about (1.144378). + +### General Conclusions + +Distribution and Validity of Results: The presence of many zeros in the data suggests that there may be a high concentration of data at the lower end (zero or near zero), which is correct when we look at the dataset. This can influence the interpretation of the arithmetic mean. The log mean may be more stable in such cases, as it handles extreme or skewed values ​​better. + +Use of the Log Transformation: The log transformation was appropriate in this case, as it avoided the problem of errors when calculating the log of zero and provided a measure that takes into account the variation in the data. + +```{r} +# Covariance Matrix (Log-Transformed) for sum_24HP +# Variable Value +# sum_24HOM 0 +# sum_24LP 0.02 +# sum_24VI 0.02 +# sum_24DS 0 +# sum_24HP 0.12 +# sum_24HR 0 +# sum_24HC 0.01 +# sum_24HA 0.01 +# sum_24HM 0.01 +# sum_24SS 0 +# sum_24SE 0 +# sum_24EX 0 +# sum_24TR 0 + +``` + +------------------------------------------------------------------------ + +```{r} +#| echo: true +#| message: false +#| warning: false + +#log transformed data +# Compute statistics for raw and log-transformed data +mean_raw <- mean(delitos_data$sum_24HP, na.rm = TRUE) +sd_raw <- sd(delitos_data$sum_24HP, na.rm = TRUE) +mad_raw <- mad(delitos_data$sum_24HP, na.rm = TRUE) + +delitos_data_log <- delitos_data %>% + #mutate(LOG_AUTOMOTORES = log(AUTOMOTORES + 1)) + mutate(LOG_AUTOMOTORES = log1p(sum_24HP)) # log1p(x) = log(1 + x) to handle zeros + +mean_log <- mean(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE) +sd_log <- sd(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE) +mad_log <- mad(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE) + +# Compute statistics for raw and log-transformed data +data.frame( + Measure = c("Mean", "Median", "Standard Deviation", "MAD"), + Raw_Data = c(mean(delitos_data$sum_24HP, na.rm = TRUE), + median(delitos_data$sum_24HP, na.rm = TRUE), + sd(delitos_data$sum_24HP, na.rm = TRUE), + mad(delitos_data$sum_24HP, na.rm = TRUE)), + Log_Transformed_Data = c(mean(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE), + median(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE), + sd(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE), + mad(delitos_data_log$LOG_AUTOMOTORES, na.rm = TRUE))) + +# Transform the data to a long format for ggplot +delitos_long <- delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + pivot_longer(cols = everything(), names_to = "Crime Type", values_to = "Value") + +# Create faceted histograms +ggplot(delitos_long, aes(x = Value)) + + geom_histogram(bins = 30, fill = "skyblue", color = "black", alpha = 0.7) + + facet_wrap(~ `Crime Type`, scales = "free") + # Facet by crime type + theme_minimal() + + labs( + title = "Distributions of Crime Data", + x = "Value", + y = "Frequency" + ) + + theme( + axis.text.x = element_text(size = 5) # Reduce the font size of X-axis text + ) + +# Transform the data to long format and apply log transformation +delitos_long_log <- delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + mutate(across(everything(), ~ log(.x), .names = "{col}")) %>% # Log transform (log(x + 1) to avoid log(0)) + pivot_longer(cols = everything(), names_to = "Crime Type", values_to = "Log Value") + +# Create faceted histograms for log-transformed values +ggplot(delitos_long_log, aes(x = `Log Value`)) + + geom_histogram(bins = 30, fill = "skyblue", color = "black", alpha = 0.7) + + facet_wrap(~ `Crime Type`, scales = "free") + # Facet by crime type + theme_minimal() + + labs( + title = "Log-Transformed Distributions of Crime Data", + x = "Log Value", + y = "Frequency" + ) + + theme( + axis.text.x = element_text(size = 3) # Reduce the font size of X-axis text + ) + +# Covariance Matrix (Log-Transformed) +delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + mutate(across(everything(), ~ log(.x+1))) %>% # Log-transform (+1 to handle zeros) + cov() %>% + round(2) %>% + kable(digits = 2, caption = "Covariance Matrix (Log-Transformed)") +``` + +## Redundant Variables + +Redundant variables provide little additional information due to high correlation with others, leading to multicollinearity in models. + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Define the matrix A +matrix_a <- matrix(c(4, 2, + 2, 3), nrow = 2, byrow = TRUE) +print("Matrix A:") +print(matrix_a) + +# Compute the eigen decomposition using R's built-in eigen() function +eigen_builtin <- eigen(matrix_a) +print("Built-in eigen() values:") +print(eigen_builtin$values) +print("Built-in eigen() vectors:") +print(eigen_builtin$vectors) + +# Multiply A by the matrix of eigenvectors: +# Each column of eigen_builtin$vectors is an eigenvector. +res <- matrix_a %*% eigen_builtin$vectors +print("A * eigenvectors:") +print(res) + +# Multiply the eigenvector matrix by the diagonal matrix of eigenvalues. +res2 <- eigen_builtin$vectors %*% diag(eigen_builtin$values) +print("eigenvectors * eigenvalues:") +print(res2) + +# Check if these two matrices are equal (they should be equal within numerical precision) +are_equal <- all.equal(res, res2) +print("Are A * eigenvectors and eigenvectors * eigenvalues equal?") +print(are_equal) +``` + +This example has permitted to understand a variety of concepts related with eigenvalues and eigenvectors, how to calculate it and its importance within redundant variables discovering process. + +Being a 2x2 matrix, it will have two eigenvalues. Each eigenvalue has a corresponding eigenvector associated with it. So since the matrix will have two eigenvalues, it will also have two eigenvectors, with 2 values ​​for each vector. + +Our table A has next values: + +\[X\] \[Y\] + +\[1\] 4 2 + +\[2\] 2 3 + +The layout of a matrix is ​​defined as the sum of the elements on the main diagonal. In this case, 4 + 3 = 7 + +We're gonna define temporarily one value called Lambda "λ" and this will be our first eigenvalue. + +For instance our **λ** will be = 1 + +Now we have to make a new matrix called: Matrix ( A - \lambda I ) + +This new matrix gonna has these values: + +\[X\] \[Y\] + +\[1\] Matrix A \[X1\] - λ Matrix A \[X2\] + +\[2\] Matrix A \[Y1\] Matrix A \[Y2\] - λ + +Now calculate the determinant of the matrix ( A - \lambda \* I ) + +Our matrix ( A - \lambda \* I ) + +\[X\] \[Y\] + +\[1\] 3 2 + +\[2\] 1 2 + +At this point the determinant of the matrix ( A - \lambda \* I ) has a value of -2. + +determinant formula of the matrix ( A - \lambda \* I ) is: + +\[matrix ( A - \lambda \* I )\]\[X1\] - λ \* + +(\[matrix ( A - \lambda \* I )\]\[Y2\] - λ) - + +\[matrix ( A - \lambda \* I )\]\[Y1\] \* \[matrix ( A - \lambda \* I )\]\[X2\] + +In other words: (3-1)\*(2-1)-(2\*2) = -2 + +But we have an issue! We need to obtain a Lambda value such that this determinant is 0. + +Use solver to find the lambda value that makes the determinant 0. + +**λ** **= 0.719223608649294** + +This λ value is our first eigenvalue. + +Before to discover its eigenvector we're gonna know how to get the correct matrix: (A - \lambda\*I), applying **λ** **= 0.719223608649294.** + +(I): This is the identity matrix of the same size as (A matrix). + +Our matrix ( I ) + +\[X\] \[Y\] + +\[1\] 1 0 + +\[2\] 0 1 + +The identity matrix (I) is a square matrix in which all elements on the main diagonal are 1 and all other elements are 0. For a (2 \times 2) matrix, it is: \[ I = \] This matrix is ​​important because, when multiplied by any number, the result is simply scaling the identity matrix, keeping the same shape. + +When we multiply the identity matrix (I) by a scalar (in this case, the eigenvalue (\lambda)), each element of the identity matrix is ​​multiplied by (\lambda). This results in: \[ \lambda I = \lambda \cdot \] + +Our matrix (lambda\*I) + +\[X\] \[Y\] + +\[1\] 0.719223608649294 0 + +\[2\] 0 0.719223608649294 + +What Does It Mean in the Context of (A - \lambda I)? + +Matrix Transformation: The term (\lambda I) affects the matrix (A) by reducing the values ​​on the diagonal, where (\lambda) is subtracted from each of the elements on the main diagonal of (A). + +Purpose of the Operation: The equation (A - \lambda I) is key to finding the eigenvalues ​​of the matrix (A). This calculation is based on the concept that, to find the eigenvectors associated with the eigenvalues, you need to solve the equation: + +\[(A - \\lambda I) \\cdot X = 0\] + +By subtracting (\lambda\* I), you adjust the matrix (A) so that when you multiply it by a vector (X) (finding the eigenvector), the result is the zero vector. This indicates that (X) will not be altered, maintaining its direction under the transformation defined by (A). + +In short, (\lambda\* I) transforms the matrix (A) such that by solving the equation ((A - \lambda\*I) \cdot X = 0), the eigenvectors associated with the eigenvalues ​​of the matrix can be identified. This is a fundamental step in the calculation of these components in linear algebra. + +Next step: Matrix **(A - \\lambda I)** + +\[X\] \[Y\] \[P\] \[Q\] + +\[1\] 4 2 - 0.719223608649294 0 + +\[2\] 2 3 0 0.719223608649294 + +Matrix **(A - \\lambda I)** + +(X1-P1) X2 = (4 - 0.719223608649294) 2 = 3.280776391 2 + +Y1 (Y2-Q2) 2 (3-0.719223608649294) 2 2.280776391 + +As a consequence of having obtained this new matrix **(A - \\lambda I)** : + +\[X\] \[Y\] + +\[1\] 3.280776391 2 + +\[2\] 2 2.280776391 + +Having done these calculations, we have simultaneously found the determinant of the matrix. In this case, the value of the determinant was 0. + +We need to obtain a Lambda value such that this determinant is 0. + +Above we said that we need to obtain a Lambda value such that this determinant is 0 and with λ = 0.719223608649294 we have achieved it. + +**But what is the determinant?** + +The determinant of a matrix is ​​a scalar value that can be calculated from the matrix's elements. + +Outside of the statistical context that I have been developing, for the case of a 2X2 square matrix, the determinant is calculated as follows: + +Our table A has had next values: + +\[X\] \[Y\] + +\[1\] 4 2 = a b + +\[2\] 2 3 c d + +\[\\text{Det}(A) = ad - bc\] =\> (4\*3)-(2\*2) = 12-4 = 8 + +For higher dimensional matrices ((3 \times 3) or more), the calculation of the determinant becomes more complex and a method such as cofactor expansion or Sarrus rule for (3 \times 3) matrices is used. + +The determinant provides important information about some properties of the matrix, such as: + +a\) **Invertibility**: If the determinant of a matrix is ​​zero, the matrix is ​​considered singular and has no inverse. This has important implications in linear algebra and in the solution of systems of linear equations. + +If the determinant is nonzero, the matrix is ​​invertible, and its inverse can be calculated, which is critical for various calculations, including those involving eigenvectors. + +b\) **Scalability**: The determinant changes predictably under matrix operations. + +° If you scale a row of a matrix by a factor (k), the determinant also scales by (k). + +° If you swap two rows, the determinant changes sign. + +° If you add a multiple of one row to another row, the determinant does not change. + +c: **Geometric Interpretation:** + +° In the case of (2 x 2) matrices, the determinant can be interpreted as the area of ​​the parallelogram formed by the vectors in the rows or columns of the matrix. + +° In (3 x 3) matrices, it can be interpreted as the volume of the parallelepiped formed by the vectors. + +Now, the way in which the determinant of the matrix ((A - \lambda\*I)) is calculated follows a similar process to the calculation of the determinant of a (2 \times 2) matrix, but an additional value ((\lambda)) is introduced that complicates the expression. + +When we calculate the determinant of ((A - \lambda\*I)), we have to consider how (\lambda\*I) affects the elements of (A). + +**1. Estructura de (A - \\lambda\*I)**, **known as the characteristic matrix or eigenvalue matrix** + +The identity matrix (I) has (1) on the diagonal and (0) in the other positions, so:The identity matrix (I) has (1) on the diagonal and (0) in the other positions, so: + +\[X\] \[Y\] + +\[1\] 0.719223608649294 0 + +\[2\] 0 0.719223608649294 + +Then the matrix ((A - \lambda I)) becomes: + +\[X\] \[Y\] + +\[1\] 3.28077639 2 = a b + +\[2\] 2 2.28077639 c d + +**2. Cálculo del Determinante**: + +Now, to calculate the determinant of this new matrix, we apply the same determinant rule (2 \times 2): + +(\\text{Det}(A - \\lambda I) = (a - \\lambda)\*(d - \\lambda) - (b \\cdot c)) + +Expanding this, you get a polynomial in terms of (\lambda): + +(\\text{Det}(A - \\lambda I) = ad - a\\lambda - d\\lambda + \\lambda\^2 - bc) + +Which simplifies to: + +(\\text{Det}(A - \\lambda I) = \\lambda\^2 - (a + d)\\lambda + (ad - bc)) + +Then: + +\[X\] \[Y\] + +\[1\] 3.280776391 2 + +\[2\] 2 2.280776391 + +Det(A - \\lambda I) = ((0.719223608649294)\^2) - ((3.280776391 + 2.280776391) \* (0.719223608649294)) + ((3.280776391 \* 2.280776391) - (2\*2)) + +Det(A - \\lambda I) = -0.0000001241, **that's it 0** + +**Summary of the Difference between determinant of (A) and (A-(** **λ\*I))** + +**Characteristic Polynomial:** The determinant of ((A - \lambda I)) is a polynomial in (\lambda), which allows us to *find the eigenvalues* ​​by solving the characteristic equation by equating that polynomial to zero. **Incorporating (**\lambda\*\*):\*\* The presence of (\lambda) in the matrix affects how we calculate the determinant and produces a second-degree polynomial in the case of (2 \times 2) matrices. + +**Relationship between Determinants and Eigenvectors** + +° The characteristic polynomial, obtained by calculating the determinant of ( (A - \lambda I) ), is used to find the eigenvalues ​​of (A). + +The characteristic polynomial of a square matrix is ​​a polynomial obtained by calculating the determinant of the matrix ( (A - \lambda I) ), where: + +\(A\) is the original matrix. + +(\lambda) is a scalar (the eigenvalue we are looking for. + +\(I\) is the identity matrix of the same dimension as (A). + +The determinant is used in the construction of the characteristic polynomial. To find the eigenvalues ​​of a matrix, you need to solve the characteristic polynomial equation: + +{Det}(A - \lambda I) = 0 + +The result of this determinant is a polynomial in terms of (\lambda). The roots of this polynomial (the values ​​of (\lambda)) are the eigenvalues ​​of the matrix (A). + +° By calculating the determinant, you can understand the structure of the matrix and determine properties that are essential for analyzing its eigenvalues ​​and eigenvectors. + +**Integrating concepts** + +By defining the characteristic polynomial equation \[ \text{Det}(A - \lambda I) = 0 \] in terms of a lambda, I am looking for the result to be 0. If I find a lambda, such that the result of the characteristic polynomial equation is 0, then that value 0, is the determinant of the characteristic matrix (A - \lambda\*I) and the value of lambda, becomes the first eigenvalue. + +Now we're gonna **find its iegenvector** through this next formula: + +***\[(A - \\lambda\*I) \\cdot\*X = 0\]*** + +Breakdown of the Equation + +(A): This is the original matrix from which you are calculating the eigenvalues ​​and eigenvectors. (\lambda): This is the eigenvalue. + +(I): This is the identity matrix of the same size as (A). + +(X): This is the eigenvector we are looking for. + +**Steps to Find the Eigenvector** + +Matrix A = (4 22 3) + +First eigenvalue: \[**λ =** 0.719223608649294\] + +**Step 1:** Build the Matrix (A - **λ**I) + +\[X\] \[Y\] + +\[1\] 3.280776391350706 2 + +\[2\] 2 2.280776391350706 + +**Step 2:** The equation you want to solve is: + +\[(A - **λ**I) \* X = 0\] + +This translates to a system of linear equations, where (X) is the eigenvector we are looking for. Let us denote the eigenvector as: + +\[X = (x1 x2)\] + +**Step 3:** Establish the System of Equations + +This leads you to the two equations from the matrix (A - \lambda I): + +For the first row: + +\[3.280776391350706 \* x1 + 2 \* x2 = 0\] =\> (1) + +For the second row: + +\[2 \* x1 + 2.280776391350706 \* x2 = 0\] =\> (2) + +**Step 4:** Solve the System of Equations + +From the first equation (1): + +$$ +[ +2 \cdot x_2 = -3.280776391350706 \cdot x_1 \quad \Rightarrow \quad x_2 = -\frac{3.280776391350706}{2} \cdot x_1 +] +$$ + +Substituting in the second equation: + +$$ +[ +2 \cdot x_1 + 2.280776391350706 \cdot \left(-\frac{3.280776391350706}{2} \cdot x_1\right) = 0 +] +$$ + +Simplify: + +$$ +[2 \cdot x_1 - 3.280776391350706 \cdot x_1 = 0] +$$$$ +[x_1 \cdot (2 - 3.280776391350706) = 0] +$$ + +**Step 5:** Choose a Value of (x_1) + +We can select any value for (x_1) (usually (1)) and then calculate (x_2). + +Here, we may have one or both components of the result other than 0. To consider the values ​​x_1 and x_2 to be the eigenvector of the eigenvalue lambda_1, they must be 0. Now, an important clarification needs to be made here. + +The values ​​x_1 and x_2 that satisfy an eigenvector must necessarily generate components with the value 0.00? + +Isn't it sufficient that both calculated components are very close to 0.00? + +In the context of linear algebra and eigenvector calculus, when the equation is verified: + +\[(A - **λ**I) \* X = 0\] + +The result must be exactly the zero vector. However, in practice, approximation criteria are used due to the limits of numerical precision in computations, especially when working with software and numerical calculations. + +**Details of the Approximation Criterion** + +1. *Exact Zero Vector:* + +Theoretically, an eigenvector (X) must satisfy the requirement that the product ((A - \lambda I) \cdot X) equals exactly (0 0). + +This tells us that the vector (X) is a solution to the system of equations derived from the relation. + +2. *Approximations in Calculations:* + +In practice, when performing calculations, especially in software (such as R, Python, MATLAB, etc.), it is common for the result to not be exactly zero due to: + +**Numerical errors:** Inaccurate calculations due to rounding or precision of floating-point numbers. **Statistical noise:** In real-world data analysis, there may be variations in the data that introduce slight errors. + +3. *Criterio de Tolerancia:* + +If the result is close to zero (for example, less than a specific threshold like (0.001) or (0.0001)), you can consider that the vector meets the condition to be an eigenvector. + +This approach is used because in computations in R, Python, or MATLAB, numerical representations may not be exact, even though the model behavior may be correct. + +**Recapitulating the Steps to Find the Eigenvector** + +Trying to find values ​​for x_1 and x_2 that satisfy the requirement that the result of each equation or component be 0 can be very laborious to do by hand. Therefore, to speed up the process, I used a Microsoft Excel tool. + +In the ribbon =\> Data, section =\> Forecast, we go to =\> Hypothesis analysis and finally =\> Goal seek... + +Using this tool will give us a value x_1 that seeks to approximate the result of component 1 to 0. But since the result of the function of component 1 directly intervenes in the result of component 2 because of exist a dependency relationship, we must also apply the "Excel goal search" process, to find the value of x_2. This process must be iterated several times until Excel indicates that it has reached the highest degree of precision, that is, as close to 0 as possible. + +$$ +[(A - \lambda I) \cdot \begin{pmatrix}x_1 \\x_2\end{pmatrix} = 0] +$$ + +$$ +[A - \lambda I = \begin{pmatrix}4 - \lambda & 2 \\2 & 3 - \lambda\end{pmatrix}] +$$ + +$$ +[\begin{pmatrix}x_1 \\x_2\end{pmatrix} = \begin{pmatrix}-0.001033832 \\0.001314788\end{pmatrix}] +$$ + +For the first row: + +\[3.280776391350706 \* -0.001033832 + 2 \* 0.001314788 = 0\] =\> (**-0.000762196**) + +For the second row: + +\[2 \* -0.001033832 + 2.280776391350706 \* 0.001314788 = 0\] =\> (**0.000931073**) + +In my case, I managed to find x_1: -0.00103383179577251 and x_2: 0.00131478761475097. In this way I obtained component_1: -0.000762196 and component_2: 0.000931073. + +Now I check if the components are within the tolerance range used for this type of calculations: \[-0.001, 0.001\] + +*First component:* (-0.000762708) is within tolerance (\[-0.001, 0.001\]). + +*Second component:* (0.000932849) is also within tolerance (\[-0.001, 0.001\]). + +Since both components are within the specified tolerance range, we can consider that the vector + +(X = -0.001033832 0.001314788) is effectively an eigenvector associated with the eigenvalue (\lambda\_1 = 0.719223608649294). + +**Search for the second eigenvalue** + +Mencione que el segundo valor propio se obtiene restando la suma de la trayectoria de la matriz A - Lambda_1. + +La trayectoria de una matriz se define como la suma de los elementos de la diagonal principal. En este caso, 4 + 3 = 7. + +So: + +7 - 0.719223608649294 = 6.280776391 =\> **Lambda_2** + +Now the task remains to apply all the same procedures seen to find the eigenvector for lambda_2. + +**Additional resources used in the development of this research:** + + + +Microsoft Excel + +**Conclusions on the calculation of eigenvalues ​​and eigenvectors in a 2X2 matrix** + +1. Eigenvalues ​​and Redundant Variables + +*Characteristic Polynomial:* By calculating the characteristic polynomial of a matrix, you are examining the algebraic structure of the relationships between the variables. The eigenvalues ​​you obtain are indicative of how the variables interact. + +An eigenvalue with a magnitude very close to zero (or actually zero) generally indicates a linear combination of variables that contributes no new information to the data set. This suggests that the variable or combination of variables is redundant. + +2. Linear Dependence + +*Null Space:* Eigenvectors corresponding to eigenvalues ​​that are zero indicate that there are linear dependencies between variables. If you can express a variable as a combination of other variables, this means you have redundancy in your dataset. + +*Collinearity:* The fact that a variable can be represented by other variables indicates that it has a collinear relationship, which can complicate regression models and make the coefficients unstable. + +3. Principal Component Analysis (PCA) + +In the context of data analysis, eigenvalues ​​are used in PCA to identify directions of maximum variance in the data. + +Directions (principal components) with eigenvalues ​​close to zero can be viewed as feature components that do not add significant value to the data set, suggesting that you can drop one or more of the original variables to maintain a simpler and more effective model. + +4. Dimensionality Reduction + +*Model Simplification:* By identifying and eliminating redundant variables (through eigenvalue analysis), you can reduce the dimensionality of the model without losing critical information. This can facilitate interpretation and improve the accuracy of predictive models. + +**Conclusions applied to matrix A** + +The first eigenvalue or lambda_1 is: 0.719223608649294 + +The second eigenvalue or lambda_2 is: 6.280776391 + +Lambda_1 indicates that there is a linear combination of the variables that does not contribute new information to the data set. + +**Eigenvalue (**\lambda\*\*\_1):\*\* + +The eigenvalue (\lambda\_1 = 0.719223608649294) suggests that it is a significant eigenvalue; however, compared to (\lambda\_2), which is larger, it may indicate that the direction associated with (\lambda\_1) is less important or that there is a linear combination of the variables that does not contribute significantly to the total variance of the data set. + +**Meaning of (**\lambda\*\*\_1):\*\* + +When you find a small eigenvalue (close to zero), it typically indicates collinearity or linear dependence between the variables. In other words, at least one variable may not be contributing unique information to the model, as it can be represented or explained by a combination of the other variables. + +**Interpretation of Eigenvalues** + +*Linear Dependencies and Contributions:* + +A small eigenvalue (such as (\lambda\_1)) generally indicates that the direction associated with this value does not explain a large portion of the total variance in the data set. + +A small eigenvalue (closer to zero) suggests that the variables in the matrix are, in some sense, "trapped" in a linear relationship, and one or more variables do not contribute significant additional information. + +*Collinearity:* + +In the case of your matrix (A), if we observe that (\lambda\_1 = 0.719223608649294) is relatively small compared to (\lambda\_2), this indicates that the direction associated with the smaller eigenvalue (in vector space) does not add value to the same extent as the direction associated with the larger eigenvalue. + +This may indicate that there may be some linear dependence between the variables that form that direction; it is indicative of collinearity. + +**What is the variable in question? / Which variable or variables are redundant?** + +In practical terms, if for example, one of the eigenvectors associated with (\lambda\_1) suggests that a component (such as a combination of variables (X) and (Y) in your matrix) contributes very little to the variance, then that might be the component that is redundant or not significant. + +**Evaluate variables in this context** + +***Correlation Analysis:*** You can calculate the correlation matrix to see how variables relate to each other. It will allow you to see which variables are highly correlated and could be offsetting the impact between them. + +***PCA:*** By performing principal components analysis (PCA), you can identify which components account for the majority of the variance and which ones can be discarded. It will help identify how many dimensions are necessary to explain the variability of the data and if there are components that explain little variance, suggesting redundancies. + +The eigenvalue (\lambda\_1 = 0.719223608649294) is the key in this case to identifying the direction that might be generating the least impact on the total variance; the eigenvector associated with this value may correspond to a combination of your variables that doesn't contribute significantly. This suggests that, when analyzing the variables in your data set, you might consider further examining those related to this eigenvalue. + +Finally the relationships between eigenvalues ​​and eigenvectors, and the way they are analyzed, are key to understanding redundancy in data. Performing these calculations not only helps identify which variables are contributing significantly to the model, but also helps reduce the risk of multicollinearity and improve the accuracy of any analysis performed. + +------------------------------------------------------------------------ + +### Redundant Variables Detection + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Covariance matrix +cm_delitos_data <- delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + select(-sum_24TR, -sum_24SE, -sum_24SS) %>% + cov() + +# Compute eigenvalues and eigenvectors +eigen_results <- cm_delitos_data %>% eigen() + +# Extract eigenvalues and eigenvectors +eigenvalues <- eigen_results$values +eigenvectors <- eigen_results$vectors + +# Display eigenvalues and eigenvectors +print(eigenvalues) +head(eigenvectors) + +# The Smallest Eigenvalues +sort(eigenvalues, decreasing = FALSE) + +# The smallest eigenvalue is approximately zero +smallest_eigenvalue <- min(eigenvalues) +print(smallest_eigenvalue) + +# Corresponding eigenvector +smallest_eigenvector <- eigenvectors[, which.min(eigenvalues)] +print(smallest_eigenvector) + +# Normalize the eigenvector by dividing by the largest absolute value +normalized_eigenvector <- smallest_eigenvector / max(abs(smallest_eigenvector)) +print(normalized_eigenvector) + +# Sorted normalize the eigenvector +sort(abs(normalized_eigenvector), decreasing = T) + +# Get numeric variable names (order matches eigenvector indices) +variable_names <- colnames(cm_delitos_data) + +# Sort normalized eigenvector by absolute contribution (descending order) +sorted_contributions <- sort(abs(normalized_eigenvector), decreasing = TRUE) + +# Get the indices of the top contributions +top_indices <- order(abs(normalized_eigenvector), decreasing = TRUE) + +# Get the names of the top variables +top_variable_names <- variable_names[top_indices] + +# Print the top variable names +print(top_variable_names) +``` + +**Valle del Cauca** + +**Prompt** : + +What is: Redundant Variables? + +They refer to those variables that do not provide substantial new information because their content is already represented by other variables in the data set. + +Collinearity: It occurs when two or more variables are highly correlated. For example, if you have both height variables in centimeters and meters, one is simply a conversion of the other. + +Duplication: Often, a variable can be a direct copy or a simple transformation of another variable in the data set. This increases dimensionality without adding analytical value. + +For instance: If you are evaluating the weight of people in a data set and you have both kilograms and pounds, one variable is redundant. + +### Regression Analysis + +```{r} +# Fit a regression model to confirm the relationship +model <- lm(sum_24HP ~ sum_24HA + sum_24EX + sum_24HM + sum_24LP + sum_24HR + sum_24VI + sum_24HC + sum_24HOM + sum_24DS, + data = data.frame(delitos_data)) + +## AQUÍ TIENE QUE SER FRENTE A TOOOOODAS LAS VARIABLES, NO SOLO LAS DE LOS EIGEN VALUES MÁS BAJOS + +# model <- lm(sum_24SE ~ sum_24DS + sum_24EX + sum_24SS + sum_24LP + +# sum_24HOM + sum_24HR + sum_24VI + sum_24HM + +# sum_24HA + sum_24HP + sum_24HC, +# data = data.frame(delitos_data)) +# +# model <- lm(sum_24SS ~ sum_24EX + sum_24HC + sum_24HR + +# sum_24HA + sum_24DS + sum_24HM + +# sum_24HOM + sum_24HP + sum_24VI + sum_24LP, +# data = data.frame(delitos_data)) +# +# model <- lm(sum_24HOM ~ sum_24HA + sum_24EX + sum_24HM + +# sum_24LP + sum_24HR + sum_24VI + +# sum_24HC + sum_24HP + sum_24DS, +# data = data.frame(delitos_data)) + +summary(model) + +# Variance Inflation Factors +vif(model) +``` + +Conclusion: As we have seen, the p-values ​​\[Pr(\>\|t\|)\] from the linear regression show a result of "2.00E-16", that is, 0.15 zeros and 2. + +This means that with the exception of the independent variable "sum_24HOM", all p-values ​​(0.0000000000000002) are less than the significance level defined for alpha, commonly: (\\alpha = 0.05) or (\\alpha = 0.01). Therefore, the Null Hypothesis (H_0) is rejected, which suggests that there is sufficient evidence to assume that (X) has an effect on (Y). + +By rejecting the null hypothesis, you accept the alternative hypothesis ((H_a)), which suggests that the coefficient is not zero and that the independent variable does have an effect on (Y). Or what would be the same, "sum_24HOM" is the only one that does not have a statistically significant relationship or effect on (Y). + +In my coefficient table or model summary, I have, on the one hand, the intercept (denoted as (B_0)) with an estimated value of (0.096096). This intercept represents the value of the dependent variable ((sum\_{24HP})) when all of the independent variables ((sum\_{24HA}), (sum\_{24EX}), (sum\_{24HM}), (sum\_{24LP}), (sum\_{24HR}), (sum\_{24VI}), (sum\_{24HC}), (sum\_{24HOM}), and (sum\_{24DS})) are equal to zero. + +On the other hand, for the remaining independent variables, each estimated coefficient ((B_i)) indicates the effect of that variable on (sum\_{24HP}), that is, the expected amount of change in the dependent variable for each unit of change in the respective independent variable, holding all other variables constant. + +The estimated coefficient for each independent variable represents the slope associated with that specific variable in the regression relationship. Therefore, for each unit change in the independent variable (B_i), the value of (sum\_{24HP}) adjusts by that coefficient, but the intercept ((B_0)) remains constant and does not change as a result of changes in (B_i). + +------------------------------------------------------------------------ + +## Global Variability Metric + +```{r} +#| echo: true +#| message: false +#| warning: false + +cov_matrix <- delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + #select(-sum_24TR, -sum_24SE, -sum_24SS) %>% + cov() + +# Effective Variance +det(cov_matrix)^(1/ncol(cov_matrix)) + +# Log-Transformed Effective Variance +det(log(cov_matrix + 1))^(1/ncol(cov_matrix)) + +# Effective Standard Deviation +det(cov_matrix)^(1/(ncol(cov_matrix) * 2)) + +# Log-Transformed Effective Standard Deviation +det(log(cov_matrix + 1))^(1/(ncol(cov_matrix) * 2)) +``` + +------------------------------------------------------------------------ + +**Valle del Cauca:** + +```{r} +Resúmen Estadístico delitos_data$sum_24HP +Medida Valor +Media 0.26164840 +Mediana 0.00000000 +Moda 0.00000000 +Varianza 1.32068850 +Desviación Estándar 1.14921210 +1er Cuartil 0.00000000 +2do Cuartil (Mediana) 0.00000000 +3er Cuartil 0.00000000 +``` + +Media: 0.26164840 + +```{r} +Covariance Matrix + +sum_24HOM sum_24LP sum_24VI sum_24DS sum_24HP sum_24HR sum_24HC sum_24HA sum_24HM sum_24SS sum_24SE sum_24EX sum_24TR +sum_24HOM 0.02 0.01 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0 0 0.00 0 +sum_24LP 0.01 0.23 0.09 0.02 0.13 0.01 0.01 0.00 0.02 0 0 0.01 0 +sum_24VI 0.00 0.09 0.40 0.05 0.18 0.01 0.02 0.01 0.02 0 0 0.02 0 +sum_24DS 0.00 0.02 0.05 0.08 0.05 0.00 0.01 0.00 0.00 0 0 0.01 0 +sum_24HP 0.00 0.13 0.18 0.05 1.32 0.02 0.18 0.03 0.06 0 0 0.02 0 +sum_24HR 0.00 0.01 0.01 0.00 0.02 0.03 0.00 0.00 0.00 0 0 0.00 0 +sum_24HC 0.00 0.01 0.02 0.01 0.18 0.00 0.11 0.01 0.01 0 0 0.01 0 +sum_24HA 0.00 0.00 0.01 0.00 0.03 0.00 0.01 0.02 0.00 0 0 0.00 0 +sum_24HM 0.00 0.02 0.02 0.00 0.06 0.00 0.01 0.00 0.05 0 0 0.00 0 +sum_24SS 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0 0 0.00 0 +sum_24SE 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0 0 0.00 0 +sum_24EX 0.00 0.01 0.02 0.01 0.02 0.00 0.01 0.00 0.00 0 0 0.02 0 +sum_24TR 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0 0 0.00 0 +``` + +```{r} +> cov_matrix <- delitos_data %>% ++ st_drop_geometry() %>% ++ select(contains('24')) %>% ++ #select(-sum_24TR, -sum_24SE, -sum_24SS) %>% ++ cov() +> round(2) %>% ++ knitr::kable(digits = 2, caption = "Covariance Matrix") +> +> # Effective Variance +> det(cov_matrix)^(1/ncol(cov_matrix)) +[1] 0.01707155 +> +> # Log-Transformed Effective Variance +> det(log(cov_matrix + 1))^(1/ncol(cov_matrix)) +[1] 0.01558223 +> +> # Effective Standard Deviation +> det(cov_matrix)^(1/(ncol(cov_matrix) * 2)) +[1] 0.1306581 +> +> # Log-Transformed Effective Standard Deviation +> det(log(cov_matrix + 1))^(1/(ncol(cov_matrix) * 2)) +[1] 0.1248288 +``` + +Effective variance and effective standard deviation are measures that reflect the variability in a data set. In this case, they are derived from the determinant of the covariance matrix, which measures how variables vary relative to one another. + +Covariance Matrix The covariance matrix is ​​fundamental in statistics because it captures the covariance between multiple variables. It shows how these variables change together. + +1. **Effective Variance:** 0.01707155 + + det(cov_matrix): Calculates the determinant of the covariance matrix. + + ``` + > xxx <- det(cov_matrix) > xxx [1] 1.046037e-23 + ``` + + Expression: we raise the determinant to: + + $$ + (\Large\frac{1}{ncol(cov_matrix)} ) + $$ + + to calculate the effective variance in the data set, calculated from the determinant of the covariance matrix. This measure gives an indicator of the joint variability of the variables in the dataset. It indicates how much joint variability the variables transmit in the set when considering their interactions and individual variances. + +2. **Log-Transformed Effective Variance:** 0.01558223 + + Similar to the previous calculation, but working with the log-transformed covariance matrix. This is done by first adding 1 to avoid problems with logarithms of zero. This value indicates the effective variance of the variables after applying the logarithmic transformation. + + Using log-transformed data can help reduce the influence of outliers and improve the normality of the data. + +3. **Effective Standard Deviation:** 0.1306581 + + This calculation is used to determine the effective standard deviation and is based on the determinant of the covariance matrix. Raising the determinant to + +$$ +(\Large\frac{1}{(ncol(cov_matrix) * 2)}) +$$ + +gives the square root of the effective variance. Provides a measure of the dispersion in the variables in the data set. + +4. **Log-Transformed Effective Standard Deviation:** 0.1248288 + + Here, the effective standard deviation is calculated using the log-transformed covariance matrix, using the same approach as before. + + This value is the effective standard deviation calculated from the covariance matrix after applying the logarithmic transformation. As with variance, this transformation can help provide a better representation of dispersion, especially in data sets that may not follow a normal distribution. + +------------------------------------------------------------------------ + +## Linear Dependency and Precision Matrix + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Compute precision matrix +S_inv <- solve(cov_matrix) + +# Display precision matrix (should match example values) +cat("Precision Matrix (S⁻¹):\n") +print(S_inv, digits = 2) + +# Extract correct row components of the selected crime +dependent_variable_index <- 5 + +first_row <- S_inv[dependent_variable_index, ] +print(first_row, digits = 2) + +diag_element <- S_inv[dependent_variable_index, dependent_variable_index] +print(diag_element, digits = 2) + +# Compute regression coefficients +beta_coefficients <- -first_row[-dependent_variable_index] / diag_element +print(beta_coefficients, digits = 2) + +# Compute residual variance +residual_variance <- 1 / diag_element +residual_sd <- sqrt(residual_variance) # Residual standard error + +# Print residual standard error +print(residual_sd, digits = 2) + +# Compute R^2 +r_squared <- 1 - (residual_variance / cov_matrix[dependent_variable_index, dependent_variable_index]) +print(r_squared, digits = 2) + +# Verify with lm() regression +delitos <- delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + select(-sum_24TR, -sum_24SE, -sum_24SS) + +# Fit model +model <- lm(sum_24HP ~ ., data = data.frame(delitos)) +summary(model) +``` + +**Valle del Cauca:** + +Precision Matrix: is the inverse of the covariance matrix (S). The precision matrix provides information about the conditional dependencies between variables. If one entry is zero, the variables are conditionally independent. + +```{r} +Precision Matrix (S⁻¹): + sum_24HOM sum_24LP sum_24VI sum_24DS sum_24HP sum_24HR sum_24HC sum_24HA sum_24HM sum_24EX +sum_24HOM 42.8134 -1.349 -0.099 0.11 0.039 -0.253 -0.12 0.0015 -0.48 -0.251 +sum_24LP -1.3492 4.905 -0.806 -0.30 -0.311 -0.479 0.14 0.0337 -0.65 -0.930 +sum_24VI -0.0985 -0.806 3.096 -1.53 -0.236 -0.481 0.18 -0.3041 -0.76 -1.181 +sum_24DS 0.1088 -0.298 -1.530 14.38 -0.232 0.107 -0.16 0.2510 0.24 -2.714 +sum_24HP 0.0385 -0.311 -0.236 -0.23 1.107 -0.335 -1.58 -0.8382 -0.72 -0.335 +sum_24HR -0.2532 -0.479 -0.481 0.11 -0.335 36.413 0.39 -1.7344 -0.59 -0.034 +sum_24HC -0.1179 0.144 0.181 -0.16 -1.584 0.392 11.90 -1.6704 -0.29 -1.453 +sum_24HA 0.0015 0.034 -0.304 0.25 -0.838 -1.734 -1.67 50.7340 -1.36 -0.269 +sum_24HM -0.4845 -0.654 -0.755 0.24 -0.718 -0.590 -0.29 -1.3580 20.18 -0.612 +sum_24EX -0.2508 -0.930 -1.181 -2.71 -0.335 -0.034 -1.45 -0.2690 -0.61 52.453 +``` + +**Diagonal Values:** + +The entries on the diagonal (e.g., (42.8134) for sum_24HOM, (4.905) for sum_24LP, etc.) represent the conditional variance of each variable. + +These values ​​indicate how much each variable varies relative to its relationship with all other variables in the model. A higher value implies that the variable has greater conditional variability. + +**Off-Diagonal Values** + +Off-diagonal entries represent the conditional covariances between variables. For example: + +The value (-1.3492) in the sum_24LP row and the sum_24HOM column indicates a negative relationship between these two variables. Overall, this suggests that an increase in sum_24HOM is associated with a decrease in sum_24LP, after controlling for the effect of the other variables. + +A value closer to 0 indicates that there is no strong relationship between these variables in conditional terms. + +**Prompt** : + +What can I conclude from having 42.8134 in the first diagonal position for the variable sum_24HOM, which is the highest value in this precision matrix? + +*High Conditional Variance:* a value of 42.8134 indicates that the conditional variance of sum_24HOM is high when all other variables in the model are controlled. This means that sum_24HOM shows a large amount of variability in its relationship with the dependent variable sum\_{24HP} in the context of the other variables. + +*Contribución Significativa:* since this is the highest value on the diagonal, it suggests that sum_24HOM makes a significant contribution to the total variance of the data set. In other words, the variability of sum_24HOM is an important factor in the model and has a noticeable impact on how changes in sum\_{24HP} are explained. + +Low Collinearity: the high conditional variance may also suggest that sum_24HOM is not strongly correlated with the other variables, meaning it contributes unique information to the model. It is not necessarily redundant, as its variability is not locked into the other variables. + +Importance for the Model: this indicates that sum_24HOM is an important variable to consider when building predictive models. The high conditional variance suggests that changes in sum_24HOM will likely significantly influence the dependent variable. + +```{r} +# Extract correct row components of the selected crime +> dependent_variable_index <- 5 +> +> first_row <- S_inv[dependent_variable_index, ] +> print(first_row, digits = 2) +sum_24HOM sum_24LP sum_24VI sum_24DS sum_24HP sum_24HR sum_24HC sum_24HA sum_24HM sum_24EX + 0.039 -0.311 -0.236 -0.232 1.107 -0.335 -1.584 -0.838 -0.718 -0.335 +``` + +Extract the components of the row corresponding to the dependent variable (sum\_{24HP}) in the precision matrix. This will allow you to see how (sum\_{24HP}) relates to the other variables. + +```{r} +#Calculation of the Regression Coefficient +diag_element <- S_inv[dependent_variable_index, dependent_variable_index] +> print(diag_element, digits = 2) +[1] 1.1 +``` + +Calculation of the Regression Coefficient: This extracts the diagonal element of the precision matrix for (sum\_{24HP}) which will be used to calculate the regression coefficients. + +```{r} +# Compute regression coefficients +> beta_coefficients <- -first_row[-dependent_variable_index] / diag_element +> print(beta_coefficients, digits = 2) +sum_24HOM sum_24LP sum_24VI sum_24DS sum_24HR sum_24HC sum_24HA sum_24HM sum_24EX + -0.035 0.281 0.213 0.210 0.303 1.432 0.757 0.649 0.303 +``` + +This calculation line converts the extracted row from the precision matrix into regression coefficients. For each value in first_row, you divide it by the diagonal value of the calculated element, resulting in the regression model coefficients. + +```{r} +> # Compute residual variance +> # Compute residual variance +> residual_variance <- 1 / diag_element +> residual_sd <- sqrt(residual_variance) # Residual standard error +> +> # Print residual standard error +> print(residual_sd, digits = 2) +[1] 0.95 +``` + +Residual Variance: calculate the variance of the residuals from the diagonal element of the precision matrix. The square root of this variance (residual_sd) will give you the standard error of the residuals in the model. + +```{r} +> # Compute R^2 +> r_squared <- 1 - (residual_variance / cov_matrix[dependent_variable_index, dependent_variable_index]) +> print(r_squared, digits = 2) +[1] 0.32 +``` + +Compute R\^2: It is calculated as the proportion of variance explained relative to the total variance. This indicates how well the model fits the data. + +```{r} +> # Verify with lm() regression +> delitos <- delitos_data %>% ++ st_drop_geometry() %>% ++ select(contains('24')) %>% ++ select(-sum_24TR, -sum_24SE, -sum_24SS) +> +> # Fit model +> model <- lm(sum_24HP ~ ., data = data.frame(delitos)) +> summary(model) + +Call: +lm(formula = sum_24HP ~ ., data = data.frame(delitos)) + +Residuals: + Min 1Q Median 3Q Max +-19.311 -0.096 -0.096 -0.096 74.195 + +Coefficients: + Estimate Std. Error t value Pr(>|t|) +(Intercept) 0.096096 0.004753 20.219 <2e-16 *** +sum_24HOM -0.034799 0.029218 -1.191 0.234 +sum_24LP 0.280697 0.009801 28.639 <2e-16 *** +sum_24VI 0.212884 0.007793 27.317 <2e-16 *** +sum_24DS 0.209750 0.016907 12.406 <2e-16 *** +sum_24HR 0.302510 0.026909 11.242 <2e-16 *** +sum_24HC 1.431535 0.013855 103.320 <2e-16 *** +sum_24HA 0.757449 0.031607 23.965 <2e-16 *** +sum_24HM 0.648806 0.019827 32.723 <2e-16 *** +sum_24EX 0.302932 0.032309 9.376 <2e-16 *** +--- +Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1 + +Residual standard error: 0.9507 on 45318 degrees of freedom +Multiple R-squared: 0.3158, Adjusted R-squared: 0.3156 +F-statistic: 2324 on 9 and 45318 DF, p-value: < 2.2e-16 +``` + +Verification with lm() of Regression: finally, these results are compared with those obtained by fitting a regression model with lm(). This gives you a summary that includes the coefficients, standard errors and (R\^2), allowing you to verify the consistency of your results. + +------------------------------------------------------------------------ + +# Key Players and Topics + +# Non-Parametric Correlation {.unnumbered} + +Correlation measures the strength and direction of association between two variables. While Pearson's correlation requires a linear relationship and normally distributed data, \emph{Spearman's rank correlation} and \emph{Kendall's tau} are \emph{non-parametric} measures, making them ideal for analyzing data that may not be linear or normally distributed. + +## Spearman's Rank Correlation + +Spearman's correlation coefficient $\rho$ is based on \emph{ranked} data. For two variables $X$ and $Y$, we replace each observation by its rank. + +```{r} +#| include: false +#---source('setup.R') + +# Load the dataset +#---delitos_data <- st_read("data/spatial/crime_spatial_course.gpkg") +#---delitos_data <- delitos_data[delitos_data$dpto_ccdgo == '11', ] +``` + +```{r} +#| echo: true +#| message: false +#| warning: false + +delitos_data <- delitos_data %>% + select(-sum_24TR, -sum_24SE, -sum_24SS) + +delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) %>% + cor(., method = "spearman", use = "complete.obs") %>% + round(., 3) %>% + print(.) %>% + corrplot(., method = "color", title = "Spearman Correlation", mar=c(0,0,1,0)) +``` + +**Valle del Cauca:** + +``` ++ corrplot(., method = "color", title = "Spearman Correlation", mar=c(0,0,1,0)) + sum_24HOM sum_24LP sum_24VI sum_24DS sum_24HP sum_24HR sum_24HC sum_24HA sum_24HM sum_24EX +sum_24HOM 1.000 0.092 0.040 0.022 0.045 0.016 0.030 0.010 0.020 0.027 +sum_24LP 0.092 1.000 0.138 0.067 0.151 0.060 0.074 0.037 0.097 0.065 +sum_24VI 0.040 0.138 1.000 0.091 0.149 0.058 0.069 0.055 0.087 0.062 +sum_24DS 0.022 0.067 0.091 1.000 0.086 0.035 0.044 0.032 0.061 0.045 +sum_24HP 0.045 0.151 0.149 0.086 1.000 0.098 0.170 0.122 0.156 0.085 +sum_24HR 0.016 0.060 0.058 0.035 0.098 1.000 0.036 0.056 0.040 0.021 +sum_24HC 0.030 0.074 0.069 0.044 0.170 0.036 1.000 0.049 0.087 0.062 +sum_24HA 0.010 0.037 0.055 0.032 0.122 0.056 0.049 1.000 0.059 0.024 +sum_24HM 0.020 0.097 0.087 0.061 0.156 0.040 0.087 0.059 1.000 0.042 +sum_24EX 0.027 0.065 0.062 0.045 0.085 0.021 0.062 0.024 0.042 1.000 +``` + +Spearman's rank correlation is the nonparametric counterpart of Pearson's correlation. It does not use the original data, but rather the data ranges. + +The correlation matrix shows how each pair of variables is related and how to interpret the coefficients between -1 and 1, where: + +\(1\) Indicates a perfect positive correlation, + +(-1) Indicates a perfect negative correlation, + +\(0\) Indicates no correlation. + +Each correlation index gives us three specific pieces of information. + +Direction: If the Rho is positive, the correlation is positive. + +Strength: The closer the correlation is to 1, the greater the strength, i.e., the stronger the association between the variables. + +Significance: If we take another sample from the same population, we will likely find the same association. + +So, taking on account the table we can conclude: + +sum_24HP and sum_24HC: They have a correlation of (0.170), which is the strongest correlation observed in this matrix. This suggests a moderate positive relationship between these two variables; as one increases, the other tends to increase. + +sum_24HP and sum_24LP: A correlation of (0.151), also positive, indicating a moderate positive relationship between these two variables. + +All other correlations are quite low, reinforcing the idea that none of the variables are strongly related to the others. This indicates that there is no significant redundancy in the variables, since no strong correlations are observed that suggest linear dependence. + +------------------------------------------------------------------------ + +# Spatial Neighborhood Matrices {.unnumbered} + +## Neighbors Based on Contiguity + +```{r} +# Create a spatial neighbors list using Queen contiguity +# (i.e., polygons are considered neighbors if they share any point: edge or vertex) +nb <- spdep::poly2nb(delitos_data, queen = TRUE) +head(nb) + +# Replace invalid neighbor entries (i.e., [1] 0) with empty integer vectors +# This ensures compatibility with functions that expect valid neighbor lists only +nb_0 <- lapply(nb, function(x) if(length(x)==1 && x==0) integer(0) else x) + +# Polygons with neighbors +table(sapply(nb_0, length)) + +# Neighbors of Order k Based on Contiguity +# Neighbors of second order +nblags <- spdep::nblag(neighbours = nb, maxlag = 2) + +# Combine neighbors of all orders up to the specified lag (in this case, up to order 2) +# This creates a cumulative neighbor list including first- and second-order neighbors +nblagsc <- spdep::nblag_cumul(nblags) +table(sapply(nblagsc, length)) +``` + +**Valle del Cauca:** + +```{r} +> # Create a spatial neighbors list using Queen contiguity +> # (i.e., polygons are considered neighbors if they share any point: edge or vertex) +> nb <- spdep::poly2nb(delitos_data, queen = TRUE) +> head(nb) +[[1]] +[1] 0 + +[[2]] +[1] 0 + +[[3]] +[1] 0 + +[[4]] +[1] 0 + +[[5]] +[1] 0 + +[[6]] +[1] 35204 + +> +> # Replace invalid neighbor entries (i.e., [1] 0) with empty integer vectors +> # This ensures compatibility with functions that expect valid neighbor lists only +> nb_0 <- lapply(nb, function(x) if(length(x)==1 && x==0) integer(0) else x) +> +> # Polygons with neighbors +> table(sapply(nb_0, length)) + + 0 1 2 3 4 5 6 7 8 9 10 11 13 14 23 29 +40279 3630 886 275 116 50 36 21 12 9 4 2 2 3 2 1 +> +> # Neighbors of Order k Based on Contiguity +> # Neighbors of second order +> nblags <- spdep::nblag(neighbours = nb, maxlag = 2) +> +> # Combine neighbors of all orders up to the specified lag (in this case, up to order 2) +> # This creates a cumulative neighbor list including first- and second-order neighbors +> nblagsc <- spdep::nblag_cumul(nblags) +> table(sapply(nblagsc, length)) + + 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 26 29 +42131 984 595 456 282 228 176 110 100 54 35 13 26 30 10 2 2 2 5 4 2 45 4 2 30 +``` + +After creating the Neighbor List using Queen's Contiguity, any pair of two polygons that share a point, either on the boundary or a vertex, are considered neighbors. The result shows that the first five polygons have no neighbors (indicated by the value 0), while the sixth polygon has a neighbor corresponding to index 35204. + +With "table(sapply(nb_0, length))" we get 40279 polygons without neighbors, 3630 polygons with one neighbor, and so on. + +*Neighbor Frequency* + +42,131 polygons have one neighbor. This indicates that most of the polygons in your dataset are neighbors of only one other polygon, which is important information to consider in spatial analysis. + +984 polygons have two neighbors, which is also significant, although it represents a smaller number compared to those with only one neighbor. + +*Group Identification* + +The existence of polygons with more than two neighbors (up to 29 at the maximum) suggests that there are certain clusters or groupings of polygons that are more closely connected to each other. This can be useful for spatial analysis, as it can indicate areas where there is greater interconnectedness. + +**Prompt:** + +¿How can we apply Spatial Neighborhood Matrices? + +The neighbor matrix will aid in building spatial models that analyze the correlation and dependence between data in different geographic areas. + +Diagnosing Spatial Effects: By evaluating how the characteristics of a polygon may affect its neighbors, you can obtain richer and more relevant inferences about your dataset. + +------------------------------------------------------------------------ + +## Neighbors Based on k Nearest Neighbors + +**Valle del Cauca:** + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Compute centroids of the polygons +coo <- st_centroid(delitos_data) + +# Create a neighbor list where each polygon (based on its centroid `coo`) is connected +# to its 5 nearest neighbors using k-nearest neighbors (k = 5) +nb <- knn2nb(knearneigh(coo, k = 5)) # k number nearest neighbors + +# Polygons with neighbors +table(sapply(nb, length)) + +# Subset data to the first 10 polygons +delitos_data_10 <- delitos_data[1:1000, ] + +# Recompute neighbor list for these 1000 polygons to avoid index mismatches +nb_10 <- knn2nb(knearneigh(st_centroid(delitos_data_10), k = 5)) + +# Compute centroids for the 1000 polygons +coords_10 <- st_coordinates(st_centroid(delitos_data_10)) + +# Plot the first 1000 polygons and overlay neighbor connections in red +plot(st_geometry(delitos_data_10), border = "lightgray", main = "First Polygons with 5 Nearest Neighbors") +plot.nb(nb_10, coords_10, add = TRUE, col = "red", lwd = 2) +``` + +**Centroid calculation** + +coo \<- st_centroid(delitos_data) + +Here first step is to compute all measurements of **centroids** of the polygons in the crimes_data object. Each polygon (possibly representing a geographic area where crimes occurred) will have a center point calculated as its "center of gravity." + +**Creating the neighbor list** + +nb \<- knn2nb(knearneigh(coo, k = 5)) + +Then, a neighbor list is created using the k-nearest neighbors method (k = 5). This means that for each polygon, its three closest polygons (based on the distance between their centroids) are found. + +**Summary of the number of neighbors** + +table(sapply(nb, length)) + +This command generates a table showing how many polygons have 5 neighbors. The result shows that there are 45,328 polygons in total, all of which have 5 neighbors, indicating that the neighbor calculation was successful for this dataset. + +**Data subset:** + +Subset data to the first 1000 polygons + +delitos_data_10 \<- delitos_data\[1:1000, \] + +Here a subset containing only the first 1000 polygons of the original dataset is created for further analysis. + +**Recalculating the neighbor list for the subset** + +nb_10 \<- knn2nb(knearneigh(st_centroid(delitos_data_10), k = 5)) + +Se vuelve a calcular la lista de vecinos, pero esta vez solo para los 1000 polígonos en el subconjunto **`delitos_data_10`**. + +**Calculation of centroid coordinates for the subset** + +coords_10 \<- st_coordinates(st_centroid(delitos_data_10)) + +Obtiene las coordenadas de los centroides de los 1000 polígonos seleccionados. + +**Display** + +plot(st_geometry(delitos_data_10), border = "lightgray", main = "First Polygons with 5 Nearest Neighbors") plot.nb(nb_10, coords_10, add = TRUE, col = "red", lwd = 2) + +Here, in summary, we analyze a set of polygons that could represent geographic areas of interest, such as regions where crimes are reported. First, the centroids of all these polygons are calculated using the st_centroid function on the crimes_data set. Then, a list of neighborhoods is generated using the k-nearest neighbors method with k = 5, meaning that each polygon is connected to its five nearest neighbors based on the distance between their centroids. The result, table(sapply(nb, length)) confirms that each of the 45,328 polygons in Valle del Cauca has exactly 5 neighbors. Subsequently, a subset of the first 1,000 polygons is selected for further visual analysis. For these, the neighbor list is recalculated again to ensure there are no index mismatches. Finally, a graph is generated plotting these 1,000 polygons, with neighborhood links represented by red lines between neighboring centroids. This analysis shows how each area in the set is geographically connected to its immediate surroundings, helping to understand the distribution and spatial relationships of the phenomenon represented by the crime data. + +![KNN](https://github.com/Alonso666cr/Advanced_Data_Analysis/blob/main/KNN.png?raw=true){fig-align="center" width="365"} + +This type of analysis is useful for exploring the spatial relationship between areas where crimes occurred, identifying patterns that may be related to geographic proximity. + +------------------------------------------------------------------------ + +## Neighbors Based on Distance + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Create a neighbor list using distance-based contiguity: +# Polygons are considered neighbors if their centroids are within 0.4 units (e.g., degrees) apart +nb <- dnearneigh(x = st_centroid(delitos_data), d1 = 0, d2 = 0.4) + +# Polygons with neighbors +# Calcular el número de vecinos +vecinos <- sapply(nb, length) + +# Crear el histograma con 20 columnas +# Calcular el número de vecinos +vecinos <- sapply(nb, length) + +# Crear el histograma con 20 columnas pero con un rango ajustado +hist_info <- hist(vecinos, + breaks = seq(min(vecinos) - 1, max(vecinos) + 1, length.out = 21), # Ajustando los límites + main = "Número de Vecinos por Polígono", + xlab = "Número de Vecinos", + ylab = "Frecuencia", + col = "lightblue", + border = "black") + +# Agregar los números de polígonos (frecuencia) sobre cada barra +text(hist_info$mids, hist_info$counts, + labels = hist_info$counts, + pos = 3, + cex = 0.7) + + + +#---library(openxlsx) +# Calcular el número de vecinos +#---vecinos <- sapply(nb, length) +# Crear un data frame con los resultados +#---df_vecinos <- data.frame(vecis = vecinos) +# Escribir el data frame a un archivo Excel +#---write.xlsx(df_vecinos, file = "Vecinos_Distancia.xlsx") + +# Subset data to the first 10 polygons +delitos_data_10 <- delitos_data[1:100, ] + +# Recompute neighbor list for these 10 polygons to avoid index mismatches +nb_10 <- dnearneigh(x = st_centroid(delitos_data_10), d1 = 0, d2 = 0.4) + +# Compute centroids for the 10 polygons +coords_10 <- st_coordinates(st_centroid(delitos_data_10)) + +# Plot the first 10 polygons and overlay neighbor connections in red +plot(st_geometry(delitos_data_10), border = "lightgray", main = "First Polygons with 3 Nearest Neighbors") +plot.nb(nb_10, coords_10, add = TRUE, col = "red", lwd = 2) +``` + +**Valle del Cauca:** + +```{r} +# Comprobar el sistema de referencia de coordenadas +crs_info <- st_crs(delitos_data) +print(crs_info) +``` + +In this approach, the neighbors of a datum (or point) are determined based on a fixed distance criterion. Any point within a specified radius or distance from a reference point is considered a neighbor. + +We have a histogram that groups the number of polygons by neighbor frequency. For example, in the first column, there are 3,711 polygons with up to 10 neighbors. + +This histogram allows us to visualize how the polygons are distributed based on their number of neighbors, which can be useful for analyzing connectivity and the spatial relationships between them. + +As in KNN, the centroids of the polygons are calculated and a list of neighbors is created, considering that two polygons are neighbors if the distance between their centroids is within the defined range, in this case it is 0.4 units and after doing the investigation, it is determined that it is approximately 44 kilometers. + +## Neighborhood Matrices + +```{r} +#| echo: true +#| message: false +#| warning: false + +# Spatial weights matrix using Queen contiguity (binary weights) +# 'queen = TRUE' considers shared edges OR vertices as neighbors +nb <- poly2nb(delitos_data, queen = TRUE) + +# Convert the neighbor list to a spatial weights list object +# 'style = "W"' row-standardizes the weights (sums to 1) +# 'zero.policy = TRUE' avoids errors when some polygons have no neighbors +nbw <- spdep::nb2listw(nb, style = "W", zero.policy = TRUE) + +# Display the first 10 rows of spatial weights (for the first 10 polygons) +nbw$weights[1:10] + +# Spatial weights matrix based on inverse distance values +# Compute centroids of polygons +coo <- st_centroid(delitos_data) + +# Use Queen contiguity again to define neighbors +nb <- poly2nb(delitos_data, queen = TRUE) + +# Compute distances between neighbors based on their centroids +dists <- nbdists(nb, coo) + +# Create inverse distance weights (1/distance) for each pair of neighbors +ids <- lapply(dists, function(x){1/x}) + +# Create a listw object using binary style ("B" = no standardization) +nbw <- nb2listw(nb, glist = ids, style = "B", zero.policy = TRUE) + +# Display the first 10 inverse-distance-based weights +nbw$weights[1:10] +``` + +We begin again by calculating the polygon centroids and, with that, calculating their distances. + +Here, the contiguity type used to define neighbors is Queen. + +The distances between the centroids of the neighboring polygons are calculated. This generates a list where each element corresponds to a polygon and contains the distances to its neighbors. + +Then, the inverse of each distance (1/distance) is calculated to obtain the weighting, with the closest polygons having a higher weight. + +Next, a list-like object is obtained with the neighbors and the inverse of the weights, and then the first 10 positions are displayed. + +This is where the questions started! + +**Prompt:** + +What does the NULL value represent here? + +The NULL output indicates that, for those specific indices, there are no assigned neighbors, or the distances are so large that no weights are generated for those polygons. It's normal if some polygons don't have neighbors according to the defined contiguity. + +**Prompt:** + +What do the numbers next to some of these indices represent? + +For the indices that show values ​​(for example, \[\[6\]\] and \[\[9\]\]), the inverse distance weights are observed: + +\[\[6\]\] has a weight of approximately 0.2475635. + +\[\[9\]\] shows several weights that are slightly lower, indicating the proximity relationships between the corresponding polygon and its neighbors. + +Continuing with the learning, I understood that, for example, in the case of: + +\[\[6\]\] \[1\] 0.2475635 + +That 6 is the position of a polygon in my dataset delitos_data. But I wanted to know the name of the locality represented by that 6th position. + +```{r} +# Averiguar el número de polígonos: +n_polygons <- nrow(delitos_data) +print(paste("Polygons in delitos_data: ", n_polygons)) + +# Consultar el Polígono correspondiente +poligono_seis <- delitos_data[6, ] # Esto te dará el polígono en la fila 6 +print("This is the polygon in 6th position:") +print(poligono_seis) +# dpto_ccdgo y mpio_ccdgo muestran el departamento y municipio que corresponde al poligono. +# En este caso dpto_ccdgo[76] y mpio_ccdgo[147] => Corresponde a Cartago. + +# Ver el Contenido de los Vecinos +# Conocer cuántos índices de los polígonos vecinos del poligono "Cartago" (posición 6). +# Obtener los vecinos del polígono en la posición 6 +vecinos_seis <- nb[[6]] +print(vecinos_seis) +``` + +Using: + +poligono_seis \<- delitos_data\[6, \] \# Esto te dará el polígono en la fila 6 + +print("This is the polygon in 6th position:") + +print(poligono_seis) + +I can find which location is mpio_cdpmp =\> 76147 using this next chunk, this is mine! + +```{r} +# install library +#install.packages("readxl") + +# Load package +library(readxl) + +# Read Excel Book +Municipios <- read_excel("municipios.xlsx") + +# Verifica los primeros registros para asegurarte de que se ha cargado correctamente +print(head(Municipios)) + +# Querying NOMBRE_MPIO ysing CODIGO_MPNIO +#install.packages("dplyr") +library(dplyr) + +# Supongamos que deseas buscar el nombre del municipio con CODIGO_MPIO 91405 +codigo_a_buscar <- "76147" + +# Usar dplyr para filtrar y seleccionar el nombre del municipio +nombre_municipio <- Municipios %>% + filter(CODIGO_MPIO == codigo_a_buscar) %>% + select(NOMBRE_MPIO) + +# Mostrar el resultado +print(nombre_municipio) +``` + +# Spatial autocorrelation {.unnumbered} + +## Global Moran’s Index + +It is one of the main methods in spatial analysis to detect patterns of clustering (correlation) or dispersion of similar values ​​in a geographic space. + +° A value close to +1 indicates strong positive spatial autocorrelation (areas with high values ​​are close to areas with high values, and those with low values ​​are close to areas with low values). + +° A value close to 0 indicates no spatial autocorrelation (values ​​are randomly distributed). + +° A value close to -1 indicates negative autocorrelation (areas with high values ​​tend to be close to areas with low values). + +```{r} +library(spdep) + +# Compute centroids of the polygons +coo <- st_centroid(delitos_data) + +# Create a neighbor list where each polygon (based on its centroid `coo`) is connected +# to its 3 nearest neighbors using k-nearest neighbors (k = 3) +nb <- knn2nb(knearneigh(coo, k = 3)) # k number nearest neighbors + +# Global Moran's I +# Convert the neighbor list to a listw object +lw <- nb2listw(nb, style = "W") # Use nb2listw + +# Now you can use 'lw' in moran.test +gmoran <- moran.test(delitos_data$sum_24HP, lw, alternative = "greater") + +gmoran + +gmoran[["estimate"]][["Moran I statistic"]] # Moran's I + +gmoran[["statistic"]] # z-score + +gmoran[["p.value"]] # p-value +``` + +**Prompt:** + +What is its importance in spatial analysis? + +**° Detecting spatial patterns:** It allows you to identify whether phenomena (such as crime, poverty, disease, etc.) tend to concentrate or disperse in specific areas. + +**° Decision-making:** It aids in urban planning, public health, economics, etc., by understanding the spatial structure of the data. + +**° Application in modeling:** Its value can help decide whether spatial models (such as spatial regression models or cluster analysis) are required. + +It is essential in spatial analysis because it helps detect global patterns and decide whether it is necessary to apply models that consider spatial structure. + +**Process explanation** + +Thus, by applying the Global Moran's Index, we can assess whether crimes are spatially clustered in crimes_data. Using the centroids, we calculate the nearest neighbors using the KNN with K=3 algorithm based on the Euclidean distance between centroids. This gives a list of neighbors, which is then used to apply the Moran's index and verify the presence of spatial autocorrelation in sum_24HP. This index is calculated by converting the list of neighbors into a spatial weights matrix and applying the Moran's statistical test to determine if there is significant spatial autocorrelation in the variable sum_24HP. The variable sum_24HP represents counts or sums in each polygon (e.g., number of crimes in each unit), and this analysis assesses whether these counts are spatially clustered. + +**Result Summary** + +Moran I value: ***0.1752345*** This positive value indicates that there is a positive spatial autocorrelation in your data, which implies that polygons with similar values ​​in sum_24HP tend to be close to each other, forming groups or clusters. + +Z-score (standard statistics): 49.16138 It is an extremely high value, which indicates that the observed autocorrelation is very different from what would be expected if there was no autocorrelation (low null hypothesis). + +P-value: \< 2.2e-16 (practically zero) This means that the probability of the observed autocorrelation pattern occurring by chance is **practically zero**. + +**Conclusion** + +There is a statistically significant spatial autocorrelation in your data (sum_24HP). That is, crime rates in one area are related to rates in nearby areas. + +The magnitude of Moran's I (0.1752) suggests a moderate positive autocorrelation, but in spatial analyses, values ​​between 0.1 and 0.3 are generally considered moderate autocorrelation. + +## Local Moran’s Index + +```{r} +#| echo: true +#| message: false +#| warning: false + +lmoran <- localmoran(delitos_data$sum_24HP, lw, alternative = "greater") +head(lmoran) +``` + +Commonly called LISA, it is an extension of the Global Moran Index, but instead of giving a single value for the entire sample, it provides a measure of spatial autocorrelation for each individual spatial unit, in this case for each polygon. + +**Prompt:** + +What is it for? + +It allows you to identify specific “clusters” on the map, such as areas with high values ​​surrounded by high values ​​(hot spots) or low values ​​surrounded by low values ​​(cold spots). + +In this case, the variable of interest "sum_24HP" is evaluated for each spatial unit. + +It is important to clarify that the value of the local Moran index, for each polygon, is in the first column (Ii) of each record in the previous table. + +The remaining columns (E.Ii, Var.Ii, Z.Ii, Pr(z \> E(Ii))) provide additional information to evaluate the significance of the Ii value. + +**Prompt:** + +How are the local Moran index values ​​interpreted? + +| **C**olumn | **D**escription | Interpretation | +|:-----------------:|:------------------------:|:-------------------------:| +| **Ii** | The value of the **Local Moran Index** (autocorrelation value for that spatial unit). | The larger and positive the hotspot, the stronger the autocorrelation; the negative indicates low clustering. | +| **E.Ii** | The expectation (expected value) under the hypothesis of absence of autocorrelation. | For Moran, it is usually close to 0. | +| **Var.Ii** | The **variance** of the local index under the null hypothesis. | Mide la dispersión esperada si no hay autocorrelación espacial real. | +| **Z.Ii** | Standard **Z statistic** (normalized value). | If it is very high or very low (in absolute value), it indicates that the index value is significantly different from 0. | +| **Pr(z \> E(Ii))** | **P-value** for the test (that the index is greater than the expected value, in this case, of positive autocorrelation). | If it is small (e.g. \< 0.05), the positive autocorrelation in that unit is significant. | + +**What does this mean in practice?** + +Rows with **high Z values ​​and small p values** ​​indicate units where there is **significant spatial autocorrelation** — that is, those areas are **hotspots** (highs surrounded by highs). + +- In this example, the first rows (1 to 4) have a positive **`Ii`** and p-values ​​around **`0.35`**, **they are not statistically significant** in positive autocorrelation. + +- Row 5 has a negative **`Ii`** and a p-value around **`0.54`**, which indicates **no significant autocorrelation** either positive or negative in that unit. + +- The consistency in the values ​​of **E.Ii** (~~0), de **Var.Ii** (~~0.017), and the high p-values ​​in most of the rows, suggests that in those units **there is no significant autocorrelation** in the data. + +- To detect **hotspots** or **clusters** on your map, focus on the rows where **p-valor \< 0.05** y **Z-Ii** is high (positive) — these are the areas with significant autocorrelation. + +**Differences between Moran's Global Index and Local Index (LISA)** + +| Global Moran's Index | Local Moran's Index (LISA) | +|--------------------------------|:---------------------------------------| +| Measures the overall pattern across the entire dataset. | Detects specific spatial patterns in particular areas or groups on the map. | +| Provides a single value for the whole region. | Provides a value for each area or spatial unit. | +| Useful to determine if there is overall autocorrelation. | Useful to identify specific positive or negative clusters (e.g., areas with high crime surrounded by other high-crime areas). | +| Example: "Is there spatial autocorrelation across the city?" | Example: "Where are the high-crime clusters?" | + +## Clusters + +Remember that the **Global Moran Index** summarizes the total degree of spatial autocorrelation in the entire data sample, in this case crimes in each polygon. + +I had to research how to interpret clusters in a Moran diagram. + +Reference: + +The Moran diagram is obtained from the matrix expression derived from the Global Moran test. The Global Moran test is based on the slope of the line, such that the greater the angle it forms with the abscissa axis, the greater the degree of autocorrelation. Figure 1 is shown below as an example. + +![](https://github.com/Alonso666cr/Advanced_Data_Analysis/blob/main/Diagrama_Moran1.jpg?raw=true){style="width: 50%; height: 50%;" fig-align="center"} + +*From this diagram, the phenomenon is divided into four quadrants: the first and third quadrants (High-High; Low-Low) are indicative of positive autocorrelation, which means that the behavior of a variable in some regions is being favored by its behavior in nearby regions. On the other hand, the second and fourth quadrants (Low-High; High-Low) reflect the existence of negative spatial autocorrelation, meaning that the behavior of a variable is producing contrary effects in nearby regions.* + +*The first case (A-A; B-B) indicates the presence of high values ​​of the variable surrounded by high values, or low values ​​surrounded by low values. The second case (B-A; A-B) means the presence of low values ​​of the variable surrounded by high values, or vice versa. In this particular case, the presence of positive spatial autocorrelation can be detected, observing the positive slope of the Moran test, which reaches a significance value of approximately 36%.* + +With this reference, I now understand that the diagram is made up of 4 quadrants. + +- The line that runs through the Moran diagram is, in fact, the theoretical regression line under the hypothesis of spatial independence (null hypothesis). + +- The hypothesis of spatial independence is a statistical assumption that states that the values ​​of the variable at each point or spatial unit are independent of the values ​​in the other units. + +- In other words, the value at one location does not depend on the values ​​at nearby locations, that is, the null hypothesis is assumed and to determine whether the data contradict that hypothesis, a statistical test such as Moran's is performed. + +- This hypothesis is the basis for assessing whether there is autocorrelation: if it can be shown that the values ​​are not spatially related, the independence hypothesis is accepted. + + **If the test shows that the null hypothesis is rejected:** + + It is because **there is spatial autocorrelation**, that is, the values ​​in nearby areas tend to be significantly similar or dissimilar.. + +- **If not rejected:**\ + The distribution of values ​​can be considered random, with no evidence of autocorrelation. + +- When the hypothesis is rejected (the data show that there is a relationship), then there is spatial autocorrelation, which means that values ​​in nearby locations tend to be similar (or in some cases, dissimilar). + + + +- It is a line that attempts to represent the expected relationship between the values ​​of the variable in an area and the weighted average value of its neighbors. + +- In this analysis, that line corresponds to the linear regression of the values ​​of the variable as a function of the values ​​of its neighbors, or to a line that maximizes the linear relationship between these two variables. + +- **The slope** of that line measures **the degree of spatial autocorrelation**: higher slopes indicate greater positive autocorrelation and vice versa. + +- The value of the slope of the regression line in the diagram is precisely the Global Moran Index. + +The following code I built with AI and it gives me the angle in degrees: 9.939283 of the regression line with respect to the X axis. + +```{r} +# 0.1752345 + +library(sf) +library(spdep) + +# 1. Calcular centroides +coo <- st_centroid(delitos_data) + +# 2. Encontrar los vecinos k-vecinos más cercanos +knn_result <- knearneigh(coo, k = 3) + +# 3. Convertir a lista de vecinos +nb <- knn2nb(knn_result) + +# 4. Convertir a matriz de pesos +lw_mat <- nb2mat(nb, style = "W") + +# 5. Datos estandarizados +datos_std <- as.vector(scale(delitos_data$sum_24HP)) + +# 6. Calcular wx +wx <- as.vector(lw_mat %*% datos_std) + +# 7. Ajuste la regresión lineal +regresion_df <- data.frame(x = datos_std, wx = wx) +modelo <- lm(wx ~ x, data = regresion_df) +summary(modelo) + +# 8. Pendiente y ángulo +pendiente <- coef(modelo)[2] +cat("Pendiente:", pendiente, "\n") +angulo_rad <- atan(pendiente) +cat("Ángulo en grados:", angulo_rad * (180 / pi), "\n") +``` + +![](https://github.com/Alonso666cr/Advanced_Data_Analysis/blob/main/Diagrama_Moran2.png?raw=true){style="width: 50%; height: 50%;" fig-align="center"} + +Here we have the corresponding Moran diagram, which shows the relationship between each value of the variable SUM_24HP and the weighted average value of its neighbors, helping to visualize whether there is spatial autocorrelation in the entire data set. That is, it is a graphical representation for analyzing global autocorrelation. + +```{r} +#| echo: true +#| message: false +#| warning: false + +mp <- moran.plot(as.vector(scale(delitos_data$sum_24HP)), lw) +delitos_data$quadrant <- NA +# high-high +delitos_data[(mp$x >= 0 & mp$wx >= 0) & (delitos_data$lmp <= 0.05), "quadrant"]<- 1 +# low-low +delitos_data[(mp$x <= 0 & mp$wx <= 0) & (delitos_data$lmp <= 0.05), "quadrant"]<- 2 +# high-low +delitos_data[(mp$x >= 0 & mp$wx <= 0) & (delitos_data$lmp <= 0.05), "quadrant"]<- 3 +# low-high +delitos_data[(mp$x <= 0 & mp$wx >= 0) & (delitos_data$lmp <= 0.05), "quadrant"]<- 4 +# non-significant +delitos_data[(delitos_data$lmp > 0.05), "quadrant"] <- 5 +``` + +**Prompt:** + +Can you help me interpret the results? That is, could we determine if there's any spatial clustering? + +**Diagram interpretation:** + +- Points farther from the center (in the High-Low and Low-High quadrants) represent potential spatial outliers, or areas with values ​​that do not follow the general pattern. + +- There are scattered points in quadrants indicating High-High (top right) and Low-Low (bottom left) Clusters, which are clear indications of positive spatial autocorrelation, consistent with the high Moran's I value. + +- Most of the points are clustered on the left side of the graph, close to 0 on the X-axis and at the bottom of the Y-axis, indicating many areas with moderate or low crime rates and their neighborhoods also with low or moderate rates. + +- The dispersion in the high-high and low-low quadrants indicates the presence of spatial clusters of crime, which may be important for targeting interventions. + +- It's important to note that the Global Moran's Index on which the diagram is based was calculated using KNN=3 as the algorithm for calculating neighbor contiguity. The slope of the trend in that graph, and the classification into quadrants, reflect the degree of spatial autocorrelation, which, in your analysis, is represented by the Moran's I value of 0.1752. + +- **The plot** and **the value (0.1752)** work together to indicate that there is a moderate positive autocorrelation in your data with the neighbor structure defined by k=3. + +In summary: + +``` +Moran I statistic standard deviate = 49.161, p-value < 2.2e-16 +``` + +- **The p-value** is extremely small (much less than 0.05), indicating that **the null hypothesis of spatial independence is rejected.** + +- This means that, **with high confidence**, there is statistical evidence to affirm that **there is positive spatial autocorrelation** in your data. + +- There is significant spatial autocorrelation. + +```{r} +library(sf) +library(spdep) + +# 1. Asegúrate que tus datos espaciales `delitos_data` sean un sf con geometrías de polígonos + +# 2. Crear los centroides (si no lo hiciste) +coo <- st_centroid(delitos_data) + +# 3. Crear la estructura de vecinos K=3 (ajusta k si quieres) +knn_result <- knearneigh(coo, k=3) +nb <- knn2nb(knn_result) + +# 4. Crear matriz de pesos +lw_mat <- nb2mat(nb, style = "W") + +# 5. Variables de interés: `sum_24HP` +datos_var <- delitos_data$sum_24HP + +# 6. Valores estandarizados +datos_std <- as.vector(scale(datos_var)) + +# 7. Valor ponderado (wx) +wx_vals <- as.vector(lw_mat %*% datos_std) + +# 8. Test de Moran para obtener p-valor +moran_test <- moran.test(datos_var, lw) + +p_value <- moran_test$p.value + +# 9. Crear variable 'quadrant' basada en los valores y p-valor +delitos_data$quadrant <- NA + +# Clasificación en cuadrantes según análisis espacial +delitos_data[(datos_std >= 0 & wx_vals >= 0) & (p_value <= 0.05), "quadrant"] <- 1 # High-High +delitos_data[(datos_std <= 0 & wx_vals <= 0) & (p_value <= 0.05), "quadrant"] <- 2 # Low-Low +delitos_data[(datos_std >= 0 & wx_vals <= 0) & (p_value <= 0.05), "quadrant"] <- 3 # High-Low +delitos_data[(datos_std <= 0 & wx_vals >= 0) & (p_value <= 0.05), "quadrant"] <- 4 # Low-High +delitos_data[p_value > 0.05, "quadrant"] <- 5 # No significativa + +# 10. Mapear los resultados con tmap + +library(tmap) + +tm_shape(delitos_data) + + tm_fill( + col = "quadrant", + title = "", + breaks = c(1, 2, 3, 4, 5, 6), + palette = c("red", "blue", "lightpink", "skyblue2", "white"), + labels = c("High-High", "Low-Low", "High-Low", "Low-High", "Non-significant") + ) + + tm_borders(alpha = 0.5) + + tm_layout(frame = FALSE, title = "Clusters") + + tm_legend(outside = TRUE, text.size = 1) + +``` + +![](https://github.com/Alonso666cr/Advanced_Data_Analysis/blob/main/Mapa_de_Valle_del_Cauca.jpg?raw=true){fig-align="center" width="60%"} + +![](https://github.com/Alonso666cr/Advanced_Data_Analysis/blob/main/Mapa_de_Valle_del_Cauca.jpg?raw=true){fig-align="center" width="60%"} + +```{r} +#| echo: true +#| message: false +#| warning: false + +tm_shape(delitos_data) + tm_fill(col = "quadrant", title = "", +breaks = c(1, 2, 3, 4, 5, 6), +palette = c("red", "blue", "lightpink", "skyblue2", "white"), +labels = c("High-High", "Low-Low", "High-Low", + "Low-High", "Non-significant")) + +tm_legend(text.size = 1) + tm_borders(alpha = 0.5) + +tm_layout(frame = FALSE, title = "Clusters") + +tm_layout(legend.outside = TRUE) +``` + +I didn´t know the name for this kind of map. + +**Prompt:** + +What kind of map is this ? + +A choropleth map is a type of thematic map that uses differences in color or fill pattern to show how the values ​​of a variable are distributed across different geographic areas. These areas are typically administrative divisions such as municipalities, counties, or districts. + +In this case R takes "tmap" library to visualize spacial data, specifically to show spacial autocorrelation clusters in "delitos_data" dataset. + +El mapa pinta las zonas en base a su **ubicación geográfica y su clasificación en clústeres espaciales**, considerando sus coordenadas y relaciones con las áreas cercanas, según el análisis de autocorrelación definido. + +Se basa en las coordenadas geográficas de **cada polígono**, porque cada polígono representa una área territorial + +La categorización (el valor en **`"quadrant"`**) indica **en qué clúster o patrón espacial** se encuentra esa área, según el análisis de autocorrelación espacial realizado antes para el diagrama de Morán. + +No es simplemente un mapa de las variables originales (como número de delitos) sino un mapa que muestra **dónde están esos patrones de agrupamiento espacial**. + +```{r} + +# Paso 1: Importar el archivo KML en R -------------------------------------- +library(sf) + +# Ruta del archivo KML +archivo_kml <- "VALLE DEL CAUCA.kml" + +# Leer el KML usando sf +region_sf <- st_read(archivo_kml, quiet = TRUE) + + +# Paso 2: Verificar y transformar la proyección (CRS) ----------------------- +# Revisar CRS del mapa principal +st_crs(delitos_data) + +# Revisar CRS del archivo importado +st_crs(region_sf) + +# Si no coinciden, proyectar uno a la misma referencia del otro +region_sf <- st_transform(region_sf, crs = st_crs(delitos_data)) + + +# Paso 3: Visualizar ambas capas juntos -------------------------------------- +###library(tmap) + +# Mapa combinado +###tm_shape(delitos_data) + + ###tm_fill(col = "quadrant") + # tu mapa de clústeres + ###tm_shape(region_sf) + + ###tm_borders(col = "black", lwd = 2) + +library(ggplot2) + +ggplot() + + geom_sf(data = delitos_data, aes(fill = factor(quadrant)), color = "black") + + geom_sf(data = region_sf, fill = NA, color = "red", lwd = 1) + +``` + +```{r} +library(sf) +library(raster) +library(tmap) +library(magick) + +# Leer el KML +valle_kml <- st_read("VALLE DEL CAUCA.kml") # reemplaza con tu archivo + +# Obtener el bounding box +bbox <- st_bbox(valle_kml) +xmin <- bbox["xmin"] +xmax <- bbox["xmax"] +ymin <- bbox["ymin"] +ymax <- bbox["ymax"] + +# Leer y hacer flip vertical (invertir la imagen en eje y) +img_magick <- image_read("Mapa_de_Valle_del_Cauca.jpg") +img_flip <- image_flip(img_magick) # hace un flip vertical + +# Guardar la imagen invertida en archivo temporal +image_write(img_flip, "Mapa_flip.png") + +# Cargar como raster +img <- raster("Mapa_flip.png") + +# Asignar extensión y CRS +extent(img) <- extent(xmin, xmax, ymin, ymax) +crs(img) <- st_crs(valle_kml)$proj4string + +# Mapear y superponer +tm_shape(st_as_sf(valle_kml)) + + tm_borders() + + tm_shape(img) + + tm_raster(alpha = 0.5) + + +``` + +```{r} +library(sf) +library(raster) +library(tmap) +library(magick) + +# 1. Leer el archivo KML del Valle del Cauca +valle_kml <- st_read("VALLE DEL CAUCA.kml") + +# 2. Obtener el bounding box para extensión +bbox <- st_bbox(valle_kml) +xmin <- bbox["xmin"] +xmax <- bbox["xmax"] +ymin <- bbox["ymin"] +ymax <- bbox["ymax"] + +# 3. Leer y girar la imagen +img_magick <- image_read("Mapa_de_Valle_del_Cauca.jpg") +#img_flip <- image_flip(img_magick) # flip vertical +img_flip <- img_magick # without flip vertical +image_write(img_flip, "Mapa_flip.png") # guardar temporalmente + +# 4. Cargar la imagen como raster +library(raster) +img_raster <- raster("Mapa_flip.png") +extent(img_raster) <- extent(xmin, xmax, ymin, ymax) +crs(img_raster) <- st_crs(valle_kml)$proj4string + +# 5. Convertir raster a objeto 'stars' para tmap +library(stars) +img_stars <- st_as_stars(img_raster) + +# 6. Preparar tus puntos de delitos (si no tienes sf, crea uno) +# Aquí asumo que tienes un data.frame 'delitos' con columnas 'lon' y 'lat' +# Si ya tienes sf, obvia este paso +# delitos_sf <- st_as_sf(delitos, coords = c("lon", "lat"), crs = 4326) + +# Si ya tienes los puntos en sf, reemplaza la línea siguiente por tu variable: +# Aquí creamos un ejemplo ficticio (elimina o ajusta según tu data real) +# delitos_sf <- st_read("tus_puntos_delitos.shp") # si ya tienes un shapefile +# O si tienes coordenadas en df: +# delitos_sf <- st_as_sf(delitos, coords = c("lon", "lat"), crs = 4326) + +# Crear capa sf a partir del data frame con coordenadas +delitos_sf <- st_as_sf(delitos_data, coords = c("lon", "lat"), crs = 4326) + +# ---- IMPORTANTE ---- +# Asegúrate de que 'delitos_sf' esté cargado y tenga CRS compatible con el mapa + +# 7. Mapear todo en tmap +tm_shape(st_as_sf(valle_kml)) + + tm_borders() + + tm_shape(img_stars) + + tm_raster(alpha = 0.5) + + # Agregar los puntos grandes y en negro + tm_shape(delitos_sf) + + tm_bubbles(size = 0.3, col = "black") + # ajusta tamaño aquí + tm_layout(legend.outside = TRUE) + +``` + +# Correspondance Analysis {.unnumbered} + +```{r} +#| eval: false +#| message: false +#| warning: false +#| include: false + +# Paso 1: Crear la matriz de frecuencias de delitos en polígonos +Freq <- delitos_data %>% + st_drop_geometry() %>% + select(contains('24')) + +rownames(Freq) <- c("Zona Norte", "Zona Sur", "Zona Este", "Zona Oeste") +colnames(Freq) <- c("Homicidio", "Robo", "Hurto", "Extorsión") + +print("Matriz de frecuencias:") +print(Freq) + +# Paso 2: Calcular la tabla de frecuencias relativas +total_F <- sum(Freq) +F_rel <- F / total_F + +print("Matriz de frecuencias relativas:") +print(F_rel) + +# Paso 3: Cálculo de los totales por fila y columna +fi <- rowSums(F_rel) # Suma por fila +fj <- colSums(F_rel) # Suma por columna + +D_f <- diag(fi) # Matriz diagonal de totales de fila +D_c <- diag(fj) # Matriz diagonal de totales de columna + +# Paso 4: Construcción de la matriz de correspondencias Z +D_f_sqrt_inv <- diag(1 / sqrt(fi)) # Raíz cuadrada inversa de los totales de fila +D_c_sqrt_inv <- diag(1 / sqrt(fj)) # Raíz cuadrada inversa de los totales de columna + +Z <- D_f_sqrt_inv %*% (F_rel - fi %o% fj) %*% D_c_sqrt_inv + +print("Matriz de correspondencias Z:") +print(Z) + +# Paso 5: Descomposición en Valores Singulares (SVD) +svd_result <- svd(Z) # Descomposición de Z + +U <- svd_result$u # Vectores propios de ZZ' (Filas) +D <- diag(svd_result$d) # Matriz diagonal de valores singulares +V <- svd_result$v # Vectores propios de Z'Z (Columnas) + +print("Matriz U (Vectores propios de ZZ'):") +print(U) + +print("Matriz D (Valores singulares):") +print(D) + +print("Matriz V (Vectores propios de Z'Z):") +print(V) + +# Paso 6: Proyección de filas y columnas en el espacio reducido +dim_reducida <- 2 +C_f <- D_f_sqrt_inv %*% U[, 1:dim_reducida] %*% D[1:dim_reducida, 1:dim_reducida] # Coordenadas filas +C_c <- D_c_sqrt_inv %*% V[, 1:dim_reducida] %*% D[1:dim_reducida, 1:dim_reducida] # Coordenadas columnas + +print("Coordenadas filas en el espacio reducido:") +print(C_f) + +print("Coordenadas columnas en el espacio reducido:") +print(C_c) + +# Librerías +library(MASS) # Para manipulación matricial +library(ca) # Para el análisis de correspondencias + +# Matriz de frecuencias (ejemplo: delitos en polígonos) +F <- matrix(c( + 12, 5, 8, 2, + 7, 3, 10, 1, + 4, 2, 6, 1, + 15, 8, 14, 5 +), nrow = 4, byrow = TRUE) + +rownames(F) <- c("Zona Norte", "Zona Sur", "Zona Este", "Zona Oeste") +colnames(F) <- c("Homicidio", "Robo", "Hurto", "Extorsión") + +# Total de la tabla +n_total <- sum(F) + +# Matriz de frecuencias relativas +F_rel <- F / n_total + +# Totales por fila y columna +f_i <- rowSums(F_rel) +f_j <- colSums(F_rel) + +# Matriz esperada bajo independencia +F_exp <- outer(f_i, f_j) + +# Cálculo de ji-cuadrado +chi2 <- sum((F_rel - F_exp)^2 / F_exp) * n_total +print(paste("Estadístico Ji-cuadrado:", round(chi2, 4))) + +# Distancia ji-cuadrado entre filas +D_c_inv <- diag(1 / f_j) # Inversa de los totales de columnas +dist_ji <- as.matrix((F_rel - F_exp) %*% D_c_inv %*% t(F_rel - F_exp)) +print("Matriz de distancias ji-cuadrado entre filas:") +print(dist_ji) +``` + +Here I found this error: + +![](https://github.com/Alonso666cr/Advanced_Data_Analysis/blob/main/Error_R_Correspondance_Analysis.png?raw=true){width="389"} + +I have no idea about why could I expect running this chunk.\ + +# Imputing and Linking Data + +## Download open spatial data + +```{r} +#| echo: true +#| message: true +#| warning: true + +d <- worldclim_country(country = "Colombia", var = "tmin", + path = tempdir()) +terra::plot(mean(d), plg = list(title = "Min. temperature (C)")) +``` + +**Prompt:** + +**What is WorldClim?** + +WorldClim is a global database that provides historical, current, and future climate data at high spatial resolutions. + +**What type of data does it offer?** + +- Main climate variables: maximum, minimum, and average temperature, precipitation, humidity, among others. + +- Spatial resolution: typically 1 km to 5 km, depending on the dataset. + +- Time periods: historical (e.g., 1970–2000), current climate, and future projections based on climate models. + +**What is it used for?** + +- Biodiversity and ecological studies. + +- Land use planning and environmental management. + +- Habitat modeling, species distribution, climate change vulnerability analysis. + +- Agronomy, agricultural planning, and conservation. + +**How does it work?** + +- The data comes from networks of meteorological stations and satellites. + +- They are processed to create interpolated and raster maps at various resolutions. + +- They are distributed free of charge to researchers and international organizations, generally in raster formats. + +R has specialized libraries such as raster, terra, & dismo to work with WorldClim climate data in raster format. Those variable could be raster files of climate variables (such as temperature, precipitation, humidity, etc.) in different resolutions and periods. + +For my example I decided to change the country for mine. + +## Cropping, masking, and aggregating raster data + +```{r} +#| echo: true +#| message: true +#| warning: true + +# Cropping +sextent <- terra::ext(delitos_data) +d <- terra::crop(d, sextent) +plot(d) +``` + +This topic permits us to crop a raster image covering only certain part regarding specific geographic stablished limits. + +These limits in this case are given regarding crimes found in delitos_data for the area or areas of interest. + +```{r} +#| echo: true +#| message: true +#| warning: true + +# Masking +d <- terra::mask(d, vect(delitos_data)) +plot(d) +``` + +Here we can see raster areas inside of interest geometries. + +Applying masks we can view and work only with the data relevant to a certain area, cutting out the rest. + +```{r} +#| echo: true +#| message: true +#| warning: true + +# Aggregating +d <- terra::aggregate(d, fact = 20, fun = "mean", na.rm = TRUE) +plot(d) +``` + +This terra method groups or "resamples" a raster object (d) into larger blocks, combining several small cells into one, using a summarization operation. + +It allows you to view the new grouped raster, showing the average values ​​at the lower resolution, making it easier to view patterns at a larger scale. + +## Extracting raster values at points + +```{r} +#| echo: true +#| message: true +#| warning: true + +points <- st_coordinates(delitos_data) + +# Convert SpatRaster to data frame for ggplot2 +raster_df <- as.data.frame(d, xy = TRUE) +colnames(raster_df)[3] <- "tmin" # Rename the temperature column + +# Get the centroid coordinates +points_df <- st_coordinates(st_geometry(delitos_data)) +points_df <- as.data.frame(points_df) +colnames(points_df) <- c("x", "y") + +# Create the plots with ggplot2 +ggplot() + + geom_raster(data = raster_df, aes(x = x, y = y, fill = tmin)) + + scale_fill_viridis_c(name = "Min Temp (C)") + + geom_sf(data = delitos_data, color = "black", fill = "transparent") + # Plot the polygon borders + geom_point(data = points_df, aes(x = x, y = y), color = "red", size = 0.01, shape = 1, alpha = 0.5) + # Plot the centroids as transparent circles + labs(title = "Aggregated Minimum Temperature with Polygons and Centroids") + + theme_minimal() +``` + +**Prompt:** + +What is the purpose of extracting raster values ​​into points? + +With extracting raster values we can visualize spatiotemporal data by combining raster and vector (point and polygon) information, with an emphasis on extracting and representing raster values ​​at specific points. + +Display the raster variable (minimum temperature) on the same map as a heat map, superimposed on the polygon boundaries, and also mark the points or centroids of the areas of interest, allowing to identify how values ​​vary in different locations and how they relate to polygonal divisions and points of interest. + +References: + +::: {style="text-align: center; color: red;"} +THE END +::: diff --git a/Advance analytics course/Mapa_de_Valle_del_Cauca.jpg b/Advance analytics course/Mapa_de_Valle_del_Cauca.jpg new file mode 100644 index 0000000..465b4b2 Binary files /dev/null and b/Advance analytics course/Mapa_de_Valle_del_Cauca.jpg differ diff --git a/Advance analytics course/VALLE DEL CAUCA.kml b/Advance analytics course/VALLE DEL CAUCA.kml new file mode 100644 index 0000000..315f0d9 --- /dev/null +++ b/Advance analytics course/VALLE DEL CAUCA.kml @@ -0,0 +1,65462 @@ + + + + VALLE DEL CAUCA + + + VALLE DEL CAUCA + + + ABAJO + + + + + + + + + + + + + + + + + + + + + + + + + +
ABAJO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID0
OID_0
NameABAJO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.650000,0.000000 + +
+ + ACDTO__BUGA + + + + + + + + + + + + + + + + + + + + + + + + + +
ACDTO__BUGA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID1
OID_0
NameACDTO__BUGA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.883333,0.000000 + +
+ + ACDTO__TULUA + + + + + + + + + + + + + + + + + + + + + + + + + +
ACDTO__TULUA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID2
OID_0
NameACDTO__TULUA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.066667,0.000000 + +
+ + AGRADO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
AGRADO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID3
OID_0
NameAGRADO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.250000,0.000000 + +
+ + AGRICOLA__GJA + + + + + + + + + + + + + + + + + + + + + + + + + +
AGRICOLA__GJA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID4
OID_0
NameAGRICOLA__GJA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,4.083333,0.000000 + +
+ + AGUABLANCA + + + + + + + + + + + + + + + + + + + + + + + + + +
AGUABLANCA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID5
OID_0
NameAGUABLANCA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.416667,0.000000 + +
+ + AGUACATAL + + + + + + + + + + + + + + + + + + + + + + + + + +
AGUACATAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID6
OID_0
NameAGUACATAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.483333,0.000000 + +
+ + AGUACATE__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
AGUACATE__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID7
OID_0
NameAGUACATE__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.400000,0.000000 + +
+ + AGUACLARA + + + + + + + + + + + + + + + + + + + + + + + + + +
AGUACLARA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID8
OID_0
NameAGUACLARA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,3.500000,0.000000 + +
+ + AGUACLARA + + + + + + + + + + + + + + + + + + + + + + + + + +
AGUACLARA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID9
OID_0
NameAGUACLARA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.950000,3.666667,0.000000 + +
+ + AGUACLARA + + + + + + + + + + + + + + + + + + + + + + + + + +
AGUACLARA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID10
OID_0
NameAGUACLARA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.539944,3.678083,0.000000 + +
+ + ALAMBRADO_EL-ALERT + + + + + + + + + + + + + + + + + + + + + + + + + +
ALAMBRADO_EL-ALERT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID11
OID_0
NameALAMBRADO_EL-ALERT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.875361,4.410222,0.000000 + +
+ + ALBANIA + + + + + + + + + + + + + + + + + + + + + + + + + +
ALBANIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID12
OID_0
NameALBANIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.533333,0.000000 + +
+ + ALCALA + + + + + + + + + + + + + + + + + + + + + + + + + +
ALCALA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID13
OID_0
NameALCALA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.783333,4.683333,0.000000 + +
+ + ALCALA + + + + + + + + + + + + + + + + + + + + + + + + + +
ALCALA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID14
OID_0
NameALCALA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.786389,4.676250,0.000000 + +
+ + ALCAZAR__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
ALCAZAR__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID15
OID_0
NameALCAZAR__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.038056,4.306889,0.000000 + +
+ + ALEGRIAS + + + + + + + + + + + + + + + + + + + + + + + + + +
ALEGRIAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID16
OID_0
NameALEGRIAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.866667,4.083333,0.000000 + +
+ + ALISAL + + + + + + + + + + + + + + + + + + + + + + + + + +
ALISAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID17
OID_0
NameALISAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.633333,0.000000 + +
+ + ALPES__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
ALPES__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID18
OID_0
NameALPES__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.266667,0.000000 + +
+ + ALTAMISA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ALTAMISA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID19
OID_0
NameALTAMISA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.016667,4.533333,0.000000 + +
+ + ALTO__IGLESIAS + + + + + + + + + + + + + + + + + + + + + + + + + +
ALTO__IGLESIAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID20
OID_0
NameALTO__IGLESIAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.366667,0.000000 + +
+ + ALTO_ANCHICAYA + + + + + + + + + + + + + + + + + + + + + + + + + +
ALTO_ANCHICAYA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID21
OID_0
NameALTO_ANCHICAYA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.866667,3.533333,0.000000 + +
+ + ALTOBELLO + + + + + + + + + + + + + + + + + + + + + + + + + +
ALTOBELLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID22
OID_0
NameALTOBELLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.566667,0.000000 + +
+ + ALVAREZ__SALAS + + + + + + + + + + + + + + + + + + + + + + + + + +
ALVAREZ__SALAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID23
OID_0
NameALVAREZ__SALAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.950000,4.266667,0.000000 + +
+ + AMBERES + + + + + + + + + + + + + + + + + + + + + + + + + +
AMBERES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID24
OID_0
NameAMBERES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,3.516667,0.000000 + +
+ + AMERICA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
AMERICA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID25
OID_0
NameAMERICA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.400000,0.000000 + +
+ + ANACARO + + + + + + + + + + + + + + + + + + + + + + + + + +
ANACARO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID26
OID_0
NameANACARO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,4.783333,0.000000 + +
+ + ANDES__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
ANDES__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID27
OID_0
NameANDES__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,3.266667,0.000000 + +
+ + ANGOSTURAS + + + + + + + + + + + + + + + + + + + + + + + + + +
ANGOSTURAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID28
OID_0
NameANGOSTURAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.983333,0.000000 + +
+ + ANTENA + + + + + + + + + + + + + + + + + + + + + + + + + +
ANTENA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID29
OID_0
NameANTENA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,3.333333,0.000000 + +
+ + APTO__A_BONILLA_AUT + + + + + + + + + + + + + + + + + + + + + + + + + +
APTO__A_BONILLA_AUT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID30
OID_0
NameAPTO__A_BONILLA_AUT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.405833,3.533333,0.000000 + +
+ + APTO__FARFAN + + + + + + + + + + + + + + + + + + + + + + + + + +
APTO__FARFAN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID31
OID_0
NameAPTO__FARFAN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.223111,4.090389,0.000000 + +
+ + APTO_BUENAVENTURA + + + + + + + + + + + + + + + + + + + + + + + + + +
APTO_BUENAVENTURA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID32
OID_0
NameAPTO_BUENAVENTURA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.992333,3.820194,0.000000 + +
+ + ARABIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ARABIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID33
OID_0
NameARABIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.616667,0.000000 + +
+ + ARADO + + + + + + + + + + + + + + + + + + + + + + + + + +
ARADO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID34
OID_0
NameARADO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.400000,0.000000 + +
+ + ARAUCA + + + + + + + + + + + + + + + + + + + + + + + + + +
ARAUCA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID35
OID_0
NameARAUCA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.633333,0.000000 + +
+ + ARBOLEDA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ARBOLEDA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID36
OID_0
NameARBOLEDA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.093611,4.531611,0.000000 + +
+ + ARBORITO + + + + + + + + + + + + + + + + + + + + + + + + + +
ARBORITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID37
OID_0
NameARBORITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.716667,0.000000 + +
+ + ARGELIA + + + + + + + + + + + + + + + + + + + + + + + + + +
ARGELIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID38
OID_0
NameARGELIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,3.616667,0.000000 + +
+ + ARGELIA__EL_RECREO + + + + + + + + + + + + + + + + + + + + + + + + + +
ARGELIA__EL_RECREO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID39
OID_0
NameARGELIA__EL_RECREO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.733333,0.000000 + +
+ + ARGENTINA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ARGENTINA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID40
OID_0
NameARGENTINA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.333333,0.000000 + +
+ + ARREBOLES + + + + + + + + + + + + + + + + + + + + + + + + + +
ARREBOLES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID41
OID_0
NameARREBOLES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,3.433333,0.000000 + +
+ + AUJI + + + + + + + + + + + + + + + + + + + + + + + + + +
AUJI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID42
OID_0
NameAUJI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,3.633333,0.000000 + +
+ + AUSTRIA + + + + + + + + + + + + + + + + + + + + + + + + + +
AUSTRIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID43
OID_0
NameAUSTRIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,3.583333,0.000000 + +
+ + BAHIA__MALAGA + + + + + + + + + + + + + + + + + + + + + + + + + +
BAHIA__MALAGA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID44
OID_0
NameBAHIA__MALAGA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.316667,4.050000,0.000000 + +
+ + BAJO__CALIMA + + + + + + + + + + + + + + + + + + + + + + + + + +
BAJO__CALIMA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID45
OID_0
NameBAJO__CALIMA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.990250,3.953611,0.000000 + +
+ + BALCILLAS + + + + + + + + + + + + + + + + + + + + + + + + + +
BALCILLAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID46
OID_0
NameBALCILLAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.483333,0.000000 + +
+ + BALSAL__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
BALSAL__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID47
OID_0
NameBALSAL__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,4.666667,0.000000 + +
+ + BANCOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
BANCOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID48
OID_0
NameBANCOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,3.950000,0.000000 + +
+ + BARRAGAN + + + + + + + + + + + + + + + + + + + + + + + + + +
BARRAGAN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID49
OID_0
NameBARRAGAN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,4.083333,0.000000 + +
+ + BARRAGAN + + + + + + + + + + + + + + + + + + + + + + + + + +
BARRAGAN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID50
OID_0
NameBARRAGAN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.888056,4.033333,0.000000 + +
+ + BELGICA__ESTE + + + + + + + + + + + + + + + + + + + + + + + + + +
BELGICA__ESTE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID51
OID_0
NameBELGICA__ESTE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.283333,0.000000 + +
+ + BELGICA__OESTE + + + + + + + + + + + + + + + + + + + + + + + + + +
BELGICA__OESTE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID52
OID_0
NameBELGICA__OESTE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.300000,0.000000 + +
+ + BELLAVISTA + + + + + + + + + + + + + + + + + + + + + + + + + +
BELLAVISTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID53
OID_0
NameBELLAVISTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.000000,3.633333,0.000000 + +
+ + BELLAVISTA + + + + + + + + + + + + + + + + + + + + + + + + + +
BELLAVISTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID54
OID_0
NameBELLAVISTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.800000,0.000000 + +
+ + BELLITA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
BELLITA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID55
OID_0
NameBELLITA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,4.733333,0.000000 + +
+ + BENDICIONES + + + + + + + + + + + + + + + + + + + + + + + + + +
BENDICIONES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID56
OID_0
NameBENDICIONES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.800000,3.950000,0.000000 + +
+ + BERLIN + + + + + + + + + + + + + + + + + + + + + + + + + +
BERLIN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID57
OID_0
NameBERLIN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.916667,0.000000 + +
+ + BERRIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
BERRIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID58
OID_0
NameBERRIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.850000,4.683333,0.000000 + +
+ + BETANIA + + + + + + + + + + + + + + + + + + + + + + + + + +
BETANIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID59
OID_0
NameBETANIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,4.350000,0.000000 + +
+ + BETULIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
BETULIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID60
OID_0
NameBETULIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,3.533333,0.000000 + +
+ + BITACO + + + + + + + + + + + + + + + + + + + + + + + + + +
BITACO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID61
OID_0
NameBITACO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.500000,0.000000 + +
+ + BITACO + + + + + + + + + + + + + + + + + + + + + + + + + +
BITACO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID62
OID_0
NameBITACO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.616667,0.000000 + +
+ + BOCATOMA-CANAL + + + + + + + + + + + + + + + + + + + + + + + + + +
BOCATOMA-CANAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID63
OID_0
NameBOCATOMA-CANAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.166667,0.000000 + +
+ + BOCATOMA + + + + + + + + + + + + + + + + + + + + + + + + + +
BOCATOMA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID64
OID_0
NameBOCATOMA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.450000,0.000000 + +
+ + BOHIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
BOHIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID65
OID_0
NameBOHIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.100000,0.000000 + +
+ + BOLIVAR + + + + + + + + + + + + + + + + + + + + + + + + + +
BOLIVAR
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID66
OID_0
NameBOLIVAR
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.190472,4.342944,0.000000 + +
+ + BOLO__BLANCO + + + + + + + + + + + + + + + + + + + + + + + + + +
BOLO__BLANCO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID67
OID_0
NameBOLO__BLANCO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,3.433333,0.000000 + +
+ + BOLSA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
BOLSA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID68
OID_0
NameBOLSA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.200000,0.000000 + +
+ + BOSQUE__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
BOSQUE__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID69
OID_0
NameBOSQUE__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.683333,0.000000 + +
+ + BOSTON + + + + + + + + + + + + + + + + + + + + + + + + + +
BOSTON
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID70
OID_0
NameBOSTON
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.383333,0.000000 + +
+ + BRITANIA_PRODEZA + + + + + + + + + + + + + + + + + + + + + + + + + +
BRITANIA_PRODEZA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID71
OID_0
NameBRITANIA_PRODEZA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.450000,3.533333,0.000000 + +
+ + BUCHITOLO + + + + + + + + + + + + + + + + + + + + + + + + + +
BUCHITOLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID72
OID_0
NameBUCHITOLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.366667,0.000000 + +
+ + BUCHITOLO + + + + + + + + + + + + + + + + + + + + + + + + + +
BUCHITOLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID73
OID_0
NameBUCHITOLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.350000,0.000000 + +
+ + BUCHITOLO + + + + + + + + + + + + + + + + + + + + + + + + + +
BUCHITOLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID74
OID_0
NameBUCHITOLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.349139,3.374694,0.000000 + +
+ + BUENAVISTA + + + + + + + + + + + + + + + + + + + + + + + + + +
BUENAVISTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID75
OID_0
NameBUENAVISTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.683333,0.000000 + +
+ + BUENAVISTA + + + + + + + + + + + + + + + + + + + + + + + + + +
BUENAVISTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID76
OID_0
NameBUENAVISTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.933333,3.883333,0.000000 + +
+ + BUENOS__AIRES + + + + + + + + + + + + + + + + + + + + + + + + + +
BUENOS__AIRES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID77
OID_0
NameBUENOS__AIRES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,3.866667,0.000000 + +
+ + BUGA-IFA + + + + + + + + + + + + + + + + + + + + + + + + + +
BUGA-IFA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID78
OID_0
NameBUGA-IFA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.883333,0.000000 + +
+ + BUGALAGRANDE + + + + + + + + + + + + + + + + + + + + + + + + + +
BUGALAGRANDE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID79
OID_0
NameBUGALAGRANDE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.150000,0.000000 + +
+ + BUITRERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
BUITRERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID80
OID_0
NameBUITRERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.466667,0.000000 + +
+ + CA#AVERALEJO + + + + + + + + + + + + + + + + + + + + + + + + + +
CA#AVERALEJO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID81
OID_0
NameCA#AVERALEJO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.416667,0.000000 + +
+ + CA#O__CARLINA + + + + + + + + + + + + + + + + + + + + + + + + + +
CA#O__CARLINA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID82
OID_0
NameCA#O__CARLINA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.883333,0.000000 + +
+ + CABANA + + + + + + + + + + + + + + + + + + + + + + + + + +
CABANA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID83
OID_0
NameCABANA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.083333,0.000000 + +
+ + CABUYAL + + + + + + + + + + + + + + + + + + + + + + + + + +
CABUYAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID84
OID_0
NameCABUYAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.345972,3.320444,0.000000 + +
+ + CABUYAL + + + + + + + + + + + + + + + + + + + + + + + + + +
CABUYAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID85
OID_0
NameCABUYAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.316667,0.000000 + +
+ + CAICEDONIA + + + + + + + + + + + + + + + + + + + + + + + + + +
CAICEDONIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID86
OID_0
NameCAICEDONIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.833333,4.316667,0.000000 + +
+ + CAJONES + + + + + + + + + + + + + + + + + + + + + + + + + +
CAJONES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID87
OID_0
NameCAJONES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.140806,3.226417,0.000000 + +
+ + CALABAZAS + + + + + + + + + + + + + + + + + + + + + + + + + +
CALABAZAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID88
OID_0
NameCALABAZAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,4.083333,0.000000 + +
+ + CALI__SEDE_IDEAM + + + + + + + + + + + + + + + + + + + + + + + + + +
CALI__SEDE_IDEAM
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID89
OID_0
NameCALI__SEDE_IDEAM
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.522944,3.476139,0.000000 + +
+ + CALIMA + + + + + + + + + + + + + + + + + + + + + + + + + +
CALIMA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID90
OID_0
NameCALIMA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.716667,3.866667,0.000000 + +
+ + CALIMA_MADRONAL + + + + + + + + + + + + + + + + + + + + + + + + + +
CALIMA_MADRONAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID91
OID_0
NameCALIMA_MADRONAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.883333,0.000000 + +
+ + CALIPUERTO + + + + + + + + + + + + + + + + + + + + + + + + + +
CALIPUERTO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID92
OID_0
NameCALIPUERTO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.400000,3.433333,0.000000 + +
+ + CALLE__QUINTA + + + + + + + + + + + + + + + + + + + + + + + + + +
CALLE__QUINTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID93
OID_0
NameCALLE__QUINTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.366667,0.000000 + +
+ + CAMELIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CAMELIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID94
OID_0
NameCAMELIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.848611,4.331556,0.000000 + +
+ + CAMP__SEVILLA + + + + + + + + + + + + + + + + + + + + + + + + + +
CAMP__SEVILLA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID95
OID_0
NameCAMP__SEVILLA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.933333,4.283333,0.000000 + +
+ + CAMPANELLA + + + + + + + + + + + + + + + + + + + + + + + + + +
CAMPANELLA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID96
OID_0
NameCAMPANELLA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.550000,0.000000 + +
+ + CAMPOALEGRE + + + + + + + + + + + + + + + + + + + + + + + + + +
CAMPOALEGRE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID97
OID_0
NameCAMPOALEGRE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,4.183333,0.000000 + +
+ + CAMPOALEGRE + + + + + + + + + + + + + + + + + + + + + + + + + +
CAMPOALEGRE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID98
OID_0
NameCAMPOALEGRE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.883333,0.000000 + +
+ + CANADA + + + + + + + + + + + + + + + + + + + + + + + + + +
CANADA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID99
OID_0
NameCANADA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.283333,0.000000 + +
+ + CANADA + + + + + + + + + + + + + + + + + + + + + + + + + +
CANADA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID100
OID_0
NameCANADA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.950000,4.800000,0.000000 + +
+ + CANDELARIA + + + + + + + + + + + + + + + + + + + + + + + + + +
CANDELARIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID101
OID_0
NameCANDELARIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.079889,4.480917,0.000000 + +
+ + CANDELARIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CANDELARIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID102
OID_0
NameCANDELARIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.500000,0.000000 + +
+ + CANEY__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
CANEY__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID103
OID_0
NameCANEY__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.400000,3.933333,0.000000 + +
+ + CARACOLI + + + + + + + + + + + + + + + + + + + + + + + + + +
CARACOLI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID104
OID_0
NameCARACOLI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.550000,0.000000 + +
+ + CARBONERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CARBONERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID105
OID_0
NameCARBONERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.566667,0.000000 + +
+ + CARMELITA + + + + + + + + + + + + + + + + + + + + + + + + + +
CARMELITA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID106
OID_0
NameCARMELITA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.500000,0.000000 + +
+ + CARRILERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CARRILERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID107
OID_0
NameCARRILERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.183333,0.000000 + +
+ + CARTAGO + + + + + + + + + + + + + + + + + + + + + + + + + +
CARTAGO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID108
OID_0
NameCARTAGO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.899389,4.757556,0.000000 + +
+ + CASABLANCA + + + + + + + + + + + + + + + + + + + + + + + + + +
CASABLANCA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID109
OID_0
NameCASABLANCA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.416667,0.000000 + +
+ + CASCAJAL + + + + + + + + + + + + + + + + + + + + + + + + + +
CASCAJAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID110
OID_0
NameCASCAJAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.516667,0.000000 + +
+ + CASTILLO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
CASTILLO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID111
OID_0
NameCASTILLO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.283333,0.000000 + +
+ + CASTILLO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
CASTILLO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID112
OID_0
NameCASTILLO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.666667,0.000000 + +
+ + CATARINA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CATARINA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID113
OID_0
NameCATARINA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,4.816667,0.000000 + +
+ + CAYETANA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CAYETANA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID114
OID_0
NameCAYETANA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,4.566667,0.000000 + +
+ + CEIBA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CEIBA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID115
OID_0
NameCEIBA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.400000,0.000000 + +
+ + CEIBITOS + + + + + + + + + + + + + + + + + + + + + + + + + +
CEIBITOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID116
OID_0
NameCEIBITOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.092222,4.069556,0.000000 + +
+ + CEIBOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
CEIBOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID117
OID_0
NameCEIBOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.816667,0.000000 + +
+ + CEIBOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
CEIBOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID118
OID_0
NameCEIBOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,3.600000,0.000000 + +
+ + CEILAN + + + + + + + + + + + + + + + + + + + + + + + + + +
CEILAN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID119
OID_0
NameCEILAN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.042500,4.114306,0.000000 + +
+ + CEJA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CEJA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID120
OID_0
NameCEJA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.016667,3.716667,0.000000 + +
+ + CENICANA + + + + + + + + + + + + + + + + + + + + + + + + + +
CENICANA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID121
OID_0
NameCENICANA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.299417,3.360722,0.000000 + +
+ + CENT__ADMO_LA_UNION + + + + + + + + + + + + + + + + + + + + + + + + + +
CENT__ADMO_LA_UNION
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID122
OID_0
NameCENT__ADMO_LA_UNION
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.062167,4.531278,0.000000 + +
+ + CEROS + + + + + + + + + + + + + + + + + + + + + + + + + +
CEROS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID123
OID_0
NameCEROS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.043889,4.616667,0.000000 + +
+ + CHAMBU + + + + + + + + + + + + + + + + + + + + + + + + + +
CHAMBU
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID124
OID_0
NameCHAMBU
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.483333,0.000000 + +
+ + CHORROS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
CHORROS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID125
OID_0
NameCHORROS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.416667,3.900000,0.000000 + +
+ + CHUNE + + + + + + + + + + + + + + + + + + + + + + + + + +
CHUNE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID126
OID_0
NameCHUNE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.416667,0.000000 + +
+ + CISNEROS + + + + + + + + + + + + + + + + + + + + + + + + + +
CISNEROS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID127
OID_0
NameCISNEROS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.761833,3.797222,0.000000 + +
+ + CLUB_CAMPESTRE + + + + + + + + + + + + + + + + + + + + + + + + + +
CLUB_CAMPESTRE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID128
OID_0
NameCLUB_CAMPESTRE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.533333,3.383333,0.000000 + +
+ + COL__S_JOSE_DE_MONT + + + + + + + + + + + + + + + + + + + + + + + + + +
COL__S_JOSE_DE_MONT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID129
OID_0
NameCOL__S_JOSE_DE_MONT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.633333,0.000000 + +
+ + COLEGIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
COLEGIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID130
OID_0
NameCOLEGIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.466667,0.000000 + +
+ + COLON + + + + + + + + + + + + + + + + + + + + + + + + + +
COLON
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID131
OID_0
NameCOLON
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.366667,0.000000 + +
+ + COLONIAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
COLONIAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID132
OID_0
NameCOLONIAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.100000,4.076389,0.000000 + +
+ + COLPUERTOS + + + + + + + + + + + + + + + + + + + + + + + + + +
COLPUERTOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID133
OID_0
NameCOLPUERTOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.066667,3.883333,0.000000 + +
+ + COLTABACO + + + + + + + + + + + + + + + + + + + + + + + + + +
COLTABACO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID134
OID_0
NameCOLTABACO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.516667,3.450000,0.000000 + +
+ + COMFAMILIAR + + + + + + + + + + + + + + + + + + + + + + + + + +
COMFAMILIAR
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID135
OID_0
NameCOMFAMILIAR
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.300000,0.000000 + +
+ + CONCHA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CONCHA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID136
OID_0
NameCONCHA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.157222,3.173611,0.000000 + +
+ + COREA + + + + + + + + + + + + + + + + + + + + + + + + + +
COREA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID137
OID_0
NameCOREA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.366667,0.000000 + +
+ + COROZAL + + + + + + + + + + + + + + + + + + + + + + + + + +
COROZAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID138
OID_0
NameCOROZAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.383333,0.000000 + +
+ + COROZAL + + + + + + + + + + + + + + + + + + + + + + + + + +
COROZAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID139
OID_0
NameCOROZAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.915417,4.402778,0.000000 + +
+ + COSTA__RICA + + + + + + + + + + + + + + + + + + + + + + + + + +
COSTA__RICA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID140
OID_0
NameCOSTA__RICA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.716667,0.000000 + +
+ + CRISTALES__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
CRISTALES__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID141
OID_0
NameCRISTALES__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.433333,0.000000 + +
+ + CRISTALINA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CRISTALINA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID142
OID_0
NameCRISTALINA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,4.033333,0.000000 + +
+ + CRUCES + + + + + + + + + + + + + + + + + + + + + + + + + +
CRUCES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID143
OID_0
NameCRUCES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.916667,4.666667,0.000000 + +
+ + CUERVOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
CUERVOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID144
OID_0
NameCUERVOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,3.500000,0.000000 + +
+ + CUMBARCO + + + + + + + + + + + + + + + + + + + + + + + + + +
CUMBARCO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID145
OID_0
NameCUMBARCO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.832361,4.200278,0.000000 + +
+ + CUMBRE__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CUMBRE__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID146
OID_0
NameCUMBRE__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566389,3.647861,0.000000 + +
+ + CUMBRE__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
CUMBRE__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID147
OID_0
NameCUMBRE__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.633333,0.000000 + +
+ + CUSUMBO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
CUSUMBO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID148
OID_0
NameCUSUMBO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.916667,0.000000 + +
+ + DAGUA + + + + + + + + + + + + + + + + + + + + + + + + + +
DAGUA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID149
OID_0
NameDAGUA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.683333,3.666667,0.000000 + +
+ + DAGUA__FF_CC_NN + + + + + + + + + + + + + + + + + + + + + + + + + +
DAGUA__FF_CC_NN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID150
OID_0
NameDAGUA__FF_CC_NN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.700000,3.633333,0.000000 + +
+ + DANUBIO + + + + + + + + + + + + + + + + + + + + + + + + + +
DANUBIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID151
OID_0
NameDANUBIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.866667,3.650000,0.000000 + +
+ + DESCANSO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
DESCANSO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID152
OID_0
NameDESCANSO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.400000,0.000000 + +
+ + DESPENSA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
DESPENSA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID153
OID_0
NameDESPENSA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.516667,0.000000 + +
+ + DIANA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
DIANA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID154
OID_0
NameDIANA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,3.316667,0.000000 + +
+ + DIGUA + + + + + + + + + + + + + + + + + + + + + + + + + +
DIGUA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID155
OID_0
NameDIGUA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.783333,3.516667,0.000000 + +
+ + DILUVIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
DILUVIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID156
OID_0
NameDILUVIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.883333,0.000000 + +
+ + DOSQUEBRADAS + + + + + + + + + + + + + + + + + + + + + + + + + +
DOSQUEBRADAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID157
OID_0
NameDOSQUEBRADAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,3.916667,0.000000 + +
+ + DOVIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
DOVIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID158
OID_0
NameDOVIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.416667,4.416667,0.000000 + +
+ + DRAGAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
DRAGAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID159
OID_0
NameDRAGAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.833333,3.733333,0.000000 + +
+ + DREN__PPAL_K0+00 + + + + + + + + + + + + + + + + + + + + + + + + + +
DREN__PPAL_K0+00
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID160
OID_0
NameDREN__PPAL_K0+00
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.616667,0.000000 + +
+ + EDIFICIO__CVC + + + + + + + + + + + + + + + + + + + + + + + + + +
EDIFICIO__CVC
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID161
OID_0
NameEDIFICIO__CVC
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.400000,0.000000 + +
+ + ELVIRA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ELVIRA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID162
OID_0
NameELVIRA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,4.400000,0.000000 + +
+ + ENGA#O__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
ENGA#O__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID163
OID_0
NameENGA#O__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.783333,3.583333,0.000000 + +
+ + ESCALERETE + + + + + + + + + + + + + + + + + + + + + + + + + +
ESCALERETE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID164
OID_0
NameESCALERETE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.866667,3.816667,0.000000 + +
+ + ESMERALDA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ESMERALDA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID165
OID_0
NameESMERALDA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.733333,3.166667,0.000000 + +
+ + ESPEJO__EL_HDA + + + + + + + + + + + + + + + + + + + + + + + + + +
ESPEJO__EL_HDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID166
OID_0
NameESPEJO__EL_HDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.400000,3.300000,0.000000 + +
+ + ESPERANZA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ESPERANZA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID167
OID_0
NameESPERANZA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.400000,0.000000 + +
+ + ESPERANZA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ESPERANZA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID168
OID_0
NameESPERANZA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.966667,0.000000 + +
+ + ESPERANZA_PRADERA + + + + + + + + + + + + + + + + + + + + + + + + + +
ESPERANZA_PRADERA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID169
OID_0
NameESPERANZA_PRADERA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.252778,3.459806,0.000000 + +
+ + ESTANCIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ESTANCIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID170
OID_0
NameESTANCIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.516667,0.000000 + +
+ + FARALLONES_AUTOMAT + + + + + + + + + + + + + + + + + + + + + + + + + +
FARALLONES_AUTOMAT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID171
OID_0
NameFARALLONES_AUTOMAT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.665556,3.416028,0.000000 + +
+ + FERROCARRIL + + + + + + + + + + + + + + + + + + + + + + + + + +
FERROCARRIL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID172
OID_0
NameFERROCARRIL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.900000,0.000000 + +
+ + FERROCARRIL + + + + + + + + + + + + + + + + + + + + + + + + + +
FERROCARRIL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID173
OID_0
NameFERROCARRIL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.683333,0.000000 + +
+ + FERROCARRIL + + + + + + + + + + + + + + + + + + + + + + + + + +
FERROCARRIL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID174
OID_0
NameFERROCARRIL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.400000,0.000000 + +
+ + FF_CC_DEL_PACIFICO + + + + + + + + + + + + + + + + + + + + + + + + + +
FF_CC_DEL_PACIFICO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID175
OID_0
NameFF_CC_DEL_PACIFICO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.716667,3.800000,0.000000 + +
+ + FLORA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID176
OID_0
NameFLORA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.100000,0.000000 + +
+ + FLORENCIA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORENCIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID177
OID_0
NameFLORENCIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.566667,0.000000 + +
+ + FLORENCIA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORENCIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID178
OID_0
NameFLORENCIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.583333,0.000000 + +
+ + FLORESTA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORESTA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID179
OID_0
NameFLORESTA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.233333,0.000000 + +
+ + FLORESTA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORESTA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID180
OID_0
NameFLORESTA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.250000,0.000000 + +
+ + FLORESTA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORESTA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID181
OID_0
NameFLORESTA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.850000,3.583333,0.000000 + +
+ + FLORIDA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORIDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID182
OID_0
NameFLORIDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.238611,3.328028,0.000000 + +
+ + FLORIDA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
FLORIDA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID183
OID_0
NameFLORIDA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,4.350000,0.000000 + +
+ + FRAZADAS + + + + + + + + + + + + + + + + + + + + + + + + + +
FRAZADAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID184
OID_0
NameFRAZADAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.016667,4.066667,0.000000 + +
+ + GALICIA + + + + + + + + + + + + + + + + + + + + + + + + + +
GALICIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID185
OID_0
NameGALICIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.056444,4.171889,0.000000 + +
+ + GARZONERO + + + + + + + + + + + + + + + + + + + + + + + + + +
GARZONERO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID186
OID_0
NameGARZONERO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,4.000000,0.000000 + +
+ + GARZONERO + + + + + + + + + + + + + + + + + + + + + + + + + +
GARZONERO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID187
OID_0
NameGARZONERO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,4.016667,0.000000 + +
+ + GARZONERO_NORTE + + + + + + + + + + + + + + + + + + + + + + + + + +
GARZONERO_NORTE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID188
OID_0
NameGARZONERO_NORTE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,4.016667,0.000000 + +
+ + GAVIONES__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
GAVIONES__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID189
OID_0
NameGAVIONES__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.983333,0.000000 + +
+ + GERTRUDIS + + + + + + + + + + + + + + + + + + + + + + + + + +
GERTRUDIS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID190
OID_0
NameGERTRUDIS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.583333,0.000000 + +
+ + GERTRUDIS + + + + + + + + + + + + + + + + + + + + + + + + + +
GERTRUDIS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID191
OID_0
NameGERTRUDIS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,4.250000,0.000000 + +
+ + GITANA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
GITANA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID192
OID_0
NameGITANA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.950000,3.983333,0.000000 + +
+ + GJA_EXP_HOESCHST + + + + + + + + + + + + + + + + + + + + + + + + + +
GJA_EXP_HOESCHST
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID193
OID_0
NameGJA_EXP_HOESCHST
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,3.633333,0.000000 + +
+ + GRANARIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
GRANARIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID194
OID_0
NameGRANARIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.883333,0.000000 + +
+ + GRANO__DE_ORO + + + + + + + + + + + + + + + + + + + + + + + + + +
GRANO__DE_ORO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID195
OID_0
NameGRANO__DE_ORO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.466667,0.000000 + +
+ + GUACA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
GUACA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID196
OID_0
NameGUACA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.400000,0.000000 + +
+ + GUACARI + + + + + + + + + + + + + + + + + + + + + + + + + +
GUACARI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID197
OID_0
NameGUACARI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.331972,3.770139,0.000000 + +
+ + GUACHAZAMBOLO + + + + + + + + + + + + + + + + + + + + + + + + + +
GUACHAZAMBOLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID198
OID_0
NameGUACHAZAMBOLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,3.500000,0.000000 + +
+ + GUACIRUMA + + + + + + + + + + + + + + + + + + + + + + + + + +
GUACIRUMA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID199
OID_0
NameGUACIRUMA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.933333,0.000000 + +
+ + GUADUALITO + + + + + + + + + + + + + + + + + + + + + + + + + +
GUADUALITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID200
OID_0
NameGUADUALITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.400000,3.633333,0.000000 + +
+ + GUADUALITO + + + + + + + + + + + + + + + + + + + + + + + + + +
GUADUALITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID201
OID_0
NameGUADUALITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.866667,3.600000,0.000000 + +
+ + GUANABANO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
GUANABANO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID202
OID_0
NameGUANABANO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.333333,0.000000 + +
+ + HERACLIO__URIBE + + + + + + + + + + + + + + + + + + + + + + + + + +
HERACLIO__URIBE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID203
OID_0
NameHERACLIO__URIBE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.916667,4.266667,0.000000 + +
+ + HERRADURA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
HERRADURA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID204
OID_0
NameHERRADURA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.316667,0.000000 + +
+ + HIDROELECTRICA + + + + + + + + + + + + + + + + + + + + + + + + + +
HIDROELECTRICA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID205
OID_0
NameHIDROELECTRICA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.883333,4.316667,0.000000 + +
+ + HONDA + + + + + + + + + + + + + + + + + + + + + + + + + +
HONDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID206
OID_0
NameHONDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.433333,0.000000 + +
+ + HONDA + + + + + + + + + + + + + + + + + + + + + + + + + +
HONDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID207
OID_0
NameHONDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.450000,0.000000 + +
+ + HONDA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
HONDA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID208
OID_0
NameHONDA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.466667,0.000000 + +
+ + HORMIGUERO + + + + + + + + + + + + + + + + + + + + + + + + + +
HORMIGUERO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID209
OID_0
NameHORMIGUERO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.300000,0.000000 + +
+ + ICA-BALBOA + + + + + + + + + + + + + + + + + + + + + + + + + +
ICA-BALBOA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID210
OID_0
NameICA-BALBOA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.933333,0.000000 + +
+ + ING_LA_QUINTA + + + + + + + + + + + + + + + + + + + + + + + + + +
ING_LA_QUINTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID211
OID_0
NameING_LA_QUINTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.416667,0.000000 + +
+ + ING_LA_SIBERIA + + + + + + + + + + + + + + + + + + + + + + + + + +
ING_LA_SIBERIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID212
OID_0
NameING_LA_SIBERIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.750000,0.000000 + +
+ + ING_MANUELITA + + + + + + + + + + + + + + + + + + + + + + + + + +
ING_MANUELITA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID213
OID_0
NameING_MANUELITA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.616667,0.000000 + +
+ + ING_MANUELITA_PORV + + + + + + + + + + + + + + + + + + + + + + + + + +
ING_MANUELITA_PORV
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID214
OID_0
NameING_MANUELITA_PORV
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.277833,3.573972,0.000000 + +
+ + ING_PICHICHI + + + + + + + + + + + + + + + + + + + + + + + + + +
ING_PICHICHI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID215
OID_0
NameING_PICHICHI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.766667,0.000000 + +
+ + ING_RIOPAILA + + + + + + + + + + + + + + + + + + + + + + + + + +
ING_RIOPAILA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID216
OID_0
NameING_RIOPAILA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.082417,4.332222,0.000000 + +
+ + INMACULADA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
INMACULADA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID217
OID_0
NameINMACULADA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.986500,4.793833,0.000000 + +
+ + IRLANDA + + + + + + + + + + + + + + + + + + + + + + + + + +
IRLANDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID218
OID_0
NameIRLANDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,4.183333,0.000000 + +
+ + ISUGU + + + + + + + + + + + + + + + + + + + + + + + + + +
ISUGU
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID219
OID_0
NameISUGU
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.105833,4.436667,0.000000 + +
+ + ITALIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ITALIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID220
OID_0
NameITALIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.805750,4.057222,0.000000 + +
+ + JAMUNDI_POTRERITO + + + + + + + + + + + + + + + + + + + + + + + + + +
JAMUNDI_POTRERITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID221
OID_0
NameJAMUNDI_POTRERITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.266667,0.000000 + +
+ + JANEIRO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
JANEIRO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID222
OID_0
NameJANEIRO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.866667,0.000000 + +
+ + JARDIN__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
JARDIN__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID223
OID_0
NameJARDIN__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.416667,0.000000 + +
+ + JIGUAL__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
JIGUAL__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID224
OID_0
NameJIGUAL__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.983333,4.200000,0.000000 + +
+ + JUAN__DIAZ + + + + + + + + + + + + + + + + + + + + + + + + + +
JUAN__DIAZ
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID225
OID_0
NameJUAN__DIAZ
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.016667,4.716667,0.000000 + +
+ + JUANCHITO + + + + + + + + + + + + + + + + + + + + + + + + + +
JUANCHITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID226
OID_0
NameJUANCHITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,3.450000,0.000000 + +
+ + JUDEA + + + + + + + + + + + + + + + + + + + + + + + + + +
JUDEA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID227
OID_0
NameJUDEA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.333333,0.000000 + +
+ + JUNTAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
JUNTAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID228
OID_0
NameJUNTAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.165556,3.773222,0.000000 + +
+ + LADRILLERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LADRILLERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID229
OID_0
NameLADRILLERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.366667,0.000000 + +
+ + LADRILLEROS + + + + + + + + + + + + + + + + + + + + + + + + + +
LADRILLEROS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID230
OID_0
NameLADRILLEROS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.933333,3.633333,0.000000 + +
+ + LAG__DE_SONSO + + + + + + + + + + + + + + + + + + + + + + + + + +
LAG__DE_SONSO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID231
OID_0
NameLAG__DE_SONSO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.866667,0.000000 + +
+ + LEONA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LEONA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID232
OID_0
NameLEONA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.433333,0.000000 + +
+ + LEONERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LEONERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID233
OID_0
NameLEONERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.450000,0.000000 + +
+ + LIMONES + + + + + + + + + + + + + + + + + + + + + + + + + +
LIMONES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID234
OID_0
NameLIMONES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.333333,0.000000 + +
+ + LIMONES + + + + + + + + + + + + + + + + + + + + + + + + + +
LIMONES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID235
OID_0
NameLIMONES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.683333,3.916667,0.000000 + +
+ + LITUANIA + + + + + + + + + + + + + + + + + + + + + + + + + +
LITUANIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID236
OID_0
NameLITUANIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.355528,4.498583,0.000000 + +
+ + LLANITOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
LLANITOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID237
OID_0
NameLLANITOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.450000,3.516667,0.000000 + +
+ + LLOREDA + + + + + + + + + + + + + + + + + + + + + + + + + +
LLOREDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID238
OID_0
NameLLOREDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.516667,0.000000 + +
+ + LLOREDA + + + + + + + + + + + + + + + + + + + + + + + + + +
LLOREDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID239
OID_0
NameLLOREDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.766667,0.000000 + +
+ + LOBO_GUERRERO + + + + + + + + + + + + + + + + + + + + + + + + + +
LOBO_GUERRERO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID240
OID_0
NameLOBO_GUERRERO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.766667,0.000000 + +
+ + LOBO_GUERRERO + + + + + + + + + + + + + + + + + + + + + + + + + +
LOBO_GUERRERO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID241
OID_0
NameLOBO_GUERRERO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.766667,0.000000 + +
+ + LONDONOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
LONDONOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID242
OID_0
NameLONDONOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.800000,3.466667,0.000000 + +
+ + LORENA + + + + + + + + + + + + + + + + + + + + + + + + + +
LORENA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID243
OID_0
NameLORENA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.433333,0.000000 + +
+ + LORENA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LORENA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID244
OID_0
NameLORENA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.950000,0.000000 + +
+ + LUCERNA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUCERNA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID245
OID_0
NameLUCERNA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.316667,0.000000 + +
+ + LUCERNA__HDA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUCERNA__HDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID246
OID_0
NameLUCERNA__HDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.148028,4.223861,0.000000 + +
+ + LUCERO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
LUCERO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID247
OID_0
NameLUCERO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.533333,0.000000 + +
+ + LUISA__CABAL_LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUISA__CABAL_LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID248
OID_0
NameLUISA__CABAL_LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,4.233333,0.000000 + +
+ + LUISA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUISA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID249
OID_0
NameLUISA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.600000,3.200000,0.000000 + +
+ + LUISA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUISA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID250
OID_0
NameLUISA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.333333,0.000000 + +
+ + LUISA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUISA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID251
OID_0
NameLUISA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,4.383333,0.000000 + +
+ + MADRONAL + + + + + + + + + + + + + + + + + + + + + + + + + +
MADRONAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID252
OID_0
NameMADRONAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.866667,0.000000 + +
+ + MAGDALENA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MAGDALENA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID253
OID_0
NameMAGDALENA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.866667,0.000000 + +
+ + MAGDALENA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MAGDALENA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID254
OID_0
NameMAGDALENA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,3.866667,0.000000 + +
+ + MALAGUITA + + + + + + + + + + + + + + + + + + + + + + + + + +
MALAGUITA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID255
OID_0
NameMALAGUITA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.216389,4.154444,0.000000 + +
+ + MALIMBU + + + + + + + + + + + + + + + + + + + + + + + + + +
MALIMBU
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID256
OID_0
NameMALIMBU
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.583333,0.000000 + +
+ + MANUEL__M_MALLARINO + + + + + + + + + + + + + + + + + + + + + + + + + +
MANUEL__M_MALLARINO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID257
OID_0
NameMANUEL__M_MALLARINO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,4.166667,0.000000 + +
+ + MARGARITAS + + + + + + + + + + + + + + + + + + + + + + + + + +
MARGARITAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID258
OID_0
NameMARGARITAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.416667,3.366667,0.000000 + +
+ + MARIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MARIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID259
OID_0
NameMARIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,4.516667,0.000000 + +
+ + MARINA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MARINA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID260
OID_0
NameMARINA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.100000,0.000000 + +
+ + MARSELLA + + + + + + + + + + + + + + + + + + + + + + + + + +
MARSELLA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID261
OID_0
NameMARSELLA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.416667,3.683333,0.000000 + +
+ + MATAPALO + + + + + + + + + + + + + + + + + + + + + + + + + +
MATAPALO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID262
OID_0
NameMATAPALO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.450000,3.600000,0.000000 + +
+ + MATEGUADUA + + + + + + + + + + + + + + + + + + + + + + + + + +
MATEGUADUA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID263
OID_0
NameMATEGUADUA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.016667,0.000000 + +
+ + MATEGUADUA + + + + + + + + + + + + + + + + + + + + + + + + + +
MATEGUADUA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID264
OID_0
NameMATEGUADUA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.180556,4.028694,0.000000 + +
+ + MATEGUADUA + + + + + + + + + + + + + + + + + + + + + + + + + +
MATEGUADUA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID265
OID_0
NameMATEGUADUA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.157667,4.015028,0.000000 + +
+ + MEDIACANOA-ALERTAS + + + + + + + + + + + + + + + + + + + + + + + + + +
MEDIACANOA-ALERTAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID266
OID_0
NameMEDIACANOA-ALERTAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.358056,3.890889,0.000000 + +
+ + MEDIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
MEDIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID267
OID_0
NameMEDIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.333333,0.000000 + +
+ + MEDIO__EL_HDA + + + + + + + + + + + + + + + + + + + + + + + + + +
MEDIO__EL_HDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID268
OID_0
NameMEDIO__EL_HDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,4.283333,0.000000 + +
+ + MINCHOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
MINCHOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID269
OID_0
NameMINCHOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,3.416667,0.000000 + +
+ + MINGUERRA + + + + + + + + + + + + + + + + + + + + + + + + + +
MINGUERRA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID270
OID_0
NameMINGUERRA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.050000,3.950000,0.000000 + +
+ + MIRAFLORES + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRAFLORES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID271
OID_0
NameMIRAFLORES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.450000,0.000000 + +
+ + MIRAFLORES + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRAFLORES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID272
OID_0
NameMIRAFLORES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.850000,0.000000 + +
+ + MIRAFLORES__1 + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRAFLORES__1
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID273
OID_0
NameMIRAFLORES__1
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.283333,0.000000 + +
+ + MIRAFLORES__2 + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRAFLORES__2
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID274
OID_0
NameMIRAFLORES__2
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.266667,0.000000 + +
+ + MIRAFLORES__3 + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRAFLORES__3
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID275
OID_0
NameMIRAFLORES__3
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.266667,0.000000 + +
+ + MISION__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MISION__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID276
OID_0
NameMISION__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.276306,4.222528,0.000000 + +
+ + MOLINO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
MOLINO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID277
OID_0
NameMOLINO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,4.566667,0.000000 + +
+ + MONTANA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTANA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID278
OID_0
NameMONTANA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.833333,4.733333,0.000000 + +
+ + MONTANITA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTANITA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID279
OID_0
NameMONTANITA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,3.550000,0.000000 + +
+ + MONTANOS + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTANOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID280
OID_0
NameMONTANOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.200000,0.000000 + +
+ + MONTANUELA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTANUELA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID281
OID_0
NameMONTANUELA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,4.483333,0.000000 + +
+ + MONTE__LORO + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTE__LORO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID282
OID_0
NameMONTE__LORO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,3.983333,0.000000 + +
+ + MONTEBELLO + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTEBELLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID283
OID_0
NameMONTEBELLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.483333,0.000000 + +
+ + MONTECRISTO + + + + + + + + + + + + + + + + + + + + + + + + + +
MONTECRISTO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID284
OID_0
NameMONTECRISTO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,4.466667,0.000000 + +
+ + MORABITO + + + + + + + + + + + + + + + + + + + + + + + + + +
MORABITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID285
OID_0
NameMORABITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,4.300000,0.000000 + +
+ + MORALIA + + + + + + + + + + + + + + + + + + + + + + + + + +
MORALIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID286
OID_0
NameMORALIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.083333,0.000000 + +
+ + MORAVIA + + + + + + + + + + + + + + + + + + + + + + + + + +
MORAVIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID287
OID_0
NameMORAVIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.733333,3.950000,0.000000 + +
+ + MORILLO + + + + + + + + + + + + + + + + + + + + + + + + + +
MORILLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID288
OID_0
NameMORILLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.283333,0.000000 + +
+ + MULALO + + + + + + + + + + + + + + + + + + + + + + + + + +
MULALO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID289
OID_0
NameMULALO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.633333,0.000000 + +
+ + MURRAPAL + + + + + + + + + + + + + + + + + + + + + + + + + +
MURRAPAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID290
OID_0
NameMURRAPAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.883333,3.500000,0.000000 + +
+ + MUSICA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MUSICA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID291
OID_0
NameMUSICA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.350000,0.000000 + +
+ + NARANJAL + + + + + + + + + + + + + + + + + + + + + + + + + +
NARANJAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID292
OID_0
NameNARANJAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.353389,4.356889,0.000000 + +
+ + NOGALES_ALTAGRACIA + + + + + + + + + + + + + + + + + + + + + + + + + +
NOGALES_ALTAGRACIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID293
OID_0
NameNOGALES_ALTAGRACIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.065889,3.888667,0.000000 + +
+ + NORMANDIA + + + + + + + + + + + + + + + + + + + + + + + + + +
NORMANDIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID294
OID_0
NameNORMANDIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.300000,0.000000 + +
+ + OBANDO + + + + + + + + + + + + + + + + + + + + + + + + + +
OBANDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID295
OID_0
NameOBANDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.965806,4.588611,0.000000 + +
+ + OBANDO + + + + + + + + + + + + + + + + + + + + + + + + + +
OBANDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID296
OID_0
NameOBANDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,4.583333,0.000000 + +
+ + OBANDO_FERROCARRIL + + + + + + + + + + + + + + + + + + + + + + + + + +
OBANDO_FERROCARRIL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID297
OID_0
NameOBANDO_FERROCARRIL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.983333,4.583333,0.000000 + +
+ + OCACHE + + + + + + + + + + + + + + + + + + + + + + + + + +
OCACHE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID298
OID_0
NameOCACHE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.700000,0.000000 + +
+ + OREGANO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
OREGANO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID299
OID_0
NameOREGANO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.466667,0.000000 + +
+ + ORISOL + + + + + + + + + + + + + + + + + + + + + + + + + +
ORISOL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID300
OID_0
NameORISOL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,3.566667,0.000000 + +
+ + OSO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
OSO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID301
OID_0
NameOSO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.583333,0.000000 + +
+ + OSOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
OSOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID302
OID_0
NameOSOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,3.500000,0.000000 + +
+ + PACORA + + + + + + + + + + + + + + + + + + + + + + + + + +
PACORA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID303
OID_0
NamePACORA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.566667,0.000000 + +
+ + PALACIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PALACIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID304
OID_0
NamePALACIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.533333,3.300000,0.000000 + +
+ + PALESTINA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALESTINA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID305
OID_0
NamePALESTINA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.155556,4.162556,0.000000 + +
+ + PALMA__1_LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMA__1_LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID306
OID_0
NamePALMA__1_LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.700000,0.000000 + +
+ + PALMA__2_LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMA__2_LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID307
OID_0
NamePALMA__2_LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.716667,0.000000 + +
+ + PALMA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID308
OID_0
NamePALMA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.800000,0.000000 + +
+ + PALMAR__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMAR__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID309
OID_0
NamePALMAR__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,3.483333,0.000000 + +
+ + PALMASOLA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMASOLA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID310
OID_0
NamePALMASOLA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.961556,4.688417,0.000000 + +
+ + PALMERA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMERA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID311
OID_0
NamePALMERA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.400000,3.333333,0.000000 + +
+ + PALMERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID312
OID_0
NamePALMERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,3.333333,0.000000 + +
+ + PALMERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID313
OID_0
NamePALMERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.516667,4.033333,0.000000 + +
+ + PALMIRA__ICA + + + + + + + + + + + + + + + + + + + + + + + + + +
PALMIRA__ICA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID314
OID_0
NamePALMIRA__ICA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.315028,3.513389,0.000000 + +
+ + PAN__DE_AZUCAR + + + + + + + + + + + + + + + + + + + + + + + + + +
PAN__DE_AZUCAR
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID315
OID_0
NamePAN__DE_AZUCAR
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,3.716667,0.000000 + +
+ + PARAGUAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PARAGUAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID316
OID_0
NamePARAGUAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.833333,3.550000,0.000000 + +
+ + PARAISO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PARAISO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID317
OID_0
NamePARAISO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.199611,3.649806,0.000000 + +
+ + PARDO + + + + + + + + + + + + + + + + + + + + + + + + + +
PARDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID318
OID_0
NamePARDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.108056,4.087278,0.000000 + +
+ + PASO__ANCHO + + + + + + + + + + + + + + + + + + + + + + + + + +
PASO__ANCHO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID319
OID_0
NamePASO__ANCHO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.533333,3.600000,0.000000 + +
+ + PASO__DEL_COMERCIO + + + + + + + + + + + + + + + + + + + + + + + + + +
PASO__DEL_COMERCIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID320
OID_0
NamePASO__DEL_COMERCIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.500000,0.000000 + +
+ + PATAGONIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PATAGONIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID321
OID_0
NamePATAGONIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.833333,0.000000 + +
+ + PATIO__BONITO + + + + + + + + + + + + + + + + + + + + + + + + + +
PATIO__BONITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID322
OID_0
NamePATIO__BONITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.583333,0.000000 + +
+ + PATO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PATO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID323
OID_0
NamePATO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,3.483333,0.000000 + +
+ + PATUMAC + + + + + + + + + + + + + + + + + + + + + + + + + +
PATUMAC
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID324
OID_0
NamePATUMAC
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.217500,4.572833,0.000000 + +
+ + PENA__ALTA + + + + + + + + + + + + + + + + + + + + + + + + + +
PENA__ALTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID325
OID_0
NamePENA__ALTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.750000,3.933333,0.000000 + +
+ + PENA__MONA + + + + + + + + + + + + + + + + + + + + + + + + + +
PENA__MONA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID326
OID_0
NamePENA__MONA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.716667,3.250000,0.000000 + +
+ + PENAS__BLANCAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PENAS__BLANCAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID327
OID_0
NamePENAS__BLANCAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.416667,0.000000 + +
+ + PENAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PENAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID328
OID_0
NamePENAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.633333,0.000000 + +
+ + PENAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PENAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID329
OID_0
NamePENAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.750000,3.950000,0.000000 + +
+ + PERALONSO + + + + + + + + + + + + + + + + + + + + + + + + + +
PERALONSO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID330
OID_0
NamePERALONSO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.333333,0.000000 + +
+ + PERALONSO + + + + + + + + + + + + + + + + + + + + + + + + + +
PERALONSO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID331
OID_0
NamePERALONSO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.316667,0.000000 + +
+ + PERDICION__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PERDICION__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID332
OID_0
NamePERDICION__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.700000,3.933333,0.000000 + +
+ + PETITE + + + + + + + + + + + + + + + + + + + + + + + + + +
PETITE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID333
OID_0
NamePETITE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.500000,0.000000 + +
+ + PICHINDE + + + + + + + + + + + + + + + + + + + + + + + + + +
PICHINDE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID334
OID_0
NamePICHINDE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.615556,3.438167,0.000000 + +
+ + PIE_DE_CHINCHE + + + + + + + + + + + + + + + + + + + + + + + + + +
PIE_DE_CHINCHE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID335
OID_0
NamePIE_DE_CHINCHE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.633333,0.000000 + +
+ + PIEDECHINCHE + + + + + + + + + + + + + + + + + + + + + + + + + +
PIEDECHINCHE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID336
OID_0
NamePIEDECHINCHE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.700000,0.000000 + +
+ + PIEDRAS__DE_MOLER + + + + + + + + + + + + + + + + + + + + + + + + + +
PIEDRAS__DE_MOLER
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID337
OID_0
NamePIEDRAS__DE_MOLER
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.933333,4.716667,0.000000 + +
+ + PIEDRAS_BLANCAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PIEDRAS_BLANCAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID338
OID_0
NamePIEDRAS_BLANCAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.366667,0.000000 + +
+ + PLACER__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PLACER__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID339
OID_0
NamePLACER__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.400000,0.000000 + +
+ + PLACER__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PLACER__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID340
OID_0
NamePLACER__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.100000,0.000000 + +
+ + PLACER__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PLACER__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID341
OID_0
NamePLACER__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.783333,0.000000 + +
+ + PLANTA__NIMA_1 + + + + + + + + + + + + + + + + + + + + + + + + + +
PLANTA__NIMA_1
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID342
OID_0
NamePLANTA__NIMA_1
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.550000,0.000000 + +
+ + PLATANILLO + + + + + + + + + + + + + + + + + + + + + + + + + +
PLATANILLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID343
OID_0
NamePLATANILLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.883333,0.000000 + +
+ + PLTA__RIO_CALI + + + + + + + + + + + + + + + + + + + + + + + + + +
PLTA__RIO_CALI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID344
OID_0
NamePLTA__RIO_CALI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.450000,0.000000 + +
+ + POBLADO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
POBLADO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID345
OID_0
NamePOBLADO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,4.100000,0.000000 + +
+ + PORVENIR__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PORVENIR__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID346
OID_0
NamePORVENIR__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.550000,0.000000 + +
+ + POTRERITO + + + + + + + + + + + + + + + + + + + + + + + + + +
POTRERITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID347
OID_0
NamePOTRERITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.601111,3.243389,0.000000 + +
+ + PRADOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
PRADOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID348
OID_0
NamePRADOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.866667,3.566667,0.000000 + +
+ + PRESA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PRESA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID349
OID_0
NamePRESA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.866667,0.000000 + +
+ + PRIMAVERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PRIMAVERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID350
OID_0
NamePRIMAVERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.916667,0.000000 + +
+ + PRIMAVERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PRIMAVERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID351
OID_0
NamePRIMAVERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.666667,0.000000 + +
+ + PROVIDENCIA + + + + + + + + + + + + + + + + + + + + + + + + + +
PROVIDENCIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID352
OID_0
NamePROVIDENCIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.715167,3.633333,0.000000 + +
+ + PTE_CARRETERA + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_CARRETERA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID353
OID_0
NamePTE_CARRETERA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.516667,3.283333,0.000000 + +
+ + PTE_CARRETERA + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_CARRETERA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID354
OID_0
NamePTE_CARRETERA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.083333,0.000000 + +
+ + PTE_CAYETANA + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_CAYETANA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID355
OID_0
NamePTE_CAYETANA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.583333,0.000000 + +
+ + PTE_FERROCARRIL + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_FERROCARRIL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID356
OID_0
NamePTE_FERROCARRIL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.283333,0.000000 + +
+ + PTE_GARCES + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_GARCES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID357
OID_0
NamePTE_GARCES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,4.083333,0.000000 + +
+ + PTE_PALMASECA + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_PALMASECA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID358
OID_0
NamePTE_PALMASECA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,3.550000,0.000000 + +
+ + PTE_ZINC + + + + + + + + + + + + + + + + + + + + + + + + + +
PTE_ZINC
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID359
OID_0
NamePTE_ZINC
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.016667,0.000000 + +
+ + PTO__FRAZADAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PTO__FRAZADAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID360
OID_0
NamePTO__FRAZADAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.994694,4.054306,0.000000 + +
+ + PTO__ISAACS + + + + + + + + + + + + + + + + + + + + + + + + + +
PTO__ISAACS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID361
OID_0
NamePTO__ISAACS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.483333,3.550000,0.000000 + +
+ + PTO__NUEVO + + + + + + + + + + + + + + + + + + + + + + + + + +
PTO__NUEVO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID362
OID_0
NamePTO__NUEVO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,4.600000,0.000000 + +
+ + PUNTA__SOLDADO + + + + + + + + + + + + + + + + + + + + + + + + + +
PUNTA__SOLDADO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID363
OID_0
NamePUNTA__SOLDADO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.133333,3.800000,0.000000 + +
+ + QUEBRADANUEVA + + + + + + + + + + + + + + + + + + + + + + + + + +
QUEBRADANUEVA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID364
OID_0
NameQUEBRADANUEVA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.950000,4.400000,0.000000 + +
+ + QUEREMAL + + + + + + + + + + + + + + + + + + + + + + + + + +
QUEREMAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID365
OID_0
NameQUEREMAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.708778,3.527222,0.000000 + +
+ + QUEREMAL__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
QUEREMAL__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID366
OID_0
NameQUEREMAL__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.750000,3.533333,0.000000 + +
+ + QUIEBRA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
QUIEBRA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID367
OID_0
NameQUIEBRA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.633333,0.000000 + +
+ + QUIRAMA + + + + + + + + + + + + + + + + + + + + + + + + + +
QUIRAMA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID368
OID_0
NameQUIRAMA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.916667,0.000000 + +
+ + QUIRAMA + + + + + + + + + + + + + + + + + + + + + + + + + +
QUIRAMA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID369
OID_0
NameQUIRAMA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.883333,0.000000 + +
+ + RAFAELA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
RAFAELA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID370
OID_0
NameRAFAELA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.116667,0.000000 + +
+ + RECREO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
RECREO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID371
OID_0
NameRECREO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.733333,4.700000,0.000000 + +
+ + REFORMA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
REFORMA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID372
OID_0
NameREFORMA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,3.700000,0.000000 + +
+ + REMOLINO + + + + + + + + + + + + + + + + + + + + + + + + + +
REMOLINO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID373
OID_0
NameREMOLINO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.283333,0.000000 + +
+ + RETIRO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
RETIRO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID374
OID_0
NameRETIRO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,4.416667,0.000000 + +
+ + RIO_AZUL + + + + + + + + + + + + + + + + + + + + + + + + + +
RIO_AZUL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID375
OID_0
NameRIO_AZUL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.716667,3.933333,0.000000 + +
+ + RIO_BRAVO + + + + + + + + + + + + + + + + + + + + + + + + + +
RIO_BRAVO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID376
OID_0
NameRIO_BRAVO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.933333,0.000000 + +
+ + RIO_PAILA_3 + + + + + + + + + + + + + + + + + + + + + + + + + +
RIO_PAILA_3
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID377
OID_0
NameRIO_PAILA_3
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,4.333333,0.000000 + +
+ + RIOFRIO + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOFRIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID378
OID_0
NameRIOFRIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,4.150000,0.000000 + +
+ + RIOFRIO + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOFRIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID379
OID_0
NameRIOFRIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,4.133333,0.000000 + +
+ + RIOLINDO + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOLINDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID380
OID_0
NameRIOLINDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,4.366667,0.000000 + +
+ + RIOPAILA + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOPAILA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID381
OID_0
NameRIOPAILA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.316667,0.000000 + +
+ + RIOPAILA + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOPAILA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID382
OID_0
NameRIOPAILA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.366667,0.000000 + +
+ + RIOVERDE + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOVERDE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID383
OID_0
NameRIOVERDE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.816667,3.516667,0.000000 + +
+ + RITA + + + + + + + + + + + + + + + + + + + + + + + + + +
RITA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID384
OID_0
NameRITA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.566667,0.000000 + +
+ + RITA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
RITA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID385
OID_0
NameRITA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.550000,0.000000 + +
+ + RIVERA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
RIVERA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID386
OID_0
NameRIVERA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,4.100000,0.000000 + +
+ + ROLDANILLO + + + + + + + + + + + + + + + + + + + + + + + + + +
ROLDANILLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID387
OID_0
NameROLDANILLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.433333,0.000000 + +
+ + ROMERAL__1 + + + + + + + + + + + + + + + + + + + + + + + + + +
ROMERAL__1
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID388
OID_0
NameROMERAL__1
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.150000,0.000000 + +
+ + ROMERAL__2 + + + + + + + + + + + + + + + + + + + + + + + + + +
ROMERAL__2
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID389
OID_0
NameROMERAL__2
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,4.133333,0.000000 + +
+ + SALENTO + + + + + + + + + + + + + + + + + + + + + + + + + +
SALENTO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID390
OID_0
NameSALENTO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,3.633333,0.000000 + +
+ + SALONICA + + + + + + + + + + + + + + + + + + + + + + + + + +
SALONICA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID391
OID_0
NameSALONICA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,4.133333,0.000000 + +
+ + SAMARIA + + + + + + + + + + + + + + + + + + + + + + + + + +
SAMARIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID392
OID_0
NameSAMARIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.266667,0.000000 + +
+ + SAMARIA + + + + + + + + + + + + + + + + + + + + + + + + + +
SAMARIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID393
OID_0
NameSAMARIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.433333,4.050000,0.000000 + +
+ + SAMARKANDA + + + + + + + + + + + + + + + + + + + + + + + + + +
SAMARKANDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID394
OID_0
NameSAMARKANDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.700000,3.166667,0.000000 + +
+ + SAN__ANTONIO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__ANTONIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID395
OID_0
NameSAN__ANTONIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.233333,0.000000 + +
+ + SAN__ANTONIO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__ANTONIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID396
OID_0
NameSAN__ANTONIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,4.216667,0.000000 + +
+ + SAN__CAMILO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__CAMILO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID397
OID_0
NameSAN__CAMILO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.466667,0.000000 + +
+ + SAN__FELIPE + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__FELIPE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID398
OID_0
NameSAN__FELIPE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.850000,0.000000 + +
+ + SAN__FERNANDO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__FERNANDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID399
OID_0
NameSAN__FERNANDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.283333,0.000000 + +
+ + SAN__GERARDO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__GERARDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID400
OID_0
NameSAN__GERARDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.750000,0.000000 + +
+ + SAN__JERONIMO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__JERONIMO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID401
OID_0
NameSAN__JERONIMO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.633333,0.000000 + +
+ + SAN__JORGE + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__JORGE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID402
OID_0
NameSAN__JORGE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.216667,0.000000 + +
+ + SAN__JOSE + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__JOSE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID403
OID_0
NameSAN__JOSE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.516667,0.000000 + +
+ + SAN__LORENZO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__LORENZO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID404
OID_0
NameSAN__LORENZO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.750000,0.000000 + +
+ + SAN__MARCOS + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__MARCOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID405
OID_0
NameSAN__MARCOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033167,4.238972,0.000000 + +
+ + SAN__MIGUEL + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__MIGUEL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID406
OID_0
NameSAN__MIGUEL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.700000,0.000000 + +
+ + SAN__NICOLAS + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__NICOLAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID407
OID_0
NameSAN__NICOLAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,3.550000,0.000000 + +
+ + SAN__PABLO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__PABLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID408
OID_0
NameSAN__PABLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.450000,3.500000,0.000000 + +
+ + SAN__PEDRO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__PEDRO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID409
OID_0
NameSAN__PEDRO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.040444,4.515639,0.000000 + +
+ + SAN__RAFAEL + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__RAFAEL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID410
OID_0
NameSAN__RAFAEL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.383333,0.000000 + +
+ + SAN__RAFAEL + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__RAFAEL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID411
OID_0
NameSAN__RAFAEL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.533333,0.000000 + +
+ + SAN__RAFAEL + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__RAFAEL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID412
OID_0
NameSAN__RAFAEL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.816667,0.000000 + +
+ + SAN__RAFAEL_2 + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__RAFAEL_2
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID413
OID_0
NameSAN__RAFAEL_2
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.833333,0.000000 + +
+ + SAN__VICENTE + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__VICENTE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID414
OID_0
NameSAN__VICENTE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.266667,0.000000 + +
+ + SAN_FRANCISCO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN_FRANCISCO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID415
OID_0
NameSAN_FRANCISCO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.056944,4.698889,0.000000 + +
+ + SANTIAGO_GUTIERREZ + + + + + + + + + + + + + + + + + + + + + + + + + +
SANTIAGO_GUTIERREZ
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID416
OID_0
NameSANTIAGO_GUTIERREZ
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.716667,0.000000 + +
+ + SELVA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SELVA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID417
OID_0
NameSELVA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,3.533333,0.000000 + +
+ + SELVA__LA________26 + + + + + + + + + + + + + + + + + + + + + + + + + +
SELVA__LA________26
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID418
OID_0
NameSELVA__LA________26
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,3.750000,0.000000 + +
+ + SEVILLA + + + + + + + + + + + + + + + + + + + + + + + + + +
SEVILLA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID419
OID_0
NameSEVILLA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.933333,4.266667,0.000000 + +
+ + SILENCIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
SILENCIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID420
OID_0
NameSILENCIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.400000,0.000000 + +
+ + SILVA + + + + + + + + + + + + + + + + + + + + + + + + + +
SILVA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID421
OID_0
NameSILVA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.211444,3.482472,0.000000 + +
+ + SIRENA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SIRENA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID422
OID_0
NameSIRENA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,3.466667,0.000000 + +
+ + SIRENA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SIRENA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID423
OID_0
NameSIRENA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.916667,4.283333,0.000000 + +
+ + SOCORRO + + + + + + + + + + + + + + + + + + + + + + + + + +
SOCORRO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID424
OID_0
NameSOCORRO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.566667,0.000000 + +
+ + SOCORRO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
SOCORRO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID425
OID_0
NameSOCORRO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.000000,4.516667,0.000000 + +
+ + SOLEDAD__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SOLEDAD__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID426
OID_0
NameSOLEDAD__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,3.366667,0.000000 + +
+ + SOLEDAD_AZCARATE + + + + + + + + + + + + + + + + + + + + + + + + + +
SOLEDAD_AZCARATE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID427
OID_0
NameSOLEDAD_AZCARATE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.600000,0.000000 + +
+ + SOLEDAD_OCHOAS + + + + + + + + + + + + + + + + + + + + + + + + + +
SOLEDAD_OCHOAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID428
OID_0
NameSOLEDAD_OCHOAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.733333,0.000000 + +
+ + STA_ANITA + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_ANITA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID429
OID_0
NameSTA_ANITA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,3.600000,0.000000 + +
+ + STA_INES + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_INES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID430
OID_0
NameSTA_INES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.633333,0.000000 + +
+ + STA_INES + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_INES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID431
OID_0
NameSTA_INES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.183333,0.000000 + +
+ + STA_INES + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_INES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID432
OID_0
NameSTA_INES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.183333,0.000000 + +
+ + STA_MARTA + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_MARTA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID433
OID_0
NameSTA_MARTA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.866667,0.000000 + +
+ + SUCRE + + + + + + + + + + + + + + + + + + + + + + + + + +
SUCRE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID434
OID_0
NameSUCRE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.758250,4.710778,0.000000 + +
+ + TENERIFE + + + + + + + + + + + + + + + + + + + + + + + + + +
TENERIFE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID435
OID_0
NameTENERIFE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,3.616667,0.000000 + +
+ + TENERIFE + + + + + + + + + + + + + + + + + + + + + + + + + +
TENERIFE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID436
OID_0
NameTENERIFE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.074833,3.729944,0.000000 + +
+ + TENJO + + + + + + + + + + + + + + + + + + + + + + + + + +
TENJO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID437
OID_0
NameTENJO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,3.516667,0.000000 + +
+ + TIERRA__BLANCA + + + + + + + + + + + + + + + + + + + + + + + + + +
TIERRA__BLANCA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID438
OID_0
NameTIERRA__BLANCA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.433333,0.000000 + +
+ + TIGRE__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
TIGRE__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID439
OID_0
NameTIGRE__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.071389,3.697806,0.000000 + +
+ + TIMBA + + + + + + + + + + + + + + + + + + + + + + + + + +
TIMBA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID440
OID_0
NameTIMBA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.116667,0.000000 + +
+ + TIMBA + + + + + + + + + + + + + + + + + + + + + + + + + +
TIMBA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID441
OID_0
NameTIMBA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.623583,3.125278,0.000000 + +
+ + TOCHE + + + + + + + + + + + + + + + + + + + + + + + + + +
TOCHE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID442
OID_0
NameTOCHE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,3.633333,0.000000 + +
+ + TOPACIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
TOPACIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID443
OID_0
NameTOPACIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.316667,0.000000 + +
+ + TOPACIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
TOPACIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID444
OID_0
NameTOPACIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.316667,0.000000 + +
+ + TORRE__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
TORRE__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID445
OID_0
NameTORRE__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.783333,3.566667,0.000000 + +
+ + TRIANA + + + + + + + + + + + + + + + + + + + + + + + + + +
TRIANA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID446
OID_0
NameTRIANA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.800000,3.850000,0.000000 + +
+ + TROJITA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
TROJITA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID447
OID_0
NameTROJITA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.092778,4.069472,0.000000 + +
+ + TULIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
TULIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID448
OID_0
NameTULIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.244528,4.401111,0.000000 + +
+ + TUNEL__DE_FUGA + + + + + + + + + + + + + + + + + + + + + + + + + +
TUNEL__DE_FUGA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID449
OID_0
NameTUNEL__DE_FUGA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.883333,0.000000 + +
+ + TUPIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
TUPIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID450
OID_0
NameTUPIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.383333,0.000000 + +
+ + UNION__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
UNION__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID451
OID_0
NameUNION__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.516667,0.000000 + +
+ + UNION__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
UNION__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID452
OID_0
NameUNION__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.516667,4.383333,0.000000 + +
+ + URIBE__LA_FFNN + + + + + + + + + + + + + + + + + + + + + + + + + +
URIBE__LA_FFNN
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID453
OID_0
NameURIBE__LA_FFNN
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.266667,0.000000 + +
+ + VALPARAISO + + + + + + + + + + + + + + + + + + + + + + + + + +
VALPARAISO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID454
OID_0
NameVALPARAISO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.300000,0.000000 + +
+ + VALPARAISO + + + + + + + + + + + + + + + + + + + + + + + + + +
VALPARAISO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID455
OID_0
NameVALPARAISO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.300000,0.000000 + +
+ + VEGAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
VEGAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID456
OID_0
NameVEGAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.933333,4.816667,0.000000 + +
+ + VENECIA + + + + + + + + + + + + + + + + + + + + + + + + + +
VENECIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID457
OID_0
NameVENECIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,4.200000,0.000000 + +
+ + VENECIA + + + + + + + + + + + + + + + + + + + + + + + + + +
VENECIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID458
OID_0
NameVENECIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,4.300000,0.000000 + +
+ + VENECIA + + + + + + + + + + + + + + + + + + + + + + + + + +
VENECIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID459
OID_0
NameVENECIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.833333,4.333333,0.000000 + +
+ + VENUS + + + + + + + + + + + + + + + + + + + + + + + + + +
VENUS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID460
OID_0
NameVENUS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.066667,0.000000 + +
+ + VERANERAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
VERANERAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID461
OID_0
NameVERANERAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,3.550000,0.000000 + +
+ + VERGEL__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
VERGEL__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID462
OID_0
NameVERGEL__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.263750,3.871861,0.000000 + +
+ + VESUBIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
VESUBIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID463
OID_0
NameVESUBIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.616667,0.000000 + +
+ + VESUBIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
VESUBIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID464
OID_0
NameVESUBIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.860583,4.774222,0.000000 + +
+ + VICTORIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
VICTORIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID465
OID_0
NameVICTORIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.500000,0.000000 + +
+ + VICTORIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
VICTORIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID466
OID_0
NameVICTORIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,4.533333,0.000000 + +
+ + VICTORIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
VICTORIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID467
OID_0
NameVICTORIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,4.516667,0.000000 + +
+ + VIJES + + + + + + + + + + + + + + + + + + + + + + + + + +
VIJES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID468
OID_0
NameVIJES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.429778,3.698528,0.000000 + +
+ + VILLA__ARACELLY + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__ARACELLY
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID469
OID_0
NameVILLA__ARACELLY
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.516667,0.000000 + +
+ + VILLA__COLOMBIA + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__COLOMBIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID470
OID_0
NameVILLA__COLOMBIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.700000,3.183333,0.000000 + +
+ + VILLA__LUZ + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__LUZ
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID471
OID_0
NameVILLA__LUZ
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.416667,0.000000 + +
+ + VILLA__LUZ_ALBA + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__LUZ_ALBA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID472
OID_0
NameVILLA__LUZ_ALBA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.700000,0.000000 + +
+ + VILLA__LUZ_ALBA + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__LUZ_ALBA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID473
OID_0
NameVILLA__LUZ_ALBA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.592556,3.690139,0.000000 + +
+ + VILLA__MARIA + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__MARIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID474
OID_0
NameVILLA__MARIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.733333,0.000000 + +
+ + VILLA__NUEVA + + + + + + + + + + + + + + + + + + + + + + + + + +
VILLA__NUEVA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID475
OID_0
NameVILLA__NUEVA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.038111,4.970833,0.000000 + +
+ + VINCULO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
VINCULO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID476
OID_0
NameVINCULO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.866667,0.000000 + +
+ + VINICOLA__GJA + + + + + + + + + + + + + + + + + + + + + + + + + +
VINICOLA__GJA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID477
OID_0
NameVINICOLA__GJA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.333333,0.000000 + +
+ + VIRGEN__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
VIRGEN__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID478
OID_0
NameVIRGEN__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,3.466667,0.000000 + +
+ + VIRGEN__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
VIRGEN__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID479
OID_0
NameVIRGEN__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.033333,4.033333,0.000000 + +
+ + VIVERO_HELVECIA + + + + + + + + + + + + + + + + + + + + + + + + + +
VIVERO_HELVECIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID480
OID_0
NameVIVERO_HELVECIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,3.716667,0.000000 + +
+ + VORAGINE__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
VORAGINE__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID481
OID_0
NameVORAGINE__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.333333,0.000000 + +
+ + YATACUE + + + + + + + + + + + + + + + + + + + + + + + + + +
YATACUE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID482
OID_0
NameYATACUE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.883333,3.583333,0.000000 + +
+ + YUMBO + + + + + + + + + + + + + + + + + + + + + + + + + +
YUMBO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID483
OID_0
NameYUMBO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.583333,0.000000 + +
+ + YUNDE__VIEJO + + + + + + + + + + + + + + + + + + + + + + + + + +
YUNDE__VIEJO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID484
OID_0
NameYUNDE__VIEJO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.416667,3.466667,0.000000 + +
+ + YUNDE_CARRIZAL + + + + + + + + + + + + + + + + + + + + + + + + + +
YUNDE_CARRIZAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID485
OID_0
NameYUNDE_CARRIZAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.400000,3.466667,0.000000 + +
+ + YURUMANGUI__S_ANTON + + + + + + + + + + + + + + + + + + + + + + + + + +
YURUMANGUI__S_ANTON
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID486
OID_0
NameYURUMANGUI__S_ANTON
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.259250,3.260667,0.000000 + +
+ + ZANJON__HONDO + + + + + + + + + + + + + + + + + + + + + + + + + +
ZANJON__HONDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID487
OID_0
NameZANJON__HONDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.116667,0.000000 + +
+ + ZAPATA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
ZAPATA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID488
OID_0
NameZAPATA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.210694,3.527194,0.000000 + +
+ + ZARAGOZA + + + + + + + + + + + + + + + + + + + + + + + + + +
ZARAGOZA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID489
OID_0
NameZARAGOZA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.966667,4.716667,0.000000 + +
+ + ZARZAL + + + + + + + + + + + + + + + + + + + + + + + + + +
ZARZAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID490
OID_0
NameZARZAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.073750,4.382667,0.000000 + +
+ + ITA-BUGA + + + + + + + + + + + + + + + + + + + + + + + + + +
ITA-BUGA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID491
OID_0
NameITA-BUGA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.916667,0.000000 + +
+ + ALAMBRADO__EL_AUTOM + + + + + + + + + + + + + + + + + + + + + + + + + +
ALAMBRADO__EL_AUTOM
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID492
OID_0
NameALAMBRADO__EL_AUTOM
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.875333,4.409306,0.000000 + +
+ + CAIRO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
CAIRO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID493
OID_0
NameCAIRO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.216667,4.766667,0.000000 + +
+ + EST_DE_ALGODON + + + + + + + + + + + + + + + + + + + + + + + + + +
EST_DE_ALGODON
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID494
OID_0
NameEST_DE_ALGODON
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.900000,0.000000 + +
+ + HIGUERON__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
HIGUERON__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID495
OID_0
NameHIGUERON__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.866667,3.400000,0.000000 + +
+ + STA_GERTRUDIS + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_GERTRUDIS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID496
OID_0
NameSTA_GERTRUDIS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.600000,0.000000 + +
+ + APTO__STA_ANA + + + + + + + + + + + + + + + + + + + + + + + + + +
APTO__STA_ANA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID497
OID_0
NameAPTO__STA_ANA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.950000,4.783333,0.000000 + +
+ + MADRE__VIEJA + + + + + + + + + + + + + + + + + + + + + + + + + +
MADRE__VIEJA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID498
OID_0
NameMADRE__VIEJA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.466667,0.000000 + +
+ + GALICIA + + + + + + + + + + + + + + + + + + + + + + + + + +
GALICIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID499
OID_0
NameGALICIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.683333,0.000000 + +
+ + TAGUAL + + + + + + + + + + + + + + + + + + + + + + + + + +
TAGUAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID500
OID_0
NameTAGUAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.800000,4.000000,0.000000 + +
+ + PLAYAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
PLAYAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID501
OID_0
NamePLAYAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.916667,3.583333,0.000000 + +
+ + BALSA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
BALSA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID502
OID_0
NameBALSA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.600000,3.100000,0.000000 + +
+ + PLTA__RIO_CAUCA + + + + + + + + + + + + + + + + + + + + + + + + + +
PLTA__RIO_CAUCA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID503
OID_0
NamePLTA__RIO_CAUCA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.500000,3.450000,0.000000 + +
+ + BASE__AEREA_MFS_AUT + + + + + + + + + + + + + + + + + + + + + + + + + +
BASE__AEREA_MFS_AUT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID504
OID_0
NameBASE__AEREA_MFS_AUT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.503222,3.457306,0.000000 + +
+ + SAN__JORGE + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__JORGE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID505
OID_0
NameSAN__JORGE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.433333,0.000000 + +
+ + PAZ_LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PAZ_LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID506
OID_0
NamePAZ_LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.650000,0.000000 + +
+ + COLEGURRE + + + + + + + + + + + + + + + + + + + + + + + + + +
COLEGURRE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID507
OID_0
NameCOLEGURRE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.350000,0.000000 + +
+ + COL_ACADEMICO + + + + + + + + + + + + + + + + + + + + + + + + + +
COL_ACADEMICO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID508
OID_0
NameCOL_ACADEMICO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.316667,3.916667,0.000000 + +
+ + SAN__ANTONIO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__ANTONIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID509
OID_0
NameSAN__ANTONIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.616667,0.000000 + +
+ + HIGUERONCITO + + + + + + + + + + + + + + + + + + + + + + + + + +
HIGUERONCITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID510
OID_0
NameHIGUERONCITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.483333,0.000000 + +
+ + BRASILIA + + + + + + + + + + + + + + + + + + + + + + + + + +
BRASILIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID511
OID_0
NameBRASILIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.450000,0.000000 + +
+ + FARO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
FARO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID512
OID_0
NameFARO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.600000,3.416667,0.000000 + +
+ + PLANTA_ELECTRICA + + + + + + + + + + + + + + + + + + + + + + + + + +
PLANTA_ELECTRICA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID513
OID_0
NamePLANTA_ELECTRICA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.400000,0.000000 + +
+ + BRISAS__LAS_AUTOMAT + + + + + + + + + + + + + + + + + + + + + + + + + +
BRISAS__LAS_AUTOMAT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID514
OID_0
NameBRISAS__LAS_AUTOMAT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.143778,4.776000,0.000000 + +
+ + BUENAVENTURA_AUTOM + + + + + + + + + + + + + + + + + + + + + + + + + +
BUENAVENTURA_AUTOM
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID515
OID_0
NameBUENAVENTURA_AUTOM
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -77.062167,3.890306,0.000000 + +
+ + LUCERNA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUCERNA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID516
OID_0
NameLUCERNA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.216667,0.000000 + +
+ + VOLADERO + + + + + + + + + + + + + + + + + + + + + + + + + +
VOLADERO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID517
OID_0
NameVOLADERO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.216667,0.000000 + +
+ + LILI + + + + + + + + + + + + + + + + + + + + + + + + + +
LILI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID518
OID_0
NameLILI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.533333,3.366667,0.000000 + +
+ + CANDELARIA + + + + + + + + + + + + + + + + + + + + + + + + + +
CANDELARIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID519
OID_0
NameCANDELARIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.466667,0.000000 + +
+ + MANASES + + + + + + + + + + + + + + + + + + + + + + + + + +
MANASES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID520
OID_0
NameMANASES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.316667,0.000000 + +
+ + PLANTA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PLANTA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID521
OID_0
NamePLANTA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.133333,4.533333,0.000000 + +
+ + PALERMO + + + + + + + + + + + + + + + + + + + + + + + + + +
PALERMO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID522
OID_0
NamePALERMO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.900000,0.000000 + +
+ + HORIZONTE__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
HORIZONTE__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID523
OID_0
NameHORIZONTE__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.400000,0.000000 + +
+ + PITAL + + + + + + + + + + + + + + + + + + + + + + + + + +
PITAL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID524
OID_0
NamePITAL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.633333,3.900000,0.000000 + +
+ + CAMPOHERMOSO + + + + + + + + + + + + + + + + + + + + + + + + + +
CAMPOHERMOSO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID525
OID_0
NameCAMPOHERMOSO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.866667,0.000000 + +
+ + SAN__PEDRO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__PEDRO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID526
OID_0
NameSAN__PEDRO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.500000,0.000000 + +
+ + SELVA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SELVA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID527
OID_0
NameSELVA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.666667,0.000000 + +
+ + MONOS__LOS + + + + + + + + + + + + + + + + + + + + + + + + + +
MONOS__LOS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID528
OID_0
NameMONOS__LOS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.883333,3.600000,0.000000 + +
+ + CASETEJA + + + + + + + + + + + + + + + + + + + + + + + + + +
CASETEJA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID529
OID_0
NameCASETEJA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,3.483333,0.000000 + +
+ + JARDIN_BOTANICO + + + + + + + + + + + + + + + + + + + + + + + + + +
JARDIN_BOTANICO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID530
OID_0
NameJARDIN_BOTANICO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,4.083333,0.000000 + +
+ + COLEGURRE + + + + + + + + + + + + + + + + + + + + + + + + + +
COLEGURRE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID531
OID_0
NameCOLEGURRE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,4.683333,0.000000 + +
+ + PRESA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PRESA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID532
OID_0
NamePRESA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.566667,0.000000 + +
+ + MIRLAS__LAS + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRLAS__LAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID533
OID_0
NameMIRLAS__LAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,3.500000,0.000000 + +
+ + DIANA__LA_AUTOMATIC + + + + + + + + + + + + + + + + + + + + + + + + + +
DIANA__LA_AUTOMATIC
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID534
OID_0
NameDIANA__LA_AUTOMATIC
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.207778,3.314028,0.000000 + +
+ + POTRERILLO + + + + + + + + + + + + + + + + + + + + + + + + + +
POTRERILLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID535
OID_0
NamePOTRERILLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.366667,0.000000 + +
+ + LORENA + + + + + + + + + + + + + + + + + + + + + + + + + +
LORENA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID536
OID_0
NameLORENA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.766667,0.000000 + +
+ + TABANO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
TABANO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID537
OID_0
NameTABANO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.700000,3.950000,0.000000 + +
+ + NAVARRO + + + + + + + + + + + + + + + + + + + + + + + + + +
NAVARRO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID538
OID_0
NameNAVARRO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.600000,3.383333,0.000000 + +
+ + GORGONA + + + + + + + + + + + + + + + + + + + + + + + + + +
GORGONA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID539
OID_0
NameGORGONA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.383333,0.000000 + +
+ + HIGUERON + + + + + + + + + + + + + + + + + + + + + + + + + +
HIGUERON
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID540
OID_0
NameHIGUERON
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.466667,0.000000 + +
+ + LITUANIA + + + + + + + + + + + + + + + + + + + + + + + + + +
LITUANIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID541
OID_0
NameLITUANIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.466667,4.066667,0.000000 + +
+ + SAN__LORENZO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__LORENZO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID542
OID_0
NameSAN__LORENZO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.366667,3.766667,0.000000 + +
+ + PLACER__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PLACER__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID543
OID_0
NamePLACER__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.400000,0.000000 + +
+ + INDEPENDENCIA_AUTO + + + + + + + + + + + + + + + + + + + + + + + + + +
INDEPENDENCIA_AUTO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID544
OID_0
NameINDEPENDENCIA_AUTO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.593889,3.203889,0.000000 + +
+ + SAMARIA + + + + + + + + + + + + + + + + + + + + + + + + + +
SAMARIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID545
OID_0
NameSAMARIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.616667,0.000000 + +
+ + POTRERITO + + + + + + + + + + + + + + + + + + + + + + + + + +
POTRERITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID546
OID_0
NamePOTRERITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.583333,3.233333,0.000000 + +
+ + RESTREPO + + + + + + + + + + + + + + + + + + + + + + + + + +
RESTREPO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID547
OID_0
NameRESTREPO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.516667,3.816667,0.000000 + +
+ + LUISA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
LUISA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID548
OID_0
NameLUISA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.116667,4.350000,0.000000 + +
+ + RANCHO__LARGO + + + + + + + + + + + + + + + + + + + + + + + + + +
RANCHO__LARGO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID549
OID_0
NameRANCHO__LARGO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.650000,3.433333,0.000000 + +
+ + MOJARRA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
MOJARRA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID550
OID_0
NameMOJARRA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.816667,3.916667,0.000000 + +
+ + MIRAVALLES + + + + + + + + + + + + + + + + + + + + + + + + + +
MIRAVALLES
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID551
OID_0
NameMIRAVALLES
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.916667,4.516667,0.000000 + +
+ + PTO__MOLINA + + + + + + + + + + + + + + + + + + + + + + + + + +
PTO__MOLINA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID552
OID_0
NamePTO__MOLINA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.033333,4.616667,0.000000 + +
+ + PENON_EL-FRAILE + + + + + + + + + + + + + + + + + + + + + + + + + +
PENON_EL-FRAILE
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID553
OID_0
NamePENON_EL-FRAILE
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,3.316667,0.000000 + +
+ + PTO__PEDREROS + + + + + + + + + + + + + + + + + + + + + + + + + +
PTO__PEDREROS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID554
OID_0
NamePTO__PEDREROS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.316667,0.000000 + +
+ + PICHICHI + + + + + + + + + + + + + + + + + + + + + + + + + +
PICHICHI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID555
OID_0
NamePICHICHI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.783333,0.000000 + +
+ + YANACONAS + + + + + + + + + + + + + + + + + + + + + + + + + +
YANACONAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID556
OID_0
NameYANACONAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.616667,3.433333,0.000000 + +
+ + PLACER__EL_AUTOMATI + + + + + + + + + + + + + + + + + + + + + + + + + +
PLACER__EL_AUTOMATI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID557
OID_0
NamePLACER__EL_AUTOMATI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.104167,3.878944,0.000000 + +
+ + SAN__FERNANDO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__FERNANDO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID558
OID_0
NameSAN__FERNANDO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.550000,3.433333,0.000000 + +
+ + RIOFRIO + + + + + + + + + + + + + + + + + + + + + + + + + +
RIOFRIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID559
OID_0
NameRIOFRIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,4.166667,0.000000 + +
+ + SELVA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SELVA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID560
OID_0
NameSELVA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.750000,0.000000 + +
+ + SAN__RAFAEL + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__RAFAEL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID561
OID_0
NameSAN__RAFAEL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.166667,4.200000,0.000000 + +
+ + ROSARIO__EL_HDA + + + + + + + + + + + + + + + + + + + + + + + + + +
ROSARIO__EL_HDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID562
OID_0
NameROSARIO__EL_HDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.583333,0.000000 + +
+ + TRUJILLO + + + + + + + + + + + + + + + + + + + + + + + + + +
TRUJILLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID563
OID_0
NameTRUJILLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.333333,4.183333,0.000000 + +
+ + SORPRESA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
SORPRESA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID564
OID_0
NameSORPRESA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.333333,0.000000 + +
+ + SAN__ANTONIO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__ANTONIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID565
OID_0
NameSAN__ANTONIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.083333,4.566667,0.000000 + +
+ + SABANAZO + + + + + + + + + + + + + + + + + + + + + + + + + +
SABANAZO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID566
OID_0
NameSABANAZO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.150000,4.566667,0.000000 + +
+ + SAN__ANTONIO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__ANTONIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID567
OID_0
NameSAN__ANTONIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.216667,0.000000 + +
+ + SAN__EMIGDIO + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN__EMIGDIO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID568
OID_0
NameSAN__EMIGDIO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.200000,3.550000,0.000000 + +
+ + SILOE_AUTOMATICA + + + + + + + + + + + + + + + + + + + + + + + + + +
SILOE_AUTOMATICA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID569
OID_0
NameSILOE_AUTOMATICA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.560639,3.425250,0.000000 + +
+ + STA_LIBRADA + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_LIBRADA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID570
OID_0
NameSTA_LIBRADA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.233333,4.166667,0.000000 + +
+ + STA_TERESA + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_TERESA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID571
OID_0
NameSTA_TERESA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,3.483333,0.000000 + +
+ + TERESITA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
TERESITA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID572
OID_0
NameTERESITA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.666667,3.450000,0.000000 + +
+ + TESALIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
TESALIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID573
OID_0
NameTESALIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.450000,3.883333,0.000000 + +
+ + TESORITO + + + + + + + + + + + + + + + + + + + + + + + + + +
TESORITO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID574
OID_0
NameTESORITO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.066667,4.366667,0.000000 + +
+ + UNIV__DEL_VALLE_AUT + + + + + + + + + + + + + + + + + + + + + + + + + +
UNIV__DEL_VALLE_AUT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID575
OID_0
NameUNIV__DEL_VALLE_AUT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.537778,3.378000,0.000000 + +
+ + VINCULO__EL_AUTOMAT + + + + + + + + + + + + + + + + + + + + + + + + + +
VINCULO__EL_AUTOMAT
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID576
OID_0
NameVINCULO__EL_AUTOMAT
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.299528,3.851944,0.000000 + +
+ + ZARAGOZA_AUTOMATIC + + + + + + + + + + + + + + + + + + + + + + + + + +
ZARAGOZA_AUTOMATIC
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID577
OID_0
NameZARAGOZA_AUTOMATIC
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -75.930111,4.712500,0.000000 + +
+ + ZABALETAS + + + + + + + + + + + + + + + + + + + + + + + + + +
ZABALETAS
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID578
OID_0
NameZABALETAS
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.183333,4.166667,0.000000 + +
+ + PARRAGA + + + + + + + + + + + + + + + + + + + + + + + + + +
PARRAGA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID579
OID_0
NamePARRAGA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.350000,0.000000 + +
+ + PISTA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
PISTA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID580
OID_0
NamePISTA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.283333,3.350000,0.000000 + +
+ + MEDIACANOA + + + + + + + + + + + + + + + + + + + + + + + + + +
MEDIACANOA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID581
OID_0
NameMEDIACANOA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.900000,0.000000 + +
+ + YUMBILLO + + + + + + + + + + + + + + + + + + + + + + + + + +
YUMBILLO
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID582
OID_0
NameYUMBILLO
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.566667,3.583333,0.000000 + +
+ + ROSARIO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
ROSARIO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID583
OID_0
NameROSARIO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.566667,0.000000 + +
+ + CAYETANA__REJA + + + + + + + + + + + + + + + + + + + + + + + + + +
CAYETANA__REJA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID584
OID_0
NameCAYETANA__REJA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.050000,4.583333,0.000000 + +
+ + PORVENIR__1_EL + + + + + + + + + + + + + + + + + + + + + + + + + +
PORVENIR__1_EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID585
OID_0
NamePORVENIR__1_EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.250000,3.616667,0.000000 + +
+ + ROZO-FLORINDA + + + + + + + + + + + + + + + + + + + + + + + + + +
ROZO-FLORINDA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID586
OID_0
NameROZO-FLORINDA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.350000,3.600000,0.000000 + +
+ + STA_OBDULIA + + + + + + + + + + + + + + + + + + + + + + + + + +
STA_OBDULIA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID587
OID_0
NameSTA_OBDULIA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.383333,3.316667,0.000000 + +
+ + JULIA__LA + + + + + + + + + + + + + + + + + + + + + + + + + +
JULIA__LA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID588
OID_0
NameJULIA__LA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.300000,3.800000,0.000000 + +
+ + VIVERO__CALI + + + + + + + + + + + + + + + + + + + + + + + + + +
VIVERO__CALI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID589
OID_0
NameVIVERO__CALI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.516667,3.466667,0.000000 + +
+ + RIO_PAILA_1 + + + + + + + + + + + + + + + + + + + + + + + + + +
RIO_PAILA_1
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID590
OID_0
NameRIO_PAILA_1
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.316667,0.000000 + +
+ + SAN_BARTOLOME + + + + + + + + + + + + + + + + + + + + + + + + + +
SAN_BARTOLOME
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID591
OID_0
NameSAN_BARTOLOME
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.533333,3.466667,0.000000 + +
+ + UNIV_INDUSTR-CALI + + + + + + + + + + + + + + + + + + + + + + + + + +
UNIV_INDUSTR-CALI
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID592
OID_0
NameUNIV_INDUSTR-CALI
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.533333,3.450000,0.000000 + +
+ + LIBANO__EL + + + + + + + + + + + + + + + + + + + + + + + + + +
LIBANO__EL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID593
OID_0
NameLIBANO__EL
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.266667,3.383333,0.000000 + +
+ + TIERRABLANCA + + + + + + + + + + + + + + + + + + + + + + + + + +
TIERRABLANCA
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FID594
OID_0
NameTIERRABLANCA
FolderPathEstaciones_Colombia_WGS1984_20082010_Updated_Nov2010/Features (Categoria)
SymbolID0
AltitudeMo-1
Snippet
PopupInfo
+ +
+ + + + + +]]>
+ #IconStyle00 + + 0absolute + -76.100000,4.416667,0.000000 + +
+
+
+