aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/frontend/app/AppContext.tsx14
-rw-r--r--src/frontend/app/components/ErrorDisplay.tsx45
-rw-r--r--src/frontend/app/components/GroupedTable.tsx6
-rw-r--r--src/frontend/app/components/LineIcon.css4
-rw-r--r--src/frontend/app/components/LineIcon.tsx15
-rw-r--r--src/frontend/app/components/PullToRefresh.tsx161
-rw-r--r--src/frontend/app/components/RegularTable.tsx2
-rw-r--r--src/frontend/app/components/SchedulesTable.css4
-rw-r--r--src/frontend/app/components/SchedulesTable.tsx85
-rw-r--r--src/frontend/app/components/SchedulesTableSkeleton.tsx42
-rw-r--r--src/frontend/app/components/ServiceAlerts.tsx4
-rw-r--r--src/frontend/app/components/StopAlert.tsx24
-rw-r--r--src/frontend/app/components/StopGallery.css7
-rw-r--r--src/frontend/app/components/StopGallery.tsx51
-rw-r--r--src/frontend/app/components/StopItem.tsx4
-rw-r--r--src/frontend/app/components/StopItemSkeleton.tsx33
-rw-r--r--src/frontend/app/components/StopSheet.tsx52
-rw-r--r--src/frontend/app/components/StopSheetSkeleton.tsx30
-rw-r--r--src/frontend/app/components/TimetableSkeleton.tsx10
-rw-r--r--src/frontend/app/data/RegionConfig.ts4
-rw-r--r--src/frontend/app/data/StopDataProvider.ts37
-rw-r--r--src/frontend/app/maps/styleloader.ts2
-rw-r--r--src/frontend/app/root.tsx10
-rw-r--r--src/frontend/app/routes/estimates-$id.css8
-rw-r--r--src/frontend/app/routes/estimates-$id.tsx89
-rw-r--r--src/frontend/app/routes/map.tsx13
-rw-r--r--src/frontend/app/routes/settings.css8
-rw-r--r--src/frontend/app/routes/settings.tsx45
-rw-r--r--src/frontend/app/routes/stoplist.tsx57
-rw-r--r--src/frontend/public/maps/styles/openfreemap-any.json5043
-rw-r--r--src/frontend/public/pwa-worker.js28
-rw-r--r--src/frontend/public/stops/santiago.json3137
-rw-r--r--src/frontend/public/stops/vigo.json6368
-rw-r--r--src/frontend/react-router.config.ts2
34 files changed, 3650 insertions, 11794 deletions
diff --git a/src/frontend/app/AppContext.tsx b/src/frontend/app/AppContext.tsx
index 8f47a49..b986880 100644
--- a/src/frontend/app/AppContext.tsx
+++ b/src/frontend/app/AppContext.tsx
@@ -7,7 +7,13 @@ import {
type ReactNode,
} from "react";
import { type LngLatLike } from "maplibre-gl";
-import { type RegionId, DEFAULT_REGION, getRegionConfig, isValidRegion, REGIONS } from "./data/RegionConfig";
+import {
+ type RegionId,
+ DEFAULT_REGION,
+ getRegionConfig,
+ isValidRegion,
+ REGIONS,
+} from "./data/RegionConfig";
export type Theme = "light" | "dark" | "system";
type TableStyle = "regular" | "grouped";
@@ -62,7 +68,11 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
const [theme, setTheme] = useState<Theme>(() => {
const savedTheme = localStorage.getItem("theme");
- if (savedTheme === "light" || savedTheme === "dark" || savedTheme === "system") {
+ if (
+ savedTheme === "light" ||
+ savedTheme === "dark" ||
+ savedTheme === "system"
+ ) {
return savedTheme;
}
return "system";
diff --git a/src/frontend/app/components/ErrorDisplay.tsx b/src/frontend/app/components/ErrorDisplay.tsx
index 3c91db6..f63c995 100644
--- a/src/frontend/app/components/ErrorDisplay.tsx
+++ b/src/frontend/app/components/ErrorDisplay.tsx
@@ -5,7 +5,7 @@ import "./ErrorDisplay.css";
interface ErrorDisplayProps {
error: {
- type: 'network' | 'server' | 'unknown';
+ type: "network" | "server" | "unknown";
status?: number;
message?: string;
};
@@ -18,15 +18,15 @@ export const ErrorDisplay: React.FC<ErrorDisplayProps> = ({
error,
onRetry,
title,
- className = ""
+ className = "",
}) => {
const { t } = useTranslation();
const getErrorIcon = () => {
switch (error.type) {
- case 'network':
+ case "network":
return <WifiOff className="error-icon" />;
- case 'server':
+ case "server":
return <AlertTriangle className="error-icon" />;
default:
return <AlertTriangle className="error-icon" />;
@@ -35,21 +35,38 @@ export const ErrorDisplay: React.FC<ErrorDisplayProps> = ({
const getErrorMessage = () => {
switch (error.type) {
- case 'network':
- return t("errors.network", "No hay conexión a internet. Comprueba tu conexión y vuelve a intentarlo.");
- case 'server':
+ case "network":
+ return t(
+ "errors.network",
+ "No hay conexión a internet. Comprueba tu conexión y vuelve a intentarlo.",
+ );
+ case "server":
if (error.status === 404) {
- return t("errors.not_found", "No se encontraron datos para esta parada.");
+ return t(
+ "errors.not_found",
+ "No se encontraron datos para esta parada.",
+ );
}
if (error.status === 500) {
- return t("errors.server_error", "Error del servidor. Inténtalo de nuevo más tarde.");
+ return t(
+ "errors.server_error",
+ "Error del servidor. Inténtalo de nuevo más tarde.",
+ );
}
if (error.status && error.status >= 400) {
- return t("errors.client_error", "Error en la solicitud. Verifica que la parada existe.");
+ return t(
+ "errors.client_error",
+ "Error en la solicitud. Verifica que la parada existe.",
+ );
}
- return t("errors.server_generic", "Error del servidor ({{status}})", { status: error.status || 'desconocido' });
+ return t("errors.server_generic", "Error del servidor ({{status}})", {
+ status: error.status || "desconocido",
+ });
default:
- return error.message || t("errors.unknown", "Ha ocurrido un error inesperado.");
+ return (
+ error.message ||
+ t("errors.unknown", "Ha ocurrido un error inesperado.")
+ );
}
};
@@ -57,9 +74,9 @@ export const ErrorDisplay: React.FC<ErrorDisplayProps> = ({
if (title) return title;
switch (error.type) {
- case 'network':
+ case "network":
return t("errors.network_title", "Sin conexión");
- case 'server':
+ case "server":
return t("errors.server_title", "Error del servidor");
default:
return t("errors.unknown_title", "Error");
diff --git a/src/frontend/app/components/GroupedTable.tsx b/src/frontend/app/components/GroupedTable.tsx
index 9bdd5a0..f116537 100644
--- a/src/frontend/app/components/GroupedTable.tsx
+++ b/src/frontend/app/components/GroupedTable.tsx
@@ -8,7 +8,11 @@ interface GroupedTable {
regionConfig: RegionConfig;
}
-export const GroupedTable: React.FC<GroupedTable> = ({ data, dataDate, regionConfig }) => {
+export const GroupedTable: React.FC<GroupedTable> = ({
+ data,
+ dataDate,
+ regionConfig,
+}) => {
const formatDistance = (meters: number) => {
if (meters > 1024) {
return `${(meters / 1000).toFixed(1)} km`;
diff --git a/src/frontend/app/components/LineIcon.css b/src/frontend/app/components/LineIcon.css
index 94d5848..fdfdd06 100644
--- a/src/frontend/app/components/LineIcon.css
+++ b/src/frontend/app/components/LineIcon.css
@@ -87,7 +87,6 @@
--line-santiago-p6: #999999;
--line-santiago-p7: #d2438c;
--line-santiago-p8: #e28c3a;
-
}
.line-icon {
@@ -118,6 +117,5 @@
border-radius: 50%;
font: 600 14px / 1 monospace;
- letter-spacing: .05em;
+ letter-spacing: 0.05em;
}
-
diff --git a/src/frontend/app/components/LineIcon.tsx b/src/frontend/app/components/LineIcon.tsx
index ef05987..8e9a4bd 100644
--- a/src/frontend/app/components/LineIcon.tsx
+++ b/src/frontend/app/components/LineIcon.tsx
@@ -8,7 +8,11 @@ interface LineIconProps {
rounded?: boolean;
}
-const LineIcon: React.FC<LineIconProps> = ({ line, region = "vigo", rounded = false }) => {
+const LineIcon: React.FC<LineIconProps> = ({
+ line,
+ region = "vigo",
+ rounded = false,
+}) => {
const formattedLine = useMemo(() => {
return /^[a-zA-Z]/.test(line) ? line : `L${line}`;
}, [line]);
@@ -17,8 +21,13 @@ const LineIcon: React.FC<LineIconProps> = ({ line, region = "vigo", rounded = fa
return (
<span
- className={rounded ? 'line-icon-rounded' : 'line-icon'}
- style={{ '--line-colour': `var(${cssVarName})`, '--line-text-colour': `var(${cssTextVarName}, unset)` } as React.CSSProperties}
+ className={rounded ? "line-icon-rounded" : "line-icon"}
+ style={
+ {
+ "--line-colour": `var(${cssVarName})`,
+ "--line-text-colour": `var(${cssTextVarName}, unset)`,
+ } as React.CSSProperties
+ }
>
{line}
</span>
diff --git a/src/frontend/app/components/PullToRefresh.tsx b/src/frontend/app/components/PullToRefresh.tsx
index 9def8f5..d5ea51b 100644
--- a/src/frontend/app/components/PullToRefresh.tsx
+++ b/src/frontend/app/components/PullToRefresh.tsx
@@ -27,75 +27,97 @@ export const PullToRefresh: React.FC<PullToRefreshProps> = ({
const rotate = useTransform(y, [0, threshold], [0, 180]);
const isAtPageTop = useCallback(() => {
- const scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
+ const scrollTop =
+ window.pageYOffset ||
+ document.documentElement.scrollTop ||
+ document.body.scrollTop ||
+ 0;
return scrollTop <= 10; // Increased tolerance to 10px
}, []);
- const handleTouchStart = useCallback((e: TouchEvent) => {
- // Very strict check - must be at absolute top
- const windowScroll = window.pageYOffset || window.scrollY || 0;
- const htmlScroll = document.documentElement.scrollTop;
- const bodyScroll = document.body.scrollTop;
- const containerScroll = containerRef.current?.scrollTop || 0;
- const parentScroll = containerRef.current?.parentElement?.scrollTop || 0;
- const maxScroll = Math.max(windowScroll, htmlScroll, bodyScroll, containerScroll, parentScroll);
+ const handleTouchStart = useCallback(
+ (e: TouchEvent) => {
+ // Very strict check - must be at absolute top
+ const windowScroll = window.pageYOffset || window.scrollY || 0;
+ const htmlScroll = document.documentElement.scrollTop;
+ const bodyScroll = document.body.scrollTop;
+ const containerScroll = containerRef.current?.scrollTop || 0;
+ const parentScroll = containerRef.current?.parentElement?.scrollTop || 0;
+ const maxScroll = Math.max(
+ windowScroll,
+ htmlScroll,
+ bodyScroll,
+ containerScroll,
+ parentScroll,
+ );
- if (maxScroll > 0 || isRefreshing) {
- setIsPulling(false);
- setIsActive(false);
- return;
- }
+ if (maxScroll > 0 || isRefreshing) {
+ setIsPulling(false);
+ setIsActive(false);
+ return;
+ }
- startY.current = e.touches[0].clientY;
- setIsPulling(true);
- }, [isRefreshing]);
+ startY.current = e.touches[0].clientY;
+ setIsPulling(true);
+ },
+ [isRefreshing],
+ );
- const handleTouchMove = useCallback((e: TouchEvent) => {
- if (!isPulling) return;
+ const handleTouchMove = useCallback(
+ (e: TouchEvent) => {
+ if (!isPulling) return;
- // Continuously check if we're still at the top during the gesture
- const windowScroll = window.pageYOffset || window.scrollY || 0;
- const htmlScroll = document.documentElement.scrollTop;
- const bodyScroll = document.body.scrollTop;
- const containerScroll = containerRef.current?.scrollTop || 0;
- const parentScroll = containerRef.current?.parentElement?.scrollTop || 0;
- const maxScroll = Math.max(windowScroll, htmlScroll, bodyScroll, containerScroll, parentScroll);
+ // Continuously check if we're still at the top during the gesture
+ const windowScroll = window.pageYOffset || window.scrollY || 0;
+ const htmlScroll = document.documentElement.scrollTop;
+ const bodyScroll = document.body.scrollTop;
+ const containerScroll = containerRef.current?.scrollTop || 0;
+ const parentScroll = containerRef.current?.parentElement?.scrollTop || 0;
+ const maxScroll = Math.max(
+ windowScroll,
+ htmlScroll,
+ bodyScroll,
+ containerScroll,
+ parentScroll,
+ );
- if (maxScroll > 10) {
- // Cancel pull-to-refresh if we've scrolled away from top
- setIsPulling(false);
- setIsActive(false);
- y.set(0);
- return;
- }
+ if (maxScroll > 10) {
+ // Cancel pull-to-refresh if we've scrolled away from top
+ setIsPulling(false);
+ setIsActive(false);
+ y.set(0);
+ return;
+ }
- const currentY = e.touches[0].clientY;
- const pullDistance = currentY - startY.current;
+ const currentY = e.touches[0].clientY;
+ const pullDistance = currentY - startY.current;
- if (pullDistance > 0) {
- // Only prevent default when the event is cancelable
- if (e.cancelable) {
- e.preventDefault();
- }
+ if (pullDistance > 0) {
+ // Only prevent default when the event is cancelable
+ if (e.cancelable) {
+ e.preventDefault();
+ }
- const dampedDistance = Math.min(pullDistance * 0.5, threshold * 1.2);
- y.set(dampedDistance);
+ const dampedDistance = Math.min(pullDistance * 0.5, threshold * 1.2);
+ y.set(dampedDistance);
- if (dampedDistance >= threshold && !isActive) {
- setIsActive(true);
- // Only vibrate if user activation is available and vibrate is supported
- if (navigator.vibrate && navigator.userActivation?.hasBeenActive) {
- navigator.vibrate(50);
+ if (dampedDistance >= threshold && !isActive) {
+ setIsActive(true);
+ // Only vibrate if user activation is available and vibrate is supported
+ if (navigator.vibrate && navigator.userActivation?.hasBeenActive) {
+ navigator.vibrate(50);
+ }
+ } else if (dampedDistance < threshold && isActive) {
+ setIsActive(false);
}
- } else if (dampedDistance < threshold && isActive) {
+ } else {
+ // Reset if pulling up
+ y.set(0);
setIsActive(false);
}
- } else {
- // Reset if pulling up
- y.set(0);
- setIsActive(false);
- }
- }, [isPulling, threshold, isActive, y]);
+ },
+ [isPulling, threshold, isActive, y],
+ );
const handleTouchEnd = useCallback(async () => {
if (!isPulling) return;
@@ -106,7 +128,7 @@ export const PullToRefresh: React.FC<PullToRefreshProps> = ({
try {
await onRefresh();
} catch (error) {
- console.error('Refresh failed:', error);
+ console.error("Refresh failed:", error);
}
}
@@ -121,14 +143,18 @@ export const PullToRefresh: React.FC<PullToRefreshProps> = ({
if (!container) return;
// Use passive: false for touchmove to allow preventDefault
- container.addEventListener('touchstart', handleTouchStart, { passive: true });
- container.addEventListener('touchmove', handleTouchMove, { passive: false });
- container.addEventListener('touchend', handleTouchEnd, { passive: true });
+ container.addEventListener("touchstart", handleTouchStart, {
+ passive: true,
+ });
+ container.addEventListener("touchmove", handleTouchMove, {
+ passive: false,
+ });
+ container.addEventListener("touchend", handleTouchEnd, { passive: true });
return () => {
- container.removeEventListener('touchstart', handleTouchStart);
- container.removeEventListener('touchmove', handleTouchMove);
- container.removeEventListener('touchend', handleTouchEnd);
+ container.removeEventListener("touchstart", handleTouchStart);
+ container.removeEventListener("touchmove", handleTouchMove);
+ container.removeEventListener("touchend", handleTouchEnd);
};
}, [handleTouchStart, handleTouchMove, handleTouchEnd]);
@@ -136,25 +162,20 @@ export const PullToRefresh: React.FC<PullToRefreshProps> = ({
<div className="pull-to-refresh-container" ref={containerRef}>
{/* Simple indicator */}
{isPulling && (
- <motion.div
- className="pull-to-refresh-indicator"
- style={{ opacity }}
- >
+ <motion.div className="pull-to-refresh-indicator" style={{ opacity }}>
<motion.div
- className={`refresh-icon-container ${isActive ? 'active' : ''}`}
+ className={`refresh-icon-container ${isActive ? "active" : ""}`}
style={{ scale, rotate: isRefreshing ? 0 : rotate }}
>
<RefreshCw
- className={`refresh-icon ${isRefreshing ? 'spinning' : ''}`}
+ className={`refresh-icon ${isRefreshing ? "spinning" : ""}`}
/>
</motion.div>
</motion.div>
)}
{/* Normal content - no transform interference */}
- <div className="pull-to-refresh-content">
- {children}
- </div>
+ <div className="pull-to-refresh-content">{children}</div>
</div>
);
};
diff --git a/src/frontend/app/components/RegularTable.tsx b/src/frontend/app/components/RegularTable.tsx
index 868332f..baa3804 100644
--- a/src/frontend/app/components/RegularTable.tsx
+++ b/src/frontend/app/components/RegularTable.tsx
@@ -24,7 +24,7 @@ export const RegularTable: React.FC<RegularTableProps> = ({
{
hour: "2-digit",
minute: "2-digit",
- }
+ },
).format(arrival);
};
diff --git a/src/frontend/app/components/SchedulesTable.css b/src/frontend/app/components/SchedulesTable.css
index 6d2f201..74d7569 100644
--- a/src/frontend/app/components/SchedulesTable.css
+++ b/src/frontend/app/components/SchedulesTable.css
@@ -22,7 +22,9 @@
border: 1px solid var(--card-border);
border-radius: 10px;
padding: 1.25rem;
- transition: background-color 0.2s ease, border 0.2s ease;
+ transition:
+ background-color 0.2s ease,
+ border 0.2s ease;
}
/* Next upcoming service: slight emphasis */
diff --git a/src/frontend/app/components/SchedulesTable.tsx b/src/frontend/app/components/SchedulesTable.tsx
index a3bbd9f..9f3f062 100644
--- a/src/frontend/app/components/SchedulesTable.tsx
+++ b/src/frontend/app/components/SchedulesTable.tsx
@@ -24,7 +24,7 @@ export type ScheduledTable = {
terminus_code: string;
terminus_name: string;
terminus_time: string;
-}
+};
interface TimetableTableProps {
data: ScheduledTable[];
@@ -34,11 +34,11 @@ interface TimetableTableProps {
// Utility function to parse service ID and get the turn number
const parseServiceId = (serviceId: string): string => {
- const parts = serviceId.split('_');
- if (parts.length === 0) return '';
+ const parts = serviceId.split("_");
+ if (parts.length === 0) return "";
const lastPart = parts[parts.length - 1];
- if (lastPart.length < 6) return '';
+ if (lastPart.length < 6) return "";
const last6 = lastPart.slice(-6);
const lineCode = last6.slice(0, 3);
@@ -52,15 +52,32 @@ const parseServiceId = (serviceId: string): string => {
let displayLine: string;
switch (lineNumber) {
- case 1: displayLine = "C1"; break;
- case 3: displayLine = "C3"; break;
- case 30: displayLine = "N1"; break;
- case 33: displayLine = "N4"; break;
- case 8: displayLine = "A"; break;
- case 101: displayLine = "H"; break;
- case 150: displayLine = "REF"; break;
- case 500: displayLine = "TUR"; break;
- default: displayLine = `L${lineNumber}`;
+ case 1:
+ displayLine = "C1";
+ break;
+ case 3:
+ displayLine = "C3";
+ break;
+ case 30:
+ displayLine = "N1";
+ break;
+ case 33:
+ displayLine = "N4";
+ break;
+ case 8:
+ displayLine = "A";
+ break;
+ case 101:
+ displayLine = "H";
+ break;
+ case 150:
+ displayLine = "REF";
+ break;
+ case 500:
+ displayLine = "TUR";
+ break;
+ default:
+ displayLine = `L${lineNumber}`;
}
return `${displayLine}-${turnNumber}`;
@@ -68,21 +85,26 @@ const parseServiceId = (serviceId: string): string => {
// Utility function to compare times
const timeToMinutes = (time: string): number => {
- const [hours, minutes] = time.split(':').map(Number);
+ const [hours, minutes] = time.split(":").map(Number);
return hours * 60 + minutes;
};
// Utility function to find nearby entries
-const findNearbyEntries = (entries: ScheduledTable[], currentTime: string, before: number = 4, after: number = 4): ScheduledTable[] => {
+const findNearbyEntries = (
+ entries: ScheduledTable[],
+ currentTime: string,
+ before: number = 4,
+ after: number = 4,
+): ScheduledTable[] => {
if (!currentTime) return entries.slice(0, before + after);
const currentMinutes = timeToMinutes(currentTime);
- const sortedEntries = [...entries].sort((a, b) =>
- timeToMinutes(a.calling_time) - timeToMinutes(b.calling_time)
+ const sortedEntries = [...entries].sort(
+ (a, b) => timeToMinutes(a.calling_time) - timeToMinutes(b.calling_time),
);
- let currentIndex = sortedEntries.findIndex(entry =>
- timeToMinutes(entry.calling_time) >= currentMinutes
+ let currentIndex = sortedEntries.findIndex(
+ (entry) => timeToMinutes(entry.calling_time) >= currentMinutes,
);
if (currentIndex === -1) {
@@ -99,21 +121,24 @@ const findNearbyEntries = (entries: ScheduledTable[], currentTime: string, befor
export const SchedulesTable: React.FC<TimetableTableProps> = ({
data,
showAll = false,
- currentTime
+ currentTime,
}) => {
const { t } = useTranslation();
const { region } = useApp();
- const displayData = showAll ? data : findNearbyEntries(data, currentTime || '');
- const nowMinutes = currentTime ? timeToMinutes(currentTime) : timeToMinutes(new Date().toTimeString().slice(0, 8));
+ const displayData = showAll
+ ? data
+ : findNearbyEntries(data, currentTime || "");
+ const nowMinutes = currentTime
+ ? timeToMinutes(currentTime)
+ : timeToMinutes(new Date().toTimeString().slice(0, 8));
return (
<div className="timetable-container">
<div className="timetable-caption">
{showAll
? t("timetable.fullCaption", "Horarios teóricos de la parada")
- : t("timetable.nearbyCaption", "Próximos horarios teóricos")
- }
+ : t("timetable.nearbyCaption", "Próximos horarios teóricos")}
</div>
<div className="timetable-cards">
@@ -127,7 +152,7 @@ export const SchedulesTable: React.FC<TimetableTableProps> = ({
style={{
background: isPast
? "var(--surface-past, #f3f3f3)"
- : "var(--surface-future, #fff)"
+ : "var(--surface-future, #fff)",
}}
>
<div className="card-header">
@@ -139,7 +164,9 @@ export const SchedulesTable: React.FC<TimetableTableProps> = ({
{entry.route && entry.route.trim() ? (
<strong>{entry.route}</strong>
) : (
- <strong>{t("timetable.noDestination", "Línea")} {entry.line}</strong>
+ <strong>
+ {t("timetable.noDestination", "Línea")} {entry.line}
+ </strong>
)}
</div>
@@ -155,7 +182,7 @@ export const SchedulesTable: React.FC<TimetableTableProps> = ({
{parseServiceId(entry.service_id)}
</span>
{entry.next_streets.length > 0 && (
- <span> — {entry.next_streets.join(' — ')}</span>
+ <span> — {entry.next_streets.join(" — ")}</span>
)}
</div>
</div>
@@ -164,7 +191,9 @@ export const SchedulesTable: React.FC<TimetableTableProps> = ({
})}
</div>
{displayData.length === 0 && (
- <p className="no-data">{t("timetable.noData", "No hay datos de horarios disponibles")}</p>
+ <p className="no-data">
+ {t("timetable.noData", "No hay datos de horarios disponibles")}
+ </p>
)}
</div>
);
diff --git a/src/frontend/app/components/SchedulesTableSkeleton.tsx b/src/frontend/app/components/SchedulesTableSkeleton.tsx
index 50ba94d..3ae9729 100644
--- a/src/frontend/app/components/SchedulesTableSkeleton.tsx
+++ b/src/frontend/app/components/SchedulesTableSkeleton.tsx
@@ -8,7 +8,7 @@ interface EstimatesTableSkeletonProps {
}
export const SchedulesTableSkeleton: React.FC<EstimatesTableSkeletonProps> = ({
- rows = 3
+ rows = 3,
}) => {
const { t } = useTranslation();
@@ -32,13 +32,23 @@ export const SchedulesTableSkeleton: React.FC<EstimatesTableSkeletonProps> = ({
{Array.from({ length: rows }, (_, index) => (
<tr key={`skeleton-${index}`}>
<td>
- <Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} />
+ <Skeleton
+ width="40px"
+ height="24px"
+ style={{ borderRadius: "4px" }}
+ />
</td>
<td>
<Skeleton width="120px" />
</td>
<td>
- <div style={{ display: "flex", flexDirection: "column", gap: "2px" }}>
+ <div
+ style={{
+ display: "flex",
+ flexDirection: "column",
+ gap: "2px",
+ }}
+ >
<Skeleton width="60px" />
<Skeleton width="40px" />
</div>
@@ -59,10 +69,9 @@ interface EstimatesGroupedSkeletonProps {
rowsPerGroup?: number;
}
-export const EstimatesGroupedSkeleton: React.FC<EstimatesGroupedSkeletonProps> = ({
- groups = 3,
- rowsPerGroup = 2
-}) => {
+export const EstimatesGroupedSkeleton: React.FC<
+ EstimatesGroupedSkeletonProps
+> = ({ groups = 3, rowsPerGroup = 2 }) => {
const { t } = useTranslation();
return (
@@ -85,17 +94,30 @@ export const EstimatesGroupedSkeleton: React.FC<EstimatesGroupedSkeletonProps> =
{Array.from({ length: groups }, (_, groupIndex) => (
<React.Fragment key={`group-${groupIndex}`}>
{Array.from({ length: rowsPerGroup }, (_, rowIndex) => (
- <tr key={`skeleton-${groupIndex}-${rowIndex}`} className={rowIndex === 0 ? "group-start" : ""}>
+ <tr
+ key={`skeleton-${groupIndex}-${rowIndex}`}
+ className={rowIndex === 0 ? "group-start" : ""}
+ >
<td>
{rowIndex === 0 && (
- <Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} />
+ <Skeleton
+ width="40px"
+ height="24px"
+ style={{ borderRadius: "4px" }}
+ />
)}
</td>
<td>
<Skeleton width="120px" />
</td>
<td>
- <div style={{ display: "flex", flexDirection: "column", gap: "2px" }}>
+ <div
+ style={{
+ display: "flex",
+ flexDirection: "column",
+ gap: "2px",
+ }}
+ >
<Skeleton width="60px" />
<Skeleton width="40px" />
</div>
diff --git a/src/frontend/app/components/ServiceAlerts.tsx b/src/frontend/app/components/ServiceAlerts.tsx
index 7966f2a..eba8a92 100644
--- a/src/frontend/app/components/ServiceAlerts.tsx
+++ b/src/frontend/app/components/ServiceAlerts.tsx
@@ -12,7 +12,9 @@ const ServiceAlerts: React.FC = () => {
<div className="alert-icon">ℹ️</div>
<div className="alert-content">
<div className="alert-title">{t("stoplist.alerts_coming_soon")}</div>
- <div className="alert-message">{t("stoplist.alerts_description")}</div>
+ <div className="alert-message">
+ {t("stoplist.alerts_description")}
+ </div>
</div>
</div>
</div>
diff --git a/src/frontend/app/components/StopAlert.tsx b/src/frontend/app/components/StopAlert.tsx
index d969108..f1356e6 100644
--- a/src/frontend/app/components/StopAlert.tsx
+++ b/src/frontend/app/components/StopAlert.tsx
@@ -8,7 +8,10 @@ interface StopAlertProps {
compact?: boolean;
}
-export const StopAlert: React.FC<StopAlertProps> = ({ stop, compact = false }) => {
+export const StopAlert: React.FC<StopAlertProps> = ({
+ stop,
+ compact = false,
+}) => {
// Don't render anything if there's no alert content
const hasContent = stop.title || stop.message;
if (!hasContent) {
@@ -28,11 +31,30 @@ export const StopAlert: React.FC<StopAlertProps> = ({ stop, compact = false }) =
}, [stop.alert]);
return (
+<<<<<<< HEAD
<div className={`stop-alert ${alertType} ${compact ? 'stop-alert-compact' : ''}`}>
{alertIcon}
<div className="stop-alert-content">
{stop.title && <div className="stop-alert-title">{stop.title}</div>}
{stop.message && <div className="stop-alert-message">{stop.message}</div>}
+=======
+ <div
+ className={`stop-alert ${isError ? "stop-alert-error" : "stop-alert-info"} ${compact ? "stop-alert-compact" : ""}`}
+ >
+ <div className="stop-alert-icon">
+ {isError ? <AlertCircle /> : <Info />}
+ </div>
+ <div className="stop-alert-content">
+ {stop.title && <div className="stop-alert-title">{stop.title}</div>}
+ {stop.message && (
+ <div className="stop-alert-message">{stop.message}</div>
+ )}
+ {stop.alternateCodes && stop.alternateCodes.length > 0 && (
+ <div className="stop-alert-alternate-codes">
+ Alternative stops: {stop.alternateCodes.join(", ")}
+ </div>
+ )}
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
</div>
</div>
);
diff --git a/src/frontend/app/components/StopGallery.css b/src/frontend/app/components/StopGallery.css
index f53f2a5..adba001 100644
--- a/src/frontend/app/components/StopGallery.css
+++ b/src/frontend/app/components/StopGallery.css
@@ -57,7 +57,10 @@
.gallery-item-link {
display: block;
padding: 1rem;
- background-color: var(--card-background-color, var(--message-background-color));
+ background-color: var(
+ --card-background-color,
+ var(--message-background-color)
+ );
border: 1px solid var(--border-color);
border-radius: 12px;
text-decoration: none;
@@ -146,7 +149,7 @@
.gallery-item {
flex: 0 0 320px;
}
-
+
.gallery-scroll-container {
margin: 0;
padding: 0;
diff --git a/src/frontend/app/components/StopGallery.tsx b/src/frontend/app/components/StopGallery.tsx
index 7dda637..3646fdd 100644
--- a/src/frontend/app/components/StopGallery.tsx
+++ b/src/frontend/app/components/StopGallery.tsx
@@ -1,5 +1,4 @@
-import React, { useRef } from "react";
-import { motion, useMotionValue } from "framer-motion";
+import React, { useRef, useState, useEffect } from "react";
import { type Stop } from "../data/StopDataProvider";
import StopGalleryItem from "./StopGalleryItem";
import "./StopGallery.css";
@@ -10,9 +9,28 @@ interface StopGalleryProps {
emptyMessage?: string;
}
-const StopGallery: React.FC<StopGalleryProps> = ({ stops, title, emptyMessage }) => {
+const StopGallery: React.FC<StopGalleryProps> = ({
+ stops,
+ title,
+ emptyMessage,
+}) => {
const scrollRef = useRef<HTMLDivElement>(null);
- const x = useMotionValue(0);
+ const [activeIndex, setActiveIndex] = useState(0);
+
+ useEffect(() => {
+ const element = scrollRef.current;
+ if (!element) return;
+
+ const handleScroll = () => {
+ const scrollLeft = element.scrollLeft;
+ const itemWidth = element.scrollWidth / stops.length;
+ const index = Math.round(scrollLeft / itemWidth);
+ setActiveIndex(index);
+ };
+
+ element.addEventListener("scroll", handleScroll);
+ return () => element.removeEventListener("scroll", handleScroll);
+ }, [stops.length]);
if (stops.length === 0 && emptyMessage) {
return (
@@ -33,24 +51,25 @@ const StopGallery: React.FC<StopGalleryProps> = ({ stops, title, emptyMessage })
<h2 className="page-subtitle">{title}</h2>
<span className="gallery-counter">{stops.length}</span>
</div>
-
- <motion.div
- className="gallery-scroll-container"
- ref={scrollRef}
- style={{ x }}
- >
+
+ <div className="gallery-scroll-container" ref={scrollRef}>
<div className="gallery-track">
{stops.map((stop) => (
<StopGalleryItem key={stop.stopId} stop={stop} />
))}
</div>
- </motion.div>
-
- <div className="gallery-indicators">
- {stops.map((_, index) => (
- <div key={index} className="gallery-indicator" />
- ))}
</div>
+
+ {stops.length > 1 && (
+ <div className="gallery-indicators">
+ {stops.map((_, index) => (
+ <div
+ key={index}
+ className={`gallery-indicator ${index === activeIndex ? "active" : ""}`}
+ />
+ ))}
+ </div>
+ )}
</div>
);
};
diff --git a/src/frontend/app/components/StopItem.tsx b/src/frontend/app/components/StopItem.tsx
index 7d89d7d..ae51df8 100644
--- a/src/frontend/app/components/StopItem.tsx
+++ b/src/frontend/app/components/StopItem.tsx
@@ -17,7 +17,9 @@ const StopItem: React.FC<StopItemProps> = ({ stop }) => {
{stop.favourite && <span className="favourite-icon">★</span>} (
{stop.stopId}) {StopDataProvider.getDisplayName(region, stop)}
<div className="line-icons">
- {stop.lines?.map((line) => <LineIcon key={line} line={line} region={region} />)}
+ {stop.lines?.map((line) => (
+ <LineIcon key={line} line={line} region={region} />
+ ))}
</div>
</Link>
</li>
diff --git a/src/frontend/app/components/StopItemSkeleton.tsx b/src/frontend/app/components/StopItemSkeleton.tsx
index 9133393..76559de 100644
--- a/src/frontend/app/components/StopItemSkeleton.tsx
+++ b/src/frontend/app/components/StopItemSkeleton.tsx
@@ -3,14 +3,15 @@ import Skeleton, { SkeletonTheme } from "react-loading-skeleton";
import "react-loading-skeleton/dist/skeleton.css";
interface StopItemSkeletonProps {
- showId?: boolean;
- stopId?: number;
+ showId?: boolean;
+ stopId?: number;
}
const StopItemSkeleton: React.FC<StopItemSkeletonProps> = ({
- showId = false,
- stopId
+ showId = false,
+ stopId,
}) => {
+<<<<<<< HEAD
return (
<SkeletonTheme baseColor="var(--skeleton-base)" highlightColor="var(--skeleton-highlight)">
<li className="list-item">
@@ -37,6 +38,30 @@ const StopItemSkeleton: React.FC<StopItemSkeletonProps> = ({
</li>
</SkeletonTheme>
);
+=======
+ return (
+ <SkeletonTheme baseColor="#f0f0f0" highlightColor="#e0e0e0">
+ <li className="list-item">
+ <div className="list-item-link">
+ <span>{showId && stopId && <>({stopId}) </>}</span>
+ <Skeleton
+ width={showId ? "60%" : "80%"}
+ style={{ display: "inline-block" }}
+ />
+ <div className="line-icons" style={{ marginTop: "4px" }}>
+ <Skeleton
+ count={3}
+ width="30px"
+ height="20px"
+ inline={true}
+ style={{ marginRight: "0.5rem" }}
+ />
+ </div>
+ </div>
+ </li>
+ </SkeletonTheme>
+ );
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
};
export default StopItemSkeleton;
diff --git a/src/frontend/app/components/StopSheet.tsx b/src/frontend/app/components/StopSheet.tsx
index 695b18e..422558b 100644
--- a/src/frontend/app/components/StopSheet.tsx
+++ b/src/frontend/app/components/StopSheet.tsx
@@ -20,12 +20,15 @@ interface StopSheetProps {
}
interface ErrorInfo {
- type: 'network' | 'server' | 'unknown';
+ type: "network" | "server" | "unknown";
status?: number;
message?: string;
}
-const loadStopData = async (region: RegionId, stopId: number): Promise<Estimate[]> => {
+const loadStopData = async (
+ region: RegionId,
+ stopId: number,
+): Promise<Estimate[]> => {
const regionConfig = getRegionConfig(region);
const resp = await fetch(`${regionConfig.estimatesEndpoint}?id=${stopId}`, {
headers: {
@@ -43,7 +46,7 @@ const loadStopData = async (region: RegionId, stopId: number): Promise<Estimate[
export const StopSheet: React.FC<StopSheetProps> = ({
isOpen,
onClose,
- stop
+ stop,
}) => {
const { t } = useTranslation();
const { region } = useApp();
@@ -55,20 +58,23 @@ export const StopSheet: React.FC<StopSheetProps> = ({
const parseError = (error: any): ErrorInfo => {
if (!navigator.onLine) {
- return { type: 'network', message: 'No internet connection' };
+ return { type: "network", message: "No internet connection" };
}
- if (error.message?.includes('Failed to fetch') || error.message?.includes('NetworkError')) {
- return { type: 'network' };
+ if (
+ error.message?.includes("Failed to fetch") ||
+ error.message?.includes("NetworkError")
+ ) {
+ return { type: "network" };
}
- if (error.message?.includes('HTTP')) {
+ if (error.message?.includes("HTTP")) {
const statusMatch = error.message.match(/HTTP (\d+):/);
const status = statusMatch ? parseInt(statusMatch[1]) : undefined;
- return { type: 'server', status };
+ return { type: "server", status };
}
- return { type: 'unknown', message: error.message };
+ return { type: "unknown", message: error.message };
};
const loadData = async () => {
@@ -103,7 +109,7 @@ export const StopSheet: React.FC<StopSheetProps> = ({
{
hour: "2-digit",
minute: "2-digit",
- }
+ },
).format(arrival);
} else {
return `${minutes} ${t("estimates.minutes", "min")}`;
@@ -123,11 +129,7 @@ export const StopSheet: React.FC<StopSheetProps> = ({
data?.sort((a, b) => a.minutes - b.minutes).slice(0, 4) || [];
return (
- <Sheet
- isOpen={isOpen}
- onClose={onClose}
- detent={"content-height" as any}
- >
+ <Sheet isOpen={isOpen} onClose={onClose} detent={"content-height" as any}>
<Sheet.Container>
<Sheet.Header />
<Sheet.Content>
@@ -153,7 +155,10 @@ export const StopSheet: React.FC<StopSheetProps> = ({
<ErrorDisplay
error={error}
onRetry={loadData}
- title={t("errors.estimates_title", "Error al cargar estimaciones")}
+ title={t(
+ "errors.estimates_title",
+ "Error al cargar estimaciones",
+ )}
className="compact"
/>
) : data ? (
@@ -180,7 +185,9 @@ export const StopSheet: React.FC<StopSheetProps> = ({
</div>
</div>
<div className="stop-sheet-estimate-arrival">
- <div className={`stop-sheet-estimate-time ${estimate.minutes <= 15 ? 'is-minutes' : ''}`}>
+ <div
+ className={`stop-sheet-estimate-time ${estimate.minutes <= 15 ? "is-minutes" : ""}`}
+ >
<Clock />
{formatTime(estimate.minutes)}
</div>
@@ -203,7 +210,7 @@ export const StopSheet: React.FC<StopSheetProps> = ({
{lastUpdated.toLocaleTimeString(undefined, {
hour: "2-digit",
minute: "2-digit",
- second: "2-digit"
+ second: "2-digit",
})}
</div>
)}
@@ -215,7 +222,9 @@ export const StopSheet: React.FC<StopSheetProps> = ({
disabled={loading}
title={t("estimates.reload", "Recargar estimaciones")}
>
- <RefreshCw className={`reload-icon ${loading ? 'spinning' : ''}`} />
+ <RefreshCw
+ className={`reload-icon ${loading ? "spinning" : ""}`}
+ />
{t("estimates.reload", "Recargar")}
</button>
@@ -224,7 +233,10 @@ export const StopSheet: React.FC<StopSheetProps> = ({
className="stop-sheet-view-all"
onClick={onClose}
>
- {t("map.view_all_estimates", "Ver todas las estimaciones")}
+ {t(
+ "map.view_all_estimates",
+ "Ver todas las estimaciones",
+ )}
</Link>
</div>
</div>
diff --git a/src/frontend/app/components/StopSheetSkeleton.tsx b/src/frontend/app/components/StopSheetSkeleton.tsx
index 6870af2..36ce546 100644
--- a/src/frontend/app/components/StopSheetSkeleton.tsx
+++ b/src/frontend/app/components/StopSheetSkeleton.tsx
@@ -8,7 +8,7 @@ interface StopSheetSkeletonProps {
}
export const StopSheetSkeleton: React.FC<StopSheetSkeletonProps> = ({
- rows = 4
+ rows = 4,
}) => {
const { t } = useTranslation();
@@ -23,7 +23,11 @@ export const StopSheetSkeleton: React.FC<StopSheetSkeletonProps> = ({
{Array.from({ length: rows }, (_, index) => (
<div key={`skeleton-${index}`} className="stop-sheet-estimate-item">
<div className="stop-sheet-estimate-line">
- <Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} />
+ <Skeleton
+ width="40px"
+ height="24px"
+ style={{ borderRadius: "4px" }}
+ />
</div>
<div className="stop-sheet-estimate-details">
@@ -45,18 +49,32 @@ export const StopSheetSkeleton: React.FC<StopSheetSkeletonProps> = ({
</div>
<div className="stop-sheet-actions">
- <div className="stop-sheet-reload" style={{
- opacity: 0.6,
- pointerEvents: "none"
- }}>
+ <div
+ className="stop-sheet-reload"
+ style={{
+ opacity: 0.6,
+ pointerEvents: "none",
+ }}
+ >
<Skeleton width="70px" height="0.85rem" />
</div>
+<<<<<<< HEAD
<div className="stop-sheet-view-all" style={{
background: "var(--service-background)",
cursor: "not-allowed",
pointerEvents: "none"
}}>
+=======
+ <div
+ className="stop-sheet-view-all"
+ style={{
+ background: "#f0f0f0",
+ cursor: "not-allowed",
+ pointerEvents: "none",
+ }}
+ >
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
<Skeleton width="180px" height="0.85rem" />
</div>
</div>
diff --git a/src/frontend/app/components/TimetableSkeleton.tsx b/src/frontend/app/components/TimetableSkeleton.tsx
index 79c7725..cd5bc81 100644
--- a/src/frontend/app/components/TimetableSkeleton.tsx
+++ b/src/frontend/app/components/TimetableSkeleton.tsx
@@ -8,7 +8,7 @@ interface TimetableSkeletonProps {
}
export const TimetableSkeleton: React.FC<TimetableSkeletonProps> = ({
- rows = 4
+ rows = 4,
}) => {
const { t } = useTranslation();
@@ -24,7 +24,11 @@ export const TimetableSkeleton: React.FC<TimetableSkeletonProps> = ({
<div key={`timetable-skeleton-${index}`} className="timetable-card">
<div className="card-header">
<div className="line-info">
- <Skeleton width="40px" height="24px" style={{ borderRadius: "4px" }} />
+ <Skeleton
+ width="40px"
+ height="24px"
+ style={{ borderRadius: "4px" }}
+ />
</div>
<div className="destination-info">
@@ -48,7 +52,7 @@ export const TimetableSkeleton: React.FC<TimetableSkeletonProps> = ({
style={{
display: "inline-block",
borderRadius: "3px",
- marginRight: "0.5rem"
+ marginRight: "0.5rem",
}}
/>
<Skeleton
diff --git a/src/frontend/app/data/RegionConfig.ts b/src/frontend/app/data/RegionConfig.ts
index c3786ba..08d915f 100644
--- a/src/frontend/app/data/RegionConfig.ts
+++ b/src/frontend/app/data/RegionConfig.ts
@@ -26,7 +26,7 @@ export const REGIONS: Record<RegionId, RegionConfig> = {
defaultCenter: [42.229188855975046, -8.72246955783102],
bounds: {
sw: [-8.951059, 42.098923],
- ne: [-8.447748, 42.3496]
+ ne: [-8.447748, 42.3496],
},
textColour: "#e72b37",
defaultZoom: 14,
@@ -41,7 +41,7 @@ export const REGIONS: Record<RegionId, RegionConfig> = {
defaultCenter: [42.8782, -8.5448],
bounds: {
sw: [-8.884454, 42.719102],
- ne: [-8.243814, 43.02205]
+ ne: [-8.243814, 43.02205],
},
textColour: "#6bb238",
defaultZoom: 14,
diff --git a/src/frontend/app/data/StopDataProvider.ts b/src/frontend/app/data/StopDataProvider.ts
index 799dcb5..7725e15 100644
--- a/src/frontend/app/data/StopDataProvider.ts
+++ b/src/frontend/app/data/StopDataProvider.ts
@@ -47,7 +47,10 @@ async function initStops(region: RegionId) {
// load custom names
const rawCustom = localStorage.getItem(`customStopNames_${region}`);
if (rawCustom) {
- customNamesByRegion[region] = JSON.parse(rawCustom) as Record<number, string>;
+ customNamesByRegion[region] = JSON.parse(rawCustom) as Record<
+ number,
+ string
+ >;
} else {
customNamesByRegion[region] = {};
}
@@ -66,7 +69,10 @@ async function getStops(region: RegionId): Promise<Stop[]> {
}
// New: get single stop by id
-async function getStopById(region: RegionId, stopId: number): Promise<Stop | undefined> {
+async function getStopById(
+ region: RegionId,
+ stopId: number,
+): Promise<Stop | undefined> {
await initStops(region);
const stop = stopsMapByRegion[region]?.[stopId];
if (stop) {
@@ -91,13 +97,19 @@ function setCustomName(region: RegionId, stopId: number, label: string) {
customNamesByRegion[region] = {};
}
customNamesByRegion[region][stopId] = label;
- localStorage.setItem(`customStopNames_${region}`, JSON.stringify(customNamesByRegion[region]));
+ localStorage.setItem(
+ `customStopNames_${region}`,
+ JSON.stringify(customNamesByRegion[region]),
+ );
}
function removeCustomName(region: RegionId, stopId: number) {
if (customNamesByRegion[region]) {
delete customNamesByRegion[region][stopId];
- localStorage.setItem(`customStopNames_${region}`, JSON.stringify(customNamesByRegion[region]));
+ localStorage.setItem(
+ `customStopNames_${region}`,
+ JSON.stringify(customNamesByRegion[region]),
+ );
}
}
@@ -115,7 +127,10 @@ function addFavourite(region: RegionId, stopId: number) {
if (!favouriteStops.includes(stopId)) {
favouriteStops.push(stopId);
- localStorage.setItem(`favouriteStops_${region}`, JSON.stringify(favouriteStops));
+ localStorage.setItem(
+ `favouriteStops_${region}`,
+ JSON.stringify(favouriteStops),
+ );
}
}
@@ -127,7 +142,10 @@ function removeFavourite(region: RegionId, stopId: number) {
}
const newFavouriteStops = favouriteStops.filter((id) => id !== stopId);
- localStorage.setItem(`favouriteStops_${region}`, JSON.stringify(newFavouriteStops));
+ localStorage.setItem(
+ `favouriteStops_${region}`,
+ JSON.stringify(newFavouriteStops),
+ );
}
function isFavourite(region: RegionId, stopId: number): boolean {
@@ -155,7 +173,10 @@ function pushRecent(region: RegionId, stopId: number) {
recentStops.delete(val);
}
- localStorage.setItem(`recentStops_${region}`, JSON.stringify(Array.from(recentStops)));
+ localStorage.setItem(
+ `recentStops_${region}`,
+ JSON.stringify(Array.from(recentStops)),
+ );
}
function getRecent(region: RegionId): number[] {
@@ -179,7 +200,7 @@ async function loadStopsFromNetwork(region: RegionId): Promise<Stop[]> {
const regionConfig = getRegionConfig(region);
const response = await fetch(regionConfig.stopsEndpoint);
const stops = (await response.json()) as Stop[];
- return stops.map((stop) => ({ ...stop, favourite: false } as Stop));
+ return stops.map((stop) => ({ ...stop, favourite: false }) as Stop);
}
export default {
diff --git a/src/frontend/app/maps/styleloader.ts b/src/frontend/app/maps/styleloader.ts
index 08086f1..93f6693 100644
--- a/src/frontend/app/maps/styleloader.ts
+++ b/src/frontend/app/maps/styleloader.ts
@@ -15,7 +15,7 @@ export async function loadStyle(
const style = await resp.json();
return style as StyleSpecification;
- }
+ }
const stylePath = `/maps/styles/${styleName}-${colorScheme}.json`;
const resp = await fetch(stylePath);
diff --git a/src/frontend/app/root.tsx b/src/frontend/app/root.tsx
index 9bc69e4..6bb3da6 100644
--- a/src/frontend/app/root.tsx
+++ b/src/frontend/app/root.tsx
@@ -102,12 +102,10 @@ export function Layout({ children }: { children: React.ReactNode }) {
import NavBar from "./components/NavBar";
export default function App() {
- if ('serviceWorker' in navigator) {
- navigator.serviceWorker
- .register('/pwa-worker.js')
- .catch((error) => {
- console.error('Error registering SW:', error);
- });
+ if ("serviceWorker" in navigator) {
+ navigator.serviceWorker.register("/pwa-worker.js").catch((error) => {
+ console.error("Error registering SW:", error);
+ });
}
return (
diff --git a/src/frontend/app/routes/estimates-$id.css b/src/frontend/app/routes/estimates-$id.css
index 66e7fb6..fde4099 100644
--- a/src/frontend/app/routes/estimates-$id.css
+++ b/src/frontend/app/routes/estimates-$id.css
@@ -74,8 +74,12 @@
}
@keyframes spin {
- from { transform: rotate(0deg); }
- to { transform: rotate(360deg); }
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
}
@media (max-width: 640px) {
diff --git a/src/frontend/app/routes/estimates-$id.tsx b/src/frontend/app/routes/estimates-$id.tsx
index 21186fb..c8c52b5 100644
--- a/src/frontend/app/routes/estimates-$id.tsx
+++ b/src/frontend/app/routes/estimates-$id.tsx
@@ -7,8 +7,14 @@ import { RegularTable } from "../components/RegularTable";
import { useApp } from "../AppContext";
import { GroupedTable } from "../components/GroupedTable";
import { useTranslation } from "react-i18next";
-import { SchedulesTable, type ScheduledTable } from "~/components/SchedulesTable";
-import { SchedulesTableSkeleton, EstimatesGroupedSkeleton } from "~/components/SchedulesTableSkeleton";
+import {
+ SchedulesTable,
+ type ScheduledTable,
+} from "~/components/SchedulesTable";
+import {
+ SchedulesTableSkeleton,
+ EstimatesGroupedSkeleton,
+} from "~/components/SchedulesTableSkeleton";
import { TimetableSkeleton } from "~/components/TimetableSkeleton";
import { ErrorDisplay } from "~/components/ErrorDisplay";
import { PullToRefresh } from "~/components/PullToRefresh";
@@ -24,12 +30,15 @@ export interface Estimate {
}
interface ErrorInfo {
- type: 'network' | 'server' | 'unknown';
+ type: "network" | "server" | "unknown";
status?: number;
message?: string;
}
-const loadData = async (region: RegionId, stopId: string): Promise<Estimate[]> => {
+const loadData = async (
+ region: RegionId,
+ stopId: string,
+): Promise<Estimate[]> => {
const regionConfig = getRegionConfig(region);
const resp = await fetch(`${regionConfig.estimatesEndpoint}?id=${stopId}`, {
headers: {
@@ -44,7 +53,10 @@ const loadData = async (region: RegionId, stopId: string): Promise<Estimate[]> =
return await resp.json();
};
-const loadTimetableData = async (region: RegionId, stopId: string): Promise<ScheduledTable[]> => {
+const loadTimetableData = async (
+ region: RegionId,
+ stopId: string,
+): Promise<ScheduledTable[]> => {
const regionConfig = getRegionConfig(region);
// Check if timetable is available for this region
@@ -52,12 +64,15 @@ const loadTimetableData = async (region: RegionId, stopId: string): Promise<Sche
throw new Error("Timetable not available for this region");
}
- const today = new Date().toISOString().split('T')[0]; // YYYY-MM-DD format
- const resp = await fetch(`${regionConfig.timetableEndpoint}?date=${today}&stopId=${stopId}`, {
- headers: {
- Accept: "application/json",
+ const today = new Date().toISOString().split("T")[0]; // YYYY-MM-DD format
+ const resp = await fetch(
+ `${regionConfig.timetableEndpoint}?date=${today}&stopId=${stopId}`,
+ {
+ headers: {
+ Accept: "application/json",
+ },
},
- });
+ );
if (!resp.ok) {
throw new Error(`HTTP ${resp.status}: ${resp.statusText}`);
@@ -91,20 +106,23 @@ export default function Estimates() {
const parseError = (error: any): ErrorInfo => {
if (!navigator.onLine) {
- return { type: 'network', message: 'No internet connection' };
+ return { type: "network", message: "No internet connection" };
}
- if (error.message?.includes('Failed to fetch') || error.message?.includes('NetworkError')) {
- return { type: 'network' };
+ if (
+ error.message?.includes("Failed to fetch") ||
+ error.message?.includes("NetworkError")
+ ) {
+ return { type: "network" };
}
- if (error.message?.includes('HTTP')) {
+ if (error.message?.includes("HTTP")) {
const statusMatch = error.message.match(/HTTP (\d+):/);
const status = statusMatch ? parseInt(statusMatch[1]) : undefined;
- return { type: 'server', status };
+ return { type: "server", status };
}
- return { type: 'unknown', message: error.message };
+ return { type: "unknown", message: error.message };
};
const loadEstimatesData = useCallback(async () => {
@@ -121,7 +139,7 @@ export default function Estimates() {
setStopData(stop);
setCustomName(StopDataProvider.getCustomName(region, stopIdNum));
} catch (error) {
- console.error('Error loading estimates data:', error);
+ console.error("Error loading estimates data:", error);
setEstimatesError(parseError(error));
setData(null);
setDataDate(null);
@@ -144,7 +162,7 @@ export default function Estimates() {
const timetableBody = await loadTimetableData(region, params.id!);
setTimetableData(timetableBody);
} catch (error) {
- console.error('Error loading timetable data:', error);
+ console.error("Error loading timetable data:", error);
setTimetableError(parseError(error));
setTimetableData([]);
} finally {
@@ -153,10 +171,7 @@ export default function Estimates() {
}, [params.id, region, regionConfig.timetableEndpoint]);
const refreshData = useCallback(async () => {
- await Promise.all([
- loadEstimatesData(),
- loadTimetableDataAsync()
- ]);
+ await Promise.all([loadEstimatesData(), loadTimetableDataAsync()]);
}, [loadEstimatesData, loadTimetableDataAsync]);
// Manual refresh function for pull-to-refresh and button
@@ -183,7 +198,9 @@ export default function Estimates() {
loadTimetableDataAsync();
StopDataProvider.pushRecent(region, parseInt(params.id ?? ""));
- setFavourited(StopDataProvider.isFavourite(region, parseInt(params.id ?? "")));
+ setFavourited(
+ StopDataProvider.isFavourite(region, parseInt(params.id ?? "")),
+ );
}, [params.id, region, loadEstimatesData, loadTimetableDataAsync]);
const toggleFavourite = () => {
@@ -273,7 +290,9 @@ export default function Estimates() {
disabled={isManualRefreshing || estimatesLoading}
title={t("estimates.reload", "Recargar estimaciones")}
>
- <RefreshCw className={`refresh-icon ${isManualRefreshing ? 'spinning' : ''}`} />
+ <RefreshCw
+ className={`refresh-icon ${isManualRefreshing ? "spinning" : ""}`}
+ />
</button>
</div>
@@ -290,13 +309,24 @@ export default function Estimates() {
<ErrorDisplay
error={estimatesError}
onRetry={loadEstimatesData}
- title={t("errors.estimates_title", "Error al cargar estimaciones")}
+ title={t(
+ "errors.estimates_title",
+ "Error al cargar estimaciones",
+ )}
/>
) : data ? (
tableStyle === "grouped" ? (
- <GroupedTable data={data} dataDate={dataDate} regionConfig={regionConfig} />
+ <GroupedTable
+ data={data}
+ dataDate={dataDate}
+ regionConfig={regionConfig}
+ />
) : (
- <RegularTable data={data} dataDate={dataDate} regionConfig={regionConfig} />
+ <RegularTable
+ data={data}
+ dataDate={dataDate}
+ regionConfig={regionConfig}
+ />
)
) : null}
</div>
@@ -318,10 +348,7 @@ export default function Estimates() {
currentTime={new Date().toTimeString().slice(0, 8)} // HH:MM:SS
/>
<div className="timetable-actions">
- <Link
- to={`/timetable/${params.id}`}
- className="view-all-link"
- >
+ <Link to={`/timetable/${params.id}`} className="view-all-link">
<ExternalLink className="external-icon" />
{t("timetable.viewAll", "Ver todos los horarios")}
</Link>
diff --git a/src/frontend/app/routes/map.tsx b/src/frontend/app/routes/map.tsx
index f705617..d3288e9 100644
--- a/src/frontend/app/routes/map.tsx
+++ b/src/frontend/app/routes/map.tsx
@@ -145,10 +145,11 @@ export default function StopMap() {
zoom: mapState.zoom,
}}
attributionControl={false}
- maxBounds={REGIONS[region].bounds ? [
- REGIONS[region].bounds!.sw,
- REGIONS[region].bounds!.ne,
- ] : undefined}
+ maxBounds={
+ REGIONS[region].bounds
+ ? [REGIONS[region].bounds!.sw, REGIONS[region].bounds!.ne]
+ : undefined
+ }
>
<NavigationControl position="top-right" />
<GeolocateControl position="top-right" trackUserLocation={true} />
@@ -188,12 +189,12 @@ export default function StopMap() {
"text-offset": [0, 3],
"text-anchor": "center",
"text-justify": "center",
- "text-size": ["interpolate", ["linear"], ["zoom"], 11, 8, 22, 16]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 11, 8, 22, 16],
}}
paint={{
"text-color": `${REGIONS[region].textColour || "#000"}`,
"text-halo-color": "#FFF",
- "text-halo-width": 1
+ "text-halo-width": 1,
}}
/>
diff --git a/src/frontend/app/routes/settings.css b/src/frontend/app/routes/settings.css
index c08ed68..d82cf8b 100644
--- a/src/frontend/app/routes/settings.css
+++ b/src/frontend/app/routes/settings.css
@@ -179,8 +179,12 @@
}
@keyframes spin {
- from { transform: rotate(0deg); }
- to { transform: rotate(360deg); }
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
}
/* Modal styles */
diff --git a/src/frontend/app/routes/settings.tsx b/src/frontend/app/routes/settings.tsx
index cb64f4e..d9efa2e 100644
--- a/src/frontend/app/routes/settings.tsx
+++ b/src/frontend/app/routes/settings.tsx
@@ -159,30 +159,31 @@ export default function Settings() {
</a>
</p>
{region === "vigo" && (
- <p>
- {t("about.data_source_prefix")}{" "}
- <a
- href="https://datos.vigo.org"
- className="about-link"
- rel="nofollow noreferrer noopener"
- >
- datos.vigo.org
- </a>{" "}
- {t("about.data_source_middle")}{" "}
- <a
- href="https://opendefinition.org/licenses/odc-by/"
- className="about-link"
- rel="nofollow noreferrer noopener"
- >
- Open Data Commons Attribution License
- </a>.
- </p>
+ <p>
+ {t("about.data_source_prefix")}{" "}
+ <a
+ href="https://datos.vigo.org"
+ className="about-link"
+ rel="nofollow noreferrer noopener"
+ >
+ datos.vigo.org
+ </a>{" "}
+ {t("about.data_source_middle")}{" "}
+ <a
+ href="https://opendefinition.org/licenses/odc-by/"
+ className="about-link"
+ rel="nofollow noreferrer noopener"
+ >
+ Open Data Commons Attribution License
+ </a>
+ .
+ </p>
)}
{region === "santiago" && (
<p>
- Datos obtenidos de app MaisBus (Concello de Santiago/TUSSA),
- gracias a la documentación de [TP Galicia](https://tpgalicia.github.io/urban/santiago/)
- en GitHub.
+ Datos obtenidos de app MaisBus (Concello de Santiago/TUSSA), gracias a
+ la documentación de [TP
+ Galicia](https://tpgalicia.github.io/urban/santiago/) en GitHub.
</p>
)}
@@ -193,7 +194,7 @@ export default function Settings() {
<p>
{t(
"about.region_change_message",
- "¿Estás seguro de que quieres cambiar la región? Serás redirigido a la lista de paradas."
+ "¿Estás seguro de que quieres cambiar la región? Serás redirigido a la lista de paradas.",
)}
</p>
<div className="modal-buttons">
diff --git a/src/frontend/app/routes/stoplist.tsx b/src/frontend/app/routes/stoplist.tsx
index 80267ea..fe6d2f1 100644
--- a/src/frontend/app/routes/stoplist.tsx
+++ b/src/frontend/app/routes/stoplist.tsx
@@ -32,10 +32,11 @@ export default function StopList() {
);
const fuse = useMemo(
- () => new Fuse(data || [], {
- threshold: 0.3,
- keys: ["name.original", "name.intersect", "stopId"]
- }),
+ () =>
+ new Fuse(data || [], {
+ threshold: 0.3,
+ keys: ["name.original", "name.intersect", "stopId"],
+ }),
[data],
);
@@ -77,7 +78,9 @@ export default function StopList() {
const checkPermission = async () => {
try {
if (navigator.permissions?.query) {
- permissionStatus = await navigator.permissions.query({ name: "geolocation" });
+ permissionStatus = await navigator.permissions.query({
+ name: "geolocation",
+ });
if (permissionStatus.state === "granted") {
requestUserLocation();
}
@@ -109,7 +112,12 @@ export default function StopList() {
}
const toRadians = (value: number) => (value * Math.PI) / 180;
- const getDistance = (lat1: number, lon1: number, lat2: number, lon2: number) => {
+ const getDistance = (
+ lat1: number,
+ lon1: number,
+ lat2: number,
+ lon2: number,
+ ) => {
const R = 6371000; // meters
const dLat = toRadians(lat2 - lat1);
const dLon = toRadians(lon2 - lon1);
@@ -125,7 +133,10 @@ export default function StopList() {
return data
.map((stop) => {
- if (typeof stop.latitude !== "number" || typeof stop.longitude !== "number") {
+ if (
+ typeof stop.latitude !== "number" ||
+ typeof stop.longitude !== "number"
+ ) {
return { stop, distance: Number.POSITIVE_INFINITY };
}
@@ -162,25 +173,24 @@ export default function StopList() {
// Add favourite flags to stops
const favouriteStopsIds = StopDataProvider.getFavouriteIds(region);
- const stopsWithFavourites = stops.map(stop => ({
+ const stopsWithFavourites = stops.map((stop) => ({
...stop,
- favourite: favouriteStopsIds.includes(stop.stopId)
+ favourite: favouriteStopsIds.includes(stop.stopId),
}));
setData(stopsWithFavourites);
// Update favourite and recent stops with full data
- const favStops = stopsWithFavourites.filter(stop =>
- favouriteStopsIds.includes(stop.stopId)
+ const favStops = stopsWithFavourites.filter((stop) =>
+ favouriteStopsIds.includes(stop.stopId),
);
setFavouriteStops(favStops);
const recIds = StopDataProvider.getRecent(region);
const recStops = recIds
- .map(id => stopsWithFavourites.find(stop => stop.stopId === id))
+ .map((id) => stopsWithFavourites.find((stop) => stop.stopId === id))
.filter(Boolean) as Stop[];
setRecentStops(recStops.reverse());
-
} catch (error) {
console.error("Failed to load stops:", error);
} finally {
@@ -212,12 +222,12 @@ export default function StopList() {
// Check if search query is a number (stop code search)
const isNumericSearch = /^\d+$/.test(searchQuery.trim());
-
+
let items: Stop[];
if (isNumericSearch) {
// Direct match for stop codes
const stopId = parseInt(searchQuery.trim(), 10);
- const exactMatch = data.filter(stop => stop.stopId === stopId);
+ const exactMatch = data.filter((stop) => stop.stopId === stopId);
if (exactMatch.length > 0) {
items = exactMatch;
} else {
@@ -230,14 +240,14 @@ export default function StopList() {
const results = fuse.search(searchQuery);
items = results.map((result) => result.item);
}
-
+
setSearchResults(items);
}, 300);
};
return (
<div className="page-container stoplist-page">
- <h1 className="page-title">BusUrbano - {REGIONS[region].name}</h1>
+ <h1 className="page-title">BusUrbano - {REGIONS[region].name}</h1>
<form className="search-form">
<div className="form-group">
@@ -286,10 +296,9 @@ export default function StopList() {
<div className="list-container">
<h2 className="page-subtitle">
- {userLocation
- ? t("stoplist.nearby_stops", "Nearby stops")
- : t("stoplist.all_stops", "Paradas")
- }
+ {userLocation
+ ? t("stoplist.nearby_stops", "Nearby stops")
+ : t("stoplist.all_stops", "Paradas")}
</h2>
<ul className="list">
@@ -301,9 +310,9 @@ export default function StopList() {
</>
)}
{!loading && data
- ? (userLocation ? sortedAllStops.slice(0, 6) : sortedAllStops).map((stop) => (
- <StopItem key={stop.stopId} stop={stop} />
- ))
+ ? (userLocation ? sortedAllStops.slice(0, 6) : sortedAllStops).map(
+ (stop) => <StopItem key={stop.stopId} stop={stop} />,
+ )
: null}
</ul>
</div>
diff --git a/src/frontend/public/maps/styles/openfreemap-any.json b/src/frontend/public/maps/styles/openfreemap-any.json
index 8fdca37..cb528da 100644
--- a/src/frontend/public/maps/styles/openfreemap-any.json
+++ b/src/frontend/public/maps/styles/openfreemap-any.json
@@ -21,25 +21,10 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
- "filter": [
- "==",
- [
- "get",
- "subclass"
- ],
- "glacier"
- ],
+ "filter": ["==", ["get", "subclass"], "glacier"],
"paint": {
"fill-color": "#fff",
- "fill-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 0, 0.9, 10, 0.3]
+ "fill-opacity": ["interpolate", ["linear"], ["zoom"], 0, 0.9, 10, 0.3]
}
},
{
@@ -49,26 +34,20 @@
"source-layer": "landuse",
"filter": [
"match",
- [
- "get",
- "class"
- ],
- [
- "neighbourhood",
- "residential"
- ],
- true, false],
+ ["get", "class"],
+ ["neighbourhood", "residential"],
+ true,
+ false
+ ],
"paint": {
"fill-color": [
"interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 12, "hsla(30,19%,90%,0.4)",
- 16, "hsla(30,19%,90%,0.2)"
+ ["linear"],
+ ["zoom"],
+ 12,
+ "hsla(30,19%,90%,0.4)",
+ 16,
+ "hsla(30,19%,90%,0.2)"
]
}
},
@@ -78,25 +57,16 @@
"source": "openmaptiles",
"source-layer": "landuse",
"maxzoom": 10,
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "suburb"
- ],
+ "filter": ["==", ["get", "class"], "suburb"],
"paint": {
"fill-color": [
"interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 8, "hsla(30,19%,90%,0.4)",
- 10, "hsla(30,19%,90%,0.0)"
+ ["linear"],
+ ["zoom"],
+ 8,
+ "hsla(30,19%,90%,0.4)",
+ 10,
+ "hsla(30,19%,90%,0.0)"
]
}
},
@@ -107,24 +77,8 @@
"source-layer": "landuse",
"filter": [
"all",
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPolygon",
- "Polygon"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "class"
- ],
- "commercial"
- ]
+ ["match", ["geometry-type"], ["MultiPolygon", "Polygon"], true, false],
+ ["==", ["get", "class"], "commercial"]
],
"paint": {
"fill-color": "hsla(0,60%,87%,0.23)"
@@ -137,28 +91,14 @@
"source-layer": "landuse",
"filter": [
"all",
+ ["match", ["geometry-type"], ["MultiPolygon", "Polygon"], true, false],
[
"match",
- [
- "geometry-type"
- ],
- [
- "MultiPolygon",
- "Polygon"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "dam",
- "garages",
- "industrial"
- ],
- true, false]
+ ["get", "class"],
+ ["dam", "garages", "industrial"],
+ true,
+ false
+ ]
],
"paint": {
"fill-color": "hsla(49,100%,88%,0.34)"
@@ -169,14 +109,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "cemetery"
- ],
+ "filter": ["==", ["get", "class"], "cemetery"],
"paint": {
"fill-color": "#e0e4dd"
}
@@ -186,14 +119,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "hospital"
- ],
+ "filter": ["==", ["get", "class"], "hospital"],
"paint": {
"fill-color": "#fde"
}
@@ -203,14 +129,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "school"
- ],
+ "filter": ["==", ["get", "class"], "school"],
"paint": {
"fill-color": "#f0e8f8"
}
@@ -220,14 +139,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "railway"
- ],
+ "filter": ["==", ["get", "class"], "railway"],
"paint": {
"fill-color": "hsla(30,19%,90%,0.4)"
}
@@ -239,25 +151,22 @@
"source-layer": "park",
"filter": [
"match",
- [
- "geometry-type"
- ],
- [
- "MultiPolygon",
- "Polygon"
- ],
- true, false],
+ ["geometry-type"],
+ ["MultiPolygon", "Polygon"],
+ true,
+ false
+ ],
"paint": {
"fill-color": "#d8e8c8",
"fill-opacity": [
"interpolate",
- [
- "exponential",
- 1.8],
- [
- "zoom"
- ],
- 9, 0.5, 12, 0.2]
+ ["exponential", 1.8],
+ ["zoom"],
+ 9,
+ 0.5,
+ 12,
+ 0.2
+ ]
}
},
{
@@ -265,21 +174,9 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "wood"
- ],
+ "filter": ["==", ["get", "class"], "wood"],
"paint": {
- "fill-antialias": [
- "step",
- [
- "zoom"
- ],
- false, 9, true],
+ "fill-antialias": ["step", ["zoom"], false, 9, true],
"fill-color": "#6a4",
"fill-opacity": 0.1,
"fill-outline-color": "hsla(0,0%,0%,0.03)"
@@ -290,14 +187,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "grass"
- ],
+ "filter": ["==", ["get", "class"], "grass"],
"paint": {
"fill-color": "#d8e8c8",
"fill-opacity": 1
@@ -308,14 +198,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "park",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "public_park"
- ],
+ "filter": ["==", ["get", "class"], "public_park"],
"paint": {
"fill-color": "#d8e8c8",
"fill-opacity": 0.8
@@ -329,26 +212,8 @@
"minzoom": 14,
"filter": [
"all",
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "canal",
- "river",
- "stream"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ]
+ ["match", ["get", "class"], ["canal", "river", "stream"], true, false],
+ ["==", ["get", "brunnel"], "tunnel"]
],
"layout": {
"line-cap": "round"
@@ -358,13 +223,13 @@
"line-dasharray": [2, 4],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.3],
- [
- "zoom"
- ],
- 13, 0.5, 20, 6]
+ ["exponential", 1.3],
+ ["zoom"],
+ 13,
+ 0.5,
+ 20,
+ 6
+ ]
}
},
{
@@ -374,25 +239,8 @@
"source-layer": "waterway",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "canal",
- "river",
- "stream"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "intermittent"
- ],
- 0]
+ ["match", ["get", "class"], ["canal", "river", "stream"], false, true],
+ ["==", ["get", "intermittent"], 0]
],
"layout": {
"line-cap": "round"
@@ -401,13 +249,13 @@
"line-color": "#a0c8f0",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.3],
- [
- "zoom"
- ],
- 13, 0.5, 20, 2]
+ ["exponential", 1.3],
+ ["zoom"],
+ 13,
+ 0.5,
+ 20,
+ 2
+ ]
}
},
{
@@ -417,25 +265,8 @@
"source-layer": "waterway",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "canal",
- "river",
- "stream"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "intermittent"
- ],
- 1]
+ ["match", ["get", "class"], ["canal", "river", "stream"], false, true],
+ ["==", ["get", "intermittent"], 1]
],
"layout": {
"line-cap": "round"
@@ -445,13 +276,13 @@
"line-dasharray": [4, 3],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.3],
- [
- "zoom"
- ],
- 13, 0.5, 20, 2]
+ ["exponential", 1.3],
+ ["zoom"],
+ 13,
+ 0.5,
+ 20,
+ 2
+ ]
}
},
{
@@ -461,32 +292,9 @@
"source-layer": "waterway",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "canal",
- "stream"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "intermittent"
- ],
- 0]
+ ["match", ["get", "class"], ["canal", "stream"], true, false],
+ ["!=", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "intermittent"], 0]
],
"layout": {
"line-cap": "round"
@@ -495,13 +303,13 @@
"line-color": "#a0c8f0",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.3],
- [
- "zoom"
- ],
- 13, 0.5, 20, 6]
+ ["exponential", 1.3],
+ ["zoom"],
+ 13,
+ 0.5,
+ 20,
+ 6
+ ]
}
},
{
@@ -511,32 +319,9 @@
"source-layer": "waterway",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "canal",
- "stream"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "intermittent"
- ],
- 1]
+ ["match", ["get", "class"], ["canal", "stream"], true, false],
+ ["!=", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "intermittent"], 1]
],
"layout": {
"line-cap": "round"
@@ -546,13 +331,13 @@
"line-dasharray": [4, 3],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.3],
- [
- "zoom"
- ],
- 13, 0.5, 20, 6]
+ ["exponential", 1.3],
+ ["zoom"],
+ 13,
+ 0.5,
+ 20,
+ 6
+ ]
}
},
{
@@ -562,29 +347,9 @@
"source-layer": "waterway",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "river"
- ],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "!=",
- [
- "get",
- "intermittent"
- ],
- 1]
+ ["==", ["get", "class"], "river"],
+ ["!=", ["get", "brunnel"], "tunnel"],
+ ["!=", ["get", "intermittent"], 1]
],
"layout": {
"line-cap": "round"
@@ -593,13 +358,13 @@
"line-color": "#a0c8f0",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 10, 0.8, 20, 6]
+ ["exponential", 1.2],
+ ["zoom"],
+ 10,
+ 0.8,
+ 20,
+ 6
+ ]
}
},
{
@@ -609,29 +374,9 @@
"source-layer": "waterway",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "river"
- ],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "intermittent"
- ],
- 1]
+ ["==", ["get", "class"], "river"],
+ ["!=", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "intermittent"], 1]
],
"layout": {
"line-cap": "round"
@@ -641,13 +386,13 @@
"line-dasharray": [3, 2.5],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 10, 0.8, 20, 6]
+ ["exponential", 1.2],
+ ["zoom"],
+ 10,
+ 0.8,
+ 20,
+ 6
+ ]
}
},
{
@@ -657,21 +402,8 @@
"source-layer": "water",
"filter": [
"all",
- [
- "!=",
- [
- "get",
- "intermittent"
- ],
- 1],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ]
+ ["!=", ["get", "intermittent"], 1],
+ ["!=", ["get", "brunnel"], "tunnel"]
],
"paint": {
"fill-color": "#AECFE2"
@@ -682,13 +414,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "water",
- "filter": [
- "==",
- [
- "get",
- "intermittent"
- ],
- 1],
+ "filter": ["==", ["get", "intermittent"], 1],
"paint": {
"fill-color": "hsl(210,67%,85%)",
"fill-opacity": 0.7
@@ -699,25 +425,10 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
- "filter": [
- "==",
- [
- "get",
- "subclass"
- ],
- "ice_shelf"
- ],
+ "filter": ["==", ["get", "subclass"], "ice_shelf"],
"paint": {
"fill-color": "#fff",
- "fill-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 0, 0.9, 10, 0.3]
+ "fill-opacity": ["interpolate", ["linear"], ["zoom"], 0, 0.9, 10, 0.3]
}
},
{
@@ -725,14 +436,7 @@
"type": "fill",
"source": "openmaptiles",
"source-layer": "landcover",
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "sand"
- ],
+ "filter": ["==", ["get", "class"], "sand"],
"paint": {
"fill-color": "rgba(245, 238, 188, 1)",
"fill-opacity": 1
@@ -747,14 +451,12 @@
"fill-antialias": true,
"fill-color": [
"interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 15.5, "#f2eae2",
- 16, "#dfdbd7"
+ ["linear"],
+ ["zoom"],
+ 15.5,
+ "#f2eae2",
+ 16,
+ "#dfdbd7"
]
}
},
@@ -765,32 +467,16 @@
"source-layer": "building",
"paint": {
"fill-color": "#f2eae2",
- "fill-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 13, 0, 16, 1],
+ "fill-opacity": ["interpolate", ["linear"], ["zoom"], 13, 0, 16, 1],
"fill-outline-color": "#dfdbd7",
"fill-translate": [
"interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 14, [
- "literal",
- [0, 0]
- ],
- 16, [
- "literal",
- [-2, -2]
- ]
+ ["linear"],
+ ["zoom"],
+ 14,
+ ["literal", [0, 0]],
+ 16,
+ ["literal", [-2, -2]]
]
}
},
@@ -801,25 +487,8 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "service",
- "track"
- ],
- true, false]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["service", "track"], true, false]
],
"layout": {
"line-join": "round"
@@ -829,13 +498,15 @@
"line-dasharray": [0.5, 0.25],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15, 1, 16, 4, 20, 11]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15,
+ 1,
+ 16,
+ 4,
+ 20,
+ 11
+ ]
}
},
{
@@ -845,29 +516,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "motorway"],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -877,13 +528,17 @@
"line-dasharray": [0.5, 0.25],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 1, 13, 3, 14, 4, 20, 15]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 1,
+ 13,
+ 3,
+ 14,
+ 4,
+ 20,
+ 15
+ ]
}
},
{
@@ -893,22 +548,8 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "minor"
- ]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "minor"]
],
"layout": {
"line-join": "round"
@@ -916,24 +557,20 @@
"paint": {
"line-color": "#cfcdca",
"line-dasharray": [0.5, 0.25],
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 12, 0, 12.5, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 12, 0, 12.5, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 0.5, 13, 1, 14, 4, 20, 15]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 0.5,
+ 13,
+ 1,
+ 14,
+ 4,
+ 20,
+ 15
+ ]
}
},
{
@@ -943,34 +580,15 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
+ ["==", ["get", "brunnel"], "tunnel"],
[
"match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -981,13 +599,17 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 1, 13, 3, 14, 4, 20, 15]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 1,
+ 13,
+ 3,
+ 14,
+ 4,
+ 20,
+ 15
+ ]
}
},
{
@@ -997,32 +619,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "secondary",
- "tertiary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["secondary", "tertiary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1033,13 +632,13 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 8, 1.5, 20, 17]
+ ["exponential", 1.2],
+ ["zoom"],
+ 8,
+ 1.5,
+ 20,
+ 17
+ ]
}
},
{
@@ -1049,32 +648,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "trunk"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["primary", "trunk"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1083,13 +659,17 @@
"line-color": "#e9ac77",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 5, 0.4, 6, 0.6, 7, 1.5, 20, 22]
+ ["exponential", 1.2],
+ ["zoom"],
+ 5,
+ 0.4,
+ 6,
+ 0.6,
+ 7,
+ 1.5,
+ 20,
+ 22
+ ]
}
},
{
@@ -1099,29 +679,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "motorway"],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1131,13 +691,17 @@
"line-dasharray": [0.5, 0.25],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 5, 0.4, 6, 0.6, 7, 1.5, 20, 22]
+ ["exponential", 1.2],
+ ["zoom"],
+ 5,
+ 0.4,
+ 6,
+ 0.6,
+ 7,
+ 1.5,
+ 20,
+ 22
+ ]
}
},
{
@@ -1149,43 +713,26 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "==",
- [
- "get",
- "class"
- ],
- "path"
- ]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "path"]
],
"paint": {
"line-color": "#cba",
"line-dasharray": [1.5, 0.75],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15, 1.2, 20, 4]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15,
+ 1.2,
+ 20,
+ 4
+ ]
}
},
{
@@ -1195,29 +742,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "motorway"],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1226,13 +753,17 @@
"line-color": "rgba(244, 209, 158, 1)",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12.5, 0, 13, 1.5, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12.5,
+ 0,
+ 13,
+ 1.5,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -1242,25 +773,8 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "service",
- "track"
- ],
- true, false]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["service", "track"], true, false]
],
"layout": {
"line-join": "round"
@@ -1269,13 +783,15 @@
"line-color": "#fff",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15.5, 0, 16, 2, 20, 7.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15.5,
+ 0,
+ 16,
+ 2,
+ 20,
+ 7.5
+ ]
}
},
{
@@ -1285,34 +801,15 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
+ ["==", ["get", "brunnel"], "tunnel"],
[
"match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1321,13 +818,17 @@
"line-color": "#fff4c6",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12.5, 0, 13, 1.5, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12.5,
+ 0,
+ 13,
+ 1.5,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -1337,22 +838,8 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "minor"
- ]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "minor"]
],
"layout": {
"line-join": "round"
@@ -1362,13 +849,15 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 13.5, 0, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 13.5,
+ 0,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -1378,32 +867,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "secondary",
- "tertiary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["secondary", "tertiary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1412,13 +878,15 @@
"line-color": "#fff4c6",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 10]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 10
+ ]
}
},
{
@@ -1428,32 +896,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "trunk"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["primary", "trunk"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1462,13 +907,15 @@
"line-color": "#fff4c6",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -1478,29 +925,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "motorway"],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -1509,13 +936,15 @@
"line-color": "#ffdaa6",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -1525,35 +954,23 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
- ]
+ ["==", ["get", "brunnel"], "tunnel"],
+ ["==", ["get", "class"], "rail"]
],
"paint": {
"line-color": "#bbb",
"line-dasharray": [2, 2],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14, 0.4, 15, 0.75, 20, 2]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14,
+ 0.4,
+ 15,
+ 0.75,
+ 20,
+ 2
+ ]
}
},
{
@@ -1561,16 +978,7 @@
"type": "line",
"source": "openmaptiles",
"source-layer": "transportation",
- "filter": [
- "match",
- [
- "get",
- "class"
- ],
- [
- "ferry"
- ],
- true, false],
+ "filter": ["match", ["get", "class"], ["ferry"], true, false],
"layout": {
"line-join": "round"
},
@@ -1586,16 +994,7 @@
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 12,
- "filter": [
- "match",
- [
- "get",
- "class"
- ],
- [
- "taxiway"
- ],
- true, false],
+ "filter": ["match", ["get", "class"], ["taxiway"], true, false],
"layout": {
"line-cap": "round",
"line-join": "round"
@@ -1605,13 +1004,13 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.5],
- [
- "zoom"
- ],
- 11, 2, 17, 12]
+ ["exponential", 1.5],
+ ["zoom"],
+ 11,
+ 2,
+ 17,
+ 12
+ ]
}
},
{
@@ -1620,16 +1019,7 @@
"source": "openmaptiles",
"source-layer": "aeroway",
"minzoom": 12,
- "filter": [
- "match",
- [
- "get",
- "class"
- ],
- [
- "runway"
- ],
- true, false],
+ "filter": ["match", ["get", "class"], ["runway"], true, false],
"layout": {
"line-cap": "round",
"line-join": "round"
@@ -1639,13 +1029,13 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.5],
- [
- "zoom"
- ],
- 11, 5, 17, 55]
+ ["exponential", 1.5],
+ ["zoom"],
+ 11,
+ 5,
+ 17,
+ 55
+ ]
}
},
{
@@ -1656,39 +1046,12 @@
"minzoom": 4,
"filter": [
"all",
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPolygon",
- "Polygon"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "runway",
- "taxiway"
- ],
- true, false]
+ ["match", ["geometry-type"], ["MultiPolygon", "Polygon"], true, false],
+ ["match", ["get", "class"], ["runway", "taxiway"], true, false]
],
"paint": {
"fill-color": "rgba(255, 255, 255, 1)",
- "fill-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 13, 0, 14, 1]
+ "fill-opacity": ["interpolate", ["linear"], ["zoom"], 13, 0, 14, 1]
}
},
{
@@ -1699,26 +1062,14 @@
"minzoom": 4,
"filter": [
"all",
+ ["match", ["get", "class"], ["taxiway"], true, false],
[
"match",
- [
- "get",
- "class"
- ],
- [
- "taxiway"
- ],
- true, false],
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ]
],
"layout": {
"line-cap": "round",
@@ -1726,24 +1077,16 @@
},
"paint": {
"line-color": "rgba(255, 255, 255, 1)",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 11, 0, 12, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 11, 0, 12, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.5],
- [
- "zoom"
- ],
- 11, 1, 17, 10]
+ ["exponential", 1.5],
+ ["zoom"],
+ 11,
+ 1,
+ 17,
+ 10
+ ]
}
},
{
@@ -1754,26 +1097,14 @@
"minzoom": 4,
"filter": [
"all",
+ ["match", ["get", "class"], ["runway"], true, false],
[
"match",
- [
- "get",
- "class"
- ],
- [
- "runway"
- ],
- true, false],
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ]
],
"layout": {
"line-cap": "round",
@@ -1781,24 +1112,16 @@
},
"paint": {
"line-color": "rgba(255, 255, 255, 1)",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 11, 0, 12, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 11, 0, 12, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.5],
- [
- "zoom"
- ],
- 11, 4, 17, 50]
+ ["exponential", 1.5],
+ ["zoom"],
+ 11,
+ 4,
+ 17,
+ 50
+ ]
}
},
{
@@ -1808,24 +1131,8 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPolygon",
- "Polygon"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "class"
- ],
- "pier"
- ]
+ ["match", ["geometry-type"], ["MultiPolygon", "Polygon"], true, false],
+ ["==", ["get", "class"], "pier"]
],
"paint": {
"fill-antialias": true,
@@ -1841,24 +1148,12 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "pier"
- ],
- true, false]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "class"], ["pier"], true, false]
],
"layout": {
"line-cap": "round",
@@ -1868,13 +1163,13 @@
"line-color": "#f8f4f0",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15, 1, 17, 4]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15,
+ 1,
+ 17,
+ 4
+ ]
}
},
{
@@ -1884,26 +1179,8 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPolygon",
- "Polygon"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "pier"
- ],
- false, true]
+ ["match", ["geometry-type"], ["MultiPolygon", "Polygon"], true, false],
+ ["match", ["get", "class"], ["pier"], false, true]
],
"paint": {
"fill-antialias": false,
@@ -1919,32 +1196,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "motorway"],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -1955,13 +1209,17 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 1, 13, 3, 14, 4, 20, 15]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 1,
+ 13,
+ 3,
+ 14,
+ 4,
+ 20,
+ 15
+ ]
}
},
{
@@ -1972,37 +1230,15 @@
"minzoom": 13,
"filter": [
"all",
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
[
"match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2013,13 +1249,17 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 1, 13, 3, 14, 4, 20, 15]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 1,
+ 13,
+ 3,
+ 14,
+ 4,
+ 20,
+ 15
+ ]
}
},
{
@@ -2031,34 +1271,13 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "minor",
- "service",
- "track"
- ],
- true, false]
+ ["!=", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["minor", "service", "track"], true, false]
],
"layout": {
"line-cap": "round",
@@ -2066,24 +1285,20 @@
},
"paint": {
"line-color": "#cfcdca",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 12, 0, 12.5, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 12, 0, 12.5, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 0.5, 13, 1, 14, 4, 20, 15]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 0.5,
+ 13,
+ 1,
+ 14,
+ 4,
+ 20,
+ 15
+ ]
}
},
{
@@ -2093,35 +1308,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "secondary",
- "tertiary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["match", ["get", "class"], ["secondary", "tertiary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "butt",
@@ -2132,13 +1321,13 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 8, 1.5, 20, 17]
+ ["exponential", 1.2],
+ ["zoom"],
+ 8,
+ 1.5,
+ 20,
+ 17
+ ]
}
},
{
@@ -2149,34 +1338,9 @@
"minzoom": 5,
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["match", ["get", "class"], ["primary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "butt",
@@ -2184,24 +1348,20 @@
},
"paint": {
"line-color": "#e9ac77",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 7, 0, 8, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 7, 0, 8, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 7, 0, 8, 0.6, 9, 1.5, 20, 22]
+ ["exponential", 1.2],
+ ["zoom"],
+ 7,
+ 0,
+ 8,
+ 0.6,
+ 9,
+ 1.5,
+ 20,
+ 22
+ ]
}
},
{
@@ -2212,34 +1372,9 @@
"minzoom": 5,
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "trunk"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["match", ["get", "class"], ["trunk"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "butt",
@@ -2247,24 +1382,20 @@
},
"paint": {
"line-color": "#e9ac77",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 5, 0, 6, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 5, 0, 6, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 5, 0, 6, 0.6, 7, 1.5, 20, 22]
+ ["exponential", 1.2],
+ ["zoom"],
+ 5,
+ 0,
+ 6,
+ 0.6,
+ 7,
+ 1.5,
+ 20,
+ 22
+ ]
}
},
{
@@ -2275,32 +1406,9 @@
"minzoom": 4,
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "motorway"],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "butt",
@@ -2308,24 +1416,22 @@
},
"paint": {
"line-color": "#e9ac77",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 4, 0, 5, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 4, 0, 5, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 4, 0, 5, 0.4, 6, 0.6, 7, 1.5, 20, 22]
+ ["exponential", 1.2],
+ ["zoom"],
+ 4,
+ 0,
+ 5,
+ 0.4,
+ 6,
+ 0.6,
+ 7,
+ 1.5,
+ 20,
+ 22
+ ]
}
},
{
@@ -2337,46 +1443,26 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "path"
- ]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "path"]
],
"paint": {
"line-color": "#cba",
"line-dasharray": [1.5, 0.75],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15, 1.2, 20, 4]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15,
+ 1.2,
+ 20,
+ 4
+ ]
}
},
{
@@ -2387,32 +1473,9 @@
"minzoom": 12,
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "motorway"],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2422,13 +1485,17 @@
"line-color": "#fc8",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12.5, 0, 13, 1.5, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12.5,
+ 0,
+ 13,
+ 1.5,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -2439,37 +1506,15 @@
"minzoom": 13,
"filter": [
"all",
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
[
"match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2479,13 +1524,17 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12.5, 0, 13, 1.5, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12.5,
+ 0,
+ 13,
+ 1.5,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -2497,34 +1546,13 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "brunnel"
- ],
- "tunnel"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "minor",
- "service",
- "track"
- ],
- true, false]
+ ["!=", ["get", "brunnel"], "tunnel"],
+ ["match", ["get", "class"], ["minor", "service", "track"], true, false]
],
"layout": {
"line-cap": "round",
@@ -2535,13 +1563,15 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 13.5, 0, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 13.5,
+ 0,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -2551,35 +1581,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "secondary",
- "tertiary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["match", ["get", "class"], ["secondary", "tertiary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2589,13 +1593,15 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 8, 0.5, 20, 13]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 8,
+ 0.5,
+ 20,
+ 13
+ ]
}
},
{
@@ -2607,42 +1613,14 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["match", ["get", "class"], ["primary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2652,13 +1630,15 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 8.5, 0, 9, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 8.5,
+ 0,
+ 9,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -2670,42 +1650,14 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "trunk"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["match", ["get", "class"], ["trunk"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2715,13 +1667,15 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -2734,40 +1688,14 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "motorway"],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-cap": "round",
@@ -2777,13 +1705,15 @@
"line-color": "#fc8",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -2795,44 +1725,25 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "class"
- ],
- "transit"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "tunnel"
- ],
- false, true]
+ ["==", ["get", "class"], "transit"],
+ ["match", ["get", "brunnel"], ["tunnel"], false, true]
],
"paint": {
"line-color": "hsla(0,0%,73%,0.77)",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14, 0.4, 20, 1]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14,
+ 0.4,
+ 20,
+ 1
+ ]
}
},
{
@@ -2844,45 +1755,28 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "class"
- ],
- "transit"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "tunnel"
- ],
- false, true]
+ ["==", ["get", "class"], "transit"],
+ ["match", ["get", "brunnel"], ["tunnel"], false, true]
],
"paint": {
"line-color": "hsla(0,0%,73%,0.68)",
"line-dasharray": [0.2, 8],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14.5, 0, 15, 2, 20, 6]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14.5,
+ 0,
+ 15,
+ 2,
+ 20,
+ 6
+ ]
}
},
{
@@ -2894,38 +1788,25 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "has",
- "service"
- ]
+ ["==", ["get", "class"], "rail"],
+ ["has", "service"]
],
"paint": {
"line-color": "hsla(0,0%,73%,0.77)",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14, 0.4, 20, 1]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14,
+ 0.4,
+ 20,
+ 1
+ ]
}
},
{
@@ -2937,39 +1818,28 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "has",
- "service"
- ]
+ ["==", ["get", "class"], "rail"],
+ ["has", "service"]
],
"paint": {
"line-color": "hsla(0,0%,73%,0.68)",
"line-dasharray": [0.2, 8],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14.5, 0, 15, 2, 20, 6]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14.5,
+ 0,
+ 15,
+ 2,
+ 20,
+ 6
+ ]
}
},
{
@@ -2981,52 +1851,28 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "!",
- [
- "has",
- "service"
- ]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
- ]
+ ["!", ["has", "service"]],
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "rail"]
],
"paint": {
"line-color": "#bbb",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14, 0.4, 15, 0.75, 20, 2]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14,
+ 0.4,
+ 15,
+ 0.75,
+ 20,
+ 2
+ ]
}
},
{
@@ -3038,53 +1884,29 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "!",
- [
- "has",
- "service"
- ]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "brunnel"
- ],
- [
- "bridge",
- "tunnel"
- ],
- false, true],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
- ]
+ ["!", ["has", "service"]],
+ ["match", ["get", "brunnel"], ["bridge", "tunnel"], false, true],
+ ["==", ["get", "class"], "rail"]
],
"paint": {
"line-color": "#bbb",
"line-dasharray": [0.2, 8],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14.5, 0, 15, 3, 20, 8]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14.5,
+ 0,
+ 15,
+ 3,
+ 20,
+ 8
+ ]
}
},
{
@@ -3094,29 +1916,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "motorway"],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3126,13 +1928,17 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 1, 13, 3, 14, 4, 20, 19]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 1,
+ 13,
+ 3,
+ 14,
+ 4,
+ 20,
+ 19
+ ]
}
},
{
@@ -3142,34 +1948,15 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
+ ["==", ["get", "brunnel"], "bridge"],
[
"match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3179,13 +1966,17 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 1, 13, 3, 14, 4, 20, 19]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 1,
+ 13,
+ 3,
+ 14,
+ 4,
+ 20,
+ 19
+ ]
}
},
{
@@ -3195,32 +1986,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "secondary",
- "tertiary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["match", ["get", "class"], ["secondary", "tertiary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3230,13 +1998,17 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 5, 0.4, 7, 0.6, 8, 1.5, 20, 21]
+ ["exponential", 1.2],
+ ["zoom"],
+ 5,
+ 0.4,
+ 7,
+ 0.6,
+ 8,
+ 1.5,
+ 20,
+ 21
+ ]
}
},
{
@@ -3246,32 +2018,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "trunk"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["match", ["get", "class"], ["primary", "trunk"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3280,13 +2029,17 @@
"line-color": "hsl(28,76%,67%)",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 5, 0.4, 6, 0.6, 7, 1.5, 20, 26]
+ ["exponential", 1.2],
+ ["zoom"],
+ 5,
+ 0.4,
+ 6,
+ 0.6,
+ 7,
+ 1.5,
+ 20,
+ 26
+ ]
}
},
{
@@ -3296,29 +2049,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "motorway"],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3327,13 +2060,17 @@
"line-color": "#e9ac77",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 5, 0.4, 6, 0.6, 7, 1.5, 20, 26]
+ ["exponential", 1.2],
+ ["zoom"],
+ 5,
+ 0.4,
+ 6,
+ 0.6,
+ 7,
+ 1.5,
+ 20,
+ 26
+ ]
}
},
{
@@ -3345,34 +2082,13 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "minor",
- "service",
- "track"
- ],
- true, false]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["match", ["get", "class"], ["minor", "service", "track"], true, false]
],
"layout": {
"line-cap": "butt",
@@ -3380,24 +2096,20 @@
},
"paint": {
"line-color": "#cfcdca",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 12, 0, 12.5, 1],
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 12, 0, 12.5, 1],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12, 0.5, 13, 1, 14, 6, 20, 24]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12,
+ 0.5,
+ 13,
+ 1,
+ 14,
+ 6,
+ 20,
+ 24
+ ]
}
},
{
@@ -3409,42 +2121,25 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "==",
- [
- "get",
- "class"
- ],
- "path"
- ]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "path"]
],
"paint": {
"line-color": "#f8f4f0",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15, 1.2, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15,
+ 1.2,
+ 20,
+ 18
+ ]
}
},
{
@@ -3456,43 +2151,26 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "==",
- [
- "get",
- "class"
- ],
- "path"
- ]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "path"]
],
"paint": {
"line-color": "#cba",
"line-dasharray": [1.5, 0.75],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 15, 1.2, 20, 4]
+ ["exponential", 1.2],
+ ["zoom"],
+ 15,
+ 1.2,
+ 20,
+ 4
+ ]
}
},
{
@@ -3502,29 +2180,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "motorway"],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3533,13 +2191,17 @@
"line-color": "#fc8",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12.5, 0, 13, 1.5, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12.5,
+ 0,
+ 13,
+ 1.5,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -3549,34 +2211,15 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
+ ["==", ["get", "brunnel"], "bridge"],
[
"match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
+ ["==", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3585,13 +2228,17 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 12.5, 0, 13, 1.5, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 12.5,
+ 0,
+ 13,
+ 1.5,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -3603,34 +2250,13 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "minor",
- "service",
- "track"
- ],
- true, false]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["match", ["get", "class"], ["minor", "service", "track"], true, false]
],
"layout": {
"line-cap": "round",
@@ -3641,13 +2267,15 @@
"line-opacity": 1,
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 13.5, 0, 14, 2.5, 20, 11.5]
+ ["exponential", 1.2],
+ ["zoom"],
+ 13.5,
+ 0,
+ 14,
+ 2.5,
+ 20,
+ 11.5
+ ]
}
},
{
@@ -3657,32 +2285,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "secondary",
- "tertiary"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["match", ["get", "class"], ["secondary", "tertiary"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3691,13 +2296,15 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 8, 0.5, 20, 13]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 8,
+ 0.5,
+ 20,
+ 13
+ ]
}
},
{
@@ -3707,32 +2314,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "trunk"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["match", ["get", "class"], ["primary", "trunk"], true, false],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3741,13 +2325,15 @@
"line-color": "#fea",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -3757,29 +2343,9 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "motorway"
- ],
- [
- "!=",
- [
- "get",
- "ramp"
- ],
- 1]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "motorway"],
+ ["!=", ["get", "ramp"], 1]
],
"layout": {
"line-join": "round"
@@ -3788,13 +2354,15 @@
"line-color": "#fc8",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 6.5, 0, 7, 0.5, 20, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 6.5,
+ 0,
+ 7,
+ 0.5,
+ 20,
+ 18
+ ]
}
},
{
@@ -3804,34 +2372,22 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
- ]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "rail"]
],
"paint": {
"line-color": "#bbb",
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14, 0.4, 15, 0.75, 20, 2]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14,
+ 0.4,
+ 15,
+ 0.75,
+ 20,
+ 2
+ ]
}
},
{
@@ -3841,35 +2397,23 @@
"source-layer": "transportation",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "brunnel"
- ],
- "bridge"
- ],
- [
- "==",
- [
- "get",
- "class"
- ],
- "rail"
- ]
+ ["==", ["get", "brunnel"], "bridge"],
+ ["==", ["get", "class"], "rail"]
],
"paint": {
"line-color": "#bbb",
"line-dasharray": [0.2, 8],
"line-width": [
"interpolate",
- [
- "exponential",
- 1.4],
- [
- "zoom"
- ],
- 14.5, 0, 15, 3, 20, 8]
+ ["exponential", 1.4],
+ ["zoom"],
+ 14.5,
+ 0,
+ 15,
+ 3,
+ 20,
+ 8
+ ]
}
},
{
@@ -3878,28 +2422,13 @@
"source": "openmaptiles",
"source-layer": "transportation",
"minzoom": 13,
- "filter": [
- "==",
- [
- "get",
- "subclass"
- ],
- "cable_car"
- ],
+ "filter": ["==", ["get", "subclass"], "cable_car"],
"layout": {
"line-cap": "round"
},
"paint": {
"line-color": "hsl(0,0%,70%)",
- "line-width": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 11, 1, 19, 2.5]
+ "line-width": ["interpolate", ["linear"], ["zoom"], 11, 1, 19, 2.5]
}
},
{
@@ -3908,29 +2437,14 @@
"source": "openmaptiles",
"source-layer": "transportation",
"minzoom": 13,
- "filter": [
- "==",
- [
- "get",
- "subclass"
- ],
- "cable_car"
- ],
+ "filter": ["==", ["get", "subclass"], "cable_car"],
"layout": {
"line-cap": "round"
},
"paint": {
"line-color": "hsl(0,0%,70%)",
"line-dasharray": [2, 3],
- "line-width": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 11, 3, 19, 5.5]
+ "line-width": ["interpolate", ["linear"], ["zoom"], 11, 3, 19, 5.5]
}
},
{
@@ -3941,54 +2455,16 @@
"minzoom": 5,
"filter": [
"all",
- [
- "\u003E=",
- [
- "get",
- "admin_level"
- ],
- 3],
- [
- "\u003C=",
- [
- "get",
- "admin_level"
- ],
- 6],
- [
- "!=",
- [
- "get",
- "maritime"
- ],
- 1],
- [
- "!=",
- [
- "get",
- "disputed"
- ],
- 1],
- [
- "!",
- [
- "has",
- "claimed_by"
- ]
- ]
+ ["\u003E=", ["get", "admin_level"], 3],
+ ["\u003C=", ["get", "admin_level"], 6],
+ ["!=", ["get", "maritime"], 1],
+ ["!=", ["get", "disputed"], 1],
+ ["!", ["has", "claimed_by"]]
],
"paint": {
"line-color": "hsl(0,0%,70%)",
"line-dasharray": [1, 1],
- "line-width": [
- "interpolate",
- [
- "linear",
- 1],
- [
- "zoom"
- ],
- 7, 1, 11, 2]
+ "line-width": ["interpolate", ["linear", 1], ["zoom"], 7, 1, 11, 2]
}
},
{
@@ -3998,34 +2474,10 @@
"source-layer": "boundary",
"filter": [
"all",
- [
- "==",
- [
- "get",
- "admin_level"
- ],
- 2],
- [
- "!=",
- [
- "get",
- "maritime"
- ],
- 1],
- [
- "!=",
- [
- "get",
- "disputed"
- ],
- 1],
- [
- "!",
- [
- "has",
- "claimed_by"
- ]
- ]
+ ["==", ["get", "admin_level"], 2],
+ ["!=", ["get", "maritime"], 1],
+ ["!=", ["get", "disputed"], 1],
+ ["!", ["has", "claimed_by"]]
],
"layout": {
"line-cap": "round",
@@ -4033,24 +2485,8 @@
},
"paint": {
"line-color": "hsl(248,7%,66%)",
- "line-opacity": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 0, 0.4, 4, 1],
- "line-width": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 3, 1, 5, 1.2, 12, 3]
+ "line-opacity": ["interpolate", ["linear"], ["zoom"], 0, 0.4, 4, 1],
+ "line-width": ["interpolate", ["linear"], ["zoom"], 3, 1, 5, 1.2, 12, 3]
}
},
{
@@ -4060,33 +2496,13 @@
"source-layer": "boundary",
"filter": [
"all",
- [
- "!=",
- [
- "get",
- "maritime"
- ],
- 1],
- [
- "==",
- [
- "get",
- "disputed"
- ],
- 1]
+ ["!=", ["get", "maritime"], 1],
+ ["==", ["get", "disputed"], 1]
],
"paint": {
"line-color": "hsl(248,7%,66%)",
"line-dasharray": [1, 2],
- "line-width": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 3, 1, 5, 1.2, 12, 3]
+ "line-width": ["interpolate", ["linear"], ["zoom"], 3, 1, 5, 1.2, 12, 3]
}
},
{
@@ -4097,19 +2513,10 @@
"minzoom": 15,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "oneway"
- ],
- 1],
+ ["==", ["get", "oneway"], 1],
[
"match",
- [
- "get",
- "class"
- ],
+ ["get", "class"],
[
"minor",
"motorway",
@@ -4119,22 +2526,16 @@
"tertiary",
"trunk"
],
- true, false]
+ true,
+ false
+ ]
],
"layout": {
"icon-image": "oneway",
"icon-padding": 2,
"icon-rotate": 90,
"icon-rotation-alignment": "map",
- "icon-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 15, 0.5, 19, 1],
+ "icon-size": ["interpolate", ["linear"], ["zoom"], 15, 0.5, 19, 1],
"symbol-placement": "line",
"symbol-spacing": 75
},
@@ -4150,19 +2551,10 @@
"minzoom": 15,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "oneway"
- ],
- -1],
+ ["==", ["get", "oneway"], -1],
[
"match",
- [
- "get",
- "class"
- ],
+ ["get", "class"],
[
"minor",
"motorway",
@@ -4172,22 +2564,16 @@
"tertiary",
"trunk"
],
- true, false]
+ true,
+ false
+ ]
],
"layout": {
"icon-image": "oneway",
"icon-padding": 2,
"icon-rotate": -90,
"icon-rotation-alignment": "map",
- "icon-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 15, 0.5, 19, 1],
+ "icon-size": ["interpolate", ["linear"], ["zoom"], 15, 0.5, 19, 1],
"symbol-placement": "line",
"symbol-spacing": 75
},
@@ -4203,50 +2589,21 @@
"minzoom": 10,
"filter": [
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
"layout": {
"symbol-placement": "line",
"symbol-spacing": 350,
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- " ",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-letter-spacing": 0.2,
"text-max-width": 5,
"text-size": 14
@@ -4264,59 +2621,22 @@
"source-layer": "water_name",
"filter": [
"match",
- [
- "geometry-type"
- ],
- [
- "MultiPoint",
- "Point"
- ],
- true, false],
+ ["geometry-type"],
+ ["MultiPoint", "Point"],
+ true,
+ false
+ ],
"layout": {
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-letter-spacing": 0.2,
"text-max-width": 5,
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 0, 10, 8, 14]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 0, 10, 8, 14]
},
"paint": {
"text-color": "#495e91",
@@ -4331,50 +2651,21 @@
"source-layer": "water_name",
"filter": [
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
"layout": {
"symbol-placement": "line",
"symbol-spacing": 350,
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- " ",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-letter-spacing": 0.2,
"text-max-width": 5,
"text-size": 14
@@ -4393,84 +2684,26 @@
"minzoom": 17,
"filter": [
"all",
- [
- "!=",
- [
- "get",
- "class"
- ], "bus"],
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPoint",
- "Point"
- ],
- true, false],
- [
- "\u003E=",
- [
- "get",
- "rank"
- ],
- 20]
+ ["!=", ["get", "class"], "bus"],
+ ["match", ["geometry-type"], ["MultiPoint", "Point"], true, false],
+ ["\u003E=", ["get", "rank"], 20]
],
"layout": {
"icon-image": [
"match",
- [
- "get",
- "subclass"
- ],
- [
- "florist",
- "furniture"
- ],
- [
- "get",
- "subclass"
- ],
- [
- "get",
- "class"
- ]
+ ["get", "subclass"],
+ ["florist", "furniture"],
+ ["get", "subclass"],
+ ["get", "class"]
],
"text-anchor": "top",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-max-width": 9,
"text-offset": [0, 0.6],
"text-size": 12
@@ -4490,91 +2723,27 @@
"minzoom": 16,
"filter": [
"all",
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPoint",
- "Point"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "class"
- ], "bus"],
- [
- "\u003E=",
- [
- "get",
- "rank"
- ],
- 7],
- [
- "\u003C",
- [
- "get",
- "rank"
- ],
- 20]
+ ["match", ["geometry-type"], ["MultiPoint", "Point"], true, false],
+ ["!=", ["get", "class"], "bus"],
+ ["\u003E=", ["get", "rank"], 7],
+ ["\u003C", ["get", "rank"], 20]
],
"layout": {
"icon-image": [
"match",
- [
- "get",
- "subclass"
- ],
- [
- "florist",
- "furniture"
- ],
- [
- "get",
- "subclass"
- ],
- [
- "get",
- "class"
- ]
+ ["get", "subclass"],
+ ["florist", "furniture"],
+ ["get", "subclass"],
+ ["get", "class"]
],
"text-anchor": "top",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-max-width": 9,
"text-offset": [0, 0.6],
"text-size": 12
@@ -4594,97 +2763,28 @@
"minzoom": 15,
"filter": [
"all",
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "MultiPoint",
- "Point"
- ],
- true, false],
- [
- "!=",
- [
- "get",
- "class"
- ], "bus"],
- [
- "!=",
- [
- "get",
- "class"
- ], "bus"],
- [
- "\u003E=",
- [
- "get",
- "rank"
- ],
- 1],
- [
- "\u003C",
- [
- "get",
- "rank"
- ],
- 7]
+ ["match", ["geometry-type"], ["MultiPoint", "Point"], true, false],
+ ["!=", ["get", "class"], "bus"],
+ ["!=", ["get", "class"], "bus"],
+ ["\u003E=", ["get", "rank"], 1],
+ ["\u003C", ["get", "rank"], 7]
],
"layout": {
"icon-image": [
"match",
- [
- "get",
- "subclass"
- ],
- [
- "florist",
- "furniture"
- ],
- [
- "get",
- "subclass"
- ],
- [
- "get",
- "class"
- ]
+ ["get", "subclass"],
+ ["florist", "furniture"],
+ ["get", "subclass"],
+ ["get", "class"]
],
"text-anchor": "top",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-max-width": 9,
"text-offset": [0, 0.6],
"text-size": 12
@@ -4701,60 +2801,18 @@
"type": "symbol",
"source": "openmaptiles",
"source-layer": "poi",
- "filter": [
- "match",
- [
- "get",
- "class"
- ],
- [
- "airport",
- "rail"
- ],
- true, false],
+ "filter": ["match", ["get", "class"], ["airport", "rail"], true, false],
"layout": {
- "icon-image": [
- "to-string",
- [
- "get",
- "class"
- ]
- ],
+ "icon-image": ["to-string", ["get", "class"]],
"icon-size": 0.7,
"text-anchor": "left",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-max-width": 9,
"text-offset": [0.9, 0],
"text-size": 12
@@ -4772,59 +2830,18 @@
"source": "openmaptiles",
"source-layer": "transportation_name",
"minzoom": 15.5,
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "path"
- ],
+ "filter": ["==", ["get", "class"], "path"],
"layout": {
"symbol-placement": "line",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- " ",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-rotation-alignment": "map",
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 13, 12, 14, 13]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 13, 12, 14, 13]
},
"paint": {
"text-color": "hsl(30,23%,62%)",
@@ -4842,72 +2859,24 @@
"all",
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "class"
- ],
- [
- "minor",
- "service",
- "track"
- ],
- true, false]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "class"], ["minor", "service", "track"], true, false]
],
"layout": {
"symbol-placement": "line",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- " ",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-rotation-alignment": "map",
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 13, 12, 14, 13]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 13, 12, 14, 13]
},
"paint": {
"text-color": "#666",
@@ -4923,62 +2892,22 @@
"minzoom": 12.2,
"filter": [
"match",
- [
- "get",
- "class"
- ],
- [
- "primary",
- "secondary",
- "tertiary",
- "trunk"
- ],
- true, false],
+ ["get", "class"],
+ ["primary", "secondary", "tertiary", "trunk"],
+ true,
+ false
+ ],
"layout": {
"symbol-placement": "line",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- " ",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], " ", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-rotation-alignment": "map",
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 13, 12, 14, 13]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 13, 12, 14, 13]
},
"paint": {
"text-color": "#666",
@@ -4994,66 +2923,30 @@
"minzoom": 8,
"filter": [
"all",
- [
- "\u003C=",
- [
- "get",
- "ref_length"
- ],
- 6],
+ ["\u003C=", ["get", "ref_length"], 6],
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
[
"match",
- [
- "get",
- "network"
- ],
- [
- "us-highway",
- "us-interstate",
- "us-state"
- ],
- false, true]
+ ["get", "network"],
+ ["us-highway", "us-interstate", "us-state"],
+ false,
+ true
+ ]
],
"layout": {
- "icon-image": [
- "concat",
- "road_",
- [
- "get",
- "ref_length"
- ]
- ],
+ "icon-image": ["concat", "road_", ["get", "ref_length"]],
"icon-rotation-alignment": "viewport",
"icon-size": 1,
- "symbol-placement": [
- "step",
- [
- "zoom"
- ],
- "point",
- 11, "line"
- ],
+ "symbol-placement": ["step", ["zoom"], "point", 11, "line"],
"symbol-spacing": 200,
- "text-field": [
- "to-string",
- [
- "get",
- "ref"
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
- ],
+ "text-field": ["to-string", ["get", "ref"]],
+ "text-font": ["Noto Sans Regular"],
"text-rotation-alignment": "viewport",
"text-size": 10
}
@@ -5066,69 +2959,29 @@
"minzoom": 7,
"filter": [
"all",
- [
- "\u003C=",
- [
- "get",
- "ref_length"
- ],
- 6],
+ ["\u003C=", ["get", "ref_length"], 6],
[
"match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
- [
- "match",
- [
- "get",
- "network"
- ],
- [
- "us-interstate"
- ],
- true, false]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "network"], ["us-interstate"], true, false]
],
"layout": {
"icon-image": [
"concat",
- [
- "get",
- "network"
- ],
+ ["get", "network"],
"_",
- [
- "get",
- "ref_length"
- ]
+ ["get", "ref_length"]
],
"icon-rotation-alignment": "viewport",
"icon-size": 1,
- "symbol-placement": [
- "step",
- [
- "zoom"
- ],
- "point",
- 7, "line",
- 8, "line"
- ],
+ "symbol-placement": ["step", ["zoom"], "point", 7, "line", 8, "line"],
"symbol-spacing": 200,
- "text-field": [
- "to-string",
- [
- "get",
- "ref"
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
- ],
+ "text-field": ["to-string", ["get", "ref"]],
+ "text-font": ["Noto Sans Regular"],
"text-rotation-alignment": "viewport",
"text-size": 10
}
@@ -5141,69 +2994,29 @@
"minzoom": 9,
"filter": [
"all",
- [
- "\u003C=",
- [
- "get",
- "ref_length"
- ],
- 6],
- [
- "match",
- [
- "geometry-type"
- ],
- [
- "LineString",
- "MultiLineString"
- ],
- true, false],
+ ["\u003C=", ["get", "ref_length"], 6],
[
"match",
- [
- "get",
- "network"
- ],
- [
- "us-highway",
- "us-state"
- ],
- true, false]
+ ["geometry-type"],
+ ["LineString", "MultiLineString"],
+ true,
+ false
+ ],
+ ["match", ["get", "network"], ["us-highway", "us-state"], true, false]
],
"layout": {
"icon-image": [
"concat",
- [
- "get",
- "network"
- ],
+ ["get", "network"],
"_",
- [
- "get",
- "ref_length"
- ]
+ ["get", "ref_length"]
],
"icon-rotation-alignment": "viewport",
"icon-size": 1,
- "symbol-placement": [
- "step",
- [
- "zoom"
- ],
- "point",
- 11, "line"
- ],
+ "symbol-placement": ["step", ["zoom"], "point", 11, "line"],
"symbol-spacing": 200,
- "text-field": [
- "to-string",
- [
- "get",
- "ref"
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
- ],
+ "text-field": ["to-string", ["get", "ref"]],
+ "text-font": ["Noto Sans Regular"],
"text-rotation-alignment": "viewport",
"text-size": 10
}
@@ -5214,50 +3027,18 @@
"source": "openmaptiles",
"source-layer": "aerodrome_label",
"minzoom": 10,
- "filter": [
- "all",
- [
- "has",
- "iata"
- ]
- ],
+ "filter": ["all", ["has", "iata"]],
"layout": {
"icon-image": "airport_11",
"icon-size": 1,
"text-anchor": "top",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-max-width": 9,
"text-offset": [0, 0.6],
"text-optional": true,
@@ -5279,64 +3060,22 @@
"minzoom": 8,
"filter": [
"match",
- [
- "get",
- "class"
- ],
- [
- "city",
- "continent",
- "country",
- "state",
- "town",
- "village"
- ],
- false, true],
+ ["get", "class"],
+ ["city", "continent", "country", "state", "town", "village"],
+ false,
+ true
+ ],
"layout": {
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-letter-spacing": 0.1,
"text-max-width": 9,
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 8, 9, 12, 10],
+ "text-size": ["interpolate", ["linear"], ["zoom"], 8, 9, 12, 10],
"text-transform": "uppercase"
},
"paint": {
@@ -5352,70 +3091,30 @@
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 9,
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "village"
- ],
+ "filter": ["==", ["get", "class"], "village"],
"layout": {
"icon-allow-overlap": true,
- "icon-image": [
- "step",
- [
- "zoom"
- ],
- "circle_11_black",
- 10, ""
- ],
+ "icon-image": ["step", ["zoom"], "circle_11_black", 10, ""],
"icon-optional": false,
"icon-size": 0.2,
"text-anchor": "bottom",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-max-width": 8,
"text-size": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 7, 10, 11, 12]
+ ["exponential", 1.2],
+ ["zoom"],
+ 7,
+ 10,
+ 11,
+ 12
+ ]
},
"paint": {
"text-color": "#000",
@@ -5430,70 +3129,30 @@
"source": "openmaptiles",
"source-layer": "place",
"minzoom": 6,
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "town"
- ],
+ "filter": ["==", ["get", "class"], "town"],
"layout": {
"icon-allow-overlap": true,
- "icon-image": [
- "step",
- [
- "zoom"
- ],
- "circle_11_black",
- 10, ""
- ],
+ "icon-image": ["step", ["zoom"], "circle_11_black", 10, ""],
"icon-optional": false,
"icon-size": 0.2,
"text-anchor": "bottom",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-max-width": 8,
"text-size": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 7, 12, 11, 14]
+ ["exponential", 1.2],
+ ["zoom"],
+ 7,
+ 12,
+ 11,
+ 14
+ ]
},
"paint": {
"text-color": "#000",
@@ -5509,59 +3168,18 @@
"source-layer": "place",
"minzoom": 5,
"maxzoom": 8,
- "filter": [
- "==",
- [
- "get",
- "class"
- ],
- "state"
- ],
+ "filter": ["==", ["get", "class"], "state"],
"layout": {
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Italic"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Italic"],
"text-letter-spacing": 0.2,
"text-max-width": 9,
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 5, 10, 8, 14],
+ "text-size": ["interpolate", ["linear"], ["zoom"], 5, 10, 8, 14],
"text-transform": "uppercase"
},
"paint": {
@@ -5579,79 +3197,35 @@
"minzoom": 3,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "city"
- ],
- [
- "!=",
- [
- "get",
- "capital"
- ],
- 2]
+ ["==", ["get", "class"], "city"],
+ ["!=", ["get", "capital"], 2]
],
"layout": {
"icon-allow-overlap": true,
- "icon-image": [
- "step",
- [
- "zoom"
- ],
- "circle_11_black",
- 9, ""
- ],
+ "icon-image": ["step", ["zoom"], "circle_11_black", 9, ""],
"icon-optional": false,
"icon-size": 0.4,
"text-anchor": "bottom",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Regular"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Regular"],
"text-max-width": 8,
"text-offset": [0, -0.1],
"text-size": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 4, 11, 7, 13, 11, 18]
+ ["exponential", 1.2],
+ ["zoom"],
+ 4,
+ 11,
+ 7,
+ 13,
+ 11,
+ 18
+ ]
},
"paint": {
"text-color": "#000",
@@ -5668,79 +3242,35 @@
"minzoom": 3,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "city"
- ],
- [
- "==",
- [
- "get",
- "capital"
- ],
- 2]
+ ["==", ["get", "class"], "city"],
+ ["==", ["get", "capital"], 2]
],
"layout": {
"icon-allow-overlap": true,
- "icon-image": [
- "step",
- [
- "zoom"
- ],
- "circle_11_black",
- 9, ""
- ],
+ "icon-image": ["step", ["zoom"], "circle_11_black", 9, ""],
"icon-optional": false,
"icon-size": 0.5,
"text-anchor": "bottom",
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Bold"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Bold"],
"text-max-width": 8,
"text-offset": [0, -0.2],
"text-size": [
"interpolate",
- [
- "exponential",
- 1.2],
- [
- "zoom"
- ],
- 4, 12, 7, 14, 11, 20]
+ ["exponential", 1.2],
+ ["zoom"],
+ 4,
+ 12,
+ 7,
+ 14,
+ 11,
+ 20
+ ]
},
"paint": {
"text-color": "#000",
@@ -5758,66 +3288,19 @@
"maxzoom": 9,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "country"
- ],
- [
- "\u003E=",
- [
- "get",
- "rank"
- ],
- 3]
+ ["==", ["get", "class"], "country"],
+ ["\u003E=", ["get", "rank"], 3]
],
"layout": {
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Bold"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Bold"],
"text-max-width": 6.25,
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 3, 9, 7, 17]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 3, 9, 7, 17]
},
"paint": {
"text-color": "#000",
@@ -5834,66 +3317,19 @@
"maxzoom": 9,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "country"
- ],
- [
- "==",
- [
- "get",
- "rank"
- ],
- 2]
+ ["==", ["get", "class"], "country"],
+ ["==", ["get", "rank"], 2]
],
"layout": {
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Bold"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Bold"],
"text-max-width": 6.25,
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 2, 9, 5, 17]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 2, 9, 5, 17]
},
"paint": {
"text-color": "#000",
@@ -5910,66 +3346,19 @@
"maxzoom": 9,
"filter": [
"all",
- [
- "==",
- [
- "get",
- "class"
- ],
- "country"
- ],
- [
- "==",
- [
- "get",
- "rank"
- ],
- 1]
+ ["==", ["get", "class"], "country"],
+ ["==", ["get", "rank"], 1]
],
"layout": {
"text-field": [
"case",
- [
- "has",
- "name:nonlatin"
- ],
- [
- "concat",
- [
- "get",
- "name:latin"
- ],
- "\n",
- [
- "get",
- "name:nonlatin"
- ]
- ],
- [
- "coalesce",
- [
- "get",
- "name_en"
- ],
- [
- "get",
- "name"
- ]
- ]
- ],
- "text-font": [
- "Noto Sans Bold"
+ ["has", "name:nonlatin"],
+ ["concat", ["get", "name:latin"], "\n", ["get", "name:nonlatin"]],
+ ["coalesce", ["get", "name_en"], ["get", "name"]]
],
+ "text-font": ["Noto Sans Bold"],
"text-max-width": 6.25,
- "text-size": [
- "interpolate",
- [
- "linear"
- ],
- [
- "zoom"
- ],
- 1, 9, 4, 17]
+ "text-size": ["interpolate", ["linear"], ["zoom"], 1, 9, 4, 17]
},
"paint": {
"text-color": "#000",
diff --git a/src/frontend/public/pwa-worker.js b/src/frontend/public/pwa-worker.js
index bfe4b7e..13c1978 100644
--- a/src/frontend/public/pwa-worker.js
+++ b/src/frontend/public/pwa-worker.js
@@ -1,12 +1,9 @@
const CACHE_VERSION = "20251107a";
const STATIC_CACHE_NAME = `static-cache-${CACHE_VERSION}`;
-const STATIC_CACHE_ASSETS = [
- "/favicon.ico",
- "/logo-256.png",
- "/logo-512.jpg"
-];
+const STATIC_CACHE_ASSETS = ["/favicon.ico", "/logo-256.png", "/logo-512.jpg"];
-const EXPR_CACHE_AFTER_FIRST_VIEW = /(\/assets\/.*)|(\/api\/(vigo|santiago)\/GetStopTimetable.*)/;
+const EXPR_CACHE_AFTER_FIRST_VIEW =
+ /(\/assets\/.*)|(\/api\/(vigo|santiago)\/GetStopTimetable.*)/;
const ESTIMATES_MIN_AGE = 15 * 1000;
const ESTIMATES_MAX_AGE = 30 * 1000;
@@ -14,9 +11,10 @@ const ESTIMATES_MAX_AGE = 30 * 1000;
self.addEventListener("install", (event) => {
console.log("SW: Install event in progress. Cache version: ", CACHE_VERSION);
event.waitUntil(
- caches.open(STATIC_CACHE_NAME).then((cache) =>
- cache.addAll(STATIC_CACHE_ASSETS)
- ).then(() => self.skipWaiting())
+ caches
+ .open(STATIC_CACHE_NAME)
+ .then((cache) => cache.addAll(STATIC_CACHE_ASSETS))
+ .then(() => self.skipWaiting()),
);
});
@@ -29,11 +27,11 @@ self.addEventListener("activate", (event) => {
if (name !== STATIC_CACHE_NAME) {
return caches.delete(name);
}
- })
+ }),
);
await self.clients.claim();
- }
+ };
event.waitUntil(doCleanup());
});
@@ -43,7 +41,7 @@ self.addEventListener("fetch", async (event) => {
const url = new URL(request.url);
// Ignore requests with unsupported schemes
- if (!url.protocol.startsWith('http')) {
+ if (!url.protocol.startsWith("http")) {
return;
}
@@ -53,7 +51,9 @@ self.addEventListener("fetch", async (event) => {
}
// Static => cache first, if not, network; if not, fallback
- const isAssetCacheable = STATIC_CACHE_ASSETS.includes(url.pathname) || EXPR_CACHE_AFTER_FIRST_VIEW.test(url.pathname);
+ const isAssetCacheable =
+ STATIC_CACHE_ASSETS.includes(url.pathname) ||
+ EXPR_CACHE_AFTER_FIRST_VIEW.test(url.pathname);
if (request.method === "GET" && isAssetCacheable) {
const response = handleStaticRequest(request);
if (response !== null) {
@@ -66,7 +66,7 @@ self.addEventListener("fetch", async (event) => {
async function handleStaticRequest(request) {
const cache = await caches.open(STATIC_CACHE_NAME);
const cachedResponse = await cache.match(request);
- if (cachedResponse){
+ if (cachedResponse) {
console.log("SW handleStaticRequest: HIT for ", request.url);
return cachedResponse;
}
diff --git a/src/frontend/public/stops/santiago.json b/src/frontend/public/stops/santiago.json
index b23d46d..3d8e95b 100644
--- a/src/frontend/public/stops/santiago.json
+++ b/src/frontend/public/stops/santiago.json
@@ -6,9 +6,7 @@
},
"latitude": 42.8734893636941,
"longitude": -8.58813285827637,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -18,9 +16,7 @@
},
"latitude": 42.8732131853499,
"longitude": -8.58324185013771,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -30,9 +26,7 @@
},
"latitude": 42.8729546970255,
"longitude": -8.58446896076202,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -42,9 +36,7 @@
},
"latitude": 42.873519831692,
"longitude": -8.58878463506699,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -54,9 +46,7 @@
},
"latitude": 42.8647542564465,
"longitude": -8.49574148654938,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -66,9 +56,7 @@
},
"latitude": 42.8646785670954,
"longitude": -8.49574148654938,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -78,9 +66,7 @@
},
"latitude": 42.9147272899916,
"longitude": -8.43936681747437,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -90,9 +76,7 @@
},
"latitude": 42.8582918209728,
"longitude": -8.51557910442352,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -102,9 +86,7 @@
},
"latitude": 42.8581325616653,
"longitude": -8.51248115301132,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -114,9 +96,7 @@
},
"latitude": 42.858223005273,
"longitude": -8.51255089044571,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -126,9 +106,7 @@
},
"latitude": 42.858219072945,
"longitude": -8.51547986268997,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -138,9 +116,7 @@
},
"latitude": 42.8750746624514,
"longitude": -8.49863022565842,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -150,9 +126,7 @@
},
"latitude": 42.9509316594446,
"longitude": -8.5505336523056,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -162,9 +136,7 @@
},
"latitude": 42.9493767779918,
"longitude": -8.54905307292938,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -174,9 +146,7 @@
},
"latitude": 42.9494749408613,
"longitude": -8.54910135269165,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -186,9 +156,7 @@
},
"latitude": 42.951359637597,
"longitude": -8.55095744132996,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -198,9 +166,7 @@
},
"latitude": 42.8749478793621,
"longitude": -8.6196380853653,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -210,9 +176,7 @@
},
"latitude": 42.9277182225271,
"longitude": -8.48109126091003,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -222,9 +186,7 @@
},
"latitude": 42.9282327751849,
"longitude": -8.48075062036514,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -234,9 +196,7 @@
},
"latitude": 42.9292697232067,
"longitude": -8.46385538578033,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -246,9 +206,7 @@
},
"latitude": 42.9292225895844,
"longitude": -8.46387147903442,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -258,10 +216,7 @@
},
"latitude": 42.9293099831472,
"longitude": -8.5253718495369,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -271,10 +226,7 @@
},
"latitude": 42.8716750164462,
"longitude": -8.57894495129585,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -284,9 +236,7 @@
},
"latitude": 42.8709811078947,
"longitude": -8.57843399047852,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -296,9 +246,7 @@
},
"latitude": 42.9304794738353,
"longitude": -8.55736792087555,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -308,9 +256,7 @@
},
"latitude": 42.9304676906646,
"longitude": -8.55742692947388,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -320,9 +266,7 @@
},
"latitude": 42.8781940340906,
"longitude": -8.49982380867004,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -332,9 +276,7 @@
},
"latitude": 42.878115412924,
"longitude": -8.49995255470276,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -344,9 +286,7 @@
},
"latitude": 42.9559258614147,
"longitude": -8.55875730514526,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -356,10 +296,7 @@
},
"latitude": 42.8709843,
"longitude": -8.5231494,
- "lines": [
- "9",
- "C11"
- ],
+ "lines": ["9", "C11"],
"hide": false
},
{
@@ -369,9 +306,7 @@
},
"latitude": 42.9255107035718,
"longitude": -8.46477806568146,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -381,9 +316,7 @@
},
"latitude": 42.8664449554247,
"longitude": -8.57972949743271,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -393,9 +326,7 @@
},
"latitude": 42.8664528190327,
"longitude": -8.57966244220734,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -405,12 +336,7 @@
},
"latitude": 42.868080564322,
"longitude": -8.54691803455353,
- "lines": [
- "6",
- "12",
- "C5",
- "P3"
- ],
+ "lines": ["6", "12", "C5", "P3"],
"hide": false
},
{
@@ -420,12 +346,7 @@
},
"latitude": 42.8689435664539,
"longitude": -8.54823768138886,
- "lines": [
- "6",
- "12",
- "C5",
- "P3"
- ],
+ "lines": ["6", "12", "C5", "P3"],
"hide": false
},
{
@@ -435,12 +356,7 @@
},
"latitude": 42.8682427467367,
"longitude": -8.54697167873383,
- "lines": [
- "6",
- "12",
- "C6",
- "P3"
- ],
+ "lines": ["6", "12", "C6", "P3"],
"hide": false
},
{
@@ -450,9 +366,7 @@
},
"latitude": 42.8586634244262,
"longitude": -8.50874751806259,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -462,9 +376,7 @@
},
"latitude": 42.8607514403378,
"longitude": -8.5075056552887,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -474,9 +386,7 @@
},
"latitude": 42.8586201691127,
"longitude": -8.50891649723053,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -486,9 +396,7 @@
},
"latitude": 42.8607140847413,
"longitude": -8.50742518901825,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -498,14 +406,7 @@
},
"latitude": 42.8882645771859,
"longitude": -8.53578418493271,
- "lines": [
- "6",
- "9",
- "C6",
- "P7",
- "5",
- "6A"
- ],
+ "lines": ["6", "9", "C6", "P7", "5", "6A"],
"hide": false
},
{
@@ -515,13 +416,7 @@
},
"latitude": 42.888215446989,
"longitude": -8.53567689657211,
- "lines": [
- "C2",
- "P1",
- "P2",
- "P7",
- "5"
- ],
+ "lines": ["C2", "P1", "P2", "P7", "5"],
"hide": false
},
{
@@ -531,9 +426,7 @@
},
"latitude": 42.8882115165715,
"longitude": -8.53533357381821,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -543,14 +436,7 @@
},
"latitude": 42.8882508207347,
"longitude": -8.53540331125259,
- "lines": [
- "C2",
- "C4",
- "P1",
- "P2",
- "P7",
- "5"
- ],
+ "lines": ["C2", "C4", "P1", "P2", "P7", "5"],
"hide": false
},
{
@@ -560,9 +446,7 @@
},
"latitude": 42.8862295716698,
"longitude": -8.57297167181969,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -572,9 +456,7 @@
},
"latitude": 42.8863121130356,
"longitude": -8.57298240065575,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -584,10 +466,7 @@
},
"latitude": 42.9246691152418,
"longitude": -8.51013153791428,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -597,9 +476,7 @@
},
"latitude": 42.8331286732589,
"longitude": -8.50716769695282,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -609,9 +486,7 @@
},
"latitude": 42.8326802041119,
"longitude": -8.50673854351044,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -621,10 +496,7 @@
},
"latitude": 42.8905009423197,
"longitude": -8.53984236717224,
- "lines": [
- "C4",
- "5"
- ],
+ "lines": ["C4", "5"],
"hide": false
},
{
@@ -634,9 +506,7 @@
},
"latitude": 42.8917370003803,
"longitude": -8.54535430669785,
- "lines": [
- "C4"
- ],
+ "lines": ["C4"],
"hide": false
},
{
@@ -646,11 +516,7 @@
},
"latitude": 42.8896470848849,
"longitude": -8.53748738765717,
- "lines": [
- "8",
- "C2",
- "5"
- ],
+ "lines": ["8", "C2", "5"],
"hide": false
},
{
@@ -660,11 +526,7 @@
},
"latitude": 42.8896470848849,
"longitude": -8.53690803050995,
- "lines": [
- "8",
- "C4",
- "5"
- ],
+ "lines": ["8", "C4", "5"],
"hide": false
},
{
@@ -674,10 +536,7 @@
},
"latitude": 42.8903889294748,
"longitude": -8.54023933410645,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -687,11 +546,7 @@
},
"latitude": 42.8920160434467,
"longitude": -8.54410171508789,
- "lines": [
- "15",
- "C2",
- "5"
- ],
+ "lines": ["15", "C2", "5"],
"hide": false
},
{
@@ -701,9 +556,7 @@
},
"latitude": 42.8946413,
"longitude": -8.4752162,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -713,10 +566,7 @@
},
"latitude": 42.8924974880225,
"longitude": -8.54249238967896,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -726,10 +576,7 @@
},
"latitude": 42.8919138588083,
"longitude": -8.5410413146019,
- "lines": [
- "C4",
- "5"
- ],
+ "lines": ["C4", "5"],
"hide": false
},
{
@@ -739,10 +586,7 @@
},
"latitude": 42.8925977066249,
"longitude": -8.54252994060516,
- "lines": [
- "C4",
- "5"
- ],
+ "lines": ["C4", "5"],
"hide": false
},
{
@@ -752,10 +596,7 @@
},
"latitude": 42.8918991206253,
"longitude": -8.54120627045631,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -765,9 +606,7 @@
},
"latitude": 42.8855407400123,
"longitude": -8.54121565818787,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -777,11 +616,7 @@
},
"latitude": 42.9048035074155,
"longitude": -8.51686120033264,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -791,11 +626,7 @@
},
"latitude": 42.9031060004495,
"longitude": -8.51979285478592,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -805,11 +636,7 @@
},
"latitude": 42.9009172477152,
"longitude": -8.52348357439041,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -819,12 +646,7 @@
},
"latitude": 42.8980102517632,
"longitude": -8.52877289056778,
- "lines": [
- "1",
- "P4",
- "P6",
- "4"
- ],
+ "lines": ["1", "P4", "P6", "4"],
"hide": false
},
{
@@ -834,11 +656,7 @@
},
"latitude": 42.8979090595066,
"longitude": -8.52840811014175,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -848,11 +666,7 @@
},
"latitude": 42.9013455734857,
"longitude": -8.52240264415741,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -862,11 +676,7 @@
},
"latitude": 42.9030185697163,
"longitude": -8.5195380449295,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -876,11 +686,7 @@
},
"latitude": 42.9057406526939,
"longitude": -8.51486966013908,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -890,9 +696,7 @@
},
"latitude": 42.8762736834394,
"longitude": -8.55068653821945,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -902,9 +706,7 @@
},
"latitude": 42.8781036197404,
"longitude": -8.55233877897263,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -914,9 +716,7 @@
},
"latitude": 42.8763601692984,
"longitude": -8.55469107627869,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -926,9 +726,7 @@
},
"latitude": 42.8870363105218,
"longitude": -8.54148387908936,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -938,9 +736,7 @@
},
"latitude": 42.8869950403372,
"longitude": -8.5414382815361,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -950,11 +746,7 @@
},
"latitude": 42.8707953435167,
"longitude": -8.55368793010712,
- "lines": [
- "12",
- "C4",
- "5"
- ],
+ "lines": ["12", "C4", "5"],
"hide": false
},
{
@@ -964,11 +756,7 @@
},
"latitude": 42.8677837202532,
"longitude": -8.55484932661057,
- "lines": [
- "12",
- "C4",
- "5"
- ],
+ "lines": ["12", "C4", "5"],
"hide": false
},
{
@@ -978,11 +766,7 @@
},
"latitude": 42.8657087206892,
"longitude": -8.55591416358948,
- "lines": [
- "12",
- "C4",
- "5"
- ],
+ "lines": ["12", "C4", "5"],
"hide": false
},
{
@@ -992,10 +776,7 @@
},
"latitude": 42.8806253442159,
"longitude": -8.53325486183166,
- "lines": [
- "C11",
- "C2"
- ],
+ "lines": ["C11", "C2"],
"hide": false
},
{
@@ -1005,13 +786,7 @@
},
"latitude": 42.8860805,
"longitude": -8.5329345,
- "lines": [
- "9",
- "C11",
- "13",
- "C2",
- "C5"
- ],
+ "lines": ["9", "C11", "13", "C2", "C5"],
"hide": false
},
{
@@ -1021,12 +796,7 @@
},
"latitude": 42.881911,
"longitude": -8.5320754,
- "lines": [
- "9",
- "C11",
- "C4",
- "C6"
- ],
+ "lines": ["9", "C11", "C4", "C6"],
"hide": false
},
{
@@ -1036,9 +806,7 @@
},
"latitude": 42.8839537447952,
"longitude": -8.53325217962265,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -1048,10 +816,7 @@
},
"latitude": 42.8742677671808,
"longitude": -8.53678464889526,
- "lines": [
- "C11",
- "C2"
- ],
+ "lines": ["C11", "C2"],
"hide": false
},
{
@@ -1061,10 +826,7 @@
},
"latitude": 42.8781891202706,
"longitude": -8.53401124477386,
- "lines": [
- "C11",
- "C2"
- ],
+ "lines": ["C11", "C2"],
"hide": false
},
{
@@ -1074,10 +836,7 @@
},
"latitude": 42.8803197159119,
"longitude": -8.53288605809212,
- "lines": [
- "13",
- "C4"
- ],
+ "lines": ["13", "C4"],
"hide": false
},
{
@@ -1087,10 +846,7 @@
},
"latitude": 42.8836677865174,
"longitude": -8.53355795145035,
- "lines": [
- "C11",
- "C2"
- ],
+ "lines": ["C11", "C2"],
"hide": false
},
{
@@ -1100,10 +856,7 @@
},
"latitude": 42.8924935578779,
"longitude": -8.4910637140274,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -1113,10 +866,7 @@
},
"latitude": 42.8715541235912,
"longitude": -8.55205178260803,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -1126,9 +876,7 @@
},
"latitude": 42.8741193602028,
"longitude": -8.55511218309402,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -1138,9 +886,7 @@
},
"latitude": 42.8736819998146,
"longitude": -8.55872645974159,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -1150,10 +896,7 @@
},
"latitude": 42.8706734660549,
"longitude": -8.5674449801445,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -1163,10 +906,7 @@
},
"latitude": 42.8703559937947,
"longitude": -8.56822952628136,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -1176,10 +916,7 @@
},
"latitude": 42.8694704046486,
"longitude": -8.57493907213211,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -1189,10 +926,7 @@
},
"latitude": 42.8700227935981,
"longitude": -8.57227295637131,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -1202,10 +936,7 @@
},
"latitude": 42.8699107435703,
"longitude": -8.57258945703506,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -1215,10 +946,7 @@
},
"latitude": 42.8697161298807,
"longitude": -8.57449650764465,
- "lines": [
- "8",
- "P8"
- ],
+ "lines": ["8", "P8"],
"hide": false
},
{
@@ -1228,10 +956,7 @@
},
"latitude": 42.8728790177295,
"longitude": -8.55665177106857,
- "lines": [
- "15",
- "P8"
- ],
+ "lines": ["15", "P8"],
"hide": false
},
{
@@ -1241,9 +966,7 @@
},
"latitude": 42.871909921398,
"longitude": -8.56343910098076,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -1253,9 +976,7 @@
},
"latitude": 42.8717900118691,
"longitude": -8.5634645819664,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -1265,10 +986,7 @@
},
"latitude": 42.872772869989,
"longitude": -8.5562601685524,
- "lines": [
- "15",
- "P8"
- ],
+ "lines": ["15", "P8"],
"hide": false
},
{
@@ -1278,10 +996,7 @@
},
"latitude": 42.8874047930891,
"longitude": -8.53243812918663,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -1291,9 +1006,7 @@
},
"latitude": 42.8579634710868,
"longitude": -8.53495672345161,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -1303,9 +1016,7 @@
},
"latitude": 42.85779044769,
"longitude": -8.53489637374878,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -1315,9 +1026,7 @@
},
"latitude": 42.8772859535135,
"longitude": -8.53742837905884,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -1327,14 +1036,7 @@
},
"latitude": 42.876352,
"longitude": -8.547944,
- "lines": [
- "1",
- "8",
- "12",
- "C2",
- "P2",
- "P8"
- ],
+ "lines": ["1", "8", "12", "C2", "P2", "P8"],
"hide": false
},
{
@@ -1344,13 +1046,7 @@
},
"latitude": 42.8763139780024,
"longitude": -8.54785412549973,
- "lines": [
- "1",
- "12",
- "C4",
- "P2",
- "P8"
- ],
+ "lines": ["1", "12", "C4", "P2", "P8"],
"hide": false
},
{
@@ -1360,10 +1056,7 @@
},
"latitude": 42.9330707347107,
"longitude": -8.51512581110001,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -1373,9 +1066,7 @@
},
"latitude": 42.8873536969712,
"longitude": -8.48592460155487,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -1385,9 +1076,7 @@
},
"latitude": 42.8873851407411,
"longitude": -8.48603188991547,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -1397,9 +1086,7 @@
},
"latitude": 42.88448438551,
"longitude": -8.48486244678497,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -1409,9 +1096,7 @@
},
"latitude": 42.884654386107,
"longitude": -8.48481684923172,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -1421,9 +1106,7 @@
},
"latitude": 42.8840510292679,
"longitude": -8.47592264413834,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -1433,9 +1116,7 @@
},
"latitude": 42.8840058264007,
"longitude": -8.47605407238007,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -1445,9 +1126,7 @@
},
"latitude": 42.8837857076173,
"longitude": -8.55905771255493,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1457,9 +1136,7 @@
},
"latitude": 42.8839281953123,
"longitude": -8.55785608291626,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1469,9 +1146,7 @@
},
"latitude": 42.885855186231,
"longitude": -8.56329292058945,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1481,9 +1156,7 @@
},
"latitude": 42.8858699258582,
"longitude": -8.56321111321449,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1517,11 +1190,7 @@
},
"latitude": 42.8629455504626,
"longitude": -8.5586205124855,
- "lines": [
- "12",
- "C4",
- "5"
- ],
+ "lines": ["12", "C4", "5"],
"hide": false
},
{
@@ -1531,10 +1200,7 @@
},
"latitude": 42.8629593125561,
"longitude": -8.55851590633392,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -1544,12 +1210,7 @@
},
"latitude": 42.8840785440405,
"longitude": -8.53208810091019,
- "lines": [
- "9",
- "C11",
- "C2",
- "C5"
- ],
+ "lines": ["9", "C11", "C2", "C5"],
"hide": false
},
{
@@ -1559,9 +1220,7 @@
},
"latitude": 42.8747326423581,
"longitude": -8.54063898324966,
- "lines": [
- "C11"
- ],
+ "lines": ["C11"],
"hide": false
},
{
@@ -1571,9 +1230,7 @@
},
"latitude": 42.8494808216099,
"longitude": -8.52612555027008,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -1583,12 +1240,7 @@
},
"latitude": 42.8841610882845,
"longitude": -8.5263803601265,
- "lines": [
- "C11",
- "C2",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C2", "C5", "C6"],
"hide": false
},
{
@@ -1598,9 +1250,7 @@
},
"latitude": 42.8903181844154,
"longitude": -8.54357868432999,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -1610,9 +1260,7 @@
},
"latitude": 42.890909689221,
"longitude": -8.54310125112534,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -1622,9 +1270,7 @@
},
"latitude": 42.8882390294884,
"longitude": -8.54373693466187,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -1634,9 +1280,7 @@
},
"latitude": 42.888215446989,
"longitude": -8.54381740093231,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -1646,9 +1290,7 @@
},
"latitude": 42.8943408,
"longitude": -8.4755513,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -1658,9 +1300,7 @@
},
"latitude": 42.9048133308151,
"longitude": -8.53224366903305,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1670,9 +1310,7 @@
},
"latitude": 42.8995114144713,
"longitude": -8.53360757231712,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1682,9 +1320,7 @@
},
"latitude": 42.9064056832064,
"longitude": -8.52730304002762,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1694,9 +1330,7 @@
},
"latitude": 42.9058860366388,
"longitude": -8.52908402681351,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1706,9 +1340,7 @@
},
"latitude": 42.8971800773728,
"longitude": -8.53400185704231,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1718,9 +1350,7 @@
},
"latitude": 42.8990683394893,
"longitude": -8.53374838829041,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1730,9 +1360,7 @@
},
"latitude": 42.9011618653201,
"longitude": -8.53328704833984,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1742,9 +1370,7 @@
},
"latitude": 42.8941215988366,
"longitude": -8.53540331125259,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1754,9 +1380,7 @@
},
"latitude": 42.894232622394,
"longitude": -8.53523835539818,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1766,9 +1390,7 @@
},
"latitude": 42.8970130586894,
"longitude": -8.53399246931076,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1778,10 +1400,7 @@
},
"latitude": 42.8879432649888,
"longitude": -8.52611213922501,
- "lines": [
- "C11",
- "C4"
- ],
+ "lines": ["C11", "C4"],
"hide": false
},
{
@@ -1791,10 +1410,7 @@
},
"latitude": 42.8875168113533,
"longitude": -8.52372094988823,
- "lines": [
- "C11",
- "C4"
- ],
+ "lines": ["C11", "C4"],
"hide": false
},
{
@@ -1804,9 +1420,7 @@
},
"latitude": 42.8875354810442,
"longitude": -8.52418094873428,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -1816,9 +1430,7 @@
},
"latitude": 42.8878941345359,
"longitude": -8.52866023778915,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -1828,11 +1440,7 @@
},
"latitude": 42.8822065288528,
"longitude": -8.53629648685455,
- "lines": [
- "9",
- "13",
- "C5"
- ],
+ "lines": ["9", "13", "C5"],
"hide": false
},
{
@@ -1842,10 +1450,7 @@
},
"latitude": 42.8632443838012,
"longitude": -8.55610191822052,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -1855,9 +1460,7 @@
},
"latitude": 42.8720023105483,
"longitude": -8.56447041034698,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1867,9 +1470,7 @@
},
"latitude": 42.8719944476473,
"longitude": -8.56455489993095,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1879,9 +1480,7 @@
},
"latitude": 42.8749468965464,
"longitude": -8.56334924697876,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1891,9 +1490,7 @@
},
"latitude": 42.8749921060507,
"longitude": -8.56342166662216,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -1903,10 +1500,7 @@
},
"latitude": 42.8845747905101,
"longitude": -8.54854747653008,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -1916,10 +1510,7 @@
},
"latitude": 42.8848980855676,
"longitude": -8.55000391602516,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -1929,9 +1520,7 @@
},
"latitude": 42.8827420980538,
"longitude": -8.55343043804169,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1941,9 +1530,7 @@
},
"latitude": 42.8814527933126,
"longitude": -8.55217516422272,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1953,9 +1540,7 @@
},
"latitude": 42.8813879342831,
"longitude": -8.5520812869072,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1965,9 +1550,7 @@
},
"latitude": 42.8826831365346,
"longitude": -8.55337142944336,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -1977,9 +1560,7 @@
},
"latitude": 42.906771103122,
"longitude": -8.45756828784943,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -1989,9 +1570,7 @@
},
"latitude": 42.8603926290686,
"longitude": -8.58930230140686,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -2001,9 +1580,7 @@
},
"latitude": 42.8625267881532,
"longitude": -8.58734428882599,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -2013,9 +1590,7 @@
},
"latitude": 42.8634783378396,
"longitude": -8.58632504940033,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -2025,9 +1600,7 @@
},
"latitude": 42.8604427644672,
"longitude": -8.58923524618149,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -2037,9 +1610,7 @@
},
"latitude": 42.8626732569835,
"longitude": -8.58729600906372,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -2049,9 +1620,7 @@
},
"latitude": 42.8635392837041,
"longitude": -8.58626335859299,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -2061,10 +1630,7 @@
},
"latitude": 42.8558429179484,
"longitude": -8.53962242603302,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -2074,10 +1640,7 @@
},
"latitude": 42.853155009742,
"longitude": -8.53883385658264,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -2087,9 +1650,7 @@
},
"latitude": 42.8837129896323,
"longitude": -8.55439335107803,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2099,9 +1660,7 @@
},
"latitude": 42.8837729328423,
"longitude": -8.55440273880959,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2111,10 +1670,7 @@
},
"latitude": 42.8866039548364,
"longitude": -8.55283498764038,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -2124,10 +1680,7 @@
},
"latitude": 42.8867149919266,
"longitude": -8.55286315083504,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -2137,10 +1690,7 @@
},
"latitude": 42.888727381721,
"longitude": -8.55373352766037,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -2150,10 +1700,7 @@
},
"latitude": 42.8891921479611,
"longitude": -8.55406075716019,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -2163,12 +1710,7 @@
},
"latitude": 42.8607514403378,
"longitude": -8.54057461023331,
- "lines": [
- "6",
- "12",
- "C5",
- "P3"
- ],
+ "lines": ["6", "12", "C5", "P3"],
"hide": false
},
{
@@ -2178,12 +1720,7 @@
},
"latitude": 42.860791745035,
"longitude": -8.54083210229874,
- "lines": [
- "6",
- "12",
- "C5",
- "P3"
- ],
+ "lines": ["6", "12", "C5", "P3"],
"hide": false
},
{
@@ -2193,10 +1730,7 @@
},
"latitude": 42.8585896937601,
"longitude": -8.5401776432991,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -2206,10 +1740,7 @@
},
"latitude": 42.858422570591,
"longitude": -8.54006364941597,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -2219,9 +1750,7 @@
},
"latitude": 42.9077180414256,
"longitude": -8.51602971553802,
- "lines": [
- "1"
- ],
+ "lines": ["1"],
"hide": false
},
{
@@ -2231,9 +1760,7 @@
},
"latitude": 42.8929612433255,
"longitude": -8.53734254837036,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2243,10 +1770,7 @@
},
"latitude": 42.8685592469491,
"longitude": -8.56068313121796,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -2256,9 +1780,7 @@
},
"latitude": 42.8927332962395,
"longitude": -8.53771939873695,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2268,9 +1790,7 @@
},
"latitude": 42.8641113854984,
"longitude": -8.52390199899673,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2280,9 +1800,7 @@
},
"latitude": 42.8911425558358,
"longitude": -8.58148634433746,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2292,9 +1810,7 @@
},
"latitude": 42.8892864764111,
"longitude": -8.57999503612518,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2304,9 +1820,7 @@
},
"latitude": 42.8893405186873,
"longitude": -8.57990384101868,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2316,9 +1830,7 @@
},
"latitude": 42.8911062011901,
"longitude": -8.58134418725967,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2328,9 +1840,7 @@
},
"latitude": 42.8731954941683,
"longitude": -8.53696167469025,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2340,9 +1850,7 @@
},
"latitude": 42.8731719059183,
"longitude": -8.53678196668625,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2352,11 +1860,7 @@
},
"latitude": 42.8849383,
"longitude": -8.5338436,
- "lines": [
- "9",
- "13",
- "C5"
- ],
+ "lines": ["9", "13", "C5"],
"hide": false
},
{
@@ -2366,9 +1870,7 @@
},
"latitude": 42.8838507,
"longitude": -8.5336569,
- "lines": [
- "C11"
- ],
+ "lines": ["C11"],
"hide": false
},
{
@@ -2378,9 +1880,7 @@
},
"latitude": 42.8887431032578,
"longitude": -8.57762932777405,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2390,9 +1890,7 @@
},
"latitude": 42.8888325194222,
"longitude": -8.57743486762047,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2402,9 +1900,7 @@
},
"latitude": 42.9078234,
"longitude": -8.5318167,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2414,9 +1910,7 @@
},
"latitude": 42.862075583331,
"longitude": -8.491171002388,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2426,9 +1920,7 @@
},
"latitude": 42.8620087378917,
"longitude": -8.49114418029785,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2438,10 +1930,7 @@
},
"latitude": 42.8921594946725,
"longitude": -8.49770486354828,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -2451,10 +1940,7 @@
},
"latitude": 42.8888246586657,
"longitude": -8.5024805366993,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -2464,10 +1950,7 @@
},
"latitude": 42.8924709595417,
"longitude": -8.49384248256683,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -2477,10 +1960,7 @@
},
"latitude": 42.8924277279189,
"longitude": -8.49157333374023,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -2490,10 +1970,7 @@
},
"latitude": 42.8860526969425,
"longitude": -8.55153009295464,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -2503,10 +1980,7 @@
},
"latitude": 42.8860821760989,
"longitude": -8.55147644877434,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -2516,9 +1990,7 @@
},
"latitude": 42.8903831,
"longitude": -8.4596878,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -2528,9 +2000,7 @@
},
"latitude": 42.8905276,
"longitude": -8.4594276,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -2540,9 +2010,7 @@
},
"latitude": 42.899491,
"longitude": -8.4569322,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -2552,10 +2020,7 @@
},
"latitude": 42.9028299546784,
"longitude": -8.5099732875824,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -2565,10 +2030,7 @@
},
"latitude": 42.9011841,
"longitude": -8.5078971,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -2578,9 +2040,7 @@
},
"latitude": 42.861170214689,
"longitude": -8.50548326969147,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2590,9 +2050,7 @@
},
"latitude": 42.8610896057623,
"longitude": -8.50566029548645,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2602,9 +2060,7 @@
},
"latitude": 42.8818222919379,
"longitude": -8.53502243757248,
- "lines": [
- "C11"
- ],
+ "lines": ["C11"],
"hide": false
},
{
@@ -2614,11 +2070,7 @@
},
"latitude": 42.8819068046104,
"longitude": -8.53498220443726,
- "lines": [
- "9",
- "13",
- "C5"
- ],
+ "lines": ["9", "13", "C5"],
"hide": false
},
{
@@ -2628,9 +2080,7 @@
},
"latitude": 42.866490171157,
"longitude": -8.52983236312866,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2640,9 +2090,7 @@
},
"latitude": 42.8665511140481,
"longitude": -8.52978140115738,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2652,9 +2100,7 @@
},
"latitude": 42.8803737660437,
"longitude": -8.55014204978943,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2664,9 +2110,7 @@
},
"latitude": 42.8804622116118,
"longitude": -8.55034857988358,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2676,9 +2120,7 @@
},
"latitude": 42.8805339507017,
"longitude": -8.55039685964584,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2688,10 +2130,7 @@
},
"latitude": 42.8746893983033,
"longitude": -8.542320728302,
- "lines": [
- "7",
- "C11"
- ],
+ "lines": ["7", "C11"],
"hide": false
},
{
@@ -2701,9 +2140,7 @@
},
"latitude": 42.875725281649,
"longitude": -8.54029566049576,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -2743,12 +2180,7 @@
},
"latitude": 42.8871090245894,
"longitude": -8.53414535522461,
- "lines": [
- "C2",
- "C4",
- "P2",
- "5"
- ],
+ "lines": ["C2", "C4", "P2", "5"],
"hide": false
},
{
@@ -2758,13 +2190,7 @@
},
"latitude": 42.8872465915099,
"longitude": -8.53412926197052,
- "lines": [
- "C2",
- "C4",
- "P1",
- "P2",
- "5"
- ],
+ "lines": ["C2", "C4", "P1", "P2", "5"],
"hide": false
},
{
@@ -2774,9 +2200,7 @@
},
"latitude": 42.8987510133215,
"longitude": -8.58805775642395,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2786,9 +2210,7 @@
},
"latitude": 42.8987863810248,
"longitude": -8.58825087547302,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2798,9 +2220,7 @@
},
"latitude": 42.8922862423958,
"longitude": -8.6126697063446,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -2810,9 +2230,7 @@
},
"latitude": 42.890631623715,
"longitude": -8.61012160778046,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -2822,9 +2240,7 @@
},
"latitude": 42.8906827171175,
"longitude": -8.61017525196075,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -2834,9 +2250,7 @@
},
"latitude": 42.892368775657,
"longitude": -8.61277163028717,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -2846,9 +2260,7 @@
},
"latitude": 42.8912015092697,
"longitude": -8.53803589940071,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2858,9 +2270,7 @@
},
"latitude": 42.8915709495057,
"longitude": -8.53631928563118,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2870,9 +2280,7 @@
},
"latitude": 42.8915925656212,
"longitude": -8.53636890649796,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2882,9 +2290,7 @@
},
"latitude": 42.8912427766399,
"longitude": -8.53810161352158,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -2894,9 +2300,7 @@
},
"latitude": 42.8947857721832,
"longitude": -8.58299911022186,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2906,9 +2310,7 @@
},
"latitude": 42.8948810745766,
"longitude": -8.58303129673004,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2918,9 +2320,7 @@
},
"latitude": 42.8980829528935,
"longitude": -8.58542382717133,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2930,9 +2330,7 @@
},
"latitude": 42.898204776217,
"longitude": -8.58542919158936,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2942,9 +2340,7 @@
},
"latitude": 42.8962791535838,
"longitude": -8.58963489532471,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -2954,9 +2350,7 @@
},
"latitude": 42.8608035415268,
"longitude": -8.5658960044384,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -2995,9 +2389,7 @@
},
"latitude": 42.9195388112461,
"longitude": -8.49164038896561,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3007,9 +2399,7 @@
},
"latitude": 42.9195997017388,
"longitude": -8.49129438400269,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3019,9 +2409,7 @@
},
"latitude": 42.8576439672762,
"longitude": -8.48847806453705,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -3031,11 +2419,7 @@
},
"latitude": 42.8992707200313,
"longitude": -8.52577552199364,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -3045,9 +2429,7 @@
},
"latitude": 42.9404904265803,
"longitude": -8.44278931617737,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3057,9 +2439,7 @@
},
"latitude": 42.9405218432503,
"longitude": -8.44270884990692,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3069,9 +2449,7 @@
},
"latitude": 42.9377198059551,
"longitude": -8.44230115413666,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3081,9 +2459,7 @@
},
"latitude": 42.9378906415916,
"longitude": -8.44226896762848,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3093,9 +2469,7 @@
},
"latitude": 42.8949901317739,
"longitude": -8.6154967546463,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -3105,9 +2479,7 @@
},
"latitude": 42.8950176416671,
"longitude": -8.61548602581024,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -3117,9 +2489,7 @@
},
"latitude": 42.873635806514,
"longitude": -8.55026543140411,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -3129,12 +2499,7 @@
},
"latitude": 42.8826497249821,
"longitude": -8.54875266551971,
- "lines": [
- "9",
- "C4",
- "P7",
- "4"
- ],
+ "lines": ["9", "C4", "P7", "4"],
"hide": false
},
{
@@ -3144,12 +2509,7 @@
},
"latitude": 42.880762925595,
"longitude": -8.54931056499481,
- "lines": [
- "9",
- "C2",
- "P7",
- "4"
- ],
+ "lines": ["9", "C2", "P7", "4"],
"hide": false
},
{
@@ -3159,12 +2519,7 @@
},
"latitude": 42.8826005903131,
"longitude": -8.54855552315712,
- "lines": [
- "9",
- "C2",
- "P7",
- "4"
- ],
+ "lines": ["9", "C2", "P7", "4"],
"hide": false
},
{
@@ -3174,12 +2529,7 @@
},
"latitude": 42.8814419834791,
"longitude": -8.54928910732269,
- "lines": [
- "9",
- "C4",
- "P7",
- "4"
- ],
+ "lines": ["9", "C4", "P7", "4"],
"hide": false
},
{
@@ -3189,10 +2539,7 @@
},
"latitude": 42.9173447491528,
"longitude": -8.51259380578995,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -3202,10 +2549,7 @@
},
"latitude": 42.8692836528179,
"longitude": -8.5532882809639,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -3215,10 +2559,7 @@
},
"latitude": 42.8674328133373,
"longitude": -8.55422303080559,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -3228,9 +2569,7 @@
},
"latitude": 42.8589858721714,
"longitude": -8.51852685213089,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -3240,9 +2579,7 @@
},
"latitude": 42.8591077727096,
"longitude": -8.51865023374557,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -3252,9 +2589,7 @@
},
"latitude": 42.8940007499586,
"longitude": -8.54529529809952,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -3264,13 +2599,7 @@
},
"latitude": 42.8726804819922,
"longitude": -8.54472666978836,
- "lines": [
- "6",
- "12",
- "C6",
- "P3",
- "6A"
- ],
+ "lines": ["6", "12", "C6", "P3", "6A"],
"hide": false
},
{
@@ -3280,14 +2609,7 @@
},
"latitude": 42.8753380559439,
"longitude": -8.54416072368622,
- "lines": [
- "6",
- "7",
- "12",
- "C6",
- "P3",
- "6A"
- ],
+ "lines": ["6", "7", "12", "C6", "P3", "6A"],
"hide": false
},
{
@@ -3297,12 +2619,7 @@
},
"latitude": 42.8692620288852,
"longitude": -8.56517851352692,
- "lines": [
- "1",
- "12",
- "C2",
- "C4"
- ],
+ "lines": ["1", "12", "C2", "C4"],
"hide": false
},
{
@@ -3312,9 +2629,7 @@
},
"latitude": 42.8991999,
"longitude": -8.4444594,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -3324,12 +2639,7 @@
},
"latitude": 42.8603149682728,
"longitude": -8.551145195961,
- "lines": [
- "12",
- "C2",
- "C4",
- "5"
- ],
+ "lines": ["12", "C2", "C4", "5"],
"hide": false
},
{
@@ -3339,9 +2649,7 @@
},
"latitude": 42.9011148,
"longitude": -8.4251011,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -3351,10 +2659,7 @@
},
"latitude": 42.88880500677,
"longitude": -8.50286543369293,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -3364,10 +2669,7 @@
},
"latitude": 42.8646323670563,
"longitude": -8.56017619371414,
- "lines": [
- "12",
- "C4"
- ],
+ "lines": ["12", "C4"],
"hide": false
},
{
@@ -3377,9 +2679,7 @@
},
"latitude": 42.8645556945746,
"longitude": -8.55978727340698,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -3389,9 +2689,7 @@
},
"latitude": 42.8749567247023,
"longitude": -8.5594841837883,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -3401,9 +2699,7 @@
},
"latitude": 42.8596897461557,
"longitude": -8.53559106588364,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3413,9 +2709,7 @@
},
"latitude": 42.8597192379072,
"longitude": -8.53569835424423,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3425,9 +2719,7 @@
},
"latitude": 42.8733674915522,
"longitude": -8.59328269958496,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -3437,9 +2729,7 @@
},
"latitude": 42.8736269609844,
"longitude": -8.59426438808441,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -3449,9 +2739,7 @@
},
"latitude": 42.9384718719319,
"longitude": -8.43036532402039,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3461,9 +2749,7 @@
},
"latitude": 42.8658296249934,
"longitude": -8.58379036188126,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -3473,9 +2759,7 @@
},
"latitude": 42.8658866366969,
"longitude": -8.58369648456573,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -3485,12 +2769,7 @@
},
"latitude": 42.8829268437822,
"longitude": -8.52954804897308,
- "lines": [
- "9",
- "C11",
- "C2",
- "C5"
- ],
+ "lines": ["9", "C11", "C2", "C5"],
"hide": false
},
{
@@ -3500,9 +2779,7 @@
},
"latitude": 42.873806819837,
"longitude": -8.49924176931381,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -3512,12 +2789,7 @@
},
"latitude": 42.881165840726,
"longitude": -8.52926641702652,
- "lines": [
- "9",
- "C11",
- "C2",
- "C5"
- ],
+ "lines": ["9", "C11", "C2", "C5"],
"hide": false
},
{
@@ -3527,12 +2799,7 @@
},
"latitude": 42.8810105713042,
"longitude": -8.5291363298893,
- "lines": [
- "9",
- "C11",
- "C4",
- "C6"
- ],
+ "lines": ["9", "C11", "C4", "C6"],
"hide": false
},
{
@@ -3542,9 +2809,7 @@
},
"latitude": 42.8923137534952,
"longitude": -8.47645103931427,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -3554,9 +2819,7 @@
},
"latitude": 42.8922312201604,
"longitude": -8.4765100479126,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -3566,12 +2829,7 @@
},
"latitude": 42.8853422450116,
"longitude": -8.52621674537659,
- "lines": [
- "C11",
- "C2",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C2", "C5", "C6"],
"hide": false
},
{
@@ -3581,9 +2839,7 @@
},
"latitude": 42.8952504927714,
"longitude": -8.52819889783859,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -3593,9 +2849,7 @@
},
"latitude": 42.8969934094027,
"longitude": -8.52820426225662,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -3605,9 +2859,7 @@
},
"latitude": 42.8362009927925,
"longitude": -8.51159870624542,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3617,9 +2869,7 @@
},
"latitude": 42.8399851252228,
"longitude": -8.51373374462128,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3629,9 +2879,7 @@
},
"latitude": 42.8398356524544,
"longitude": -8.51377665996552,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3641,9 +2889,7 @@
},
"latitude": 42.8357250096241,
"longitude": -8.51305782794952,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3653,9 +2899,7 @@
},
"latitude": 42.9393604,
"longitude": -8.5415885,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3665,9 +2909,7 @@
},
"latitude": 42.9398660169391,
"longitude": -8.54310393333435,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3677,9 +2919,7 @@
},
"latitude": 42.9398267456808,
"longitude": -8.54294836521149,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3689,9 +2929,7 @@
},
"latitude": 42.9396324,
"longitude": -8.5416609,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3701,9 +2939,7 @@
},
"latitude": 42.9099045881962,
"longitude": -8.54698240756989,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3713,9 +2949,7 @@
},
"latitude": 42.9100371929855,
"longitude": -8.54676514863968,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3725,9 +2959,7 @@
},
"latitude": 42.9154963336167,
"longitude": -8.54924350976944,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3737,9 +2969,7 @@
},
"latitude": 42.9128287031436,
"longitude": -8.54834765195847,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3749,9 +2979,7 @@
},
"latitude": 42.912720659712,
"longitude": -8.54825913906097,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3761,9 +2989,7 @@
},
"latitude": 42.9154020452593,
"longitude": -8.54907721281052,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3773,9 +2999,7 @@
},
"latitude": 42.9398719076257,
"longitude": -8.56202960014343,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3785,9 +3009,7 @@
},
"latitude": 42.9379259868365,
"longitude": -8.56172382831573,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3797,9 +3019,7 @@
},
"latitude": 42.9011392,
"longitude": -8.4250824,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -3809,9 +3029,7 @@
},
"latitude": 42.8798509518736,
"longitude": -8.50153774023056,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -3821,9 +3039,7 @@
},
"latitude": 42.8919182,
"longitude": -8.4216896,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -3833,9 +3049,7 @@
},
"latitude": 42.8855260003065,
"longitude": -8.52433383464813,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -3845,9 +3059,7 @@
},
"latitude": 42.8995235,
"longitude": -8.4568453,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -3857,12 +3069,7 @@
},
"latitude": 42.8755483768059,
"longitude": -8.52996110916138,
- "lines": [
- "9",
- "C11",
- "C5",
- "C6"
- ],
+ "lines": ["9", "C11", "C5", "C6"],
"hide": false
},
{
@@ -3872,9 +3079,7 @@
},
"latitude": 42.8434150325534,
"longitude": -8.52147459983826,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3884,9 +3089,7 @@
},
"latitude": 42.8424838236769,
"longitude": -8.51917862892151,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3896,9 +3099,7 @@
},
"latitude": 42.8308272839275,
"longitude": -8.50070357322693,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3908,9 +3109,7 @@
},
"latitude": 42.8311144705237,
"longitude": -8.50253820419312,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -3920,9 +3119,7 @@
},
"latitude": 42.9291312680886,
"longitude": -8.5544416308403,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3932,9 +3129,7 @@
},
"latitude": 42.9267676635648,
"longitude": -8.55668663978577,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3944,9 +3139,7 @@
},
"latitude": 42.9268383668025,
"longitude": -8.55665981769562,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3956,9 +3149,7 @@
},
"latitude": 42.9291234124698,
"longitude": -8.55436116456985,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -3968,10 +3159,7 @@
},
"latitude": 42.9204305563203,
"longitude": -8.50842028856277,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -3981,9 +3169,7 @@
},
"latitude": 42.9306346187067,
"longitude": -8.44040751457214,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -3993,9 +3179,7 @@
},
"latitude": 42.914196,
"longitude": -8.5290645,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -4005,9 +3189,7 @@
},
"latitude": 42.9060788,
"longitude": -8.5444828,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -4017,10 +3199,7 @@
},
"latitude": 42.8432183687011,
"longitude": -8.53507876396179,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4030,10 +3209,7 @@
},
"latitude": 42.8463049356685,
"longitude": -8.54007840156555,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4043,10 +3219,7 @@
},
"latitude": 42.840850486775,
"longitude": -8.53440284729004,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4056,10 +3229,7 @@
},
"latitude": 42.8463364003549,
"longitude": -8.54190766811371,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4069,10 +3239,7 @@
},
"latitude": 42.8437847589009,
"longitude": -8.54246556758881,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4082,10 +3249,7 @@
},
"latitude": 42.843223285305,
"longitude": -8.53980213403702,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4095,10 +3259,7 @@
},
"latitude": 42.8462243073367,
"longitude": -8.53974312543869,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4108,10 +3269,7 @@
},
"latitude": 42.8414640994407,
"longitude": -8.5317850112915,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4121,10 +3279,7 @@
},
"latitude": 42.8415899679522,
"longitude": -8.53289544582367,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4134,10 +3289,7 @@
},
"latitude": 42.8450247026518,
"longitude": -8.53752493858337,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4147,10 +3299,7 @@
},
"latitude": 42.8449539055818,
"longitude": -8.53755041956902,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4160,10 +3309,7 @@
},
"latitude": 42.8450089699766,
"longitude": -8.53991746902466,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4173,10 +3319,7 @@
},
"latitude": 42.8399497238103,
"longitude": -8.53148460388184,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4186,10 +3329,7 @@
},
"latitude": 42.8400991963027,
"longitude": -8.53300809860229,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4199,10 +3339,7 @@
},
"latitude": 42.8436156290377,
"longitude": -8.53629648685455,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4212,10 +3349,7 @@
},
"latitude": 42.8466372806084,
"longitude": -8.54196131229401,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4225,10 +3359,7 @@
},
"latitude": 42.8500599361494,
"longitude": -8.54078382253647,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4238,10 +3369,7 @@
},
"latitude": 42.8494493585253,
"longitude": -8.54085892438889,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4251,10 +3379,7 @@
},
"latitude": 42.8479528770527,
"longitude": -8.5411325097084,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -4264,12 +3389,7 @@
},
"latitude": 42.8819932825741,
"longitude": -8.52663516998291,
- "lines": [
- "C11",
- "C4",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C4", "C5", "C6"],
"hide": false
},
{
@@ -4279,12 +3399,7 @@
},
"latitude": 42.8837188856884,
"longitude": -8.52561324834824,
- "lines": [
- "C11",
- "C4",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C4", "C5", "C6"],
"hide": false
},
{
@@ -4294,9 +3409,7 @@
},
"latitude": 42.9090612,
"longitude": -8.5334771,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -4306,12 +3419,7 @@
},
"latitude": 42.8853127655015,
"longitude": -8.52468252182007,
- "lines": [
- "C11",
- "C4",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C4", "C5", "C6"],
"hide": false
},
{
@@ -4321,12 +3429,7 @@
},
"latitude": 42.8820286598879,
"longitude": -8.52670222520828,
- "lines": [
- "C11",
- "C2",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C2", "C5", "C6"],
"hide": false
},
{
@@ -4336,11 +3439,7 @@
},
"latitude": 42.8862639639189,
"longitude": -8.52419167757034,
- "lines": [
- "C11",
- "C5",
- "C6"
- ],
+ "lines": ["C11", "C5", "C6"],
"hide": false
},
{
@@ -4350,19 +3449,7 @@
},
"latitude": 42.8877791691232,
"longitude": -8.53788435459137,
- "lines": [
- "1",
- "4",
- "5",
- "6",
- "8",
- "P1",
- "P2",
- "P4",
- "P6",
- "P7",
- "6A"
- ],
+ "lines": ["1", "4", "5", "6", "8", "P1", "P2", "P4", "P6", "P7", "6A"],
"hide": false
},
{
@@ -4396,9 +3483,7 @@
},
"latitude": 42.8627178,
"longitude": -8.4929845,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -4408,12 +3493,7 @@
},
"latitude": 42.8658394546012,
"longitude": -8.54351833462715,
- "lines": [
- "6",
- "12",
- "C6",
- "P3"
- ],
+ "lines": ["6", "12", "C6", "P3"],
"hide": false
},
{
@@ -4423,12 +3503,7 @@
},
"latitude": 42.8643128977544,
"longitude": -8.54273244738579,
- "lines": [
- "6",
- "12",
- "C6",
- "P3"
- ],
+ "lines": ["6", "12", "C6", "P3"],
"hide": false
},
{
@@ -4438,12 +3513,7 @@
},
"latitude": 42.8624353678347,
"longitude": -8.54145169258118,
- "lines": [
- "6",
- "12",
- "C6",
- "P3"
- ],
+ "lines": ["6", "12", "C6", "P3"],
"hide": false
},
{
@@ -4453,9 +3523,7 @@
},
"latitude": 42.9212869337141,
"longitude": -8.55317026376724,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -4465,9 +3533,7 @@
},
"latitude": 42.9211572993685,
"longitude": -8.55308175086975,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -4477,9 +3543,7 @@
},
"latitude": 42.8692177980902,
"longitude": -8.53618651628494,
- "lines": [
- "C5"
- ],
+ "lines": ["C5"],
"hide": false
},
{
@@ -4489,9 +3553,7 @@
},
"latitude": 42.8691519432923,
"longitude": -8.53681415319443,
- "lines": [
- "C6"
- ],
+ "lines": ["C6"],
"hide": false
},
{
@@ -4501,9 +3563,7 @@
},
"latitude": 42.869305276743,
"longitude": -8.53386640548706,
- "lines": [
- "C5"
- ],
+ "lines": ["C5"],
"hide": false
},
{
@@ -4513,9 +3573,7 @@
},
"latitude": 42.8693799775169,
"longitude": -8.53398576378822,
- "lines": [
- "C6"
- ],
+ "lines": ["C6"],
"hide": false
},
{
@@ -4525,9 +3583,7 @@
},
"latitude": 42.8499527659564,
"longitude": -8.52495610713959,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -4537,9 +3593,7 @@
},
"latitude": 42.848843691022,
"longitude": -8.52467447519302,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -4549,9 +3603,7 @@
},
"latitude": 42.9355067543553,
"longitude": -8.45330893993378,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -4561,9 +3613,7 @@
},
"latitude": 42.935011899639,
"longitude": -8.4587699174881,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -4573,9 +3623,7 @@
},
"latitude": 42.9346466471787,
"longitude": -8.46262693405151,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -4585,11 +3633,7 @@
},
"latitude": 42.8775906140712,
"longitude": -8.5285422205925,
- "lines": [
- "9",
- "C11",
- "C5"
- ],
+ "lines": ["9", "C11", "C5"],
"hide": false
},
{
@@ -4599,10 +3643,7 @@
},
"latitude": 42.8849393571552,
"longitude": -8.54998379945755,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -4612,10 +3653,7 @@
},
"latitude": 42.8866137811356,
"longitude": -8.50848734378815,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -4625,10 +3663,7 @@
},
"latitude": 42.8705132557995,
"longitude": -8.53400856256485,
- "lines": [
- "7",
- "C5"
- ],
+ "lines": ["7", "C5"],
"hide": false
},
{
@@ -4638,9 +3673,7 @@
},
"latitude": 42.8716622391638,
"longitude": -8.5352236032486,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -4650,9 +3683,7 @@
},
"latitude": 42.8717389028187,
"longitude": -8.53525578975677,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -4662,10 +3693,7 @@
},
"latitude": 42.8705083413679,
"longitude": -8.53404343128204,
- "lines": [
- "7",
- "C6"
- ],
+ "lines": ["7", "C6"],
"hide": false
},
{
@@ -4675,10 +3703,7 @@
},
"latitude": 42.9045972156611,
"longitude": -8.54521885514259,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -4688,10 +3713,7 @@
},
"latitude": 42.9024193220275,
"longitude": -8.54612544178963,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -4701,10 +3723,7 @@
},
"latitude": 42.9043280530009,
"longitude": -8.54542806744576,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -4714,10 +3733,7 @@
},
"latitude": 42.9025558724231,
"longitude": -8.54616835713387,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -4727,9 +3743,7 @@
},
"latitude": 42.863370207932,
"longitude": -8.5210508108139,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -4739,9 +3753,7 @@
},
"latitude": 42.863061545154,
"longitude": -8.52110981941223,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -4751,10 +3763,7 @@
},
"latitude": 42.8865371359601,
"longitude": -8.50895941257477,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -4764,10 +3773,7 @@
},
"latitude": 42.8818950121514,
"longitude": -8.53975385427475,
- "lines": [
- "C11",
- "13"
- ],
+ "lines": ["C11", "13"],
"hide": false
},
{
@@ -4777,10 +3783,7 @@
},
"latitude": 42.8909489916649,
"longitude": -8.51298540830612,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -4790,10 +3793,7 @@
},
"latitude": 42.8944517213941,
"longitude": -8.51784020662308,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -4803,9 +3803,7 @@
},
"latitude": 42.8805221579803,
"longitude": -8.48345696926117,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -4815,9 +3813,7 @@
},
"latitude": 42.8805899660975,
"longitude": -8.48354011774063,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -4827,9 +3823,7 @@
},
"latitude": 42.8796819207807,
"longitude": -8.55218589305878,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -4839,9 +3833,7 @@
},
"latitude": 42.8596582882718,
"longitude": -8.56955587863922,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -4851,9 +3843,7 @@
},
"latitude": 42.8602087989256,
"longitude": -8.56697022914886,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -4863,9 +3853,7 @@
},
"latitude": 42.8596769663923,
"longitude": -8.5694432258606,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -4875,9 +3863,7 @@
},
"latitude": 42.8601802904587,
"longitude": -8.56705605983734,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -4887,9 +3873,7 @@
},
"latitude": 42.8579280799769,
"longitude": -8.57079237699509,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -4899,9 +3883,7 @@
},
"latitude": 42.8581040522398,
"longitude": -8.57077896595001,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -4911,13 +3893,7 @@
},
"latitude": 42.8761734383148,
"longitude": -8.54421705007553,
- "lines": [
- "C11",
- "13",
- "15",
- "P6",
- "5"
- ],
+ "lines": ["C11", "13", "15", "P6", "5"],
"hide": false
},
{
@@ -4927,19 +3903,7 @@
},
"latitude": 42.876415205691,
"longitude": -8.54457378387451,
- "lines": [
- "5",
- "6",
- "7",
- "12",
- "13",
- "15",
- "C5",
- "P3",
- "P4",
- "P6",
- "6A"
- ],
+ "lines": ["5", "6", "7", "12", "13", "15", "C5", "P3", "P4", "P6", "6A"],
"hide": false
},
{
@@ -4949,9 +3913,7 @@
},
"latitude": 42.8709921,
"longitude": -8.5230802,
- "lines": [
- "9"
- ],
+ "lines": ["9"],
"hide": false
},
{
@@ -4961,11 +3923,7 @@
},
"latitude": 42.8631952336804,
"longitude": -8.55606704950333,
- "lines": [
- "12",
- "C4",
- "5"
- ],
+ "lines": ["12", "C4", "5"],
"hide": false
},
{
@@ -4975,9 +3933,7 @@
},
"latitude": 42.9221560660313,
"longitude": -8.43628227710724,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -4987,9 +3943,7 @@
},
"latitude": 42.8823500028928,
"longitude": -8.60682785511017,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -4999,9 +3953,7 @@
},
"latitude": 42.8825150958959,
"longitude": -8.60679030418396,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5011,9 +3963,7 @@
},
"latitude": 42.8779778256415,
"longitude": -8.53529065847397,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -5023,9 +3973,7 @@
},
"latitude": 42.879615094407,
"longitude": -8.53352710604668,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -5035,9 +3983,7 @@
},
"latitude": 42.8627096283842,
"longitude": -8.53654325008392,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -5047,12 +3993,7 @@
},
"latitude": 42.8632699418485,
"longitude": -8.55514705181122,
- "lines": [
- "12",
- "C2",
- "C4",
- "5"
- ],
+ "lines": ["12", "C2", "C4", "5"],
"hide": false
},
{
@@ -5062,12 +4003,7 @@
},
"latitude": 42.8623459134135,
"longitude": -8.55326414108276,
- "lines": [
- "12",
- "C2",
- "C4",
- "5"
- ],
+ "lines": ["12", "C2", "C4", "5"],
"hide": false
},
{
@@ -5077,12 +4013,7 @@
},
"latitude": 42.8624029283343,
"longitude": -8.55315417051315,
- "lines": [
- "12",
- "C2",
- "C4",
- "5"
- ],
+ "lines": ["12", "C2", "C4", "5"],
"hide": false
},
{
@@ -5092,12 +4023,7 @@
},
"latitude": 42.8632109617233,
"longitude": -8.55504512786865,
- "lines": [
- "12",
- "C2",
- "C4",
- "5"
- ],
+ "lines": ["12", "C2", "C4", "5"],
"hide": false
},
{
@@ -5107,10 +4033,7 @@
},
"latitude": 42.9208283018883,
"longitude": -8.53107824921608,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -5120,9 +4043,7 @@
},
"latitude": 42.9091050243838,
"longitude": -8.47331821918488,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -5132,9 +4053,7 @@
},
"latitude": 42.9057691401155,
"longitude": -8.61726701259613,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5144,9 +4063,7 @@
},
"latitude": 42.9007945,
"longitude": -8.4304579,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -5156,10 +4073,7 @@
},
"latitude": 42.9017994383715,
"longitude": -8.51267963647842,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5169,10 +4083,7 @@
},
"latitude": 42.8997396,
"longitude": -8.51166,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5182,12 +4093,7 @@
},
"latitude": 42.8728986746984,
"longitude": -8.54786485433578,
- "lines": [
- "15",
- "C4",
- "P6",
- "5"
- ],
+ "lines": ["15", "C4", "P6", "5"],
"hide": false
},
{
@@ -5197,11 +4103,7 @@
},
"latitude": 42.8718892812498,
"longitude": -8.5507133603096,
- "lines": [
- "15",
- "C4",
- "5"
- ],
+ "lines": ["15", "C4", "5"],
"hide": false
},
{
@@ -5211,9 +4113,7 @@
},
"latitude": 42.8745282156502,
"longitude": -8.54692339897156,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -5223,9 +4123,7 @@
},
"latitude": 42.9165501926268,
"longitude": -8.43435645103455,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -5235,9 +4133,7 @@
},
"latitude": 42.912817898809,
"longitude": -8.43335330486298,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -5247,9 +4143,7 @@
},
"latitude": 42.9131341703664,
"longitude": -8.43347400426865,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -5259,12 +4153,7 @@
},
"latitude": 42.8621493098346,
"longitude": -8.54171723127365,
- "lines": [
- "6",
- "12",
- "C5",
- "P3"
- ],
+ "lines": ["6", "12", "C5", "P3"],
"hide": false
},
{
@@ -5274,9 +4163,7 @@
},
"latitude": 42.8949537793963,
"longitude": -8.5469126701355,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -5286,9 +4173,7 @@
},
"latitude": 42.8599551714127,
"longitude": -8.57653766870499,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -5298,9 +4183,7 @@
},
"latitude": 42.8711108477636,
"longitude": -8.5602942109108,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -5310,10 +4193,7 @@
},
"latitude": 42.8860635059681,
"longitude": -8.52162212133408,
- "lines": [
- "C11",
- "C4"
- ],
+ "lines": ["C11", "C4"],
"hide": false
},
{
@@ -5323,9 +4203,7 @@
},
"latitude": 42.8863032693231,
"longitude": -8.5216811299324,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -5335,9 +4213,7 @@
},
"latitude": 42.9057190415377,
"longitude": -8.54469984769821,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5347,9 +4223,7 @@
},
"latitude": 42.9224156,
"longitude": -8.5538677,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -5359,11 +4233,7 @@
},
"latitude": 42.8718430866073,
"longitude": -8.55578005313873,
- "lines": [
- "1",
- "C2",
- "P2"
- ],
+ "lines": ["1", "C2", "P2"],
"hide": false
},
{
@@ -5373,12 +4243,7 @@
},
"latitude": 42.8724996370025,
"longitude": -8.55437457561493,
- "lines": [
- "1",
- "12",
- "C4",
- "P2"
- ],
+ "lines": ["1", "12", "C4", "P2"],
"hide": false
},
{
@@ -5388,12 +4253,7 @@
},
"latitude": 42.8717674059482,
"longitude": -8.55613946914673,
- "lines": [
- "1",
- "12",
- "C4",
- "P2"
- ],
+ "lines": ["1", "12", "C4", "P2"],
"hide": false
},
{
@@ -5403,13 +4263,7 @@
},
"latitude": 42.873331126431,
"longitude": -8.55310052633286,
- "lines": [
- "1",
- "12",
- "C2",
- "P2",
- "P8"
- ],
+ "lines": ["1", "12", "C2", "P2", "P8"],
"hide": false
},
{
@@ -5419,13 +4273,7 @@
},
"latitude": 42.8736476005515,
"longitude": -8.55279207229614,
- "lines": [
- "1",
- "12",
- "C4",
- "P2",
- "P8"
- ],
+ "lines": ["1", "12", "C4", "P2", "P8"],
"hide": false
},
{
@@ -5435,10 +4283,7 @@
},
"latitude": 42.8669246336791,
"longitude": -8.57162654399872,
- "lines": [
- "12",
- "C4"
- ],
+ "lines": ["12", "C4"],
"hide": false
},
{
@@ -5448,9 +4293,7 @@
},
"latitude": 42.8760211047255,
"longitude": -8.61200451850891,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5460,9 +4303,7 @@
},
"latitude": 42.8767405090804,
"longitude": -8.6089950799942,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5472,9 +4313,7 @@
},
"latitude": 42.8757773702005,
"longitude": -8.60429048538208,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5484,9 +4323,7 @@
},
"latitude": 42.8758953063812,
"longitude": -8.61210107803345,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5496,9 +4333,7 @@
},
"latitude": 42.8737095192113,
"longitude": -8.59866857528687,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5508,9 +4343,7 @@
},
"latitude": 42.8736387550236,
"longitude": -8.59900116920471,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5520,9 +4353,7 @@
},
"latitude": 42.8760840038015,
"longitude": -8.60525608062744,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5532,9 +4363,7 @@
},
"latitude": 42.8760368295005,
"longitude": -8.60549211502075,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -5544,9 +4373,7 @@
},
"latitude": 42.8928212,
"longitude": -8.5430896,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -5556,9 +4383,7 @@
},
"latitude": 42.8758274931048,
"longitude": -8.54026615619659,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -5568,12 +4393,7 @@
},
"latitude": 42.8680727009214,
"longitude": -8.56163531541824,
- "lines": [
- "1",
- "12",
- "C4",
- "P2"
- ],
+ "lines": ["1", "12", "C4", "P2"],
"hide": false
},
{
@@ -5583,9 +4403,7 @@
},
"latitude": 42.8650137620885,
"longitude": -8.54052633047104,
- "lines": [
- "C5"
- ],
+ "lines": ["C5"],
"hide": false
},
{
@@ -5595,9 +4413,7 @@
},
"latitude": 42.8629484994829,
"longitude": -8.54081466794014,
- "lines": [
- "C5"
- ],
+ "lines": ["C5"],
"hide": false
},
{
@@ -5607,9 +4423,7 @@
},
"latitude": 42.8650353875094,
"longitude": -8.54057997465134,
- "lines": [
- "C6"
- ],
+ "lines": ["C6"],
"hide": false
},
{
@@ -5619,9 +4433,7 @@
},
"latitude": 42.8667752260979,
"longitude": -8.54011595249176,
- "lines": [
- "C6"
- ],
+ "lines": ["C6"],
"hide": false
},
{
@@ -5631,9 +4443,7 @@
},
"latitude": 42.8631500155348,
"longitude": -8.54083746671677,
- "lines": [
- "C6"
- ],
+ "lines": ["C6"],
"hide": false
},
{
@@ -5643,10 +4453,7 @@
},
"latitude": 42.8928963963954,
"longitude": -8.5101529955864,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5656,10 +4463,7 @@
},
"latitude": 42.8941736718574,
"longitude": -8.51474091410637,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5669,10 +4473,7 @@
},
"latitude": 42.8934623309409,
"longitude": -8.51231753826141,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5682,10 +4483,7 @@
},
"latitude": 42.8932589488114,
"longitude": -8.51010873913765,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5695,10 +4493,7 @@
},
"latitude": 42.8897836635656,
"longitude": -8.51528137922287,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5708,10 +4503,7 @@
},
"latitude": 42.8877830995682,
"longitude": -8.51663321256638,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5721,10 +4513,7 @@
},
"latitude": 42.886767071201,
"longitude": -8.51697117090225,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5734,10 +4523,7 @@
},
"latitude": 42.8884591323817,
"longitude": -8.51600557565689,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -5747,9 +4533,7 @@
},
"latitude": 42.8668853159297,
"longitude": -8.57562571763992,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -5759,9 +4543,7 @@
},
"latitude": 42.8669541219748,
"longitude": -8.57560962438583,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -5771,16 +4553,7 @@
},
"latitude": 42.8730303762288,
"longitude": -8.54639500379562,
- "lines": [
- "6",
- "12",
- "15",
- "C4",
- "C5",
- "P3",
- "P6",
- "6A"
- ],
+ "lines": ["6", "12", "15", "C4", "C5", "P3", "P6", "6A"],
"hide": false
},
{
@@ -5790,10 +4563,7 @@
},
"latitude": 42.900751221559,
"longitude": -8.54691535234451,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -5803,10 +4573,7 @@
},
"latitude": 42.8990369016756,
"longitude": -8.54706823825836,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -5816,10 +4583,7 @@
},
"latitude": 42.8971790949113,
"longitude": -8.54723319411278,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -5829,10 +4593,7 @@
},
"latitude": 42.8972144635162,
"longitude": -8.54710981249809,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -5842,10 +4603,7 @@
},
"latitude": 42.8993335954043,
"longitude": -8.54693815112114,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -5855,10 +4613,7 @@
},
"latitude": 42.9006146671665,
"longitude": -8.54682683944702,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -5868,9 +4623,7 @@
},
"latitude": 42.8908625262553,
"longitude": -8.52732181549072,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5880,9 +4633,7 @@
},
"latitude": 42.8911219221206,
"longitude": -8.52680683135986,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5892,9 +4643,7 @@
},
"latitude": 42.8902042060933,
"longitude": -8.53102058172226,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5904,9 +4653,7 @@
},
"latitude": 42.8903063935642,
"longitude": -8.53104203939438,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5916,9 +4663,7 @@
},
"latitude": 42.8899860745794,
"longitude": -8.5297679901123,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5928,9 +4673,7 @@
},
"latitude": 42.8899782139699,
"longitude": -8.52959632873535,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -5940,11 +4683,7 @@
},
"latitude": 42.8798470209232,
"longitude": -8.52924227714539,
- "lines": [
- "9",
- "C11",
- "C5"
- ],
+ "lines": ["9", "C11", "C5"],
"hide": false
},
{
@@ -5954,11 +4693,7 @@
},
"latitude": 42.8775178887844,
"longitude": -8.52857172489166,
- "lines": [
- "9",
- "C11",
- "C6"
- ],
+ "lines": ["9", "C11", "C6"],
"hide": false
},
{
@@ -5968,11 +4703,7 @@
},
"latitude": 42.8798254006916,
"longitude": -8.52943539619446,
- "lines": [
- "9",
- "C11",
- "C6"
- ],
+ "lines": ["9", "C11", "C6"],
"hide": false
},
{
@@ -5982,10 +4713,7 @@
},
"latitude": 42.8868053936578,
"longitude": -8.52655336260796,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -5995,11 +4723,7 @@
},
"latitude": 42.8867316966043,
"longitude": -8.52653056383133,
- "lines": [
- "6",
- "C11",
- "6A"
- ],
+ "lines": ["6", "C11", "6A"],
"hide": false
},
{
@@ -6009,9 +4733,7 @@
},
"latitude": 42.88120220123036,
"longitude": -8.537885695695877,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -6021,9 +4743,7 @@
},
"latitude": 42.880141841507445,
"longitude": -8.537350594997406,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -6033,9 +4753,7 @@
},
"latitude": 42.8783670003044,
"longitude": -8.537628203630447,
- "lines": [
- "13"
- ],
+ "lines": ["13"],
"hide": false
},
{
@@ -6045,9 +4763,7 @@
},
"latitude": 42.9084413,
"longitude": -8.5458093,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -6057,9 +4773,7 @@
},
"latitude": 42.9047583197569,
"longitude": -8.52722257375717,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6069,9 +4783,7 @@
},
"latitude": 42.8857317,
"longitude": -8.4806001,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -6081,9 +4793,7 @@
},
"latitude": 42.8915889,
"longitude": -8.4712096,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -6093,9 +4803,7 @@
},
"latitude": 42.8915094,
"longitude": -8.4704747,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -6105,9 +4813,7 @@
},
"latitude": 42.9235371,
"longitude": -8.4649203,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -6117,10 +4823,7 @@
},
"latitude": 42.8935016317581,
"longitude": -8.5086777806282,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -6130,10 +4833,7 @@
},
"latitude": 42.8933955194941,
"longitude": -8.50862681865692,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -6143,9 +4843,7 @@
},
"latitude": 42.9000728,
"longitude": -8.4371288,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -6155,9 +4853,7 @@
},
"latitude": 42.8937502088471,
"longitude": -8.54542806744576,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -6167,9 +4863,7 @@
},
"latitude": 42.9064420288326,
"longitude": -8.51497560739517,
- "lines": [
- "1"
- ],
+ "lines": ["1"],
"hide": false
},
{
@@ -6179,9 +4873,7 @@
},
"latitude": 42.8813191443288,
"longitude": -8.53779315948486,
- "lines": [
- "C11"
- ],
+ "lines": ["C11"],
"hide": false
},
{
@@ -6191,9 +4883,7 @@
},
"latitude": 42.865493451464,
"longitude": -8.52696776390076,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6203,9 +4893,7 @@
},
"latitude": 42.8641703647634,
"longitude": -8.52420508861542,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6215,9 +4903,7 @@
},
"latitude": 42.8654678943372,
"longitude": -8.52710455656052,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6227,9 +4913,7 @@
},
"latitude": 42.8747424705482,
"longitude": -8.53887408971786,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6239,9 +4923,7 @@
},
"latitude": 42.8747975083836,
"longitude": -8.53894919157028,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6251,9 +4933,7 @@
},
"latitude": 42.87659014247,
"longitude": -8.5018327832222,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6263,10 +4943,7 @@
},
"latitude": 42.8945961494574,
"longitude": -8.54735121130943,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -6276,10 +4953,7 @@
},
"latitude": 42.8951276811171,
"longitude": -8.54741960763931,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -6289,9 +4963,7 @@
},
"latitude": 42.8925957415558,
"longitude": -8.52915644645691,
- "lines": [
- "4"
- ],
+ "lines": ["4"],
"hide": false
},
{
@@ -6301,9 +4973,7 @@
},
"latitude": 42.859456760823,
"longitude": -8.57346788048744,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -6313,9 +4983,7 @@
},
"latitude": 42.859548185552,
"longitude": -8.57371598482132,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -6325,9 +4993,7 @@
},
"latitude": 42.8695627974506,
"longitude": -8.53311002254486,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6337,9 +5003,7 @@
},
"latitude": 42.868208344442,
"longitude": -8.53240728378296,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6349,9 +5013,7 @@
},
"latitude": 42.8680333839032,
"longitude": -8.53228390216827,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6361,9 +5023,7 @@
},
"latitude": 42.8692541656351,
"longitude": -8.53323072195053,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6373,10 +5033,7 @@
},
"latitude": 42.8894554811899,
"longitude": -8.51588487625122,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -6386,10 +5043,7 @@
},
"latitude": 42.8914098109515,
"longitude": -8.51842895150185,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -6399,9 +5053,7 @@
},
"latitude": 42.8793468054426,
"longitude": -8.60757887363434,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -6411,9 +5063,7 @@
},
"latitude": 42.8795325440806,
"longitude": -8.60755205154419,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -6423,9 +5073,7 @@
},
"latitude": 42.9010223646363,
"longitude": -8.53274926543236,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6435,9 +5083,7 @@
},
"latitude": 42.9030981415123,
"longitude": -8.52768927812576,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6447,12 +5093,7 @@
},
"latitude": 42.8878404,
"longitude": -8.5328595,
- "lines": [
- "6",
- "9",
- "C6",
- "6A"
- ],
+ "lines": ["6", "9", "C6", "6A"],
"hide": false
},
{
@@ -6462,9 +5103,7 @@
},
"latitude": 42.909294,
"longitude": -8.528107,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6474,10 +5113,7 @@
},
"latitude": 42.8851615,
"longitude": -8.5337035,
- "lines": [
- "9",
- "C6"
- ],
+ "lines": ["9", "C6"],
"hide": false
},
{
@@ -6487,9 +5123,7 @@
},
"latitude": 42.9006608402683,
"longitude": -8.52884531021118,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6499,10 +5133,7 @@
},
"latitude": 42.9164167,
"longitude": -8.5154668,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -6512,9 +5143,7 @@
},
"latitude": 42.8630812052495,
"longitude": -8.50446671247482,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6524,9 +5153,7 @@
},
"latitude": 42.876382773537,
"longitude": -8.49799990653992,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6536,9 +5163,7 @@
},
"latitude": 42.863091035295,
"longitude": -8.50438892841339,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -6548,9 +5173,7 @@
},
"latitude": 42.8659849326138,
"longitude": -8.56477349996567,
- "lines": [
- "P2"
- ],
+ "lines": ["P2"],
"hide": false
},
{
@@ -6560,11 +5183,7 @@
},
"latitude": 42.8659888644473,
"longitude": -8.56465011835098,
- "lines": [
- "12",
- "C4",
- "P2"
- ],
+ "lines": ["12", "C4", "P2"],
"hide": false
},
{
@@ -6574,12 +5193,7 @@
},
"latitude": 42.8935841633929,
"longitude": -8.53251188993454,
- "lines": [
- "1",
- "P4",
- "P6",
- "4"
- ],
+ "lines": ["1", "P4", "P6", "4"],
"hide": false
},
{
@@ -6589,11 +5203,7 @@
},
"latitude": 42.8938022821815,
"longitude": -8.53197276592255,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -6603,11 +5213,7 @@
},
"latitude": 42.8956562607381,
"longitude": -8.53063032031059,
- "lines": [
- "1",
- "P4",
- "P6"
- ],
+ "lines": ["1", "P4", "P6"],
"hide": false
},
{
@@ -6617,11 +5223,7 @@
},
"latitude": 42.8869066041344,
"longitude": -8.54755908250809,
- "lines": [
- "C2",
- "P7",
- "4"
- ],
+ "lines": ["C2", "P7", "4"],
"hide": false
},
{
@@ -6631,11 +5233,7 @@
},
"latitude": 42.886767071201,
"longitude": -8.54772001504898,
- "lines": [
- "C4",
- "P7",
- "4"
- ],
+ "lines": ["C4", "P7", "4"],
"hide": false
},
{
@@ -6645,11 +5243,7 @@
},
"latitude": 42.8887755289148,
"longitude": -8.54692071676254,
- "lines": [
- "C2",
- "P7",
- "4"
- ],
+ "lines": ["C2", "P7", "4"],
"hide": false
},
{
@@ -6659,11 +5253,7 @@
},
"latitude": 42.8892393122042,
"longitude": -8.54693681001663,
- "lines": [
- "C4",
- "P7",
- "4"
- ],
+ "lines": ["C4", "P7", "4"],
"hide": false
},
{
@@ -6673,13 +5263,7 @@
},
"latitude": 42.8901138093433,
"longitude": -8.534936606884,
- "lines": [
- "1",
- "C2",
- "P4",
- "P6",
- "4"
- ],
+ "lines": ["1", "C2", "P4", "P6", "4"],
"hide": false
},
{
@@ -6689,14 +5273,7 @@
},
"latitude": 42.8901668683213,
"longitude": -8.5350438952446,
- "lines": [
- "1",
- "6",
- "P4",
- "P6",
- "6A",
- "4"
- ],
+ "lines": ["1", "6", "P4", "P6", "6A", "4"],
"hide": false
},
{
@@ -6706,13 +5283,7 @@
},
"latitude": 42.8774520428427,
"longitude": -8.54674369096756,
- "lines": [
- "9",
- "C4",
- "P1",
- "P7",
- "4"
- ],
+ "lines": ["9", "C4", "P1", "P7", "4"],
"hide": false
},
{
@@ -6722,14 +5293,7 @@
},
"latitude": 42.8774962677367,
"longitude": -8.54650095105171,
- "lines": [
- "8",
- "9",
- "C2",
- "P1",
- "P7",
- "4"
- ],
+ "lines": ["8", "9", "C2", "P1", "P7", "4"],
"hide": false
},
{
@@ -6739,9 +5303,7 @@
},
"latitude": 42.9321055297788,
"longitude": -8.46337258815765,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -6751,11 +5313,7 @@
},
"latitude": 42.8821269300976,
"longitude": -8.53940784931183,
- "lines": [
- "9",
- "13",
- "C5"
- ],
+ "lines": ["9", "13", "C5"],
"hide": false
},
{
@@ -6765,12 +5323,7 @@
},
"latitude": 42.8867464360221,
"longitude": -8.52019250392914,
- "lines": [
- "6",
- "C5",
- "C6",
- "6A"
- ],
+ "lines": ["6", "C5", "C6", "6A"],
"hide": false
},
{
@@ -6780,10 +5333,7 @@
},
"latitude": 42.8864624559539,
"longitude": -8.51433724164963,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -6793,10 +5343,7 @@
},
"latitude": 42.8864310117137,
"longitude": -8.51342797279358,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -6806,12 +5353,7 @@
},
"latitude": 42.8866678257534,
"longitude": -8.51889163255692,
- "lines": [
- "6",
- "C5",
- "C6",
- "6A"
- ],
+ "lines": ["6", "C5", "C6", "6A"],
"hide": false
},
{
@@ -6821,10 +5363,7 @@
},
"latitude": 42.8863740189875,
"longitude": -8.51568102836609,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -6834,9 +5373,7 @@
},
"latitude": 42.8778628417486,
"longitude": -8.5604926943779,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6846,9 +5383,7 @@
},
"latitude": 42.8780230329253,
"longitude": -8.56035456061363,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6858,9 +5393,7 @@
},
"latitude": 42.8783709313491,
"longitude": -8.55578273534775,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6870,9 +5403,7 @@
},
"latitude": 42.8785674832637,
"longitude": -8.55530261993408,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6882,9 +5413,7 @@
},
"latitude": 42.8763365822579,
"longitude": -8.56273502111435,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6894,9 +5423,7 @@
},
"latitude": 42.8764338787416,
"longitude": -8.56251507997513,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -6906,10 +5433,7 @@
},
"latitude": 42.8922852598564,
"longitude": -8.48859876394272,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -6919,10 +5443,7 @@
},
"latitude": 42.8923343868116,
"longitude": -8.48865509033203,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -6932,9 +5453,7 @@
},
"latitude": 42.9006616,
"longitude": -8.4307792,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -6992,10 +5511,7 @@
},
"latitude": 42.9280442373054,
"longitude": -8.52313220500946,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -7005,10 +5521,7 @@
},
"latitude": 42.8644141451275,
"longitude": -8.55569154024124,
- "lines": [
- "C2",
- "5"
- ],
+ "lines": ["C2", "5"],
"hide": false
},
{
@@ -7041,11 +5554,7 @@
},
"latitude": 42.8854798158721,
"longitude": -8.54770794510841,
- "lines": [
- "C4",
- "P7",
- "4"
- ],
+ "lines": ["C4", "P7", "4"],
"hide": false
},
{
@@ -7055,9 +5564,7 @@
},
"latitude": 42.8523193158303,
"longitude": -8.52696776390076,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7067,9 +5574,7 @@
},
"latitude": 42.8460669834593,
"longitude": -8.52492928504944,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7079,9 +5584,7 @@
},
"latitude": 42.8544055799786,
"longitude": -8.52990210056305,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7091,9 +5594,7 @@
},
"latitude": 42.8532523427683,
"longitude": -8.52873265743256,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7103,9 +5604,7 @@
},
"latitude": 42.8458526290315,
"longitude": -8.52505534887314,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7115,9 +5614,7 @@
},
"latitude": 42.8521915028234,
"longitude": -8.52691411972046,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7127,9 +5624,7 @@
},
"latitude": 42.9510730103562,
"longitude": -8.55587124824524,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7139,9 +5634,7 @@
},
"latitude": 42.951159391309,
"longitude": -8.5531085729599,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7151,12 +5644,7 @@
},
"latitude": 42.8707009867931,
"longitude": -8.55776488780975,
- "lines": [
- "1",
- "12",
- "C4",
- "P2"
- ],
+ "lines": ["1", "12", "C4", "P2"],
"hide": false
},
{
@@ -7166,11 +5654,7 @@
},
"latitude": 42.8706439795361,
"longitude": -8.55769246816635,
- "lines": [
- "1",
- "C2",
- "P2"
- ],
+ "lines": ["1", "C2", "P2"],
"hide": false
},
{
@@ -7180,9 +5664,7 @@
},
"latitude": 42.8670091667557,
"longitude": -8.53991210460663,
- "lines": [
- "C5"
- ],
+ "lines": ["C5"],
"hide": false
},
{
@@ -7192,10 +5674,7 @@
},
"latitude": 42.8726962076185,
"longitude": -8.55087429285049,
- "lines": [
- "15",
- "C2"
- ],
+ "lines": ["15", "C2"],
"hide": false
},
{
@@ -7205,10 +5684,7 @@
},
"latitude": 42.8708307272508,
"longitude": -8.54956269264221,
- "lines": [
- "15",
- "C2"
- ],
+ "lines": ["15", "C2"],
"hide": false
},
{
@@ -7218,15 +5694,7 @@
},
"latitude": 42.8709860222886,
"longitude": -8.54623541235924,
- "lines": [
- "6",
- "12",
- "15",
- "C4",
- "C5",
- "P3",
- "6A"
- ],
+ "lines": ["6", "12", "15", "C4", "C5", "P3", "6A"],
"hide": false
},
{
@@ -7236,9 +5704,7 @@
},
"latitude": 42.8733959939296,
"longitude": -8.50578635931015,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -7248,9 +5714,7 @@
},
"latitude": 42.8702763797519,
"longitude": -8.50775510072708,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -7260,9 +5724,7 @@
},
"latitude": 42.8834889390857,
"longitude": -8.56927692890167,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -7272,9 +5734,7 @@
},
"latitude": 42.8835705014403,
"longitude": -8.56917634606361,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -7284,9 +5744,7 @@
},
"latitude": 42.9179084950357,
"longitude": -8.5518479347229,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7296,9 +5754,7 @@
},
"latitude": 42.917987065481,
"longitude": -8.55188012123108,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7308,17 +5764,7 @@
},
"latitude": 42.8768191319988,
"longitude": -8.54556083679199,
- "lines": [
- "1",
- "8",
- "9",
- "12",
- "P1",
- "P2",
- "P7",
- "P8",
- "4"
- ],
+ "lines": ["1", "8", "9", "12", "P1", "P2", "P7", "P8", "4"],
"hide": false
},
{
@@ -7328,17 +5774,7 @@
},
"latitude": 42.8768338737848,
"longitude": -8.54497477412224,
- "lines": [
- "1",
- "8",
- "9",
- "12",
- "P1",
- "P2",
- "P7",
- "P8",
- "4"
- ],
+ "lines": ["1", "8", "9", "12", "P1", "P2", "P7", "P8", "4"],
"hide": false
},
{
@@ -7348,9 +5784,7 @@
},
"latitude": 42.909674739219,
"longitude": -8.44940364360809,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -7360,9 +5794,7 @@
},
"latitude": 42.9317127665751,
"longitude": -8.47518503665924,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -7372,9 +5804,7 @@
},
"latitude": 42.9153165963108,
"longitude": -8.48420262336731,
- "lines": [
- "P4"
- ],
+ "lines": ["P4"],
"hide": false
},
{
@@ -7384,9 +5814,7 @@
},
"latitude": 42.9001157,
"longitude": -8.4372467,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -7396,10 +5824,7 @@
},
"latitude": 42.9277476,
"longitude": -8.5332085,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -7409,10 +5834,7 @@
},
"latitude": 42.9255273977398,
"longitude": -8.53266477584839,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -7422,10 +5844,7 @@
},
"latitude": 42.9227678885465,
"longitude": -8.53193521499634,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -7435,10 +5854,7 @@
},
"latitude": 42.9316892007032,
"longitude": -8.52934956550598,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -7448,11 +5864,7 @@
},
"latitude": 42.8851791248794,
"longitude": -8.54777231812477,
- "lines": [
- "C2",
- "P7",
- "4"
- ],
+ "lines": ["C2", "P7", "4"],
"hide": false
},
{
@@ -7462,9 +5874,7 @@
},
"latitude": 42.9228641297374,
"longitude": -8.55396151542664,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7474,9 +5884,7 @@
},
"latitude": 42.9511358328794,
"longitude": -8.5560268163681,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7486,9 +5894,7 @@
},
"latitude": 42.951100495218,
"longitude": -8.5539186000824,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7498,9 +5904,7 @@
},
"latitude": 42.888344168022,
"longitude": -8.60659718513489,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -7510,9 +5914,7 @@
},
"latitude": 42.8882734206172,
"longitude": -8.60647916793823,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -7522,9 +5924,7 @@
},
"latitude": 42.9005940366205,
"longitude": -8.53039562702179,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -7534,10 +5934,7 @@
},
"latitude": 42.8918775046173,
"longitude": -8.55618640780449,
- "lines": [
- "9",
- "4"
- ],
+ "lines": ["9", "4"],
"hide": false
},
{
@@ -7547,9 +5944,7 @@
},
"latitude": 42.8278166619322,
"longitude": -8.48694115877151,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7559,9 +5954,7 @@
},
"latitude": 42.827354384216,
"longitude": -8.48840832710266,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7571,9 +5964,7 @@
},
"latitude": 42.8273052055321,
"longitude": -8.48836809396744,
- "lines": [
- "P3"
- ],
+ "lines": ["P3"],
"hide": false
},
{
@@ -7583,9 +5974,7 @@
},
"latitude": 42.9101585,
"longitude": -8.5347385,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -7595,9 +5984,7 @@
},
"latitude": 42.9083712632082,
"longitude": -8.52146923542023,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -7607,9 +5994,7 @@
},
"latitude": 42.9125605586423,
"longitude": -8.55194985866547,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7619,9 +6004,7 @@
},
"latitude": 42.8656408962198,
"longitude": -8.50326508283615,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -7631,9 +6014,7 @@
},
"latitude": 42.8656448280751,
"longitude": -8.50314438343048,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -7643,9 +6024,7 @@
},
"latitude": 42.8675202945198,
"longitude": -8.50897818803787,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -7655,9 +6034,7 @@
},
"latitude": 42.8649980345049,
"longitude": -8.50873678922653,
- "lines": [
- "7"
- ],
+ "lines": ["7"],
"hide": false
},
{
@@ -7667,9 +6044,7 @@
},
"latitude": 42.8628079293598,
"longitude": -8.56153339147568,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -7679,9 +6054,7 @@
},
"latitude": 42.8627902351957,
"longitude": -8.56145560741425,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -7691,9 +6064,7 @@
},
"latitude": 42.8613963123363,
"longitude": -8.56348872184753,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -7703,9 +6074,7 @@
},
"latitude": 42.8613157037048,
"longitude": -8.56369525194168,
- "lines": [
- "5"
- ],
+ "lines": ["5"],
"hide": false
},
{
@@ -7715,9 +6084,7 @@
},
"latitude": 42.8856046120302,
"longitude": -8.60588371753693,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -7727,9 +6094,7 @@
},
"latitude": 42.8857618351771,
"longitude": -8.60583007335663,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -7739,9 +6104,7 @@
},
"latitude": 42.8720632479972,
"longitude": -8.5808801651001,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -7751,9 +6114,7 @@
},
"latitude": 42.8716445475376,
"longitude": -8.5805207490921,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -7763,9 +6124,7 @@
},
"latitude": 42.8831499136852,
"longitude": -8.47919225692749,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -7775,10 +6134,7 @@
},
"latitude": 42.8872249738713,
"longitude": -8.52445185184479,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -7788,12 +6144,7 @@
},
"latitude": 42.8872544524675,
"longitude": -8.52302759885788,
- "lines": [
- "6",
- "C5",
- "C6",
- "6A"
- ],
+ "lines": ["6", "C5", "C6", "6A"],
"hide": false
},
{
@@ -7803,11 +6154,7 @@
},
"latitude": 42.883258991626,
"longitude": -8.54026883840561,
- "lines": [
- "7",
- "P3",
- "P8"
- ],
+ "lines": ["7", "P3", "P8"],
"hide": false
},
{
@@ -7817,11 +6164,7 @@
},
"latitude": 42.8830899698698,
"longitude": -8.54006230831146,
- "lines": [
- "7",
- "P3",
- "P8"
- ],
+ "lines": ["7", "P3", "P8"],
"hide": false
},
{
@@ -7831,14 +6174,7 @@
},
"latitude": 42.8835803282227,
"longitude": -8.54145169258118,
- "lines": [
- "7",
- "9",
- "13",
- "C5",
- "P3",
- "P8"
- ],
+ "lines": ["7", "9", "13", "C5", "P3", "P8"],
"hide": false
},
{
@@ -7848,9 +6184,7 @@
},
"latitude": 42.910678603235,
"longitude": -8.51299479603767,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7860,9 +6194,7 @@
},
"latitude": 42.9100912170771,
"longitude": -8.51208284497261,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7872,9 +6204,7 @@
},
"latitude": 42.9118101407235,
"longitude": -8.51445928215981,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7884,9 +6214,7 @@
},
"latitude": 42.9127019976455,
"longitude": -8.5165835916996,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7896,9 +6224,7 @@
},
"latitude": 42.9146811274252,
"longitude": -8.52140620350838,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7908,9 +6234,7 @@
},
"latitude": 42.9157143748906,
"longitude": -8.52609738707542,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7920,9 +6244,7 @@
},
"latitude": 42.9115940500996,
"longitude": -8.55437994003296,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -7932,9 +6254,7 @@
},
"latitude": 42.9138,
"longitude": -8.5274258,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7944,10 +6264,7 @@
},
"latitude": 42.8946432,
"longitude": -8.508827,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -7957,9 +6274,7 @@
},
"latitude": 42.9118738,
"longitude": -8.5285526,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -7969,9 +6284,7 @@
},
"latitude": 42.8986555,
"longitude": -8.5305826,
- "lines": [
- "1"
- ],
+ "lines": ["1"],
"hide": false
},
{
@@ -7981,9 +6294,7 @@
},
"latitude": 42.9127442328405,
"longitude": -8.52377191185951,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -7993,9 +6304,7 @@
},
"latitude": 42.9117305801728,
"longitude": -8.52066859602928,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -8005,9 +6314,7 @@
},
"latitude": 42.9109084484686,
"longitude": -8.51872801780701,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -8017,9 +6324,7 @@
},
"latitude": 42.9101501523958,
"longitude": -8.51691752672195,
- "lines": [
- "P6"
- ],
+ "lines": ["P6"],
"hide": false
},
{
@@ -8029,9 +6334,7 @@
},
"latitude": 42.8747346079963,
"longitude": -8.56279671192169,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -8041,9 +6344,7 @@
},
"latitude": 42.8712022552347,
"longitude": -8.56560230255127,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -8053,9 +6354,7 @@
},
"latitude": 42.8914726943398,
"longitude": -8.45229506492615,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -8065,9 +6364,7 @@
},
"latitude": 42.9128277209315,
"longitude": -8.56040954589844,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -8077,9 +6374,7 @@
},
"latitude": 42.8755297034874,
"longitude": -8.61586153507233,
- "lines": [
- "P8"
- ],
+ "lines": ["P8"],
"hide": false
},
{
@@ -8089,19 +6384,7 @@
},
"latitude": 42.8804563152445,
"longitude": -8.54065373539925,
- "lines": [
- "4",
- "5",
- "7",
- "8",
- "9",
- "13",
- "P1",
- "P2",
- "P4",
- "P7",
- "P8"
- ],
+ "lines": ["4", "5", "7", "8", "9", "13", "P1", "P2", "P4", "P7", "P8"],
"hide": false
},
{
@@ -8111,15 +6394,7 @@
},
"latitude": 42.8801192386458,
"longitude": -8.54079052805901,
- "lines": [
- "1",
- "6",
- "15",
- "C5",
- "P3",
- "P6",
- "6A"
- ],
+ "lines": ["1", "6", "15", "C5", "P3", "P6", "6A"],
"hide": false
},
{
@@ -8159,10 +6434,7 @@
},
"latitude": 42.8929386451606,
"longitude": -8.54750946164131,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -8172,10 +6444,7 @@
},
"latitude": 42.8924739071512,
"longitude": -8.54763552546501,
- "lines": [
- "P7",
- "4"
- ],
+ "lines": ["P7", "4"],
"hide": false
},
{
@@ -8185,11 +6454,7 @@
},
"latitude": 42.8907387232986,
"longitude": -8.54708567261696,
- "lines": [
- "C2",
- "P7",
- "4"
- ],
+ "lines": ["C2", "P7", "4"],
"hide": false
},
{
@@ -8199,11 +6464,7 @@
},
"latitude": 42.8905766000033,
"longitude": -8.54727476835251,
- "lines": [
- "C4",
- "P7",
- "4"
- ],
+ "lines": ["C4", "P7", "4"],
"hide": false
},
{
@@ -8213,9 +6474,7 @@
},
"latitude": 42.8949596743779,
"longitude": -8.54435920715332,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -8225,9 +6484,7 @@
},
"latitude": 42.8948987595406,
"longitude": -8.54452550411224,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -8237,9 +6494,7 @@
},
"latitude": 42.8963479268562,
"longitude": -8.54296579957008,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -8249,9 +6504,7 @@
},
"latitude": 42.9089395,
"longitude": -8.5333976,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -8261,12 +6514,7 @@
},
"latitude": 42.866037,
"longitude": -8.5443462,
- "lines": [
- "6",
- "12",
- "C5",
- "P3"
- ],
+ "lines": ["6", "12", "C5", "P3"],
"hide": false
},
{
@@ -8276,9 +6524,7 @@
},
"latitude": 42.8991809,
"longitude": -8.4445197,
- "lines": [
- "6A"
- ],
+ "lines": ["6A"],
"hide": false
},
{
@@ -8288,13 +6534,7 @@
},
"latitude": 42.8735237630455,
"longitude": -8.54645133018494,
- "lines": [
- "C11",
- "13",
- "15",
- "P6",
- "5"
- ],
+ "lines": ["C11", "13", "15", "P6", "5"],
"hide": false
},
{
@@ -8304,13 +6544,7 @@
},
"latitude": 42.875581792204,
"longitude": -8.54615092277527,
- "lines": [
- "C11",
- "13",
- "15",
- "P6",
- "5"
- ],
+ "lines": ["C11", "13", "15", "P6", "5"],
"hide": false
},
{
@@ -8320,9 +6554,7 @@
},
"latitude": 42.8923884264172,
"longitude": -8.58290791511536,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -8332,9 +6564,7 @@
},
"latitude": 42.892007200552,
"longitude": -8.58251631259918,
- "lines": [
- "P1"
- ],
+ "lines": ["P1"],
"hide": false
},
{
@@ -8344,9 +6574,7 @@
},
"latitude": 42.9076629,
"longitude": -8.5328126,
- "lines": [
- "8"
- ],
+ "lines": ["8"],
"hide": false
},
{
@@ -8356,9 +6584,7 @@
},
"latitude": 42.9171650172382,
"longitude": -8.55981945991516,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -8368,9 +6594,7 @@
},
"latitude": 42.8831145370143,
"longitude": -8.47927272319794,
- "lines": [
- "6"
- ],
+ "lines": ["6"],
"hide": false
},
{
@@ -8380,10 +6604,7 @@
},
"latitude": 42.8685335,
"longitude": -8.563408,
- "lines": [
- "C2",
- "C4"
- ],
+ "lines": ["C2", "C4"],
"hide": false
},
{
@@ -8393,10 +6614,7 @@
},
"latitude": 42.9301279,
"longitude": -8.5193463,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -8406,10 +6624,7 @@
},
"latitude": 42.8688128391159,
"longitude": -8.52568298578262,
- "lines": [
- "9",
- "C11"
- ],
+ "lines": ["9", "C11"],
"hide": false
},
{
@@ -8419,10 +6634,7 @@
},
"latitude": 42.865883687817,
"longitude": -8.56027945876122,
- "lines": [
- "1",
- "C2"
- ],
+ "lines": ["1", "C2"],
"hide": false
},
{
@@ -8432,11 +6644,7 @@
},
"latitude": 42.8659161254884,
"longitude": -8.56036394834518,
- "lines": [
- "1",
- "12",
- "C4"
- ],
+ "lines": ["1", "12", "C4"],
"hide": false
},
{
@@ -8446,9 +6654,7 @@
},
"latitude": 42.867332553852,
"longitude": -8.56112837791443,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -8458,10 +6664,7 @@
},
"latitude": 42.8565645237132,
"longitude": -8.53944808244705,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -8471,10 +6674,7 @@
},
"latitude": 42.8948851,
"longitude": -8.5094659,
- "lines": [
- "C5",
- "C6"
- ],
+ "lines": ["C5", "C6"],
"hide": false
},
{
@@ -8484,10 +6684,7 @@
},
"latitude": 42.8528698919136,
"longitude": -8.53884726762772,
- "lines": [
- "6",
- "12"
- ],
+ "lines": ["6", "12"],
"hide": false
},
{
@@ -8497,10 +6694,7 @@
},
"latitude": 42.9226922703624,
"longitude": -8.5075056552887,
- "lines": [
- "1",
- "P2"
- ],
+ "lines": ["1", "P2"],
"hide": false
},
{
@@ -8510,14 +6704,7 @@
},
"latitude": 42.8706512,
"longitude": -8.5461194,
- "lines": [
- "6",
- "12",
- "C4",
- "C6",
- "P3",
- "6A"
- ],
+ "lines": ["6", "12", "C4", "C6", "P3", "6A"],
"hide": false
},
{
@@ -8527,9 +6714,7 @@
},
"latitude": 42.8718263778983,
"longitude": -8.55781048536301,
- "lines": [
- "15"
- ],
+ "lines": ["15"],
"hide": false
},
{
@@ -8539,9 +6724,7 @@
},
"latitude": 42.9157683940058,
"longitude": -8.56022447347641,
- "lines": [
- "P7"
- ],
+ "lines": ["P7"],
"hide": false
},
{
@@ -8551,9 +6734,7 @@
},
"latitude": 42.8702804,
"longitude": -8.5469266,
- "lines": [
- "C2"
- ],
+ "lines": ["C2"],
"hide": false
},
{
@@ -8563,10 +6744,7 @@
},
"latitude": 42.8869489,
"longitude": -8.5305313,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
},
{
@@ -8576,10 +6754,7 @@
},
"latitude": 42.88725,
"longitude": -8.5300852,
- "lines": [
- "6",
- "6A"
- ],
+ "lines": ["6", "6A"],
"hide": false
}
-] \ No newline at end of file
+]
diff --git a/src/frontend/public/stops/vigo.json b/src/frontend/public/stops/vigo.json
index 3a4bc99..10c7b06 100644
--- a/src/frontend/public/stops/vigo.json
+++ b/src/frontend/public/stops/vigo.json
@@ -6,9 +6,7 @@
},
"latitude": 42.187593499,
"longitude": -8.741246641,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 40,
@@ -17,9 +15,7 @@
},
"latitude": 42.192126677,
"longitude": -8.72901589,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 50,
@@ -28,9 +24,7 @@
},
"latitude": 42.19287042,
"longitude": -8.727513924,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 70,
@@ -39,10 +33,7 @@
},
"latitude": 42.20020175,
"longitude": -8.700621608,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 80,
@@ -51,10 +42,7 @@
},
"latitude": 42.200132216,
"longitude": -8.700535777,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 90,
@@ -63,9 +51,7 @@
},
"latitude": 42.225956918,
"longitude": -8.63286469,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 100,
@@ -74,9 +60,7 @@
},
"latitude": 42.219008975,
"longitude": -8.69606935,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 110,
@@ -85,9 +69,7 @@
},
"latitude": 42.215074591,
"longitude": -8.696738405,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 120,
@@ -96,9 +78,7 @@
},
"latitude": 42.223288295,
"longitude": -8.700954873,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 130,
@@ -107,9 +87,7 @@
},
"latitude": 42.219001694,
"longitude": -8.696198267,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 140,
@@ -118,9 +96,7 @@
},
"latitude": 42.223444913,
"longitude": -8.700801996,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 150,
@@ -129,9 +105,7 @@
},
"latitude": 42.222636676,
"longitude": -8.697201413,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 160,
@@ -140,9 +114,7 @@
},
"latitude": 42.222830286,
"longitude": -8.697231476,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 170,
@@ -151,9 +123,7 @@
},
"latitude": 42.215084316,
"longitude": -8.696854931,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 180,
@@ -162,9 +132,7 @@
},
"latitude": 42.166144986,
"longitude": -8.720162371,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 190,
@@ -173,10 +141,7 @@
},
"latitude": 42.250539537,
"longitude": -8.685179363,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 195,
@@ -185,10 +150,7 @@
},
"latitude": 42.256624708,
"longitude": -8.677490797,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 200,
@@ -197,10 +159,7 @@
},
"latitude": 42.252115803,
"longitude": -8.683374373,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 210,
@@ -209,10 +168,7 @@
},
"latitude": 42.255798748,
"longitude": -8.678507526,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 220,
@@ -221,10 +177,7 @@
},
"latitude": 42.252694363,
"longitude": -8.68302903,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 230,
@@ -233,10 +186,7 @@
},
"latitude": 42.248041601,
"longitude": -8.691024475,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 240,
@@ -245,10 +195,7 @@
},
"latitude": 42.247513476,
"longitude": -8.691874301,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 250,
@@ -257,10 +204,7 @@
},
"latitude": 42.255252085,
"longitude": -8.679480662,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 260,
@@ -269,10 +213,7 @@
},
"latitude": 42.250421216,
"longitude": -8.685464716,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 270,
@@ -281,10 +222,7 @@
},
"latitude": 42.18920151,
"longitude": -8.810340862,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 280,
@@ -293,10 +231,7 @@
},
"latitude": 42.189490674,
"longitude": -8.808107114,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 290,
@@ -305,10 +240,7 @@
},
"latitude": 42.190149471,
"longitude": -8.803788225,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 310,
@@ -317,10 +249,7 @@
},
"latitude": 42.190850463,
"longitude": -8.80358845,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 320,
@@ -329,10 +258,7 @@
},
"latitude": 42.189221331,
"longitude": -8.811730246,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 330,
@@ -341,10 +267,7 @@
},
"latitude": 42.187213169,
"longitude": -8.813069201,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 340,
@@ -353,10 +276,7 @@
},
"latitude": 42.238036494,
"longitude": -8.700921187,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 350,
@@ -365,10 +285,7 @@
},
"latitude": 42.240488915,
"longitude": -8.700357923,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 360,
@@ -377,10 +294,7 @@
},
"latitude": 42.24013184,
"longitude": -8.700947033,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 370,
@@ -389,10 +303,7 @@
},
"latitude": 42.242101304,
"longitude": -8.698394546,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 380,
@@ -401,10 +312,7 @@
},
"latitude": 42.242091376,
"longitude": -8.698668131,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 390,
@@ -413,10 +321,7 @@
},
"latitude": 42.233174046,
"longitude": -8.702380309,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 400,
@@ -425,10 +330,7 @@
},
"latitude": 42.235598195,
"longitude": -8.701426538,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 410,
@@ -437,10 +339,7 @@
},
"latitude": 42.235524387,
"longitude": -8.701248417,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 420,
@@ -449,10 +348,7 @@
},
"latitude": 42.238092485,
"longitude": -8.701156245,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 430,
@@ -461,15 +357,7 @@
},
"latitude": 42.239341996,
"longitude": -8.720234413,
- "lines": [
- "A",
- "6",
- "9B",
- "18A",
- "24",
- "28",
- "H1"
- ]
+ "lines": ["A", "6", "9B", "18A", "24", "28", "H1"]
},
{
"stopId": 530,
@@ -478,9 +366,7 @@
},
"latitude": 42.193562859,
"longitude": -8.78173994,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 540,
@@ -489,9 +375,7 @@
},
"latitude": 42.189424424,
"longitude": -8.790733064,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 560,
@@ -500,9 +384,7 @@
},
"latitude": 42.181015915,
"longitude": -8.807696921,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 570,
@@ -511,9 +393,7 @@
},
"latitude": 42.195225102,
"longitude": -8.775226375,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 572,
@@ -522,12 +402,7 @@
},
"latitude": 42.214058797,
"longitude": -8.672946954,
- "lines": [
- "12B",
- "15B",
- "15C",
- "U2"
- ]
+ "lines": ["12B", "15B", "15C", "U2"]
},
{
"stopId": 580,
@@ -536,9 +411,7 @@
},
"latitude": 42.195766012,
"longitude": -8.773648966,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 600,
@@ -547,11 +420,7 @@
},
"latitude": 42.189927171,
"longitude": -8.800634184,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 620,
@@ -560,9 +429,7 @@
},
"latitude": 42.1935678,
"longitude": -8.781529566,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 630,
@@ -571,9 +438,7 @@
},
"latitude": 42.189304527,
"longitude": -8.79068363,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 650,
@@ -582,11 +447,7 @@
},
"latitude": 42.181065441,
"longitude": -8.807509871,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 660,
@@ -595,13 +456,7 @@
},
"latitude": 42.211494566,
"longitude": -8.736022397,
- "lines": [
- "7",
- "12B",
- "17",
- "H1",
- "VTS"
- ]
+ "lines": ["7", "12B", "17", "H1", "VTS"]
},
{
"stopId": 680,
@@ -610,9 +465,7 @@
},
"latitude": 42.229005723,
"longitude": -8.634356866,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 690,
@@ -621,10 +474,7 @@
},
"latitude": 42.233064093,
"longitude": -8.642742935,
- "lines": [
- "A",
- "25"
- ]
+ "lines": ["A", "25"]
},
{
"stopId": 700,
@@ -633,9 +483,7 @@
},
"latitude": 42.228674047,
"longitude": -8.633340309,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 710,
@@ -644,14 +492,7 @@
},
"latitude": 42.232478958,
"longitude": -8.701988706,
- "lines": [
- "A",
- "4A",
- "9B",
- "24",
- "27",
- "28"
- ]
+ "lines": ["A", "4A", "9B", "24", "27", "28"]
},
{
"stopId": 720,
@@ -660,11 +501,7 @@
},
"latitude": 42.235739016,
"longitude": -8.684254232,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 730,
@@ -673,11 +510,7 @@
},
"latitude": 42.231109162,
"longitude": -8.690501398,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 740,
@@ -686,11 +519,7 @@
},
"latitude": 42.233560754,
"longitude": -8.686937524,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 750,
@@ -699,11 +528,7 @@
},
"latitude": 42.233103986,
"longitude": -8.68716283,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 760,
@@ -712,11 +537,7 @@
},
"latitude": 42.236775611,
"longitude": -8.683736566,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 770,
@@ -725,11 +546,7 @@
},
"latitude": 42.238939528,
"longitude": -8.681422497,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 780,
@@ -738,11 +555,7 @@
},
"latitude": 42.238554288,
"longitude": -8.680663432,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 790,
@@ -751,11 +564,7 @@
},
"latitude": 42.237426811,
"longitude": -8.675474476,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 800,
@@ -764,11 +573,7 @@
},
"latitude": 42.237801674,
"longitude": -8.676524783,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 810,
@@ -777,11 +582,7 @@
},
"latitude": 42.235521261,
"longitude": -8.67465521,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 820,
@@ -790,10 +591,7 @@
},
"latitude": 42.234766626,
"longitude": -8.671305131,
- "lines": [
- "A",
- "9B"
- ]
+ "lines": ["A", "9B"]
},
{
"stopId": 830,
@@ -802,11 +600,7 @@
},
"latitude": 42.234673289,
"longitude": -8.671348046,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 840,
@@ -815,14 +609,7 @@
},
"latitude": 42.234904325,
"longitude": -8.699245802,
- "lines": [
- "A",
- "4A",
- "9B",
- "24",
- "27",
- "28"
- ]
+ "lines": ["A", "4A", "9B", "24", "27", "28"]
},
{
"stopId": 850,
@@ -831,10 +618,7 @@
},
"latitude": 42.23630176,
"longitude": -8.665791599,
- "lines": [
- "A",
- "9B"
- ]
+ "lines": ["A", "9B"]
},
{
"stopId": 860,
@@ -843,11 +627,7 @@
},
"latitude": 42.235612667,
"longitude": -8.666529207,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 870,
@@ -856,10 +636,7 @@
},
"latitude": 42.23543058,
"longitude": -8.66197943,
- "lines": [
- "A",
- "9B"
- ]
+ "lines": ["A", "9B"]
},
{
"stopId": 880,
@@ -868,11 +645,7 @@
},
"latitude": 42.23544051,
"longitude": -8.662354939,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 890,
@@ -881,9 +654,7 @@
},
"latitude": 42.232066419,
"longitude": -8.653842977,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 900,
@@ -892,9 +663,7 @@
},
"latitude": 42.233527998,
"longitude": -8.648237616,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 910,
@@ -903,14 +672,7 @@
},
"latitude": 42.234679919,
"longitude": -8.699623994,
- "lines": [
- "A",
- "4A",
- "9B",
- "24",
- "27",
- "28"
- ]
+ "lines": ["A", "4A", "9B", "24", "27", "28"]
},
{
"stopId": 920,
@@ -919,9 +681,7 @@
},
"latitude": 42.233499069,
"longitude": -8.643325214,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 930,
@@ -930,9 +690,7 @@
},
"latitude": 42.231979036,
"longitude": -8.65372496,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 940,
@@ -941,9 +699,7 @@
},
"latitude": 42.230493878,
"longitude": -8.638023273,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 950,
@@ -952,10 +708,7 @@
},
"latitude": 42.233626818,
"longitude": -8.647811163,
- "lines": [
- "A",
- "25"
- ]
+ "lines": ["A", "25"]
},
{
"stopId": 960,
@@ -964,9 +717,7 @@
},
"latitude": 42.230918888,
"longitude": -8.638532893,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 970,
@@ -975,11 +726,7 @@
},
"latitude": 42.232787318,
"longitude": -8.693473285,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 980,
@@ -988,11 +735,7 @@
},
"latitude": 42.221170087,
"longitude": -8.763656977,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 990,
@@ -1001,11 +744,7 @@
},
"latitude": 42.222451366,
"longitude": -8.769134894,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 1000,
@@ -1014,11 +753,7 @@
},
"latitude": 42.221220508,
"longitude": -8.767194468,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 1010,
@@ -1027,12 +762,7 @@
},
"latitude": 42.221479642,
"longitude": -8.767482698,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 1020,
@@ -1041,12 +771,7 @@
},
"latitude": 42.222764778,
"longitude": -8.769405842,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 1030,
@@ -1055,11 +780,7 @@
},
"latitude": 42.223219677,
"longitude": -8.754753277,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 1040,
@@ -1068,12 +789,7 @@
},
"latitude": 42.223237503,
"longitude": -8.755707801,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 1050,
@@ -1082,11 +798,7 @@
},
"latitude": 42.221875354,
"longitude": -8.760935381,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 1060,
@@ -1095,12 +807,7 @@
},
"latitude": 42.221789505,
"longitude": -8.759905458,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 1070,
@@ -1109,12 +816,7 @@
},
"latitude": 42.221148357,
"longitude": -8.764660969,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 1110,
@@ -1123,11 +825,7 @@
},
"latitude": 42.237821273,
"longitude": -8.729666379,
- "lines": [
- "A",
- "5B",
- "6"
- ]
+ "lines": ["A", "5B", "6"]
},
{
"stopId": 1120,
@@ -1136,6 +834,7 @@
},
"latitude": 42.23416729,
"longitude": -8.733331094,
+<<<<<<< HEAD
"lines": [
"6",
"9B",
@@ -1143,6 +842,9 @@
"15C",
"28"
]
+=======
+ "lines": ["6", "9B", "15B", "28"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 1130,
@@ -1151,6 +853,7 @@
},
"latitude": 42.231238831,
"longitude": -8.735255297,
+<<<<<<< HEAD
"lines": [
"6",
"9B",
@@ -1158,6 +861,9 @@
"15C",
"28"
]
+=======
+ "lines": ["6", "9B", "15B", "28"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 1140,
@@ -1166,11 +872,7 @@
},
"latitude": 42.225068475,
"longitude": -8.74774586,
- "lines": [
- "6",
- "9B",
- "28"
- ]
+ "lines": ["6", "9B", "28"]
},
{
"stopId": 1150,
@@ -1179,18 +881,7 @@
},
"latitude": 42.237384264,
"longitude": -8.729603006,
- "lines": [
- "C1",
- "C3d",
- "A",
- "5A",
- "9B",
- "10",
- "15B",
- "15C",
- "28",
- "N4"
- ]
+ "lines": ["C1", "C3d", "A", "5A", "9B", "10", "15B", "15C", "28", "N4"]
},
{
"stopId": 1160,
@@ -1199,11 +890,7 @@
},
"latitude": 42.225759663,
"longitude": -8.743239749,
- "lines": [
- "6",
- "9B",
- "28"
- ]
+ "lines": ["6", "9B", "28"]
},
{
"stopId": 1200,
@@ -1212,10 +899,7 @@
},
"latitude": 42.234233798,
"longitude": -8.73312316,
- "lines": [
- "10",
- "15B"
- ]
+ "lines": ["10", "15B"]
},
{
"stopId": 1210,
@@ -1224,10 +908,7 @@
},
"latitude": 42.230811976,
"longitude": -8.735364934,
- "lines": [
- "10",
- "15B"
- ]
+ "lines": ["10", "15B"]
},
{
"stopId": 1220,
@@ -1236,15 +917,7 @@
},
"latitude": 42.247097055,
"longitude": -8.693109251,
- "lines": [
- "5A",
- "10",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["5A", "10", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 1230,
@@ -1253,13 +926,7 @@
},
"latitude": 42.247251925,
"longitude": -8.693122662,
- "lines": [
- "5B",
- "10",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["5B", "10", "N1", "H3", "VTS"]
},
{
"stopId": 1240,
@@ -1268,15 +935,7 @@
},
"latitude": 42.249128205,
"longitude": -8.69514773,
- "lines": [
- "5A",
- "10",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["5A", "10", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 1250,
@@ -1305,18 +964,7 @@
},
"latitude": 42.219775977,
"longitude": -8.736255523,
- "lines": [
- "C3i",
- "4A",
- "4C",
- "5B",
- "10",
- "11",
- "12A",
- "15A",
- "N1",
- "U1"
- ]
+ "lines": ["C3i", "4A", "4C", "5B", "10", "11", "12A", "15A", "N1", "U1"]
},
{
"stopId": 1270,
@@ -1345,17 +993,7 @@
},
"latitude": 42.218523315,
"longitude": -8.74223465,
- "lines": [
- "C3i",
- "4A",
- "4C",
- "10",
- "11",
- "12A",
- "15A",
- "N1",
- "U1"
- ]
+ "lines": ["C3i", "4A", "4C", "10", "11", "12A", "15A", "N1", "U1"]
},
{
"stopId": 1290,
@@ -1406,18 +1044,7 @@
},
"latitude": 42.217705528,
"longitude": -8.747753325,
- "lines": [
- "C3i",
- "4A",
- "4C",
- "10",
- "11",
- "12A",
- "15A",
- "N1",
- "N4",
- "U1"
- ]
+ "lines": ["C3i", "4A", "4C", "10", "11", "12A", "15A", "N1", "N4", "U1"]
},
{
"stopId": 1320,
@@ -1426,13 +1053,7 @@
},
"latitude": 42.217302224,
"longitude": -8.751104752,
- "lines": [
- "C3i",
- "10",
- "12A",
- "N1",
- "U1"
- ]
+ "lines": ["C3i", "10", "12A", "N1", "U1"]
},
{
"stopId": 1330,
@@ -1441,13 +1062,7 @@
},
"latitude": 42.219553947,
"longitude": -8.732509436,
- "lines": [
- "A",
- "16",
- "23",
- "27",
- "H2"
- ]
+ "lines": ["A", "16", "23", "27", "H2"]
},
{
"stopId": 1340,
@@ -1456,10 +1071,7 @@
},
"latitude": 42.212870645,
"longitude": -8.732131792,
- "lines": [
- "27",
- "H2"
- ]
+ "lines": ["27", "H2"]
},
{
"stopId": 1350,
@@ -1468,12 +1080,7 @@
},
"latitude": 42.208026488,
"longitude": -8.7312098,
- "lines": [
- "7",
- "12B",
- "17",
- "27"
- ]
+ "lines": ["7", "12B", "17", "27"]
},
{
"stopId": 1360,
@@ -1482,15 +1089,7 @@
},
"latitude": 42.219613217,
"longitude": -8.732629194,
- "lines": [
- "7",
- "12B",
- "17",
- "27",
- "H2",
- "VTS",
- "PTL"
- ]
+ "lines": ["7", "12B", "17", "27", "H2", "VTS", "PTL"]
},
{
"stopId": 1380,
@@ -1499,12 +1098,7 @@
},
"latitude": 42.20533568,
"longitude": -8.730078621,
- "lines": [
- "7",
- "12B",
- "17",
- "U1"
- ]
+ "lines": ["7", "12B", "17", "U1"]
},
{
"stopId": 1390,
@@ -1513,18 +1107,7 @@
},
"latitude": 42.212735556,
"longitude": -8.732314182,
- "lines": [
- "A",
- "7",
- "12B",
- "17",
- "27",
- "U1",
- "H2",
- "H",
- "VTS",
- "PTL"
- ]
+ "lines": ["A", "7", "12B", "17", "27", "U1", "H2", "H", "VTS", "PTL"]
},
{
"stopId": 1400,
@@ -1533,18 +1116,7 @@
},
"latitude": 42.210706683,
"longitude": -8.732237372,
- "lines": [
- "A",
- "7",
- "12B",
- "17",
- "27",
- "U1",
- "H1",
- "H2",
- "H",
- "PTL"
- ]
+ "lines": ["A", "7", "12B", "17", "27", "U1", "H1", "H2", "H", "PTL"]
},
{
"stopId": 1410,
@@ -1553,13 +1125,7 @@
},
"latitude": 42.218060161,
"longitude": -8.732450427,
- "lines": [
- "A",
- "16",
- "23",
- "27",
- "H2"
- ]
+ "lines": ["A", "16", "23", "27", "H2"]
},
{
"stopId": 1420,
@@ -1568,9 +1134,7 @@
},
"latitude": 42.201440099,
"longitude": -8.726409762,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 1430,
@@ -1579,10 +1143,7 @@
},
"latitude": 42.203408408,
"longitude": -8.728817983,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 1440,
@@ -1591,9 +1152,7 @@
},
"latitude": 42.198480135,
"longitude": -8.723827649,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 1450,
@@ -1602,10 +1161,7 @@
},
"latitude": 42.201044695,
"longitude": -8.726112037,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 1460,
@@ -1614,10 +1170,7 @@
},
"latitude": 42.198867605,
"longitude": -8.72460549,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 1470,
@@ -1626,9 +1179,7 @@
},
"latitude": 42.194996678,
"longitude": -8.72097155,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 1480,
@@ -1637,10 +1188,7 @@
},
"latitude": 42.19015727,
"longitude": -8.72109012,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 1490,
@@ -1649,14 +1197,7 @@
},
"latitude": 42.210613294,
"longitude": -8.732057664,
- "lines": [
- "7",
- "12B",
- "17",
- "27",
- "H1",
- "H2"
- ]
+ "lines": ["7", "12B", "17", "27", "H1", "H2"]
},
{
"stopId": 1500,
@@ -1665,15 +1206,7 @@
},
"latitude": 42.217084821,
"longitude": -8.732530893,
- "lines": [
- "7",
- "12B",
- "17",
- "27",
- "H2",
- "VTS",
- "PTL"
- ]
+ "lines": ["7", "12B", "17", "27", "H2", "VTS", "PTL"]
},
{
"stopId": 1510,
@@ -1682,10 +1215,7 @@
},
"latitude": 42.215203365,
"longitude": -8.670416197,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 1520,
@@ -1694,10 +1224,7 @@
},
"latitude": 42.215400704,
"longitude": -8.671308533,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 1530,
@@ -1706,10 +1233,7 @@
},
"latitude": 42.212814417,
"longitude": -8.670537674,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 1540,
@@ -1718,13 +1242,7 @@
},
"latitude": 42.221677429,
"longitude": -8.66978207,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "VTS"]
},
{
"stopId": 1550,
@@ -1733,12 +1251,7 @@
},
"latitude": 42.221299207,
"longitude": -8.670013709,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C"
- ]
+ "lines": ["11", "15A", "15B", "15C"]
},
{
"stopId": 1560,
@@ -1747,11 +1260,7 @@
},
"latitude": 42.219388605,
"longitude": -8.669172606,
- "lines": [
- "15A",
- "15B",
- "VTS"
- ]
+ "lines": ["15A", "15B", "VTS"]
},
{
"stopId": 1570,
@@ -1760,10 +1269,7 @@
},
"latitude": 42.217957539,
"longitude": -8.669369577,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 1580,
@@ -1772,10 +1278,7 @@
},
"latitude": 42.218393587,
"longitude": -8.669480106,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 1590,
@@ -1784,9 +1287,7 @@
},
"latitude": 42.256667905,
"longitude": -8.682575386,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1600,
@@ -1795,9 +1296,7 @@
},
"latitude": 42.251389209,
"longitude": -8.689369833,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1610,
@@ -1806,9 +1305,7 @@
},
"latitude": 42.251376198,
"longitude": -8.68920404,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1620,
@@ -1817,9 +1314,7 @@
},
"latitude": 42.253987165,
"longitude": -8.686196616,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1630,
@@ -1828,9 +1323,7 @@
},
"latitude": 42.255177674,
"longitude": -8.684734482,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1640,
@@ -1839,9 +1332,7 @@
},
"latitude": 42.254950083,
"longitude": -8.684862748,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1650,
@@ -1850,9 +1341,7 @@
},
"latitude": 42.256910715,
"longitude": -8.68201353,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1660,
@@ -1861,9 +1350,7 @@
},
"latitude": 42.259217959,
"longitude": -8.679666503,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1670,
@@ -1872,9 +1359,7 @@
},
"latitude": 42.258365967,
"longitude": -8.680508997,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1680,
@@ -1883,9 +1368,7 @@
},
"latitude": 42.251327471,
"longitude": -8.69260735,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1690,
@@ -1894,9 +1377,7 @@
},
"latitude": 42.251420909,
"longitude": -8.692153216,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1710,
@@ -1905,9 +1386,7 @@
},
"latitude": 42.274450823,
"longitude": -8.667138233,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1720,
@@ -1916,9 +1395,7 @@
},
"latitude": 42.270480988,
"longitude": -8.667726374,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1730,
@@ -1927,9 +1404,7 @@
},
"latitude": 42.267833798,
"longitude": -8.671345739,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1740,
@@ -1938,9 +1413,7 @@
},
"latitude": 42.27068743,
"longitude": -8.668057842,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1750,
@@ -1949,9 +1422,7 @@
},
"latitude": 42.266305919,
"longitude": -8.672818918,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1760,
@@ -1960,9 +1431,7 @@
},
"latitude": 42.26408966,
"longitude": -8.674082239,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1770,
@@ -1971,9 +1440,7 @@
},
"latitude": 42.26785896,
"longitude": -8.671440263,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1780,
@@ -1982,9 +1449,7 @@
},
"latitude": 42.266245291,
"longitude": -8.672965754,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1790,
@@ -1993,9 +1458,7 @@
},
"latitude": 42.261621089,
"longitude": -8.677207279,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1800,
@@ -2004,9 +1467,7 @@
},
"latitude": 42.263995234,
"longitude": -8.674224503,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1810,
@@ -2015,9 +1476,7 @@
},
"latitude": 42.262068498,
"longitude": -8.676736193,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1820,
@@ -2026,9 +1485,7 @@
},
"latitude": 42.271878394,
"longitude": -8.666356304,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1830,
@@ -2037,9 +1494,7 @@
},
"latitude": 42.274038501,
"longitude": -8.666949932,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 1840,
@@ -2048,9 +1503,7 @@
},
"latitude": 42.27159436,
"longitude": -8.666389735,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 1850,
@@ -2059,13 +1512,7 @@
},
"latitude": 42.216135691,
"longitude": -8.759632243,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "12A",
- "15A"
- ]
+ "lines": ["C3d", "C3i", "4A", "12A", "15A"]
},
{
"stopId": 1860,
@@ -2074,13 +1521,7 @@
},
"latitude": 42.216741568,
"longitude": -8.757129742,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "12A",
- "15A"
- ]
+ "lines": ["C3d", "C3i", "4A", "12A", "15A"]
},
{
"stopId": 1870,
@@ -2089,11 +1530,7 @@
},
"latitude": 42.211235082,
"longitude": -8.773459294,
- "lines": [
- "C3d",
- "C3i",
- "15A"
- ]
+ "lines": ["C3d", "C3i", "15A"]
},
{
"stopId": 1880,
@@ -2102,15 +1539,7 @@
},
"latitude": 42.216687933,
"longitude": -8.756794466,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "4C",
- "12A",
- "15A",
- "N1"
- ]
+ "lines": ["C3d", "C3i", "4A", "4C", "12A", "15A", "N1"]
},
{
"stopId": 1890,
@@ -2119,15 +1548,7 @@
},
"latitude": 42.215913672,
"longitude": -8.759904797,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "4C",
- "12A",
- "15A",
- "N1"
- ]
+ "lines": ["C3d", "C3i", "4A", "4C", "12A", "15A", "N1"]
},
{
"stopId": 1900,
@@ -2136,13 +1557,7 @@
},
"latitude": 42.211855119,
"longitude": -8.766755158,
- "lines": [
- "C3d",
- "C3i",
- "4C",
- "15A",
- "N1"
- ]
+ "lines": ["C3d", "C3i", "4C", "15A", "N1"]
},
{
"stopId": 1910,
@@ -2151,11 +1566,7 @@
},
"latitude": 42.211905694,
"longitude": -8.766999036,
- "lines": [
- "C3d",
- "C3i",
- "15A"
- ]
+ "lines": ["C3d", "C3i", "15A"]
},
{
"stopId": 1920,
@@ -2164,13 +1575,7 @@
},
"latitude": 42.211066417,
"longitude": -8.772953743,
- "lines": [
- "C3d",
- "C3i",
- "4C",
- "15A",
- "N1"
- ]
+ "lines": ["C3d", "C3i", "4C", "15A", "N1"]
},
{
"stopId": 1930,
@@ -2179,12 +1584,7 @@
},
"latitude": 42.21474886,
"longitude": -8.69897918,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "U2"]
},
{
"stopId": 1940,
@@ -2193,11 +1593,7 @@
},
"latitude": 42.218338954,
"longitude": -8.703817429,
- "lines": [
- "12A",
- "12B",
- "13"
- ]
+ "lines": ["12A", "12B", "13"]
},
{
"stopId": 1950,
@@ -2206,11 +1602,7 @@
},
"latitude": 42.220567154,
"longitude": -8.706419628,
- "lines": [
- "12A",
- "12B",
- "13"
- ]
+ "lines": ["12A", "12B", "13"]
},
{
"stopId": 1960,
@@ -2219,13 +1611,7 @@
},
"latitude": 42.224676782,
"longitude": -8.711832326,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2",
- "H2"
- ]
+ "lines": ["12A", "12B", "13", "U2", "H2"]
},
{
"stopId": 1970,
@@ -2234,11 +1620,7 @@
},
"latitude": 42.223965709,
"longitude": -8.710062068,
- "lines": [
- "12A",
- "12B",
- "13"
- ]
+ "lines": ["12A", "12B", "13"]
},
{
"stopId": 1980,
@@ -2247,12 +1629,7 @@
},
"latitude": 42.214703324,
"longitude": -8.699378397,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "U2"]
},
{
"stopId": 1990,
@@ -2261,12 +1638,7 @@
},
"latitude": 42.222130198,
"longitude": -8.708300774,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "U2"]
},
{
"stopId": 2000,
@@ -2275,11 +1647,7 @@
},
"latitude": 42.220728012,
"longitude": -8.70612292,
- "lines": [
- "12A",
- "12B",
- "13"
- ]
+ "lines": ["12A", "12B", "13"]
},
{
"stopId": 2010,
@@ -2288,11 +1656,7 @@
},
"latitude": 42.218213283,
"longitude": -8.703163426,
- "lines": [
- "12A",
- "12B",
- "13"
- ]
+ "lines": ["12A", "12B", "13"]
},
{
"stopId": 2020,
@@ -2301,12 +1665,7 @@
},
"latitude": 42.228518615,
"longitude": -8.719214126,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "U2"]
},
{
"stopId": 2030,
@@ -2315,12 +1674,7 @@
},
"latitude": 42.226744428,
"longitude": -8.716268699,
- "lines": [
- "12A",
- "12B",
- "13",
- "H2"
- ]
+ "lines": ["12A", "12B", "13", "H2"]
},
{
"stopId": 2040,
@@ -2329,11 +1683,7 @@
},
"latitude": 42.226835791,
"longitude": -8.715823453,
- "lines": [
- "12A",
- "12B",
- "13"
- ]
+ "lines": ["12A", "12B", "13"]
},
{
"stopId": 2060,
@@ -2342,9 +1692,7 @@
},
"latitude": 42.259945558,
"longitude": -8.672608434,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 2070,
@@ -2353,9 +1701,7 @@
},
"latitude": 42.259481393,
"longitude": -8.67292487,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 2080,
@@ -2364,9 +1710,7 @@
},
"latitude": 42.266569717,
"longitude": -8.667160768,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 2090,
@@ -2375,9 +1719,7 @@
},
"latitude": 42.272074281,
"longitude": -8.664593691,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 2100,
@@ -2386,9 +1728,7 @@
},
"latitude": 42.263186001,
"longitude": -8.668939094,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 2110,
@@ -2397,9 +1737,7 @@
},
"latitude": 42.263286688,
"longitude": -8.668985036,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 2130,
@@ -2408,9 +1746,7 @@
},
"latitude": 42.266758811,
"longitude": -8.667247828,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 2140,
@@ -2419,11 +1755,7 @@
},
"latitude": 42.21323221,
"longitude": -8.774382415,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 2150,
@@ -2432,11 +1764,7 @@
},
"latitude": 42.221416498,
"longitude": -8.773724153,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 2160,
@@ -2445,11 +1773,7 @@
},
"latitude": 42.215860796,
"longitude": -8.774720144,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 2170,
@@ -2458,11 +1782,7 @@
},
"latitude": 42.210171416,
"longitude": -8.774585056,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 2180,
@@ -2471,11 +1791,7 @@
},
"latitude": 42.206809895,
"longitude": -8.776206766,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 2190,
@@ -2484,11 +1800,7 @@
},
"latitude": 42.205147646,
"longitude": -8.77674534,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 2200,
@@ -2497,9 +1809,7 @@
},
"latitude": 42.22271748,
"longitude": -8.656176614,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2210,
@@ -2508,9 +1818,7 @@
},
"latitude": 42.222538699,
"longitude": -8.656616496,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2220,
@@ -2519,9 +1827,7 @@
},
"latitude": 42.220338634,
"longitude": -8.668666271,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2230,
@@ -2530,9 +1836,7 @@
},
"latitude": 42.222347963,
"longitude": -8.662841482,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2240,
@@ -2541,9 +1845,7 @@
},
"latitude": 42.222432209,
"longitude": -8.662773458,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2250,
@@ -2552,9 +1854,7 @@
},
"latitude": 42.220826115,
"longitude": -8.659651094,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2260,
@@ -2563,9 +1863,7 @@
},
"latitude": 42.220504663,
"longitude": -8.668053014,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2270,
@@ -2574,9 +1872,7 @@
},
"latitude": 42.22113201,
"longitude": -8.658591621,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 2280,
@@ -2585,11 +1881,7 @@
},
"latitude": 42.21650849,
"longitude": -8.719175368,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 2290,
@@ -2598,11 +1890,7 @@
},
"latitude": 42.216415126,
"longitude": -8.719355076,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 2300,
@@ -2611,9 +1899,7 @@
},
"latitude": 42.22078735,
"longitude": -8.722722261,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 2310,
@@ -2622,11 +1908,7 @@
},
"latitude": 42.173398721,
"longitude": -8.811050666,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 2320,
@@ -2635,9 +1917,7 @@
},
"latitude": 42.172541892,
"longitude": -8.809133287,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 2330,
@@ -2646,9 +1926,7 @@
},
"latitude": 42.173316968,
"longitude": -8.81100291,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 2340,
@@ -2657,11 +1935,7 @@
},
"latitude": 42.167981444,
"longitude": -8.806504239,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 2350,
@@ -2670,11 +1944,7 @@
},
"latitude": 42.169850316,
"longitude": -8.808861828,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 2360,
@@ -2683,9 +1953,7 @@
},
"latitude": 42.167825345,
"longitude": -8.806386831,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 2370,
@@ -2694,11 +1962,7 @@
},
"latitude": 42.172705652,
"longitude": -8.809114415,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 2380,
@@ -2707,9 +1971,7 @@
},
"latitude": 42.169719111,
"longitude": -8.808832324,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 2390,
@@ -2718,9 +1980,7 @@
},
"latitude": 42.224020371,
"longitude": -8.716787891,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 2410,
@@ -2729,9 +1989,7 @@
},
"latitude": 42.209020914,
"longitude": -8.702331689,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2420,
@@ -2740,9 +1998,7 @@
},
"latitude": 42.208468606,
"longitude": -8.702143934,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2430,
@@ -2751,9 +2007,7 @@
},
"latitude": 42.223917068,
"longitude": -8.726168827,
- "lines": [
- "C1"
- ]
+ "lines": ["C1"]
},
{
"stopId": 2440,
@@ -2762,9 +2016,7 @@
},
"latitude": 42.228315534,
"longitude": -8.721741958,
- "lines": [
- "C1"
- ]
+ "lines": ["C1"]
},
{
"stopId": 2450,
@@ -2773,9 +2025,7 @@
},
"latitude": 42.226024692,
"longitude": -8.723390804,
- "lines": [
- "C1"
- ]
+ "lines": ["C1"]
},
{
"stopId": 2460,
@@ -2784,9 +2034,7 @@
},
"latitude": 42.203300943,
"longitude": -8.696320858,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2490,
@@ -2795,10 +2043,7 @@
},
"latitude": 42.194635725,
"longitude": -8.699504032,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 2500,
@@ -2807,9 +2052,7 @@
},
"latitude": 42.191950062,
"longitude": -8.707193511,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 2510,
@@ -2818,9 +2061,7 @@
},
"latitude": 42.191323803,
"longitude": -8.721049887,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 2520,
@@ -2829,10 +2070,7 @@
},
"latitude": 42.204563665,
"longitude": -8.687025359,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 2540,
@@ -2841,11 +2079,7 @@
},
"latitude": 42.22513153,
"longitude": -8.751597027,
- "lines": [
- "6",
- "9B",
- "28"
- ]
+ "lines": ["6", "9B", "28"]
},
{
"stopId": 2550,
@@ -2854,10 +2088,7 @@
},
"latitude": 42.204086577,
"longitude": -8.704832445,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 2551,
@@ -2866,9 +2097,7 @@
},
"latitude": 42.205779861,
"longitude": -8.704885101,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 2560,
@@ -2877,10 +2106,7 @@
},
"latitude": 42.204297185,
"longitude": -8.704942415,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 2580,
@@ -2889,10 +2115,7 @@
},
"latitude": 42.207235488,
"longitude": -8.704631381,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 2590,
@@ -2901,9 +2124,7 @@
},
"latitude": 42.232442621,
"longitude": -8.689558541,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 2600,
@@ -2912,10 +2133,7 @@
},
"latitude": 42.235437997,
"longitude": -8.689019794,
- "lines": [
- "27",
- "28"
- ]
+ "lines": ["27", "28"]
},
{
"stopId": 2610,
@@ -2924,9 +2142,7 @@
},
"latitude": 42.233426101,
"longitude": -8.693298639,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 2620,
@@ -2935,9 +2151,7 @@
},
"latitude": 42.235420737,
"longitude": -8.68894034,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 2630,
@@ -2946,10 +2160,7 @@
},
"latitude": 42.233483693,
"longitude": -8.693266452,
- "lines": [
- "27",
- "28"
- ]
+ "lines": ["27", "28"]
},
{
"stopId": 2640,
@@ -2958,10 +2169,7 @@
},
"latitude": 42.232559793,
"longitude": -8.689848219,
- "lines": [
- "27",
- "28"
- ]
+ "lines": ["27", "28"]
},
{
"stopId": 2735,
@@ -2970,10 +2178,7 @@
},
"latitude": 42.235033314,
"longitude": -8.727202198,
- "lines": [
- "5B",
- "12A"
- ]
+ "lines": ["5B", "12A"]
},
{
"stopId": 2740,
@@ -2982,9 +2187,7 @@
},
"latitude": 42.207451401,
"longitude": -8.701194432,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2750,
@@ -2993,9 +2196,7 @@
},
"latitude": 42.20671834,
"longitude": -8.699160127,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2760,
@@ -3004,9 +2205,7 @@
},
"latitude": 42.208194443,
"longitude": -8.701518979,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2770,
@@ -3015,9 +2214,7 @@
},
"latitude": 42.20648703,
"longitude": -8.698760561,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 2780,
@@ -3048,15 +2245,7 @@
},
"latitude": 42.230566426,
"longitude": -8.730086804,
- "lines": [
- "4A",
- "4C",
- "11",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "11", "12B", "17", "27", "N1"]
},
{
"stopId": 2800,
@@ -3065,17 +2254,7 @@
},
"latitude": 42.230291959,
"longitude": -8.730279255,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12A",
- "12B",
- "17",
- "27",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12A", "12B", "17", "27", "PSA 4"]
},
{
"stopId": 2810,
@@ -3084,17 +2263,7 @@
},
"latitude": 42.227601839,
"longitude": -8.730236339,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12A",
- "12B",
- "17",
- "27",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12A", "12B", "17", "27", "PSA 4"]
},
{
"stopId": 2820,
@@ -3103,15 +2272,7 @@
},
"latitude": 42.227403959,
"longitude": -8.729948584,
- "lines": [
- "4A",
- "4C",
- "11",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "11", "12B", "17", "27", "N1"]
},
{
"stopId": 2830,
@@ -3120,14 +2281,7 @@
},
"latitude": 42.22243855,
"longitude": -8.751978552,
- "lines": [
- "C3d",
- "13",
- "15B",
- "15C",
- "U1",
- "H"
- ]
+ "lines": ["C3d", "13", "15B", "15C", "U1", "H"]
},
{
"stopId": 2840,
@@ -3136,10 +2290,7 @@
},
"latitude": 42.241698248,
"longitude": -8.665209215,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 2850,
@@ -3148,10 +2299,7 @@
},
"latitude": 42.241676405,
"longitude": -8.665026825,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 2870,
@@ -3160,10 +2308,7 @@
},
"latitude": 42.237397409,
"longitude": -8.694169154,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 2880,
@@ -3172,10 +2317,7 @@
},
"latitude": 42.239331582,
"longitude": -8.692983618,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 2910,
@@ -3184,10 +2326,7 @@
},
"latitude": 42.241655974,
"longitude": -8.692827561,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 2920,
@@ -3196,10 +2335,7 @@
},
"latitude": 42.235852081,
"longitude": -8.695592417,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 2930,
@@ -3208,10 +2344,7 @@
},
"latitude": 42.235377808,
"longitude": -8.695695331,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 2950,
@@ -3220,10 +2353,7 @@
},
"latitude": 42.204307169,
"longitude": -8.729719236,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 2960,
@@ -3232,10 +2362,7 @@
},
"latitude": 42.20073699,
"longitude": -8.738895516,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 2970,
@@ -3244,10 +2371,7 @@
},
"latitude": 42.201317829,
"longitude": -8.735636365,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 2980,
@@ -3256,10 +2380,7 @@
},
"latitude": 42.200758846,
"longitude": -8.739043037,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 2990,
@@ -3268,10 +2389,7 @@
},
"latitude": 42.203792573,
"longitude": -8.729630723,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 3000,
@@ -3280,10 +2398,7 @@
},
"latitude": 42.201188677,
"longitude": -8.733208966,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 3010,
@@ -3292,10 +2407,7 @@
},
"latitude": 42.20121252,
"longitude": -8.735711467,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 3020,
@@ -3304,10 +2416,7 @@
},
"latitude": 42.201218481,
"longitude": -8.733509374,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 3030,
@@ -3316,10 +2425,7 @@
},
"latitude": 42.194702579,
"longitude": -8.721025195,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 3050,
@@ -3328,9 +2434,7 @@
},
"latitude": 42.192360267,
"longitude": -8.756680959,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 3052,
@@ -3339,9 +2443,7 @@
},
"latitude": 42.216966631,
"longitude": -8.729813845,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 3060,
@@ -3350,9 +2452,7 @@
},
"latitude": 42.224698049,
"longitude": -8.701749123,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3070,
@@ -3361,9 +2461,7 @@
},
"latitude": 42.224816342,
"longitude": -8.701565998,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3080,
@@ -3372,9 +2470,7 @@
},
"latitude": 42.1873653089623,
"longitude": -8.800886236766305,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 3090,
@@ -3383,11 +2479,7 @@
},
"latitude": 42.191019711713736,
"longitude": -8.799628565094565,
- "lines": [
- "C3d",
- "10",
- "11"
- ]
+ "lines": ["C3d", "10", "11"]
},
{
"stopId": 3100,
@@ -3396,10 +2488,7 @@
},
"latitude": 42.184766843,
"longitude": -8.802180879,
- "lines": [
- "11",
- "12A"
- ]
+ "lines": ["11", "12A"]
},
{
"stopId": 3110,
@@ -3408,9 +2497,7 @@
},
"latitude": 42.184416675,
"longitude": -8.802179713,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 3120,
@@ -3419,10 +2506,7 @@
},
"latitude": 42.187488521491225,
"longitude": -8.801226626055183,
- "lines": [
- "11",
- "12A"
- ]
+ "lines": ["11", "12A"]
},
{
"stopId": 3130,
@@ -3431,9 +2515,7 @@
},
"latitude": 42.191024803868736,
"longitude": -8.799397387002196,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 3140,
@@ -3442,9 +2524,7 @@
},
"latitude": 42.15800346,
"longitude": -8.686134691,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 3150,
@@ -3453,9 +2533,7 @@
},
"latitude": 42.157661469,
"longitude": -8.685973759,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 3160,
@@ -3464,10 +2542,7 @@
},
"latitude": 42.206593246,
"longitude": -8.721651793,
- "lines": [
- "18B",
- "18H"
- ]
+ "lines": ["18B", "18H"]
},
{
"stopId": 3170,
@@ -3476,9 +2551,7 @@
},
"latitude": 42.220968446,
"longitude": -8.720400826,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 3180,
@@ -3487,10 +2560,7 @@
},
"latitude": 42.21955863,
"longitude": -8.711410119,
- "lines": [
- "18B",
- "18H"
- ]
+ "lines": ["18B", "18H"]
},
{
"stopId": 3190,
@@ -3499,10 +2569,7 @@
},
"latitude": 42.219681782,
"longitude": -8.711385979,
- "lines": [
- "18B",
- "18H"
- ]
+ "lines": ["18B", "18H"]
},
{
"stopId": 3230,
@@ -3511,6 +2578,7 @@
},
"latitude": 42.236471452,
"longitude": -8.720164905,
+<<<<<<< HEAD
"lines": [
"A",
"5A",
@@ -3524,6 +2592,9 @@
"alert": "warning",
"title": "L17 no realiza parada",
"message": "Con motivo de las atracciones navideñas, la línea 17 no realiza parada en esta ubicación.\nSe puede tomar en Urzaiz, 13 (cruce República Argentina).\n"
+=======
+ "lines": ["A", "5A", "9B", "11", "15B", "15C", "16", "17"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 3240,
@@ -3532,19 +2603,7 @@
},
"latitude": 42.22214729,
"longitude": -8.734167916,
- "lines": [
- "A",
- "5A",
- "5B",
- "10",
- "11",
- "13",
- "N4",
- "U1",
- "H1",
- "H",
- "VTS"
- ]
+ "lines": ["A", "5A", "5B", "10", "11", "13", "N4", "U1", "H1", "H", "VTS"]
},
{
"stopId": 3250,
@@ -3553,13 +2612,7 @@
},
"latitude": 42.222378625,
"longitude": -8.734134247,
- "lines": [
- "C1",
- "A",
- "10",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "A", "10", "N4", "H1"]
},
{
"stopId": 3260,
@@ -3568,10 +2621,14 @@
},
"latitude": 42.226287696,
"longitude": -8.737475832,
+<<<<<<< HEAD
"lines": [
"15B",
"15C"
]
+=======
+ "lines": ["15B"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 3270,
@@ -3580,10 +2637,7 @@
},
"latitude": 42.226490285,
"longitude": -8.73744901,
- "lines": [
- "10",
- "15B"
- ]
+ "lines": ["10", "15B"]
},
{
"stopId": 3280,
@@ -3592,9 +2646,7 @@
},
"latitude": 42.188898503,
"longitude": -8.776299224,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 3290,
@@ -3603,11 +2655,7 @@
},
"latitude": 42.213397685,
"longitude": -8.72248211,
- "lines": [
- "A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "18B", "18H"]
},
{
"stopId": 3300,
@@ -3616,11 +2664,7 @@
},
"latitude": 42.211751348,
"longitude": -8.721691531,
- "lines": [
- "A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "18B", "18H"]
},
{
"stopId": 3310,
@@ -3629,11 +2673,7 @@
},
"latitude": 42.209233023,
"longitude": -8.720666368,
- "lines": [
- "A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "18B", "18H"]
},
{
"stopId": 3320,
@@ -3642,11 +2682,7 @@
},
"latitude": 42.210154848,
"longitude": -8.720902403,
- "lines": [
- "A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "18B", "18H"]
},
{
"stopId": 3350,
@@ -3655,10 +2691,7 @@
},
"latitude": 42.230911796,
"longitude": -8.722711253,
- "lines": [
- "12A",
- "27"
- ]
+ "lines": ["12A", "27"]
},
{
"stopId": 3360,
@@ -3667,9 +2700,7 @@
},
"latitude": 42.237803518,
"longitude": -8.704409031,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 3370,
@@ -3678,10 +2709,7 @@
},
"latitude": 42.205676226,
"longitude": -8.693112047,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3380,
@@ -3690,10 +2718,7 @@
},
"latitude": 42.205623108,
"longitude": -8.693239335,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3390,
@@ -3702,10 +2727,7 @@
},
"latitude": 42.205296644,
"longitude": -8.692558914,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3400,
@@ -3714,9 +2736,7 @@
},
"latitude": 42.163584451,
"longitude": -8.716088728,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 3420,
@@ -3725,13 +2745,7 @@
},
"latitude": 42.208071495,
"longitude": -8.731366082,
- "lines": [
- "7",
- "12B",
- "17",
- "27",
- "U1"
- ]
+ "lines": ["7", "12B", "17", "27", "U1"]
},
{
"stopId": 3430,
@@ -3740,10 +2754,7 @@
},
"latitude": 42.215621206,
"longitude": -8.67221512,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 3450,
@@ -3752,10 +2763,7 @@
},
"latitude": 42.194732286,
"longitude": -8.769245322,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3460,
@@ -3764,10 +2772,7 @@
},
"latitude": 42.203197031,
"longitude": -8.753437723,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3470,
@@ -3776,10 +2781,7 @@
},
"latitude": 42.193581709,
"longitude": -8.772496159,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3480,
@@ -3788,10 +2790,7 @@
},
"latitude": 42.196095467,
"longitude": -8.766230519,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3490,
@@ -3800,10 +2799,7 @@
},
"latitude": 42.193613504,
"longitude": -8.772222574,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3500,
@@ -3812,10 +2808,7 @@
},
"latitude": 42.194553241,
"longitude": -8.770325583,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3510,
@@ -3824,11 +2817,7 @@
},
"latitude": 42.202849227,
"longitude": -8.753870291,
- "lines": [
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["11", "29", "VTS"]
},
{
"stopId": 3520,
@@ -3837,10 +2826,7 @@
},
"latitude": 42.200000035,
"longitude": -8.759107913,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3530,
@@ -3849,10 +2835,7 @@
},
"latitude": 42.199773285,
"longitude": -8.759958845,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3540,
@@ -3861,10 +2844,7 @@
},
"latitude": 42.19617384,
"longitude": -8.766295392,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 3550,
@@ -3873,9 +2853,7 @@
},
"latitude": 42.19747765,
"longitude": -8.688158543,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3560,
@@ -3884,9 +2862,7 @@
},
"latitude": 42.209126518,
"longitude": -8.695599845,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3570,
@@ -3895,9 +2871,7 @@
},
"latitude": 42.209576972,
"longitude": -8.695580071,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3572,
@@ -3906,9 +2880,7 @@
},
"latitude": 42.208457815,
"longitude": -8.695017358,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 3574,
@@ -3917,9 +2889,7 @@
},
"latitude": 42.208533311,
"longitude": -8.694987854,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 3580,
@@ -3928,10 +2898,7 @@
},
"latitude": 42.204440318,
"longitude": -8.690871804,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3590,
@@ -3940,10 +2907,7 @@
},
"latitude": 42.204458432,
"longitude": -8.690765895,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3600,
@@ -3952,9 +2916,7 @@
},
"latitude": 42.21246424,
"longitude": -8.697218847,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3610,
@@ -3963,10 +2925,7 @@
},
"latitude": 42.204446407,
"longitude": -8.68809021,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3620,
@@ -3975,9 +2934,7 @@
},
"latitude": 42.202562995,
"longitude": -8.685437577,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3630,
@@ -3986,10 +2943,7 @@
},
"latitude": 42.20274418,
"longitude": -8.684443742,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 3640,
@@ -3998,9 +2952,7 @@
},
"latitude": 42.197359418,
"longitude": -8.688113004,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3650,
@@ -4009,9 +2961,7 @@
},
"latitude": 42.199275919,
"longitude": -8.689032944,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3660,
@@ -4020,9 +2970,7 @@
},
"latitude": 42.212227656,
"longitude": -8.697028614,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3670,
@@ -4031,9 +2979,7 @@
},
"latitude": 42.194968863,
"longitude": -8.689201981,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3680,
@@ -4042,9 +2988,7 @@
},
"latitude": 42.211144971,
"longitude": -8.69652789,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3690,
@@ -4053,9 +2997,7 @@
},
"latitude": 42.210947345,
"longitude": -8.69627482,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3700,
@@ -4064,9 +3006,7 @@
},
"latitude": 42.194055385,
"longitude": -8.692079677,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3710,
@@ -4075,9 +3015,7 @@
},
"latitude": 42.193846109,
"longitude": -8.69200489,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3720,
@@ -4086,9 +3024,7 @@
},
"latitude": 42.1948986,
"longitude": -8.689213754,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3730,
@@ -4097,9 +3033,7 @@
},
"latitude": 42.199203404,
"longitude": -8.688880116,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3740,
@@ -4108,11 +3042,7 @@
},
"latitude": 42.197431882,
"longitude": -8.790144971,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 3750,
@@ -4121,10 +3051,7 @@
},
"latitude": 42.193128934,
"longitude": -8.797957944,
- "lines": [
- "10",
- "11"
- ]
+ "lines": ["10", "11"]
},
{
"stopId": 3760,
@@ -4133,10 +3060,7 @@
},
"latitude": 42.1957321,
"longitude": -8.795211362,
- "lines": [
- "10",
- "11"
- ]
+ "lines": ["10", "11"]
},
{
"stopId": 3770,
@@ -4145,11 +3069,7 @@
},
"latitude": 42.1950348,
"longitude": -8.795701844,
- "lines": [
- "C3d",
- "10",
- "11"
- ]
+ "lines": ["C3d", "10", "11"]
},
{
"stopId": 3780,
@@ -4158,11 +3078,7 @@
},
"latitude": 42.193041793,
"longitude": -8.797590453,
- "lines": [
- "C3d",
- "10",
- "11"
- ]
+ "lines": ["C3d", "10", "11"]
},
{
"stopId": 3790,
@@ -4171,11 +3087,7 @@
},
"latitude": 42.201898697,
"longitude": -8.781706742,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 3800,
@@ -4184,9 +3096,7 @@
},
"latitude": 42.199639519,
"longitude": -8.785727373,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 3810,
@@ -4195,11 +3105,7 @@
},
"latitude": 42.200106486,
"longitude": -8.785121194,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 3820,
@@ -4208,9 +3114,7 @@
},
"latitude": 42.182659954,
"longitude": -8.699663442,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 3830,
@@ -4219,9 +3123,7 @@
},
"latitude": 42.180635405,
"longitude": -8.696958243,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 3840,
@@ -4230,9 +3132,7 @@
},
"latitude": 42.181019011,
"longitude": -8.696918009,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 3850,
@@ -4241,10 +3141,7 @@
},
"latitude": 42.167933917,
"longitude": -8.692758811,
- "lines": [
- "A",
- "U1"
- ]
+ "lines": ["A", "U1"]
},
{
"stopId": 3860,
@@ -4253,10 +3150,7 @@
},
"latitude": 42.168248021,
"longitude": -8.692608608,
- "lines": [
- "A",
- "U1"
- ]
+ "lines": ["A", "U1"]
},
{
"stopId": 3870,
@@ -4265,9 +3159,7 @@
},
"latitude": 42.182749988,
"longitude": -8.699953254,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 3880,
@@ -4276,9 +3168,7 @@
},
"latitude": 42.194829735,
"longitude": -8.699040324,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3890,
@@ -4287,10 +3177,7 @@
},
"latitude": 42.193625246,
"longitude": -8.7014263,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 3900,
@@ -4299,10 +3186,7 @@
},
"latitude": 42.19232927,
"longitude": -8.704749414,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 3910,
@@ -4311,9 +3195,7 @@
},
"latitude": 42.195404022,
"longitude": -8.695794851,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 3920,
@@ -4322,10 +3204,7 @@
},
"latitude": 42.195725689,
"longitude": -8.697154293,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 3930,
@@ -4334,10 +3213,7 @@
},
"latitude": 42.19287831,
"longitude": -8.703506202,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 3940,
@@ -4346,9 +3222,7 @@
},
"latitude": 42.196165214,
"longitude": -8.759890011,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 3950,
@@ -4357,9 +3231,7 @@
},
"latitude": 42.196014193,
"longitude": -8.759919516,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 3960,
@@ -4368,14 +3240,7 @@
},
"latitude": 42.213984907,
"longitude": -8.682160511,
- "lines": [
- "12A",
- "12B",
- "13",
- "15B",
- "15C",
- "31"
- ]
+ "lines": ["12A", "12B", "13", "15B", "15C", "31"]
},
{
"stopId": 3970,
@@ -4384,12 +3249,7 @@
},
"latitude": 42.215872123,
"longitude": -8.679765298,
- "lines": [
- "12B",
- "15B",
- "15C",
- "U2"
- ]
+ "lines": ["12B", "15B", "15C", "U2"]
},
{
"stopId": 3980,
@@ -4398,15 +3258,7 @@
},
"latitude": 42.21620386,
"longitude": -8.681570425,
- "lines": [
- "12A",
- "12B",
- "13",
- "15B",
- "15C",
- "31",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "15B", "15C", "31", "U2"]
},
{
"stopId": 4000,
@@ -4415,9 +3267,7 @@
},
"latitude": 42.182434997,
"longitude": -8.764713761,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4010,
@@ -4426,9 +3276,7 @@
},
"latitude": 42.184148566,
"longitude": -8.767237312,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4020,
@@ -4437,9 +3285,7 @@
},
"latitude": 42.187056187,
"longitude": -8.769605703,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4030,
@@ -4448,9 +3294,7 @@
},
"latitude": 42.184118753,
"longitude": -8.767049558,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4040,
@@ -4459,9 +3303,7 @@
},
"latitude": 42.18661248,
"longitude": -8.769574881,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4050,
@@ -4470,9 +3312,7 @@
},
"latitude": 42.182111026,
"longitude": -8.76479691,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4060,
@@ -4481,9 +3321,7 @@
},
"latitude": 42.164326088,
"longitude": -8.716892619,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4070,
@@ -4492,9 +3330,7 @@
},
"latitude": 42.162254659,
"longitude": -8.713740793,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4080,
@@ -4503,9 +3339,7 @@
},
"latitude": 42.162252671,
"longitude": -8.71400365,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4090,
@@ -4514,9 +3348,7 @@
},
"latitude": 42.170369621,
"longitude": -8.708506123,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4100,
@@ -4525,9 +3357,7 @@
},
"latitude": 42.16978602,
"longitude": -8.708967287,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4110,
@@ -4536,9 +3366,7 @@
},
"latitude": 42.165331611,
"longitude": -8.714862589,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4120,
@@ -4547,9 +3375,7 @@
},
"latitude": 42.166399713,
"longitude": -8.711237684,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4130,
@@ -4558,9 +3384,7 @@
},
"latitude": 42.16561193,
"longitude": -8.714589004,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4140,
@@ -4569,9 +3393,7 @@
},
"latitude": 42.166208944,
"longitude": -8.711992518,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4150,
@@ -4580,11 +3402,7 @@
},
"latitude": 42.217620909,
"longitude": -8.712429612,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 4160,
@@ -4593,9 +3411,7 @@
},
"latitude": 42.217849364,
"longitude": -8.710994711,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 4170,
@@ -4604,11 +3420,7 @@
},
"latitude": 42.217345186,
"longitude": -8.713011334,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 4200,
@@ -4617,10 +3429,7 @@
},
"latitude": 42.215236994,
"longitude": -8.707384971,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 4210,
@@ -4629,10 +3438,7 @@
},
"latitude": 42.212141078,
"longitude": -8.704563545,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 4220,
@@ -4641,10 +3447,7 @@
},
"latitude": 42.213737557,
"longitude": -8.706283115,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 4230,
@@ -4653,10 +3456,7 @@
},
"latitude": 42.215373761,
"longitude": -8.707378349,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 4240,
@@ -4665,10 +3465,7 @@
},
"latitude": 42.212378349,
"longitude": -8.704729584,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 4250,
@@ -4677,10 +3474,7 @@
},
"latitude": 42.213377597,
"longitude": -8.70601168,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 4280,
@@ -4689,11 +3483,7 @@
},
"latitude": 42.224507337,
"longitude": -8.713465538,
- "lines": [
- "14",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18B", "18H"]
},
{
"stopId": 4290,
@@ -4702,12 +3492,7 @@
},
"latitude": 42.227785739,
"longitude": -8.719460889,
- "lines": [
- "14",
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18A", "18B", "18H"]
},
{
"stopId": 4300,
@@ -4716,11 +3501,7 @@
},
"latitude": 42.22278924,
"longitude": -8.711754289,
- "lines": [
- "14",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18B", "18H"]
},
{
"stopId": 4310,
@@ -4729,11 +3510,7 @@
},
"latitude": 42.222713762,
"longitude": -8.711555806,
- "lines": [
- "14",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18B", "18H"]
},
{
"stopId": 4320,
@@ -4742,11 +3519,7 @@
},
"latitude": 42.227716225,
"longitude": -8.719750568,
- "lines": [
- "14",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18B", "18H"]
},
{
"stopId": 4330,
@@ -4755,12 +3528,7 @@
},
"latitude": 42.226463146,
"longitude": -8.71614062,
- "lines": [
- "14",
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18A", "18B", "18H"]
},
{
"stopId": 4340,
@@ -4769,11 +3537,7 @@
},
"latitude": 42.226112503,
"longitude": -8.715718376,
- "lines": [
- "14",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18B", "18H"]
},
{
"stopId": 4350,
@@ -4782,11 +3546,7 @@
},
"latitude": 42.224562952,
"longitude": -8.713390437,
- "lines": [
- "14",
- "18B",
- "18H"
- ]
+ "lines": ["14", "18B", "18H"]
},
{
"stopId": 4440,
@@ -4795,9 +3555,7 @@
},
"latitude": 42.183275038,
"longitude": -8.742437444,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 4450,
@@ -4806,9 +3564,7 @@
},
"latitude": 42.185081179,
"longitude": -8.748029634,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 4460,
@@ -4817,9 +3573,7 @@
},
"latitude": 42.18366712,
"longitude": -8.744402777,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 4490,
@@ -4828,9 +3582,7 @@
},
"latitude": 42.187522648,
"longitude": -8.772977937,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4500,
@@ -4839,9 +3591,7 @@
},
"latitude": 42.188761213,
"longitude": -8.775973652,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4510,
@@ -4850,9 +3600,7 @@
},
"latitude": 42.187542924,
"longitude": -8.772887753,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 4520,
@@ -4861,9 +3609,7 @@
},
"latitude": 42.175884385,
"longitude": -8.670789023,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 4530,
@@ -4872,9 +3618,7 @@
},
"latitude": 42.199681015,
"longitude": -8.668860289,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 4540,
@@ -4883,9 +3627,7 @@
},
"latitude": 42.181370416,
"longitude": -8.667861084,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 4550,
@@ -4894,10 +3636,7 @@
},
"latitude": 42.199945182,
"longitude": -8.669085873,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 4560,
@@ -4906,9 +3645,7 @@
},
"latitude": 42.177017792,
"longitude": -8.721519832,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4570,
@@ -4917,10 +3654,7 @@
},
"latitude": 42.183987864,
"longitude": -8.724154939,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 4580,
@@ -4929,10 +3663,7 @@
},
"latitude": 42.180249473,
"longitude": -8.721850007,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 4590,
@@ -4941,9 +3672,7 @@
},
"latitude": 42.180670846,
"longitude": -8.721533506,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4600,
@@ -4952,10 +3681,7 @@
},
"latitude": 42.176419487,
"longitude": -8.72197849,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 4610,
@@ -4964,10 +3690,7 @@
},
"latitude": 42.172481228,
"longitude": -8.723905842,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 4620,
@@ -4976,9 +3699,7 @@
},
"latitude": 42.172330151,
"longitude": -8.723766367,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4630,
@@ -4987,10 +3708,7 @@
},
"latitude": 42.165721529,
"longitude": -8.720146278,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 4640,
@@ -4999,9 +3717,7 @@
},
"latitude": 42.18659932,
"longitude": -8.719619913,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4650,
@@ -5010,10 +3726,7 @@
},
"latitude": 42.186641056,
"longitude": -8.719853265,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 4660,
@@ -5022,9 +3735,7 @@
},
"latitude": 42.183997801,
"longitude": -8.723857214,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 4670,
@@ -5033,9 +3744,7 @@
},
"latitude": 42.193836069,
"longitude": -8.776441689,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4680,
@@ -5044,9 +3753,7 @@
},
"latitude": 42.19429691,
"longitude": -8.786574405,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4690,
@@ -5055,9 +3762,7 @@
},
"latitude": 42.196307191,
"longitude": -8.790777973,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4700,
@@ -5066,9 +3771,7 @@
},
"latitude": 42.194014721,
"longitude": -8.777055245,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4710,
@@ -5077,9 +3780,7 @@
},
"latitude": 42.194064592,
"longitude": -8.781224067,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4720,
@@ -5088,9 +3789,7 @@
},
"latitude": 42.193937416,
"longitude": -8.781634173,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4730,
@@ -5099,9 +3798,7 @@
},
"latitude": 42.19405266,
"longitude": -8.78551292,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4740,
@@ -5110,9 +3807,7 @@
},
"latitude": 42.196595321,
"longitude": -8.791019372,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 4750,
@@ -5121,13 +3816,7 @@
},
"latitude": 42.213983883,
"longitude": -8.697464269,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "U2", "H3"]
},
{
"stopId": 4760,
@@ -5136,13 +3825,7 @@
},
"latitude": 42.216359908,
"longitude": -8.693040769,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "U2", "H3"]
},
{
"stopId": 4770,
@@ -5151,13 +3834,7 @@
},
"latitude": 42.219822923,
"longitude": -8.684198247,
- "lines": [
- "12A",
- "12B",
- "13",
- "31",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "31", "U2"]
},
{
"stopId": 4780,
@@ -5166,13 +3843,7 @@
},
"latitude": 42.220845201,
"longitude": -8.680581909,
- "lines": [
- "12A",
- "12B",
- "13",
- "31",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "31", "U2"]
},
{
"stopId": 4790,
@@ -5181,12 +3852,7 @@
},
"latitude": 42.220436017,
"longitude": -8.683690589,
- "lines": [
- "12A",
- "12B",
- "13",
- "31"
- ]
+ "lines": ["12A", "12B", "13", "31"]
},
{
"stopId": 4800,
@@ -5195,13 +3861,7 @@
},
"latitude": 42.218049288,
"longitude": -8.679899408,
- "lines": [
- "12A",
- "12B",
- "13",
- "31",
- "U2"
- ]
+ "lines": ["12A", "12B", "13", "31", "U2"]
},
{
"stopId": 4810,
@@ -5210,12 +3870,7 @@
},
"latitude": 42.21827574,
"longitude": -8.679588272,
- "lines": [
- "12A",
- "12B",
- "13",
- "31"
- ]
+ "lines": ["12A", "12B", "13", "31"]
},
{
"stopId": 4820,
@@ -5224,12 +3879,7 @@
},
"latitude": 42.216687676,
"longitude": -8.693917852,
- "lines": [
- "12A",
- "12B",
- "13",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "H3"]
},
{
"stopId": 4830,
@@ -5238,12 +3888,7 @@
},
"latitude": 42.218719793,
"longitude": -8.690012555,
- "lines": [
- "12A",
- "12B",
- "13",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "H3"]
},
{
"stopId": 4840,
@@ -5252,13 +3897,7 @@
},
"latitude": 42.218745617,
"longitude": -8.689009409,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "U2", "H3"]
},
{
"stopId": 4850,
@@ -5267,11 +3906,7 @@
},
"latitude": 42.216448197,
"longitude": -8.68163748,
- "lines": [
- "12A",
- "13",
- "31"
- ]
+ "lines": ["12A", "13", "31"]
},
{
"stopId": 4860,
@@ -5280,10 +3915,7 @@
},
"latitude": 42.182744465,
"longitude": -8.70286123,
- "lines": [
- "A",
- "6"
- ]
+ "lines": ["A", "6"]
},
{
"stopId": 4870,
@@ -5292,11 +3924,7 @@
},
"latitude": 42.192029809,
"longitude": -8.712623715,
- "lines": [
- "A",
- "27",
- "H3"
- ]
+ "lines": ["A", "27", "H3"]
},
{
"stopId": 4880,
@@ -5305,10 +3933,7 @@
},
"latitude": 42.188021902,
"longitude": -8.711457595,
- "lines": [
- "A",
- "H3"
- ]
+ "lines": ["A", "H3"]
},
{
"stopId": 4890,
@@ -5317,10 +3942,7 @@
},
"latitude": 42.186610014,
"longitude": -8.710023944,
- "lines": [
- "A",
- "6"
- ]
+ "lines": ["A", "6"]
},
{
"stopId": 4900,
@@ -5329,11 +3951,7 @@
},
"latitude": 42.188304845,
"longitude": -8.711474749,
- "lines": [
- "A",
- "27",
- "H3"
- ]
+ "lines": ["A", "27", "H3"]
},
{
"stopId": 4910,
@@ -5342,10 +3960,7 @@
},
"latitude": 42.19205763,
"longitude": -8.712722956,
- "lines": [
- "A",
- "H3"
- ]
+ "lines": ["A", "H3"]
},
{
"stopId": 4920,
@@ -5354,10 +3969,7 @@
},
"latitude": 42.186610342,
"longitude": -8.709937804,
- "lines": [
- "A",
- "6"
- ]
+ "lines": ["A", "6"]
},
{
"stopId": 4930,
@@ -5366,10 +3978,7 @@
},
"latitude": 42.246018558,
"longitude": -8.669287042,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 4940,
@@ -5378,10 +3987,7 @@
},
"latitude": 42.245450719,
"longitude": -8.672406783,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 4960,
@@ -5390,9 +3996,7 @@
},
"latitude": 42.256210875,
"longitude": -8.696882723,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 4970,
@@ -5401,9 +4005,7 @@
},
"latitude": 42.255883312,
"longitude": -8.696812986,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 4980,
@@ -5412,9 +4014,7 @@
},
"latitude": 42.257539061,
"longitude": -8.697019814,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 5000,
@@ -5423,9 +4023,7 @@
},
"latitude": 42.250121395,
"longitude": -8.696122376,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 5010,
@@ -5434,9 +4032,7 @@
},
"latitude": 42.254169539,
"longitude": -8.697752273,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 5020,
@@ -5445,9 +4041,7 @@
},
"latitude": 42.254104511,
"longitude": -8.697655199,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 5030,
@@ -5456,9 +4050,7 @@
},
"latitude": 42.272502528,
"longitude": -8.664787252,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 5040,
@@ -5467,9 +4059,7 @@
},
"latitude": 42.222543586,
"longitude": -8.717809812,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 5060,
@@ -5478,11 +4068,7 @@
},
"latitude": 42.212676247,
"longitude": -8.739585545,
- "lines": [
- "16",
- "23",
- "N4"
- ]
+ "lines": ["16", "23", "N4"]
},
{
"stopId": 5070,
@@ -5491,10 +4077,7 @@
},
"latitude": 42.220535836,
"longitude": -8.74141599,
- "lines": [
- "C3i",
- "5B"
- ]
+ "lines": ["C3i", "5B"]
},
{
"stopId": 5090,
@@ -5503,10 +4086,7 @@
},
"latitude": 42.220359068,
"longitude": -8.738861999,
- "lines": [
- "C3i",
- "5B"
- ]
+ "lines": ["C3i", "5B"]
},
{
"stopId": 5120,
@@ -5515,11 +4095,7 @@
},
"latitude": 42.204935234,
"longitude": -8.722453969,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5140,
@@ -5528,10 +4104,7 @@
},
"latitude": 42.207336295,
"longitude": -8.72129506,
- "lines": [
- "18B",
- "18H"
- ]
+ "lines": ["18B", "18H"]
},
{
"stopId": 5160,
@@ -5540,11 +4113,7 @@
},
"latitude": 42.204783634,
"longitude": -8.722664062,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5170,
@@ -5553,10 +4122,7 @@
},
"latitude": 42.227529644,
"longitude": -8.66169041,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5180,
@@ -5565,10 +4131,7 @@
},
"latitude": 42.224562288,
"longitude": -8.66579419,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5190,
@@ -5577,10 +4140,7 @@
},
"latitude": 42.226051942,
"longitude": -8.663629647,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5200,
@@ -5589,10 +4149,7 @@
},
"latitude": 42.227533616,
"longitude": -8.661561664,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5220,
@@ -5601,10 +4158,7 @@
},
"latitude": 42.228984217,
"longitude": -8.658438326,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5230,
@@ -5613,10 +4167,7 @@
},
"latitude": 42.230261894,
"longitude": -8.653683012,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5250,
@@ -5625,10 +4176,7 @@
},
"latitude": 42.223048763,
"longitude": -8.667374011,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5260,
@@ -5637,10 +4185,7 @@
},
"latitude": 42.222838218,
"longitude": -8.667795118,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5270,
@@ -5649,10 +4194,7 @@
},
"latitude": 42.224367639,
"longitude": -8.665989991,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5280,
@@ -5661,10 +4203,7 @@
},
"latitude": 42.225940716,
"longitude": -8.663830813,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 5290,
@@ -5673,12 +4212,7 @@
},
"latitude": 42.215060936,
"longitude": -8.741309568,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 5300,
@@ -5687,11 +4221,7 @@
},
"latitude": 42.214827343,
"longitude": -8.741319027,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 5310,
@@ -5700,12 +4230,7 @@
},
"latitude": 42.208024308,
"longitude": -8.750412985,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 5320,
@@ -5714,11 +4239,7 @@
},
"latitude": 42.213244058,
"longitude": -8.743657913,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 5330,
@@ -5727,11 +4248,7 @@
},
"latitude": 42.220228436,
"longitude": -8.733426296,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 5340,
@@ -5740,11 +4257,7 @@
},
"latitude": 42.208621114,
"longitude": -8.749572184,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 5350,
@@ -5753,12 +4266,7 @@
},
"latitude": 42.216779248,
"longitude": -8.738705143,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 5360,
@@ -5767,12 +4275,7 @@
},
"latitude": 42.212804215,
"longitude": -8.744506761,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 5370,
@@ -5781,11 +4284,7 @@
},
"latitude": 42.216928527,
"longitude": -8.738268035,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 5380,
@@ -5794,12 +4293,7 @@
},
"latitude": 42.219743053,
"longitude": -8.734322187,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 5390,
@@ -5808,9 +4302,7 @@
},
"latitude": 42.179556959,
"longitude": -8.761854527,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 5400,
@@ -5819,13 +4311,7 @@
},
"latitude": 42.213518168,
"longitude": -8.737719785,
- "lines": [
- "7",
- "12B",
- "17",
- "N4",
- "H1"
- ]
+ "lines": ["7", "12B", "17", "N4", "H1"]
},
{
"stopId": 5410,
@@ -5834,17 +4320,7 @@
},
"latitude": 42.219689698,
"longitude": -8.733384686,
- "lines": [
- "A",
- "16",
- "23",
- "N4",
- "U1",
- "H1",
- "H",
- "LZH",
- "PSA 1"
- ]
+ "lines": ["A", "16", "23", "N4", "U1", "H1", "H", "LZH", "PSA 1"]
},
{
"stopId": 5420,
@@ -5853,13 +4329,7 @@
},
"latitude": 42.220297406,
"longitude": -8.732924981,
- "lines": [
- "7",
- "12B",
- "17",
- "N4",
- "H1"
- ]
+ "lines": ["7", "12B", "17", "N4", "H1"]
},
{
"stopId": 5430,
@@ -5868,17 +4338,7 @@
},
"latitude": 42.217381871,
"longitude": -8.734669814,
- "lines": [
- "A",
- "16",
- "23",
- "N4",
- "U1",
- "H1",
- "H",
- "LZH",
- "PSA 1"
- ]
+ "lines": ["A", "16", "23", "N4", "U1", "H1", "H", "LZH", "PSA 1"]
},
{
"stopId": 5440,
@@ -5887,13 +4347,7 @@
},
"latitude": 42.217288508,
"longitude": -8.73454375,
- "lines": [
- "7",
- "12B",
- "17",
- "N4",
- "H1"
- ]
+ "lines": ["7", "12B", "17", "N4", "H1"]
},
{
"stopId": 5450,
@@ -5902,17 +4356,7 @@
},
"latitude": 42.215348678,
"longitude": -8.736273638,
- "lines": [
- "A",
- "16",
- "23",
- "N4",
- "U1",
- "H1",
- "H",
- "LZH",
- "PSA 1"
- ]
+ "lines": ["A", "16", "23", "N4", "U1", "H1", "H", "LZH", "PSA 1"]
},
{
"stopId": 5460,
@@ -5921,13 +4365,7 @@
},
"latitude": 42.215301002,
"longitude": -8.736123434,
- "lines": [
- "7",
- "12B",
- "17",
- "N4",
- "H1"
- ]
+ "lines": ["7", "12B", "17", "N4", "H1"]
},
{
"stopId": 5470,
@@ -5936,17 +4374,7 @@
},
"latitude": 42.21315264,
"longitude": -8.738470803,
- "lines": [
- "A",
- "16",
- "23",
- "N4",
- "U1",
- "H1",
- "H",
- "LZH",
- "PSA 1"
- ]
+ "lines": ["A", "16", "23", "N4", "U1", "H1", "H", "LZH", "PSA 1"]
},
{
"stopId": 5480,
@@ -5955,9 +4383,7 @@
},
"latitude": 42.186179757,
"longitude": -8.748888329,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 5490,
@@ -5966,15 +4392,7 @@
},
"latitude": 42.241557555,
"longitude": -8.707094861,
- "lines": [
- "C3i",
- "5B",
- "10",
- "17",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "17", "N1", "H3", "VTS"]
},
{
"stopId": 5500,
@@ -5983,17 +4401,7 @@
},
"latitude": 42.24178025,
"longitude": -8.706720936,
- "lines": [
- "C3d",
- "5B",
- "10",
- "17",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5B", "10", "17", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 5510,
@@ -6002,14 +4410,7 @@
},
"latitude": 42.238290358,
"longitude": -8.71014103,
- "lines": [
- "C3i",
- "5B",
- "10",
- "17",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "17", "N1", "VTS"]
},
{
"stopId": 5520,
@@ -6042,6 +4443,7 @@
"PSA 4",
"VTS"
],
+<<<<<<< HEAD
"amenities": [
"shelter",
"display"
@@ -6050,6 +4452,9 @@
"alert": "error",
"title": "Cerrada por navidad",
"message": "Con motivo de las atracciones navideñas, esta parada queda anulada.\nLíneas C3, 10, N1, 5B, 16 y 17 en García Barbón, 43 (restaurante Porto Santo).\nLíneas 4A y 4C (dir. Coia), 7, 12B, 16 y 17 se pueden tomar en Colón, 26 (oficina Banco Sabadell).\n"
+=======
+ "amenities": ["shelter", "display"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 5530,
@@ -6058,6 +4463,7 @@
},
"latitude": 42.23720456,
"longitude": -8.718680736,
+<<<<<<< HEAD
"lines": [
"C3d",
"5B",
@@ -6074,6 +4480,10 @@
"alert": "error",
"title": "Cerrada por navidad",
"message": "Con motivo de las atracciones navideñas, esta parada queda anulada.\nLíneas C3 y 10 se pueden tomar en Rosalía de Castro 4 (detrás de ABANCA).\nResto de líneas en García Barbón 28 (pasando Alfonso XIII)\n"
+=======
+ "lines": ["C3d", "5B", "10", "17", "H2", "PSA 1"],
+ "amenities": ["shelter", "display"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 5540,
@@ -6082,6 +4492,7 @@
},
"latitude": 42.236759685,
"longitude": -8.716384581,
+<<<<<<< HEAD
"lines": [
"C3d",
"A",
@@ -6096,6 +4507,9 @@
"alert": "warning",
"title": "Líneas C3 y 10 no realizan parada",
"message": "Con motivo de las atracciones navideñas, las líneas C3 y 10 realizan\nprovisionalmente la parada en Rúa Oporto 28 (calle perpendicular a la parada).\n"
+=======
+ "lines": ["C3d", "A", "5B", "10", "16", "17", "24", "H2", "PSA 1"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 5560,
@@ -6104,17 +4518,7 @@
},
"latitude": 42.236896919,
"longitude": -8.712902905,
- "lines": [
- "C3d",
- "A",
- "5B",
- "10",
- "16",
- "17",
- "24",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "A", "5B", "10", "16", "17", "24", "H2", "PSA 1"]
},
{
"stopId": 5570,
@@ -6123,14 +4527,7 @@
},
"latitude": 42.237003397,
"longitude": -8.713586994,
- "lines": [
- "C3i",
- "5B",
- "10",
- "17",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "17", "N1", "VTS"]
},
{
"stopId": 5580,
@@ -6139,14 +4536,7 @@
},
"latitude": 42.238267348,
"longitude": -8.709873166,
- "lines": [
- "C3d",
- "5B",
- "10",
- "17",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "5B", "10", "17", "H2", "PSA 1"]
},
{
"stopId": 5590,
@@ -6155,11 +4545,7 @@
},
"latitude": 42.213057463,
"longitude": -8.670479203,
- "lines": [
- "12B",
- "15B",
- "15C"
- ]
+ "lines": ["12B", "15B", "15C"]
},
{
"stopId": 5600,
@@ -6168,17 +4554,7 @@
},
"latitude": 42.225140059,
"longitude": -8.72184818,
- "lines": [
- "C3i",
- "7",
- "11",
- "13",
- "15A",
- "16",
- "23",
- "29",
- "H2"
- ]
+ "lines": ["C3i", "7", "11", "13", "15A", "16", "23", "29", "H2"]
},
{
"stopId": 5610,
@@ -6210,17 +4586,7 @@
},
"latitude": 42.222321607,
"longitude": -8.726440421,
- "lines": [
- "C3d",
- "13",
- "15A",
- "23",
- "29",
- "U1",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "13", "15A", "23", "29", "U1", "U2", "H2", "PSA 1"]
},
{
"stopId": 5630,
@@ -6229,19 +4595,7 @@
},
"latitude": 42.222790356,
"longitude": -8.724940076,
- "lines": [
- "C3i",
- "7",
- "11",
- "13",
- "15A",
- "16",
- "23",
- "29",
- "U1",
- "U2",
- "H2"
- ]
+ "lines": ["C3i", "7", "11", "13", "15A", "16", "23", "29", "U1", "U2", "H2"]
},
{
"stopId": 5640,
@@ -6250,16 +4604,7 @@
},
"latitude": 42.220868033,
"longitude": -8.730264447,
- "lines": [
- "C3d",
- "13",
- "15A",
- "23",
- "29",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "13", "15A", "23", "29", "U2", "H2", "PSA 1"]
},
{
"stopId": 5650,
@@ -6268,17 +4613,7 @@
},
"latitude": 42.220971136,
"longitude": -8.729196245,
- "lines": [
- "C3i",
- "7",
- "11",
- "13",
- "15A",
- "16",
- "23",
- "29",
- "H2"
- ]
+ "lines": ["C3i", "7", "11", "13", "15A", "16", "23", "29", "H2"]
},
{
"stopId": 5660,
@@ -6310,15 +4645,7 @@
},
"latitude": 42.230988893,
"longitude": -8.71867283,
- "lines": [
- "C1",
- "12A",
- "12B",
- "14",
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["C1", "12A", "12B", "14", "18A", "18B", "18H"]
},
{
"stopId": 5680,
@@ -6327,15 +4654,7 @@
},
"latitude": 42.228173802,
"longitude": -8.720267623,
- "lines": [
- "C3d",
- "13",
- "15A",
- "23",
- "29",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "13", "15A", "23", "29", "H2", "PSA 1"]
},
{
"stopId": 5690,
@@ -6344,17 +4663,7 @@
},
"latitude": 42.226868266,
"longitude": -8.720637433,
- "lines": [
- "C3i",
- "7",
- "11",
- "13",
- "15A",
- "16",
- "23",
- "29",
- "H2"
- ]
+ "lines": ["C3i", "7", "11", "13", "15A", "16", "23", "29", "H2"]
},
{
"stopId": 5700,
@@ -6363,15 +4672,7 @@
},
"latitude": 42.225325884,
"longitude": -8.722106624,
- "lines": [
- "C3d",
- "13",
- "15A",
- "23",
- "29",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "13", "15A", "23", "29", "H2", "PSA 1"]
},
{
"stopId": 5710,
@@ -6380,9 +4681,7 @@
},
"latitude": 42.23003666347398,
"longitude": -8.707266671978003,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 5720,
@@ -6391,13 +4690,7 @@
},
"latitude": 42.23004933454558,
"longitude": -8.706947409683313,
- "lines": [
- "4C",
- "23",
- "31",
- "H2",
- "PSA 4"
- ]
+ "lines": ["4C", "23", "31", "H2", "PSA 4"]
},
{
"stopId": 5730,
@@ -6406,10 +4699,7 @@
},
"latitude": 42.227850036119314,
"longitude": -8.708105429626789,
- "lines": [
- "31",
- "H2"
- ]
+ "lines": ["31", "H2"]
},
{
"stopId": 5740,
@@ -6418,15 +4708,7 @@
},
"latitude": 42.22783722597372,
"longitude": -8.707849091551859,
- "lines": [
- "4C",
- "23",
- "31",
- "N4",
- "H2",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "23", "31", "N4", "H2", "PSA 4", "VTS"]
},
{
"stopId": 5750,
@@ -6435,15 +4717,7 @@
},
"latitude": 42.225785485,
"longitude": -8.708786105,
- "lines": [
- "4C",
- "23",
- "31",
- "N4",
- "H2",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "23", "31", "N4", "H2", "PSA 4", "VTS"]
},
{
"stopId": 5760,
@@ -6452,9 +4726,7 @@
},
"latitude": 42.16929549,
"longitude": -8.723249687,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 5770,
@@ -6463,10 +4735,7 @@
},
"latitude": 42.16911061,
"longitude": -8.723904146,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 5790,
@@ -6475,14 +4744,7 @@
},
"latitude": 42.214534062,
"longitude": -8.684756053,
- "lines": [
- "12A",
- "12B",
- "13",
- "15B",
- "15C",
- "31"
- ]
+ "lines": ["12A", "12B", "13", "15B", "15C", "31"]
},
{
"stopId": 5800,
@@ -6587,10 +4849,7 @@
},
"latitude": 42.201360896,
"longitude": -8.702877394,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 5850,
@@ -6599,10 +4858,7 @@
},
"latitude": 42.201154253,
"longitude": -8.702343635,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 5860,
@@ -6611,11 +4867,7 @@
},
"latitude": 42.21669522,
"longitude": -8.715884298,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 5870,
@@ -6624,9 +4876,7 @@
},
"latitude": 42.226432697,
"longitude": -8.731262013,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 5880,
@@ -6635,11 +4885,7 @@
},
"latitude": 42.226800566,
"longitude": -8.731799623,
- "lines": [
- "5A",
- "5B",
- "12A"
- ]
+ "lines": ["5A", "5B", "12A"]
},
{
"stopId": 5890,
@@ -6648,9 +4894,7 @@
},
"latitude": 42.222420533,
"longitude": -8.731996938,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 5900,
@@ -6659,11 +4903,7 @@
},
"latitude": 42.202071034,
"longitude": -8.723541884,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5910,
@@ -6672,11 +4912,7 @@
},
"latitude": 42.196213336,
"longitude": -8.721136467,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5920,
@@ -6685,11 +4921,7 @@
},
"latitude": 42.196173594,
"longitude": -8.721023814,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5930,
@@ -6698,11 +4930,7 @@
},
"latitude": 42.202050775,
"longitude": -8.723454133,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5940,
@@ -6711,11 +4939,7 @@
},
"latitude": 42.198347336,
"longitude": -8.721488003,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 5950,
@@ -6724,9 +4948,7 @@
},
"latitude": 42.207127325,
"longitude": -8.726636888,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 5960,
@@ -6735,9 +4957,7 @@
},
"latitude": 42.206757786,
"longitude": -8.730056705,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 5970,
@@ -6746,9 +4966,7 @@
},
"latitude": 42.206880283,
"longitude": -8.729978952,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 5980,
@@ -6757,9 +4975,7 @@
},
"latitude": 42.207198849,
"longitude": -8.726658346,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 6000,
@@ -6768,10 +4984,7 @@
},
"latitude": 42.220887532,
"longitude": -8.685059571,
- "lines": [
- "31",
- "H3"
- ]
+ "lines": ["31", "H3"]
},
{
"stopId": 6010,
@@ -6780,11 +4993,7 @@
},
"latitude": 42.223077231,
"longitude": -8.675499751,
- "lines": [
- "25",
- "31",
- "H3"
- ]
+ "lines": ["25", "31", "H3"]
},
{
"stopId": 6020,
@@ -6793,11 +5002,7 @@
},
"latitude": 42.223195307,
"longitude": -8.681872932,
- "lines": [
- "25",
- "31",
- "H3"
- ]
+ "lines": ["25", "31", "H3"]
},
{
"stopId": 6030,
@@ -6806,10 +5011,7 @@
},
"latitude": 42.220829925,
"longitude": -8.685158812,
- "lines": [
- "31",
- "H3"
- ]
+ "lines": ["31", "H3"]
},
{
"stopId": 6040,
@@ -6818,11 +5020,7 @@
},
"latitude": 42.22320325,
"longitude": -8.675213007,
- "lines": [
- "25",
- "31",
- "H3"
- ]
+ "lines": ["25", "31", "H3"]
},
{
"stopId": 6050,
@@ -6831,10 +5029,7 @@
},
"latitude": 42.19890849,
"longitude": -8.73623433,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 6060,
@@ -6843,9 +5038,7 @@
},
"latitude": 42.196716802,
"longitude": -8.729966982,
- "lines": [
- "12B"
- ]
+ "lines": ["12B"]
},
{
"stopId": 6070,
@@ -6854,9 +5047,7 @@
},
"latitude": 42.199197066,
"longitude": -8.736588816,
- "lines": [
- "12B"
- ]
+ "lines": ["12B"]
},
{
"stopId": 6080,
@@ -6865,10 +5056,7 @@
},
"latitude": 42.197736144,
"longitude": -8.732267294,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 6090,
@@ -6877,9 +5065,7 @@
},
"latitude": 42.197626151,
"longitude": -8.732546841,
- "lines": [
- "12B"
- ]
+ "lines": ["12B"]
},
{
"stopId": 6100,
@@ -6888,10 +5074,7 @@
},
"latitude": 42.197066521,
"longitude": -8.730468609,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 6110,
@@ -6900,10 +5083,7 @@
},
"latitude": 42.243941636,
"longitude": -8.669169025,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 6130,
@@ -6912,10 +5092,7 @@
},
"latitude": 42.207132591,
"longitude": -8.706967295,
- "lines": [
- "18B",
- "H3"
- ]
+ "lines": ["18B", "H3"]
},
{
"stopId": 6140,
@@ -6924,9 +5101,7 @@
},
"latitude": 42.206925967,
"longitude": -8.707050443,
- "lines": [
- "H3"
- ]
+ "lines": ["H3"]
},
{
"stopId": 6150,
@@ -6935,9 +5110,7 @@
},
"latitude": 42.160616846,
"longitude": -8.691088401,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 6160,
@@ -6946,9 +5119,7 @@
},
"latitude": 42.160635942,
"longitude": -8.69145083,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 6180,
@@ -6957,10 +5128,7 @@
},
"latitude": 42.21850454,
"longitude": -8.753892634,
- "lines": [
- "C3i",
- "5B"
- ]
+ "lines": ["C3i", "5B"]
},
{
"stopId": 6187,
@@ -6969,10 +5137,7 @@
},
"latitude": 42.215244712,
"longitude": -8.74244225,
- "lines": [
- "23",
- "N4"
- ]
+ "lines": ["23", "N4"]
},
{
"stopId": 6200,
@@ -6981,11 +5146,7 @@
},
"latitude": 42.229298043,
"longitude": -8.699760249,
- "lines": [
- "6",
- "25",
- "31"
- ]
+ "lines": ["6", "25", "31"]
},
{
"stopId": 6210,
@@ -6994,16 +5155,7 @@
},
"latitude": 42.229259529,
"longitude": -8.699964485,
- "lines": [
- "4C",
- "6",
- "23",
- "25",
- "31",
- "N4",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "6", "23", "25", "31", "N4", "PSA 4", "VTS"]
},
{
"stopId": 6220,
@@ -7012,9 +5164,7 @@
},
"latitude": 42.226116269,
"longitude": -8.703346362,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 6230,
@@ -7023,9 +5173,7 @@
},
"latitude": 42.224839145,
"longitude": -8.706082215,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 6240,
@@ -7034,9 +5182,7 @@
},
"latitude": 42.224493844,
"longitude": -8.707734948,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 6250,
@@ -7045,14 +5191,7 @@
},
"latitude": 42.22667463,
"longitude": -8.702581423,
- "lines": [
- "4C",
- "23",
- "31",
- "N4",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "23", "31", "N4", "PSA 4", "VTS"]
},
{
"stopId": 6260,
@@ -7061,10 +5200,7 @@
},
"latitude": 42.199568643,
"longitude": -8.741030554,
- "lines": [
- "12B",
- "17"
- ]
+ "lines": ["12B", "17"]
},
{
"stopId": 6280,
@@ -7073,9 +5209,7 @@
},
"latitude": 42.223843943,
"longitude": -8.65334865,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 6290,
@@ -7084,10 +5218,7 @@
},
"latitude": 42.202031781,
"longitude": -8.769502424,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 6300,
@@ -7121,9 +5252,7 @@
},
"latitude": 42.211426266,
"longitude": -8.743166543,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 6370,
@@ -7132,9 +5261,7 @@
},
"latitude": 42.210130966,
"longitude": -8.744872428,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 6380,
@@ -7143,10 +5270,7 @@
},
"latitude": 42.211811672,
"longitude": -8.742420889,
- "lines": [
- "16",
- "VTS"
- ]
+ "lines": ["16", "VTS"]
},
{
"stopId": 6390,
@@ -7155,10 +5279,7 @@
},
"latitude": 42.210204472,
"longitude": -8.74559126,
- "lines": [
- "16",
- "VTS"
- ]
+ "lines": ["16", "VTS"]
},
{
"stopId": 6420,
@@ -7167,9 +5288,7 @@
},
"latitude": 42.235988269,
"longitude": -8.728520618,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 6440,
@@ -7178,9 +5297,7 @@
},
"latitude": 42.222951208,
"longitude": -8.635051581,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 6450,
@@ -7189,13 +5306,7 @@
},
"latitude": 42.224306065,
"longitude": -8.753090783,
- "lines": [
- "C3d",
- "C3i",
- "13",
- "U1",
- "H"
- ]
+ "lines": ["C3d", "C3i", "13", "U1", "H"]
},
{
"stopId": 6460,
@@ -7204,10 +5315,7 @@
},
"latitude": 42.224853579,
"longitude": -8.752608542,
- "lines": [
- "C3d",
- "C3i"
- ]
+ "lines": ["C3d", "C3i"]
},
{
"stopId": 6470,
@@ -7216,9 +5324,7 @@
},
"latitude": 42.228458938,
"longitude": -8.732202674,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 6480,
@@ -7227,10 +5333,7 @@
},
"latitude": 42.229149188,
"longitude": -8.731886908,
- "lines": [
- "5B",
- "12A"
- ]
+ "lines": ["5B", "12A"]
},
{
"stopId": 6490,
@@ -7239,9 +5342,7 @@
},
"latitude": 42.233972514,
"longitude": -8.729963004,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 6500,
@@ -7250,10 +5351,7 @@
},
"latitude": 42.233690068,
"longitude": -8.730100174,
- "lines": [
- "5B",
- "12A"
- ]
+ "lines": ["5B", "12A"]
},
{
"stopId": 6510,
@@ -7262,9 +5360,7 @@
},
"latitude": 42.230584487,
"longitude": -8.731459155,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 6520,
@@ -7273,10 +5369,7 @@
},
"latitude": 42.232285981,
"longitude": -8.730816324,
- "lines": [
- "5B",
- "12A"
- ]
+ "lines": ["5B", "12A"]
},
{
"stopId": 6530,
@@ -7285,9 +5378,7 @@
},
"latitude": 42.222480852,
"longitude": -8.729812967,
- "lines": [
- "C1"
- ]
+ "lines": ["C1"]
},
{
"stopId": 6550,
@@ -7296,16 +5387,7 @@
},
"latitude": 42.229886416,
"longitude": -8.717463365,
- "lines": [
- "C3i",
- "6",
- "11",
- "15A",
- "23",
- "25",
- "28",
- "29"
- ]
+ "lines": ["C3i", "6", "11", "15A", "23", "25", "28", "29"]
},
{
"stopId": 6560,
@@ -7314,16 +5396,7 @@
},
"latitude": 42.23113801,
"longitude": -8.711696824,
- "lines": [
- "C3i",
- "6",
- "11",
- "15A",
- "23",
- "25",
- "27",
- "28"
- ]
+ "lines": ["C3i", "6", "11", "15A", "23", "25", "27", "28"]
},
{
"stopId": 6570,
@@ -7332,18 +5405,7 @@
},
"latitude": 42.231357755,
"longitude": -8.71296778,
- "lines": [
- "C3d",
- "6",
- "15A",
- "23",
- "25",
- "27",
- "28",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "6", "15A", "23", "25", "27", "28", "U2", "H2", "PSA 1"]
},
{
"stopId": 6580,
@@ -7352,18 +5414,7 @@
},
"latitude": 42.229860487,
"longitude": -8.717979137,
- "lines": [
- "C3d",
- "6",
- "15A",
- "23",
- "25",
- "27",
- "28",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "6", "15A", "23", "25", "27", "28", "U2", "H2", "PSA 1"]
},
{
"stopId": 6620,
@@ -7372,6 +5423,7 @@
},
"latitude": 42.23757846151978,
"longitude": -8.721031378896738,
+<<<<<<< HEAD
"lines": [
"C1",
"A",
@@ -7388,6 +5440,13 @@
"cancelled": true,
"title": "Parada movida a Colón 12",
"message": "Con motivo del corte por las atracciones navideñas, las líneas se deben coger en Colón 12 (20208), excepto la línea 9B que arranca en Urzaiz-Príncipe."
+=======
+ "lines": ["C1", "A", "5A", "9B", "15B", "15C", "24", "28", "N4"],
+ "cancelled": true,
+ "title": "Parada movida a Colón 12",
+ "alternateCodes": [20208],
+ "amenities": ["shelter", "display"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 6640,
@@ -7396,15 +5455,7 @@
},
"latitude": 42.215506175,
"longitude": -8.753186569,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "4C",
- "15A",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["C3d", "C3i", "4A", "4C", "15A", "PSA 1", "PSA 4"]
},
{
"stopId": 6650,
@@ -7413,13 +5464,7 @@
},
"latitude": 42.215554055,
"longitude": -8.753042462,
- "lines": [
- "C3d",
- "C3i",
- "5B",
- "15B",
- "U1"
- ]
+ "lines": ["C3d", "C3i", "5B", "15B", "U1"]
},
{
"stopId": 6660,
@@ -7428,9 +5473,7 @@
},
"latitude": 42.237915293,
"longitude": -8.724846587,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 6670,
@@ -7439,10 +5482,7 @@
},
"latitude": 42.183004832,
"longitude": -8.702601056,
- "lines": [
- "A",
- "6"
- ]
+ "lines": ["A", "6"]
},
{
"stopId": 6680,
@@ -7451,9 +5491,7 @@
},
"latitude": 42.207311837,
"longitude": -8.718650635,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 6690,
@@ -7462,9 +5500,7 @@
},
"latitude": 42.20495956,
"longitude": -8.715695557,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 6700,
@@ -7473,9 +5509,7 @@
},
"latitude": 42.204947406,
"longitude": -8.715589643,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 6720,
@@ -7484,9 +5518,7 @@
},
"latitude": 42.207385347,
"longitude": -8.718127604,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 6730,
@@ -7495,10 +5527,7 @@
},
"latitude": 42.199386411,
"longitude": -8.695417016,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 6740,
@@ -7507,10 +5536,7 @@
},
"latitude": 42.242957479,
"longitude": -8.691167762,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 6750,
@@ -7519,12 +5545,7 @@
},
"latitude": 42.221783554,
"longitude": -8.773517669,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 6760,
@@ -7533,9 +5554,7 @@
},
"latitude": 42.201847037,
"longitude": -8.782205633,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 6780,
@@ -7544,9 +5563,7 @@
},
"latitude": 42.210256843,
"longitude": -8.774740625,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 6790,
@@ -7555,10 +5572,7 @@
},
"latitude": 42.214773038,
"longitude": -8.774765933,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 6810,
@@ -7567,9 +5581,7 @@
},
"latitude": 42.207405928,
"longitude": -8.776153122,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 6820,
@@ -7578,9 +5590,7 @@
},
"latitude": 42.20362713,
"longitude": -8.777027535,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 6830,
@@ -7589,9 +5599,7 @@
},
"latitude": 42.197495083,
"longitude": -8.790235556,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 6860,
@@ -7629,13 +5637,7 @@
},
"latitude": 42.215576278,
"longitude": -8.748885599,
- "lines": [
- "4A",
- "4C",
- "11",
- "15A",
- "N4"
- ]
+ "lines": ["4A", "4C", "11", "15A", "N4"]
},
{
"stopId": 6890,
@@ -7644,9 +5646,7 @@
},
"latitude": 42.198959642,
"longitude": -8.68628496,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 6900,
@@ -7655,9 +5655,7 @@
},
"latitude": 42.199031443,
"longitude": -8.686165797,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 6930,
@@ -7666,10 +5664,7 @@
},
"latitude": 42.220997313,
"longitude": -8.732835177,
- "lines": [
- "C1",
- "N4"
- ]
+ "lines": ["C1", "N4"]
},
{
"stopId": 6940,
@@ -7703,17 +5698,7 @@
},
"latitude": 42.229280401,
"longitude": -8.719123549,
- "lines": [
- "A",
- "7",
- "12A",
- "12B",
- "14",
- "16",
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "7", "12A", "12B", "14", "16", "18A", "18B", "18H"]
},
{
"stopId": 6955,
@@ -7722,14 +5707,7 @@
},
"latitude": 42.229438377,
"longitude": -8.719781108,
- "lines": [
- "6",
- "13",
- "18B",
- "18H",
- "25",
- "29"
- ]
+ "lines": ["6", "13", "18B", "18H", "25", "29"]
},
{
"stopId": 6960,
@@ -7738,18 +5716,7 @@
},
"latitude": 42.235056275,
"longitude": -8.726757514,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12A",
- "12B",
- "16",
- "17",
- "27",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12A", "12B", "16", "17", "27", "PSA 4"]
},
{
"stopId": 6970,
@@ -7758,13 +5725,7 @@
},
"latitude": 42.223781999,
"longitude": -8.735258991,
- "lines": [
- "C1",
- "A",
- "10",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "A", "10", "N4", "H1"]
},
{
"stopId": 6980,
@@ -7773,12 +5734,7 @@
},
"latitude": 42.224471236,
"longitude": -8.73619635,
- "lines": [
- "C3i",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["C3i", "15B", "15C", "N1"]
},
{
"stopId": 6990,
@@ -7787,13 +5743,7 @@
},
"latitude": 42.224099613,
"longitude": -8.735838344,
- "lines": [
- "C3d",
- "A",
- "9B",
- "15B",
- "15C"
- ]
+ "lines": ["C3d", "A", "9B", "15B", "15C"]
},
{
"stopId": 7000,
@@ -7824,12 +5774,7 @@
},
"latitude": 42.212808952,
"longitude": -8.740022994,
- "lines": [
- "16",
- "23",
- "N4",
- "VTS"
- ]
+ "lines": ["16", "23", "N4", "VTS"]
},
{
"stopId": 7040,
@@ -7838,10 +5783,7 @@
},
"latitude": 42.218435348,
"longitude": -8.709924429,
- "lines": [
- "14",
- "18A"
- ]
+ "lines": ["14", "18A"]
},
{
"stopId": 7050,
@@ -7850,9 +5792,7 @@
},
"latitude": 42.218502886,
"longitude": -8.710133641,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7060,
@@ -7861,11 +5801,7 @@
},
"latitude": 42.210499286,
"longitude": -8.703983192,
- "lines": [
- "14",
- "18A",
- "H3"
- ]
+ "lines": ["14", "18A", "H3"]
},
{
"stopId": 7070,
@@ -7874,11 +5810,7 @@
},
"latitude": 42.210620188,
"longitude": -8.704177049,
- "lines": [
- "14",
- "18A",
- "H3"
- ]
+ "lines": ["14", "18A", "H3"]
},
{
"stopId": 7080,
@@ -7887,10 +5819,7 @@
},
"latitude": 42.238797018,
"longitude": -8.650399429,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 7090,
@@ -7899,9 +5828,7 @@
},
"latitude": 42.191918475,
"longitude": -8.706869692,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7100,
@@ -7910,12 +5837,7 @@
},
"latitude": 42.1952442,
"longitude": -8.71956212,
- "lines": [
- "12B",
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["12B", "18B", "18H", "27"]
},
{
"stopId": 7110,
@@ -7924,9 +5846,7 @@
},
"latitude": 42.195709195,
"longitude": -8.716896004,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7120,
@@ -7935,9 +5855,7 @@
},
"latitude": 42.195795442,
"longitude": -8.716893641,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7130,
@@ -7946,9 +5864,7 @@
},
"latitude": 42.19350247,
"longitude": -8.715219623,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7140,
@@ -7957,9 +5873,7 @@
},
"latitude": 42.193601829,
"longitude": -8.715157933,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7150,
@@ -7968,9 +5882,7 @@
},
"latitude": 42.192415468,
"longitude": -8.71184004,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7160,
@@ -7979,9 +5891,7 @@
},
"latitude": 42.192526527,
"longitude": -8.712588696,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 7170,
@@ -7990,12 +5900,7 @@
},
"latitude": 42.195322512,
"longitude": -8.719460515,
- "lines": [
- "12B",
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["12B", "18B", "18H", "27"]
},
{
"stopId": 7200,
@@ -8004,15 +5909,7 @@
},
"latitude": 42.231023929,
"longitude": -8.69459232,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7210,
@@ -8021,14 +5918,7 @@
},
"latitude": 42.229661504,
"longitude": -8.691416585,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7220,
@@ -8037,15 +5927,7 @@
},
"latitude": 42.229736581,
"longitude": -8.691879077,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7230,
@@ -8054,14 +5936,7 @@
},
"latitude": 42.229560215,
"longitude": -8.687854611,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7240,
@@ -8070,14 +5945,7 @@
},
"latitude": 42.229454954,
"longitude": -8.684539401,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7250,
@@ -8086,15 +5954,7 @@
},
"latitude": 42.229533333,
"longitude": -8.684593198,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7260,
@@ -8103,14 +5963,7 @@
},
"latitude": 42.22953241,
"longitude": -8.681347572,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7270,
@@ -8119,15 +5972,7 @@
},
"latitude": 42.229570145,
"longitude": -8.681232237,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7280,
@@ -8136,15 +5981,7 @@
},
"latitude": 42.228432118,
"longitude": -8.67827376,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7290,
@@ -8153,14 +5990,7 @@
},
"latitude": 42.228411862,
"longitude": -8.678489489,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7300,
@@ -8169,14 +5999,7 @@
},
"latitude": 42.223957681,
"longitude": -8.673451332,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7310,
@@ -8185,13 +6008,7 @@
},
"latitude": 42.223219273,
"longitude": -8.672272983,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "25"
- ]
+ "lines": ["11", "15A", "15B", "15C", "25"]
},
{
"stopId": 7320,
@@ -8200,15 +6017,7 @@
},
"latitude": 42.224462184,
"longitude": -8.673842935,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7330,
@@ -8217,14 +6026,7 @@
},
"latitude": 42.231776636,
"longitude": -8.697735869,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7340,
@@ -8233,14 +6035,7 @@
},
"latitude": 42.223272423,
"longitude": -8.67216119,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "25",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "25", "VTS"]
},
{
"stopId": 7350,
@@ -8249,15 +6044,7 @@
},
"latitude": 42.231927571,
"longitude": -8.697668814,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7360,
@@ -8266,14 +6053,7 @@
},
"latitude": 42.230432101,
"longitude": -8.694045149,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 7370,
@@ -8282,15 +6062,7 @@
},
"latitude": 42.229607881,
"longitude": -8.686980211,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 7380,
@@ -8299,9 +6071,7 @@
},
"latitude": 42.220087856,
"longitude": -8.707014826,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7390,
@@ -8310,9 +6080,7 @@
},
"latitude": 42.220167311,
"longitude": -8.706963864,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7410,
@@ -8321,13 +6089,7 @@
},
"latitude": 42.226366639,
"longitude": -8.752928216,
- "lines": [
- "C3d",
- "C3i",
- "13",
- "U1",
- "H"
- ]
+ "lines": ["C3d", "C3i", "13", "U1", "H"]
},
{
"stopId": 7440,
@@ -8336,9 +6098,7 @@
},
"latitude": 42.200640474,
"longitude": -8.684744444,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7450,
@@ -8347,9 +6107,7 @@
},
"latitude": 42.202168422,
"longitude": -8.68473908,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7460,
@@ -8358,9 +6116,7 @@
},
"latitude": 42.19807525,
"longitude": -8.684800771,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7470,
@@ -8369,9 +6125,7 @@
},
"latitude": 42.198206824,
"longitude": -8.684878336,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7480,
@@ -8380,9 +6134,7 @@
},
"latitude": 42.200729887,
"longitude": -8.684258964,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7490,
@@ -8391,9 +6143,7 @@
},
"latitude": 42.194091099,
"longitude": -8.683392611,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7500,
@@ -8402,9 +6152,7 @@
},
"latitude": 42.196388225,
"longitude": -8.684151676,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7540,
@@ -8413,10 +6161,7 @@
},
"latitude": 42.226657624,
"longitude": -8.659447983,
- "lines": [
- "11",
- "15A"
- ]
+ "lines": ["11", "15A"]
},
{
"stopId": 7590,
@@ -8425,10 +6170,7 @@
},
"latitude": 42.225201551,
"longitude": -8.667101684,
- "lines": [
- "11",
- "15A"
- ]
+ "lines": ["11", "15A"]
},
{
"stopId": 7600,
@@ -8437,9 +6179,7 @@
},
"latitude": 42.198544554,
"longitude": -8.677824939,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7610,
@@ -8448,9 +6188,7 @@
},
"latitude": 42.196647395,
"longitude": -8.677801904,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7620,
@@ -8459,9 +6197,7 @@
},
"latitude": 42.189146758,
"longitude": -8.678708548,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7630,
@@ -8470,10 +6206,7 @@
},
"latitude": 42.243135911,
"longitude": -8.66173721,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 7640,
@@ -8482,10 +6215,7 @@
},
"latitude": 42.241620781,
"longitude": -8.652000054,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 7650,
@@ -8494,11 +6224,7 @@
},
"latitude": 42.239043121,
"longitude": -8.650247888,
- "lines": [
- "9B",
- "27",
- "28"
- ]
+ "lines": ["9B", "27", "28"]
},
{
"stopId": 7660,
@@ -8507,10 +6233,7 @@
},
"latitude": 42.241610852,
"longitude": -8.651865944,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 7662,
@@ -8519,9 +6242,7 @@
},
"latitude": 42.211013462,
"longitude": -8.68554295,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7664,
@@ -8530,9 +6251,7 @@
},
"latitude": 42.211201327,
"longitude": -8.688838517,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7666,
@@ -8541,9 +6260,7 @@
},
"latitude": 42.210514541,
"longitude": -8.685349777,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7668,
@@ -8552,9 +6269,7 @@
},
"latitude": 42.211022529,
"longitude": -8.688318168,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7670,
@@ -8563,9 +6278,7 @@
},
"latitude": 42.235169136,
"longitude": -8.671176685,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 7680,
@@ -8574,10 +6287,7 @@
},
"latitude": 42.240866745,
"longitude": -8.669273191,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 7690,
@@ -8586,10 +6296,7 @@
},
"latitude": 42.235468446,
"longitude": -8.670649153,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 7700,
@@ -8598,9 +6305,7 @@
},
"latitude": 42.236478263,
"longitude": -8.669194381,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 7710,
@@ -8609,10 +6314,7 @@
},
"latitude": 42.236825775,
"longitude": -8.669313413,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 7720,
@@ -8621,9 +6323,7 @@
},
"latitude": 42.24099726,
"longitude": -8.669077286,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 7730,
@@ -8632,10 +6332,7 @@
},
"latitude": 42.241580812,
"longitude": -8.658065611,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 7740,
@@ -8644,10 +6341,7 @@
},
"latitude": 42.241658253,
"longitude": -8.658202403,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 7750,
@@ -8656,10 +6350,7 @@
},
"latitude": 42.243330503,
"longitude": -8.661852545,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 7760,
@@ -8668,9 +6359,7 @@
},
"latitude": 42.193300199,
"longitude": -8.681021538,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7762,
@@ -8679,9 +6368,7 @@
},
"latitude": 42.209575101,
"longitude": -8.690548833,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7764,
@@ -8690,9 +6377,7 @@
},
"latitude": 42.209654568,
"longitude": -8.690495189,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 7810,
@@ -8701,11 +6386,7 @@
},
"latitude": 42.217817959,
"longitude": -8.710940668,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 7830,
@@ -8714,10 +6395,7 @@
},
"latitude": 42.20297089,
"longitude": -8.707945762,
- "lines": [
- "18B",
- "H3"
- ]
+ "lines": ["18B", "H3"]
},
{
"stopId": 7840,
@@ -8726,9 +6404,7 @@
},
"latitude": 42.203039989,
"longitude": -8.710936623,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 7849,
@@ -8737,9 +6413,7 @@
},
"latitude": 42.20622236,
"longitude": -8.707026831,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 7850,
@@ -8748,9 +6422,7 @@
},
"latitude": 42.202923204,
"longitude": -8.708085237,
- "lines": [
- "H3"
- ]
+ "lines": ["H3"]
},
{
"stopId": 7860,
@@ -8759,9 +6431,7 @@
},
"latitude": 42.225436283,
"longitude": -8.68893946,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 7870,
@@ -8770,11 +6440,7 @@
},
"latitude": 42.166897971,
"longitude": -8.802204658,
- "lines": [
- "C3d",
- "10",
- "12A"
- ]
+ "lines": ["C3d", "10", "12A"]
},
{
"stopId": 7880,
@@ -8783,9 +6449,7 @@
},
"latitude": 42.222364236,
"longitude": -8.718898254,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 7890,
@@ -8794,10 +6458,7 @@
},
"latitude": 42.180764289,
"longitude": -8.80256063,
- "lines": [
- "11",
- "12A"
- ]
+ "lines": ["11", "12A"]
},
{
"stopId": 7900,
@@ -8806,10 +6467,7 @@
},
"latitude": 42.20492472,
"longitude": -8.768904292,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7910,
@@ -8818,10 +6476,7 @@
},
"latitude": 42.208040013,
"longitude": -8.767458581,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7920,
@@ -8830,10 +6485,7 @@
},
"latitude": 42.208926096,
"longitude": -8.765294038,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7930,
@@ -8842,10 +6494,7 @@
},
"latitude": 42.208999211,
"longitude": -8.765346753,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7940,
@@ -8854,10 +6503,7 @@
},
"latitude": 42.207987966,
"longitude": -8.767688321,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7950,
@@ -8866,10 +6512,7 @@
},
"latitude": 42.206253649,
"longitude": -8.768742472,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7960,
@@ -8878,10 +6521,7 @@
},
"latitude": 42.202111343,
"longitude": -8.769560881,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7970,
@@ -8890,10 +6530,7 @@
},
"latitude": 42.213820465,
"longitude": -8.760651176,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7980,
@@ -8902,10 +6539,7 @@
},
"latitude": 42.21430717,
"longitude": -8.760710185,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 7990,
@@ -8914,10 +6548,7 @@
},
"latitude": 42.212612622,
"longitude": -8.760868435,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 8000,
@@ -8926,10 +6557,7 @@
},
"latitude": 42.212034517,
"longitude": -8.760916715,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 8010,
@@ -8938,17 +6566,7 @@
},
"latitude": 42.245018172,
"longitude": -8.703349646,
- "lines": [
- "C3d",
- "5B",
- "10",
- "17",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5B", "10", "17", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 8020,
@@ -8957,14 +6575,7 @@
},
"latitude": 42.246941664,
"longitude": -8.700376378,
- "lines": [
- "C3i",
- "5B",
- "10",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "N1", "H3", "VTS"]
},
{
"stopId": 8030,
@@ -8973,17 +6584,7 @@
},
"latitude": 42.246056261,
"longitude": -8.701684825,
- "lines": [
- "C3d",
- "5B",
- "10",
- "17",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5B", "10", "17", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 8040,
@@ -8992,14 +6593,7 @@
},
"latitude": 42.24874024,
"longitude": -8.697546209,
- "lines": [
- "C3i",
- "5B",
- "10",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "N1", "H3", "VTS"]
},
{
"stopId": 8050,
@@ -9008,17 +6602,7 @@
},
"latitude": 42.247765296,
"longitude": -8.698918203,
- "lines": [
- "C3d",
- "5B",
- "10",
- "17",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5B", "10", "17", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 8060,
@@ -9027,14 +6611,7 @@
},
"latitude": 42.244926864,
"longitude": -8.703642393,
- "lines": [
- "C3i",
- "5B",
- "10",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "N1", "H3", "VTS"]
},
{
"stopId": 8090,
@@ -9043,11 +6620,7 @@
},
"latitude": 42.216151643,
"longitude": -8.715616477,
- "lines": [
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["18A", "18B", "18H"]
},
{
"stopId": 8100,
@@ -9056,9 +6629,7 @@
},
"latitude": 42.160735669,
"longitude": -8.709771124,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 8110,
@@ -9067,9 +6638,7 @@
},
"latitude": 42.160670051,
"longitude": -8.709878412,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 8120,
@@ -9078,9 +6647,7 @@
},
"latitude": 42.22493632,
"longitude": -8.694369092,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 8130,
@@ -9089,9 +6656,7 @@
},
"latitude": 42.225485938,
"longitude": -8.692235895,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 8140,
@@ -9100,9 +6665,7 @@
},
"latitude": 42.224657696,
"longitude": -8.696532794,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 8150,
@@ -9111,9 +6674,7 @@
},
"latitude": 42.225076787,
"longitude": -8.697168477,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 8160,
@@ -9122,9 +6683,7 @@
},
"latitude": 42.224884679,
"longitude": -8.694275214,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 8170,
@@ -9133,9 +6692,7 @@
},
"latitude": 42.225428901,
"longitude": -8.688744499,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 8180,
@@ -9144,9 +6701,7 @@
},
"latitude": 42.173993336,
"longitude": -8.70329684,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 8190,
@@ -9155,9 +6710,7 @@
},
"latitude": 42.214660701,
"longitude": -8.722840401,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 8200,
@@ -9166,9 +6719,7 @@
},
"latitude": 42.214714337,
"longitude": -8.723068388,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 8210,
@@ -9177,9 +6728,7 @@
},
"latitude": 42.214377129,
"longitude": -8.725964538,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 8220,
@@ -9188,9 +6737,7 @@
},
"latitude": 42.213993258,
"longitude": -8.726740824,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 8230,
@@ -9199,9 +6746,7 @@
},
"latitude": 42.199146625,
"longitude": -8.676419461,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 8240,
@@ -9210,11 +6755,7 @@
},
"latitude": 42.243382567,
"longitude": -8.674125307,
- "lines": [
- "9B",
- "27",
- "28"
- ]
+ "lines": ["9B", "27", "28"]
},
{
"stopId": 8250,
@@ -9223,11 +6764,7 @@
},
"latitude": 42.242669731,
"longitude": -8.670096629,
- "lines": [
- "9B",
- "27",
- "28"
- ]
+ "lines": ["9B", "27", "28"]
},
{
"stopId": 8282,
@@ -9236,9 +6773,7 @@
},
"latitude": 42.206854901,
"longitude": -8.686031058,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 8284,
@@ -9247,9 +6782,7 @@
},
"latitude": 42.206779403,
"longitude": -8.686218813,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 8290,
@@ -9258,10 +6791,7 @@
},
"latitude": 42.235646525,
"longitude": -8.685908988,
- "lines": [
- "27",
- "28"
- ]
+ "lines": ["27", "28"]
},
{
"stopId": 8300,
@@ -9270,10 +6800,7 @@
},
"latitude": 42.23556225,
"longitude": -8.686044366,
- "lines": [
- "27",
- "28"
- ]
+ "lines": ["27", "28"]
},
{
"stopId": 8330,
@@ -9282,12 +6809,7 @@
},
"latitude": 42.223897608,
"longitude": -8.740424721,
- "lines": [
- "C3i",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["C3i", "15B", "15C", "N1"]
},
{
"stopId": 8340,
@@ -9296,14 +6818,7 @@
},
"latitude": 42.223840474,
"longitude": -8.740432891,
- "lines": [
- "C3d",
- "13",
- "15B",
- "15C",
- "U1",
- "H"
- ]
+ "lines": ["C3d", "13", "15B", "15C", "U1", "H"]
},
{
"stopId": 8370,
@@ -9312,10 +6827,7 @@
},
"latitude": 42.223984208,
"longitude": -8.751326546,
- "lines": [
- "C3d",
- "C3i"
- ]
+ "lines": ["C3d", "C3i"]
},
{
"stopId": 8390,
@@ -9324,14 +6836,7 @@
},
"latitude": 42.223510532,
"longitude": -8.748903264,
- "lines": [
- "C3d",
- "13",
- "15B",
- "15C",
- "U1",
- "H"
- ]
+ "lines": ["C3d", "13", "15B", "15C", "U1", "H"]
},
{
"stopId": 8410,
@@ -9340,11 +6845,7 @@
},
"latitude": 42.218006346,
"longitude": -8.754154367,
- "lines": [
- "C3d",
- "10",
- "15B"
- ]
+ "lines": ["C3d", "10", "15B"]
},
{
"stopId": 8420,
@@ -9353,10 +6854,7 @@
},
"latitude": 42.218031265,
"longitude": -8.754258995,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 8430,
@@ -9365,11 +6863,7 @@
},
"latitude": 42.221229518,
"longitude": -8.753411657,
- "lines": [
- "C3d",
- "10",
- "15B"
- ]
+ "lines": ["C3d", "10", "15B"]
},
{
"stopId": 8440,
@@ -9378,10 +6872,7 @@
},
"latitude": 42.220192578,
"longitude": -8.754164587,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 8450,
@@ -9390,16 +6881,7 @@
},
"latitude": 42.231511437,
"longitude": -8.732178,
- "lines": [
- "C1",
- "C3d",
- "A",
- "5A",
- "9B",
- "15C",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "C3d", "A", "5A", "9B", "15C", "N4", "H1"]
},
{
"stopId": 8460,
@@ -9408,15 +6890,7 @@
},
"latitude": 42.227500225,
"longitude": -8.734096707,
- "lines": [
- "C1",
- "C3d",
- "A",
- "9B",
- "15C",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "C3d", "A", "9B", "15C", "N4", "H1"]
},
{
"stopId": 8470,
@@ -9425,16 +6899,7 @@
},
"latitude": 42.234106639,
"longitude": -8.731302569,
- "lines": [
- "C1",
- "C3d",
- "A",
- "5A",
- "9B",
- "15C",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "C3d", "A", "5A", "9B", "15C", "N4", "H1"]
},
{
"stopId": 8480,
@@ -9443,16 +6908,7 @@
},
"latitude": 42.229616766,
"longitude": -8.732861043,
- "lines": [
- "C1",
- "C3d",
- "A",
- "5A",
- "9B",
- "15C",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "C3d", "A", "5A", "9B", "15C", "N4", "H1"]
},
{
"stopId": 8490,
@@ -9461,13 +6917,7 @@
},
"latitude": 42.244366441,
"longitude": -8.695452075,
- "lines": [
- "C3i",
- "5A",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "N1", "H3", "VTS"]
},
{
"stopId": 8500,
@@ -9476,14 +6926,7 @@
},
"latitude": 42.238455548,
"longitude": -8.703814812,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "PSA 1"]
},
{
"stopId": 8510,
@@ -9492,12 +6935,7 @@
},
"latitude": 42.238413145,
"longitude": -8.703563202,
- "lines": [
- "C3i",
- "5A",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "N1", "VTS"]
},
{
"stopId": 8520,
@@ -9506,14 +6944,7 @@
},
"latitude": 42.241332883,
"longitude": -8.702059906,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "PSA 1"]
},
{
"stopId": 8530,
@@ -9522,12 +6953,7 @@
},
"latitude": 42.241101222,
"longitude": -8.701974032,
- "lines": [
- "C3i",
- "5A",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "N1", "VTS"]
},
{
"stopId": 8540,
@@ -9536,14 +6962,7 @@
},
"latitude": 42.242844316,
"longitude": -8.698295825,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "PSA 1"]
},
{
"stopId": 8550,
@@ -9552,14 +6971,7 @@
},
"latitude": 42.246425568,
"longitude": -8.692950624,
- "lines": [
- "C3i",
- "5A",
- "5B",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "5B", "N1", "H3", "VTS"]
},
{
"stopId": 8560,
@@ -9568,15 +6980,7 @@
},
"latitude": 42.24409871,
"longitude": -8.69614733,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 8570,
@@ -9585,15 +6989,7 @@
},
"latitude": 42.246143319,
"longitude": -8.69359937,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 8580,
@@ -9602,13 +6998,7 @@
},
"latitude": 42.233828086,
"longitude": -8.706311242,
- "lines": [
- "C3i",
- "5A",
- "31",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "31", "N1", "VTS"]
},
{
"stopId": 8590,
@@ -9617,14 +7007,7 @@
},
"latitude": 42.233681224,
"longitude": -8.706702136,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "PSA 1"]
},
{
"stopId": 8600,
@@ -9633,14 +7016,7 @@
},
"latitude": 42.236350093,
"longitude": -8.70429745,
- "lines": [
- "C3d",
- "5A",
- "31",
- "U2",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "31", "U2", "H2", "PSA 1"]
},
{
"stopId": 8610,
@@ -9677,12 +7053,7 @@
},
"latitude": 42.236261792,
"longitude": -8.703994979,
- "lines": [
- "C3i",
- "5A",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "N1", "VTS"]
},
{
"stopId": 8630,
@@ -9721,12 +7092,7 @@
},
"latitude": 42.168290977,
"longitude": -8.68342947,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 8670,
@@ -9735,12 +7101,7 @@
},
"latitude": 42.167687661,
"longitude": -8.685994335,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 8680,
@@ -9749,12 +7110,7 @@
},
"latitude": 42.169603028,
"longitude": -8.680108895,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 8700,
@@ -9763,12 +7119,7 @@
},
"latitude": 42.167963445,
"longitude": -8.688421342,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 8710,
@@ -9777,9 +7128,7 @@
},
"latitude": 42.167985106,
"longitude": -8.688425395,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 8720,
@@ -9788,12 +7137,7 @@
},
"latitude": 42.169678809,
"longitude": -8.679104749,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 8721,
@@ -9802,10 +7146,14 @@
},
"latitude": 42.169776602,
"longitude": -8.678942156,
+<<<<<<< HEAD
"lines": [
"A",
"15C"
]
+=======
+ "lines": ["A"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 8730,
@@ -9814,9 +7162,7 @@
},
"latitude": 42.170159671,
"longitude": -8.68735086,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 8740,
@@ -9825,12 +7171,7 @@
},
"latitude": 42.170123888,
"longitude": -8.687270393,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 8750,
@@ -9968,17 +7309,7 @@
},
"latitude": 42.234250043,
"longitude": -8.724361531,
- "lines": [
- "4A",
- "4C",
- "5B",
- "11",
- "12A",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "5B", "11", "12A", "12B", "17", "27", "N1"]
},
{
"stopId": 8880,
@@ -9987,17 +7318,7 @@
},
"latitude": 42.233188126,
"longitude": -8.72155331,
- "lines": [
- "4A",
- "4C",
- "5B",
- "11",
- "12A",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "5B", "11", "12A", "12B", "17", "27", "N1"]
},
{
"stopId": 8890,
@@ -10006,16 +7327,7 @@
},
"latitude": 42.233283503,
"longitude": -8.721378959,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12B",
- "16",
- "17",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12B", "16", "17", "PSA 4"]
},
{
"stopId": 8900,
@@ -10024,16 +7336,7 @@
},
"latitude": 42.232243383,
"longitude": -8.718524158,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12B",
- "16",
- "17",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12B", "16", "17", "PSA 4"]
},
{
"stopId": 8910,
@@ -10042,17 +7345,7 @@
},
"latitude": 42.232224046,
"longitude": -8.718985824,
- "lines": [
- "4A",
- "4C",
- "5B",
- "11",
- "12A",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "5B", "11", "12A", "12B", "17", "27", "N1"]
},
{
"stopId": 8916,
@@ -10061,9 +7354,7 @@
},
"latitude": 42.231593651,
"longitude": -8.71714227,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 8930,
@@ -10072,10 +7363,7 @@
},
"latitude": 42.22014115,
"longitude": -8.745082757,
- "lines": [
- "C3i",
- "5B"
- ]
+ "lines": ["C3i", "5B"]
},
{
"stopId": 8950,
@@ -10084,10 +7372,7 @@
},
"latitude": 42.218712573,
"longitude": -8.75011435,
- "lines": [
- "C3i",
- "5B"
- ]
+ "lines": ["C3i", "5B"]
},
{
"stopId": 8970,
@@ -10096,10 +7381,7 @@
},
"latitude": 42.197425383,
"longitude": -8.713700535,
- "lines": [
- "A",
- "H3"
- ]
+ "lines": ["A", "H3"]
},
{
"stopId": 8980,
@@ -10108,10 +7390,7 @@
},
"latitude": 42.197532685,
"longitude": -8.713614705,
- "lines": [
- "A",
- "H3"
- ]
+ "lines": ["A", "H3"]
},
{
"stopId": 8990,
@@ -10120,11 +7399,7 @@
},
"latitude": 42.200673849,
"longitude": -8.714185609,
- "lines": [
- "A",
- "18B",
- "H3"
- ]
+ "lines": ["A", "18B", "H3"]
},
{
"stopId": 9000,
@@ -10133,10 +7408,7 @@
},
"latitude": 42.200719549,
"longitude": -8.714115872,
- "lines": [
- "A",
- "H3"
- ]
+ "lines": ["A", "H3"]
},
{
"stopId": 9010,
@@ -10145,9 +7417,7 @@
},
"latitude": 42.203157887,
"longitude": -8.694293108,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 9020,
@@ -10156,10 +7426,7 @@
},
"latitude": 42.207584622,
"longitude": -8.670108196,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 9030,
@@ -10179,11 +7446,7 @@
},
"latitude": 42.20831564,
"longitude": -8.670282438,
- "lines": [
- "15B",
- "15C",
- "U2"
- ]
+ "lines": ["15B", "15C", "U2"]
},
{
"stopId": 9050,
@@ -10192,9 +7455,7 @@
},
"latitude": 42.154646971,
"longitude": -8.688349062,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 10061,
@@ -10203,9 +7464,7 @@
},
"latitude": 42.185277472,
"longitude": -8.741558953,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14101,
@@ -10214,9 +7473,7 @@
},
"latitude": 42.168008539,
"longitude": -8.710415438,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14102,
@@ -10225,9 +7482,7 @@
},
"latitude": 42.168282882,
"longitude": -8.710066751,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14105,
@@ -10236,12 +7491,7 @@
},
"latitude": 42.167237978,
"longitude": -8.681135704,
- "lines": [
- "A",
- "15C",
- "U1",
- "U2"
- ]
+ "lines": ["A", "15C", "U1", "U2"]
},
{
"stopId": 14106,
@@ -10250,11 +7500,7 @@
},
"latitude": 42.234161582,
"longitude": -8.695074564,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 14107,
@@ -10263,9 +7509,7 @@
},
"latitude": 42.257847205,
"longitude": -8.677696507,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 14108,
@@ -10274,10 +7518,7 @@
},
"latitude": 42.21401741,
"longitude": -8.67133083,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 14111,
@@ -10286,10 +7527,7 @@
},
"latitude": 42.204262657,
"longitude": -8.684801801,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 14112,
@@ -10298,10 +7536,7 @@
},
"latitude": 42.204047198,
"longitude": -8.684697288,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 14113,
@@ -10310,10 +7545,7 @@
},
"latitude": 42.193458577,
"longitude": -8.702065856,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 14117,
@@ -10322,9 +7554,7 @@
},
"latitude": 42.228574702,
"longitude": -8.712864548,
- "lines": [
- "H2"
- ]
+ "lines": ["H2"]
},
{
"stopId": 14119,
@@ -10333,9 +7563,7 @@
},
"latitude": 42.229320789,
"longitude": -8.710390551,
- "lines": [
- "H2"
- ]
+ "lines": ["H2"]
},
{
"stopId": 14121,
@@ -10367,13 +7595,7 @@
},
"latitude": 42.231584097,
"longitude": -8.706968521,
- "lines": [
- "4C",
- "23",
- "31",
- "H2",
- "PSA 4"
- ]
+ "lines": ["4C", "23", "31", "H2", "PSA 4"]
},
{
"stopId": 14123,
@@ -10382,18 +7604,7 @@
},
"latitude": 42.214127819,
"longitude": -8.752027594,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "4C",
- "5B",
- "11",
- "15A",
- "15B",
- "N4",
- "U1"
- ]
+ "lines": ["C3d", "C3i", "4A", "4C", "5B", "11", "15A", "15B", "N4", "U1"]
},
{
"stopId": 14124,
@@ -10402,11 +7613,7 @@
},
"latitude": 42.226569499,
"longitude": -8.752773946,
- "lines": [
- "C3d",
- "C3i",
- "6"
- ]
+ "lines": ["C3d", "C3i", "6"]
},
{
"stopId": 14125,
@@ -10415,15 +7622,7 @@
},
"latitude": 42.213869651,
"longitude": -8.751990789,
- "lines": [
- "C3d",
- "C3i",
- "4A",
- "4C",
- "15A",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["C3d", "C3i", "4A", "4C", "15A", "PSA 1", "PSA 4"]
},
{
"stopId": 14126,
@@ -10432,12 +7631,7 @@
},
"latitude": 42.242494425,
"longitude": -8.699249038,
- "lines": [
- "C3i",
- "5A",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5A", "N1", "VTS"]
},
{
"stopId": 14127,
@@ -10446,13 +7640,7 @@
},
"latitude": 42.249306896,
"longitude": -8.695179916,
- "lines": [
- "5B",
- "10",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["5B", "10", "N1", "H3", "VTS"]
},
{
"stopId": 14128,
@@ -10461,9 +7649,7 @@
},
"latitude": 42.20733292,
"longitude": -8.752159103,
- "lines": [
- "5A"
- ]
+ "lines": ["5A"]
},
{
"stopId": 14129,
@@ -10472,9 +7658,7 @@
},
"latitude": 42.20723039,
"longitude": -8.752592351,
- "lines": [
- "5A"
- ]
+ "lines": ["5A"]
},
{
"stopId": 14131,
@@ -10483,10 +7667,7 @@
},
"latitude": 42.221948768,
"longitude": -8.753171211,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 14132,
@@ -10495,18 +7676,7 @@
},
"latitude": 42.249307631,
"longitude": -8.696542008,
- "lines": [
- "C3d",
- "5A",
- "5B",
- "10",
- "17",
- "31",
- "U2",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5A", "5B", "10", "17", "31", "U2", "H2", "H3", "PSA 1"]
},
{
"stopId": 14133,
@@ -10515,10 +7685,7 @@
},
"latitude": 42.250977575,
"longitude": -8.694471881,
- "lines": [
- "C3i",
- "17"
- ]
+ "lines": ["C3i", "17"]
},
{
"stopId": 14134,
@@ -10527,9 +7694,7 @@
},
"latitude": 42.253208793,
"longitude": -8.686995591,
- "lines": [
- "C3d"
- ]
+ "lines": ["C3d"]
},
{
"stopId": 14135,
@@ -10538,9 +7703,7 @@
},
"latitude": 42.229174145,
"longitude": -8.720143055,
- "lines": [
- "C1"
- ]
+ "lines": ["C1"]
},
{
"stopId": 14136,
@@ -10549,10 +7712,7 @@
},
"latitude": 42.250484372,
"longitude": -8.694878804,
- "lines": [
- "C3d",
- "17"
- ]
+ "lines": ["C3d", "17"]
},
{
"stopId": 14137,
@@ -10561,9 +7721,7 @@
},
"latitude": 42.200003406,
"longitude": -8.753169,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 14138,
@@ -10572,11 +7730,7 @@
},
"latitude": 42.216459201,
"longitude": -8.678591709,
- "lines": [
- "12B",
- "15B",
- "15C"
- ]
+ "lines": ["12B", "15B", "15C"]
},
{
"stopId": 14139,
@@ -10585,11 +7739,7 @@
},
"latitude": 42.227492758,
"longitude": -8.700413366,
- "lines": [
- "6",
- "25",
- "31"
- ]
+ "lines": ["6", "25", "31"]
},
{
"stopId": 14140,
@@ -10598,16 +7748,7 @@
},
"latitude": 42.228210877,
"longitude": -8.699999354,
- "lines": [
- "4C",
- "6",
- "23",
- "25",
- "31",
- "N4",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "6", "23", "25", "31", "N4", "PSA 4", "VTS"]
},
{
"stopId": 14141,
@@ -10616,13 +7757,7 @@
},
"latitude": 42.231379202,
"longitude": -8.699876213,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "H3"]
},
{
"stopId": 14142,
@@ -10631,9 +7766,7 @@
},
"latitude": 42.231463434,
"longitude": -8.728844425,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14143,
@@ -10642,9 +7775,7 @@
},
"latitude": 42.229753483,
"longitude": -8.729002675,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14144,
@@ -10653,9 +7784,7 @@
},
"latitude": 42.226760436,
"longitude": -8.727385303,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14150,
@@ -10664,9 +7793,7 @@
},
"latitude": 42.232076561,
"longitude": -8.719055236,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14152,
@@ -10675,9 +7802,7 @@
},
"latitude": 42.204815402,
"longitude": -8.687168969,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14153,
@@ -10686,10 +7811,7 @@
},
"latitude": 42.205357233,
"longitude": -8.692495739,
- "lines": [
- "6",
- "14"
- ]
+ "lines": ["6", "14"]
},
{
"stopId": 14154,
@@ -10698,9 +7820,7 @@
},
"latitude": 42.19360258,
"longitude": -8.677258993,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14156,
@@ -10709,9 +7829,7 @@
},
"latitude": 42.203378431,
"longitude": -8.696666863,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14157,
@@ -10720,9 +7838,7 @@
},
"latitude": 42.202979066,
"longitude": -8.694065121,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14161,
@@ -10731,9 +7847,7 @@
},
"latitude": 42.224130699,
"longitude": -8.732568248,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 14162,
@@ -10742,12 +7856,7 @@
},
"latitude": 42.211371871,
"longitude": -8.746523782,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 14163,
@@ -10756,11 +7865,7 @@
},
"latitude": 42.211442202,
"longitude": -8.746227469,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 14164,
@@ -10769,12 +7874,7 @@
},
"latitude": 42.225172437,
"longitude": -8.744777354,
- "lines": [
- "C3i",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["C3i", "15B", "15C", "N1"]
},
{
"stopId": 14165,
@@ -10783,14 +7883,7 @@
},
"latitude": 42.224905029,
"longitude": -8.745285775,
- "lines": [
- "C3d",
- "13",
- "15B",
- "15C",
- "U1",
- "H"
- ]
+ "lines": ["C3d", "13", "15B", "15C", "U1", "H"]
},
{
"stopId": 14166,
@@ -10799,17 +7892,7 @@
},
"latitude": 42.225142981,
"longitude": -8.729707944,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12A",
- "12B",
- "17",
- "27",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12A", "12B", "17", "27", "PSA 4"]
},
{
"stopId": 14167,
@@ -10818,11 +7901,7 @@
},
"latitude": 42.225279021,
"longitude": -8.751908648,
- "lines": [
- "6",
- "9B",
- "28"
- ]
+ "lines": ["6", "9B", "28"]
},
{
"stopId": 14168,
@@ -10831,15 +7910,7 @@
},
"latitude": 42.224928285,
"longitude": -8.729631509,
- "lines": [
- "4A",
- "4C",
- "11",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "11", "12B", "17", "27", "N1"]
},
{
"stopId": 14169,
@@ -10870,12 +7941,7 @@
},
"latitude": 42.218831744,
"longitude": -8.77571001,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 14171,
@@ -10884,11 +7950,7 @@
},
"latitude": 42.218844713,
"longitude": -8.775459221,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 14173,
@@ -10897,16 +7959,7 @@
},
"latitude": 42.235900754,
"longitude": -8.731391435,
- "lines": [
- "C1",
- "C3d",
- "A",
- "5A",
- "9B",
- "15C",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "C3d", "A", "5A", "9B", "15C", "N4", "H1"]
},
{
"stopId": 14174,
@@ -10915,10 +7968,7 @@
},
"latitude": 42.211844516,
"longitude": -8.749287921,
- "lines": [
- "11",
- "16"
- ]
+ "lines": ["11", "16"]
},
{
"stopId": 14175,
@@ -10927,9 +7977,7 @@
},
"latitude": 42.211792864,
"longitude": -8.749617832,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14177,
@@ -10938,11 +7986,7 @@
},
"latitude": 42.22985125,
"longitude": -8.71972059,
- "lines": [
- "12A",
- "14",
- "27"
- ]
+ "lines": ["12A", "14", "27"]
},
{
"stopId": 14178,
@@ -10951,10 +7995,7 @@
},
"latitude": 42.233009005,
"longitude": -8.724497604,
- "lines": [
- "12A",
- "27"
- ]
+ "lines": ["12A", "27"]
},
{
"stopId": 14179,
@@ -10963,11 +8004,7 @@
},
"latitude": 42.213260612,
"longitude": -8.722562576,
- "lines": [
- "A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "18B", "18H"]
},
{
"stopId": 14180,
@@ -10976,14 +8013,7 @@
},
"latitude": 42.224749197,
"longitude": -8.707320585,
- "lines": [
- "4C",
- "23",
- "31",
- "N4",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "23", "31", "N4", "PSA 4", "VTS"]
},
{
"stopId": 14181,
@@ -10992,9 +8022,7 @@
},
"latitude": 42.210954716,
"longitude": -8.727776522,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 14182,
@@ -11003,11 +8031,7 @@
},
"latitude": 42.211618245,
"longitude": -8.72147159,
- "lines": [
- "A",
- "18B",
- "18H"
- ]
+ "lines": ["A", "18B", "18H"]
},
{
"stopId": 14183,
@@ -11016,9 +8040,7 @@
},
"latitude": 42.220622235,
"longitude": -8.654888024,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14184,
@@ -11027,9 +8049,7 @@
},
"latitude": 42.217384986,
"longitude": -8.657082399,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14185,
@@ -11038,9 +8058,7 @@
},
"latitude": 42.219667098,
"longitude": -8.659470523,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14186,
@@ -11049,9 +8067,7 @@
},
"latitude": 42.218044517,
"longitude": -8.662618478,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14187,
@@ -11060,9 +8076,7 @@
},
"latitude": 42.221588029,
"longitude": -8.662035851,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14188,
@@ -11071,9 +8085,7 @@
},
"latitude": 42.217595578,
"longitude": -8.661414166,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14189,
@@ -11082,9 +8094,7 @@
},
"latitude": 42.226081487,
"longitude": -8.654133203,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14190,
@@ -11093,9 +8103,7 @@
},
"latitude": 42.225080876,
"longitude": -8.683314171,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14191,
@@ -11104,9 +8112,7 @@
},
"latitude": 42.223737557,
"longitude": -8.682141153,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14192,
@@ -11115,9 +8121,7 @@
},
"latitude": 42.231625599,
"longitude": -8.652046516,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14193,
@@ -11126,9 +8130,7 @@
},
"latitude": 42.230916628,
"longitude": -8.641628816,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14194,
@@ -11137,9 +8139,7 @@
},
"latitude": 42.228639377,
"longitude": -8.640978361,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14195,
@@ -11148,9 +8148,7 @@
},
"latitude": 42.226263256,
"longitude": -8.644091084,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14196,
@@ -11159,9 +8157,7 @@
},
"latitude": 42.225296,
"longitude": -8.649527921,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14197,
@@ -11170,9 +8166,7 @@
},
"latitude": 42.225912491,
"longitude": -8.653698801,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14198,
@@ -11181,10 +8175,7 @@
},
"latitude": 42.227231301,
"longitude": -8.659997969,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 14199,
@@ -11193,9 +8184,7 @@
},
"latitude": 42.223755464,
"longitude": -8.682041911,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14200,
@@ -11204,9 +8193,7 @@
},
"latitude": 42.225112655,
"longitude": -8.683402684,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14201,
@@ -11215,9 +8202,7 @@
},
"latitude": 42.226291056,
"longitude": -8.641647591,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14202,
@@ -11226,13 +8211,7 @@
},
"latitude": 42.231273786,
"longitude": -8.700145645,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "H3"]
},
{
"stopId": 14203,
@@ -11241,10 +8220,7 @@
},
"latitude": 42.226524401,
"longitude": -8.661251786,
- "lines": [
- "11",
- "15A"
- ]
+ "lines": ["11", "15A"]
},
{
"stopId": 14204,
@@ -11253,11 +8229,7 @@
},
"latitude": 42.22312688,
"longitude": -8.681864633,
- "lines": [
- "25",
- "31",
- "H3"
- ]
+ "lines": ["25", "31", "H3"]
},
{
"stopId": 14205,
@@ -11266,9 +8238,7 @@
},
"latitude": 42.178408629,
"longitude": -8.733198549,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14206,
@@ -11277,17 +8247,7 @@
},
"latitude": 42.220514043,
"longitude": -8.731700217,
- "lines": [
- "C3i",
- "7",
- "11",
- "13",
- "15A",
- "16",
- "23",
- "29",
- "H2"
- ]
+ "lines": ["C3i", "7", "11", "13", "15A", "16", "23", "29", "H2"]
},
{
"stopId": 14207,
@@ -11296,9 +8256,7 @@
},
"latitude": 42.161212162,
"longitude": -8.716377433,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14208,
@@ -11307,9 +8265,7 @@
},
"latitude": 42.162237207,
"longitude": -8.71885531,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14209,
@@ -11318,9 +8274,7 @@
},
"latitude": 42.173333822,
"longitude": -8.705439803,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14210,
@@ -11329,9 +8283,7 @@
},
"latitude": 42.173077394,
"longitude": -8.705659744,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14211,
@@ -11340,9 +8292,7 @@
},
"latitude": 42.165479162,
"longitude": -8.721775005,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14212,
@@ -11351,9 +8301,7 @@
},
"latitude": 42.164694101,
"longitude": -8.724472962,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14213,
@@ -11362,9 +8310,7 @@
},
"latitude": 42.169153241,
"longitude": -8.729001464,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14214,
@@ -11373,9 +8319,7 @@
},
"latitude": 42.175760907,
"longitude": -8.734516924,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14215,
@@ -11384,9 +8328,7 @@
},
"latitude": 42.175592169,
"longitude": -8.734477788,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14216,
@@ -11395,9 +8337,7 @@
},
"latitude": 42.169143301,
"longitude": -8.729076566,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14217,
@@ -11406,9 +8346,7 @@
},
"latitude": 42.164570839,
"longitude": -8.724561475,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14218,
@@ -11417,9 +8355,7 @@
},
"latitude": 42.165288305,
"longitude": -8.721367309,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14219,
@@ -11428,9 +8364,7 @@
},
"latitude": 42.159500512,
"longitude": -8.718247279,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14220,
@@ -11439,9 +8373,7 @@
},
"latitude": 42.225657321,
"longitude": -8.681467666,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14221,
@@ -11450,9 +8382,7 @@
},
"latitude": 42.225809218,
"longitude": -8.681652991,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14222,
@@ -11461,9 +8391,7 @@
},
"latitude": 42.162959525,
"longitude": -8.716541365,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14223,
@@ -11577,9 +8505,7 @@
},
"latitude": 42.221696342,
"longitude": -8.632840997,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 14231,
@@ -11588,9 +8514,7 @@
},
"latitude": 42.235542066,
"longitude": -8.652196565,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 14232,
@@ -11599,10 +8523,7 @@
},
"latitude": 42.235317662,
"longitude": -8.652094641,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 14233,
@@ -11611,10 +8532,7 @@
},
"latitude": 42.241037275,
"longitude": -8.668947597,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 14236,
@@ -11623,9 +8541,7 @@
},
"latitude": 42.196308523,
"longitude": -8.723526935,
- "lines": [
- "12B"
- ]
+ "lines": ["12B"]
},
{
"stopId": 14237,
@@ -11634,9 +8550,7 @@
},
"latitude": 42.196119748,
"longitude": -8.723457198,
- "lines": [
- "12B"
- ]
+ "lines": ["12B"]
},
{
"stopId": 14238,
@@ -11645,9 +8559,7 @@
},
"latitude": 42.20458802,
"longitude": -8.714617309,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 14240,
@@ -11656,9 +8568,7 @@
},
"latitude": 42.197985091,
"longitude": -8.714523201,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 14241,
@@ -11667,9 +8577,7 @@
},
"latitude": 42.197842023,
"longitude": -8.71471632,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 14242,
@@ -11678,9 +8586,7 @@
},
"latitude": 42.196378259,
"longitude": -8.716979043,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 14243,
@@ -11689,9 +8595,7 @@
},
"latitude": 42.196539214,
"longitude": -8.716874437,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 14244,
@@ -11700,11 +8604,7 @@
},
"latitude": 42.198216234,
"longitude": -8.721498041,
- "lines": [
- "18B",
- "18H",
- "27"
- ]
+ "lines": ["18B", "18H", "27"]
},
{
"stopId": 14245,
@@ -11713,15 +8613,7 @@
},
"latitude": 42.23691728,
"longitude": -8.716743143,
- "lines": [
- "C3i",
- "5B",
- "10",
- "16",
- "17",
- "N1",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "16", "17", "N1", "VTS"]
},
{
"stopId": 14247,
@@ -11730,9 +8622,7 @@
},
"latitude": 42.200511179,
"longitude": -8.769110573,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 14248,
@@ -11741,9 +8631,7 @@
},
"latitude": 42.200580723,
"longitude": -8.76911862,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 14249,
@@ -11752,9 +8640,7 @@
},
"latitude": 42.177662554,
"longitude": -8.800157923,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 14250,
@@ -11763,10 +8649,7 @@
},
"latitude": 42.234914814,
"longitude": -8.658983411,
- "lines": [
- "A",
- "9B"
- ]
+ "lines": ["A", "9B"]
},
{
"stopId": 14251,
@@ -11775,11 +8658,7 @@
},
"latitude": 42.234817602,
"longitude": -8.65882027,
- "lines": [
- "A",
- "9B",
- "27"
- ]
+ "lines": ["A", "9B", "27"]
},
{
"stopId": 14252,
@@ -11788,10 +8667,7 @@
},
"latitude": 42.165934208,
"longitude": -8.707243001,
- "lines": [
- "A",
- "U1"
- ]
+ "lines": ["A", "U1"]
},
{
"stopId": 14253,
@@ -11800,10 +8676,7 @@
},
"latitude": 42.164455564,
"longitude": -8.707223843,
- "lines": [
- "A",
- "U1"
- ]
+ "lines": ["A", "U1"]
},
{
"stopId": 14255,
@@ -11812,9 +8685,7 @@
},
"latitude": 42.225111918,
"longitude": -8.726733526,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14256,
@@ -11823,9 +8694,7 @@
},
"latitude": 42.222198901,
"longitude": -8.728317834,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14257,
@@ -11834,9 +8703,7 @@
},
"latitude": 42.223448271,
"longitude": -8.725547112,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14258,
@@ -11845,9 +8712,7 @@
},
"latitude": 42.224870416,
"longitude": -8.723632015,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14259,
@@ -11856,9 +8721,7 @@
},
"latitude": 42.227088982,
"longitude": -8.721545256,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14260,
@@ -11867,17 +8730,7 @@
},
"latitude": 42.228741057,
"longitude": -8.71961914,
- "lines": [
- "A",
- "7",
- "14",
- "15A",
- "16",
- "18A",
- "18B",
- "18H",
- "H2"
- ]
+ "lines": ["A", "7", "14", "15A", "16", "18A", "18B", "18H", "H2"]
},
{
"stopId": 14261,
@@ -11886,9 +8739,7 @@
},
"latitude": 42.228644118,
"longitude": -8.720692314,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14264,
@@ -11919,10 +8770,7 @@
"N1",
"N4"
],
- "amenities": [
- "shelter",
- "display"
- ]
+ "amenities": ["shelter", "display"]
},
{
"stopId": 14267,
@@ -11931,12 +8779,7 @@
},
"latitude": 42.221892792,
"longitude": -8.758191526,
- "lines": [
- "10",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["10", "15B", "15C", "N1"]
},
{
"stopId": 14268,
@@ -11945,11 +8788,7 @@
},
"latitude": 42.221731945,
"longitude": -8.758417175,
- "lines": [
- "10",
- "15B",
- "15C"
- ]
+ "lines": ["10", "15B", "15C"]
},
{
"stopId": 14270,
@@ -11958,9 +8797,7 @@
},
"latitude": 42.196619218,
"longitude": -8.743240048,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14271,
@@ -11969,9 +8806,7 @@
},
"latitude": 42.196050474,
"longitude": -8.745105715,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14273,
@@ -11980,9 +8815,7 @@
},
"latitude": 42.219274062,
"longitude": -8.656419893,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14277,
@@ -11991,9 +8824,7 @@
},
"latitude": 42.251776399,
"longitude": -8.69414009,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14278,
@@ -12002,9 +8833,7 @@
},
"latitude": 42.25430173,
"longitude": -8.692915616,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14279,
@@ -12013,9 +8842,7 @@
},
"latitude": 42.257069093,
"longitude": -8.690786611,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14280,
@@ -12024,9 +8851,7 @@
},
"latitude": 42.254604716,
"longitude": -8.692539681,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14281,
@@ -12035,9 +8860,7 @@
},
"latitude": 42.251596707,
"longitude": -8.69420171,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14287,
@@ -12046,9 +8869,7 @@
},
"latitude": 42.25020334,
"longitude": -8.701924083,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14288,
@@ -12057,9 +8878,7 @@
},
"latitude": 42.249218849,
"longitude": -8.704807605,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14289,
@@ -12068,9 +8887,7 @@
},
"latitude": 42.246484972,
"longitude": -8.705864005,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14290,
@@ -12079,9 +8896,7 @@
},
"latitude": 42.244107542,
"longitude": -8.706343638,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14291,
@@ -12090,12 +8905,7 @@
},
"latitude": 42.209935219,
"longitude": -8.671464542,
- "lines": [
- "12B",
- "15B",
- "15C",
- "U2"
- ]
+ "lines": ["12B", "15B", "15C", "U2"]
},
{
"stopId": 14294,
@@ -12104,9 +8914,7 @@
},
"latitude": 42.190684424876565,
"longitude": -8.799308812770041,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 14295,
@@ -12115,10 +8923,7 @@
},
"latitude": 42.230436358,
"longitude": -8.731437473,
- "lines": [
- "5B",
- "12A"
- ]
+ "lines": ["5B", "12A"]
},
{
"stopId": 14296,
@@ -12127,9 +8932,7 @@
},
"latitude": 42.248375604,
"longitude": -8.675578666,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14299,
@@ -12138,13 +8941,7 @@
},
"latitude": 42.213777217,
"longitude": -8.774600284,
- "lines": [
- "C3i",
- "15A",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["C3i", "15A", "15B", "15C", "N1"]
},
{
"stopId": 14300,
@@ -12153,12 +8950,7 @@
},
"latitude": 42.217907548,
"longitude": -8.73707436,
- "lines": [
- "5A",
- "11",
- "29",
- "VTS"
- ]
+ "lines": ["5A", "11", "29", "VTS"]
},
{
"stopId": 14301,
@@ -12167,11 +8959,7 @@
},
"latitude": 42.218257459,
"longitude": -8.736328798,
- "lines": [
- "5A",
- "11",
- "29"
- ]
+ "lines": ["5A", "11", "29"]
},
{
"stopId": 14302,
@@ -12180,12 +8968,7 @@
},
"latitude": 42.214542094,
"longitude": -8.696431619,
- "lines": [
- "12A",
- "12B",
- "13",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "H3"]
},
{
"stopId": 14304,
@@ -12194,12 +8977,7 @@
},
"latitude": 42.221313975,
"longitude": -8.681944471,
- "lines": [
- "12A",
- "12B",
- "13",
- "31"
- ]
+ "lines": ["12A", "12B", "13", "31"]
},
{
"stopId": 14307,
@@ -12208,9 +8986,7 @@
},
"latitude": 42.224464416,
"longitude": -8.727967343,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 14308,
@@ -12219,9 +8995,7 @@
},
"latitude": 42.16328558,
"longitude": -8.716707662,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14309,
@@ -12230,9 +9004,7 @@
},
"latitude": 42.161067029,
"longitude": -8.716468628,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14310,
@@ -12241,9 +9013,7 @@
},
"latitude": 42.159564137,
"longitude": -8.718295559,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14311,
@@ -12252,9 +9022,7 @@
},
"latitude": 42.162720337,
"longitude": -8.718900908,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14314,
@@ -12263,9 +9031,7 @@
},
"latitude": 42.227212568,
"longitude": -8.720183032,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14315,
@@ -12274,9 +9040,7 @@
},
"latitude": 42.22393338,
"longitude": -8.716924148,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14317,
@@ -12285,9 +9049,7 @@
},
"latitude": 42.222723933,
"longitude": -8.719150283,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14318,
@@ -12296,9 +9058,7 @@
},
"latitude": 42.222591256,
"longitude": -8.717753486,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14319,
@@ -12307,9 +9067,7 @@
},
"latitude": 42.221002214,
"longitude": -8.72027208,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14320,
@@ -12318,9 +9076,7 @@
},
"latitude": 42.220799025,
"longitude": -8.723345356,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14321,
@@ -12329,9 +9085,7 @@
},
"latitude": 42.218131641,
"longitude": -8.723120057,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14322,
@@ -12340,9 +9094,7 @@
},
"latitude": 42.217813814,
"longitude": -8.721352482,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14323,
@@ -12351,9 +9103,7 @@
},
"latitude": 42.217059742,
"longitude": -8.720340235,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14324,
@@ -12362,9 +9112,7 @@
},
"latitude": 42.217256401,
"longitude": -8.720101519,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14325,
@@ -12373,9 +9121,7 @@
},
"latitude": 42.217848286,
"longitude": -8.7214811,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14326,
@@ -12384,9 +9130,7 @@
},
"latitude": 42.218038279,
"longitude": -8.722489738,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14328,
@@ -12395,11 +9139,7 @@
},
"latitude": 42.208988415,
"longitude": -8.746151897,
- "lines": [
- "LZH",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["LZH", "PSA 1", "PSA 4"]
},
{
"stopId": 14329,
@@ -12408,11 +9148,7 @@
},
"latitude": 42.210124372,
"longitude": -8.741139991,
- "lines": [
- "LZH",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["LZH", "PSA 1", "PSA 4"]
},
{
"stopId": 14330,
@@ -12421,9 +9157,7 @@
},
"latitude": 42.198072667,
"longitude": -8.682624653,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14331,
@@ -12453,18 +9187,7 @@
},
"latitude": 42.240189011,
"longitude": -8.726765331,
- "lines": [
- "C1",
- "C3d",
- "A",
- "5A",
- "9B",
- "10",
- "15B",
- "15C",
- "28",
- "N4"
- ]
+ "lines": ["C1", "C3d", "A", "5A", "9B", "10", "15B", "15C", "28", "N4"]
},
{
"stopId": 14335,
@@ -12473,9 +9196,7 @@
},
"latitude": 42.212692269,
"longitude": -8.675661599,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 14336,
@@ -12484,10 +9205,7 @@
},
"latitude": 42.21447626,
"longitude": -8.75600551,
- "lines": [
- "13",
- "15A"
- ]
+ "lines": ["13", "15A"]
},
{
"stopId": 14337,
@@ -12496,18 +9214,7 @@
},
"latitude": 42.213080218,
"longitude": -8.754660224,
- "lines": [
- "5A",
- "5B",
- "13",
- "15A",
- "15B",
- "N4",
- "U1",
- "H",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["5A", "5B", "13", "15A", "15B", "N4", "U1", "H", "PSA 1", "PSA 4"]
},
{
"stopId": 14345,
@@ -12516,9 +9223,7 @@
},
"latitude": 42.237269816,
"longitude": -8.685138009,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14346,
@@ -12527,9 +9232,7 @@
},
"latitude": 42.237287688,
"longitude": -8.685019992,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14347,
@@ -12538,9 +9241,7 @@
},
"latitude": 42.23913765,
"longitude": -8.683873934,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14348,
@@ -12549,9 +9250,7 @@
},
"latitude": 42.238950988,
"longitude": -8.683793467,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14349,
@@ -12560,9 +9259,7 @@
},
"latitude": 42.244717312,
"longitude": -8.678473607,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14350,
@@ -12571,9 +9268,7 @@
},
"latitude": 42.244849353,
"longitude": -8.678366319,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14353,
@@ -12582,9 +9277,7 @@
},
"latitude": 42.248151648,
"longitude": -8.675976097,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14354,
@@ -12593,14 +9286,7 @@
},
"latitude": 42.225911433,
"longitude": -8.675526243,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3"]
},
{
"stopId": 14355,
@@ -12609,15 +9295,7 @@
},
"latitude": 42.226638363,
"longitude": -8.676135104,
- "lines": [
- "11",
- "15A",
- "15B",
- "15C",
- "31",
- "H3",
- "VTS"
- ]
+ "lines": ["11", "15A", "15B", "15C", "31", "H3", "VTS"]
},
{
"stopId": 14356,
@@ -12626,9 +9304,7 @@
},
"latitude": 42.192009114,
"longitude": -8.783993123,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 14357,
@@ -12637,9 +9313,7 @@
},
"latitude": 42.191796473,
"longitude": -8.784014088,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 14358,
@@ -12648,12 +9322,7 @@
},
"latitude": 42.209054557,
"longitude": -8.75715865,
- "lines": [
- "5A",
- "5B",
- "13",
- "N4"
- ]
+ "lines": ["5A", "5B", "13", "N4"]
},
{
"stopId": 14359,
@@ -12662,12 +9331,7 @@
},
"latitude": 42.212235738,
"longitude": -8.755011746,
- "lines": [
- "5A",
- "5B",
- "13",
- "N4"
- ]
+ "lines": ["5A", "5B", "13", "N4"]
},
{
"stopId": 14360,
@@ -12676,16 +9340,7 @@
},
"latitude": 42.208965857,
"longitude": -8.757020567,
- "lines": [
- "5A",
- "5B",
- "13",
- "N4",
- "U1",
- "H",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["5A", "5B", "13", "N4", "U1", "H", "PSA 1", "PSA 4"]
},
{
"stopId": 14361,
@@ -12694,17 +9349,7 @@
},
"latitude": 42.209770472,
"longitude": -8.755295907,
- "lines": [
- "5A",
- "5B",
- "13",
- "15A",
- "N4",
- "U1",
- "H",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["5A", "5B", "13", "15A", "N4", "U1", "H", "PSA 1", "PSA 4"]
},
{
"stopId": 14362,
@@ -12713,11 +9358,7 @@
},
"latitude": 42.202937872,
"longitude": -8.776830486,
- "lines": [
- "C3d",
- "4C",
- "10"
- ]
+ "lines": ["C3d", "4C", "10"]
},
{
"stopId": 14364,
@@ -12726,9 +9367,7 @@
},
"latitude": 42.175757186,
"longitude": -8.671074371,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 14365,
@@ -12737,9 +9376,7 @@
},
"latitude": 42.181650197,
"longitude": -8.667515723,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 14372,
@@ -12748,9 +9385,7 @@
},
"latitude": 42.221887526,
"longitude": -8.720011371,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 14376,
@@ -12759,9 +9394,7 @@
},
"latitude": 42.226612651,
"longitude": -8.699658408,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14377,
@@ -12770,9 +9403,7 @@
},
"latitude": 42.226582661,
"longitude": -8.700385762,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14378,
@@ -12781,9 +9412,7 @@
},
"latitude": 42.22396201,
"longitude": -8.653340726,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14381,
@@ -12792,9 +9421,7 @@
},
"latitude": 42.195647685,
"longitude": -8.728974153,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14383,
@@ -12803,10 +9430,7 @@
},
"latitude": 42.174718265,
"longitude": -8.713684656,
- "lines": [
- "A",
- "U1"
- ]
+ "lines": ["A", "U1"]
},
{
"stopId": 14384,
@@ -12815,10 +9439,7 @@
},
"latitude": 42.175073486,
"longitude": -8.713494654,
- "lines": [
- "A",
- "U1"
- ]
+ "lines": ["A", "U1"]
},
{
"stopId": 14385,
@@ -12827,10 +9448,7 @@
},
"latitude": 42.240712912,
"longitude": -8.6919418,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 14386,
@@ -12839,10 +9457,7 @@
},
"latitude": 42.238020208,
"longitude": -8.691543884,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 14387,
@@ -12851,10 +9466,7 @@
},
"latitude": 42.237167043,
"longitude": -8.693243792,
- "lines": [
- "4A",
- "24"
- ]
+ "lines": ["4A", "24"]
},
{
"stopId": 14388,
@@ -12863,17 +9475,7 @@
},
"latitude": 42.211610124,
"longitude": -8.754550253,
- "lines": [
- "5A",
- "5B",
- "13",
- "15A",
- "N4",
- "U1",
- "H",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["5A", "5B", "13", "15A", "N4", "U1", "H", "PSA 1", "PSA 4"]
},
{
"stopId": 14389,
@@ -12882,12 +9484,7 @@
},
"latitude": 42.210212603,
"longitude": -8.755079989,
- "lines": [
- "5A",
- "5B",
- "13",
- "N4"
- ]
+ "lines": ["5A", "5B", "13", "N4"]
},
{
"stopId": 14390,
@@ -12896,10 +9493,7 @@
},
"latitude": 42.241570883,
"longitude": -8.655380719,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 14391,
@@ -12908,10 +9502,7 @@
},
"latitude": 42.241652296,
"longitude": -8.655302935,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 14392,
@@ -12920,9 +9511,7 @@
},
"latitude": 42.209458591,
"longitude": -8.760561083,
- "lines": [
- "5A"
- ]
+ "lines": ["5A"]
},
{
"stopId": 14393,
@@ -12931,9 +9520,7 @@
},
"latitude": 42.209568936,
"longitude": -8.760777001,
- "lines": [
- "5A"
- ]
+ "lines": ["5A"]
},
{
"stopId": 14395,
@@ -12942,11 +9529,7 @@
},
"latitude": 42.215601037,
"longitude": -8.675477665,
- "lines": [
- "12B",
- "15B",
- "15C"
- ]
+ "lines": ["12B", "15B", "15C"]
},
{
"stopId": 14396,
@@ -12955,16 +9538,7 @@
},
"latitude": 42.239965365,
"longitude": -8.708024282,
- "lines": [
- "C3d",
- "5B",
- "10",
- "17",
- "31",
- "H2",
- "H3",
- "PSA 1"
- ]
+ "lines": ["C3d", "5B", "10", "17", "31", "H2", "H3", "PSA 1"]
},
{
"stopId": 14397,
@@ -12973,15 +9547,7 @@
},
"latitude": 42.23973713,
"longitude": -8.708397682,
- "lines": [
- "C3i",
- "5B",
- "10",
- "17",
- "N1",
- "H3",
- "VTS"
- ]
+ "lines": ["C3i", "5B", "10", "17", "N1", "H3", "VTS"]
},
{
"stopId": 14398,
@@ -12990,15 +9556,7 @@
},
"latitude": 42.22406594,
"longitude": -8.723691036,
- "lines": [
- "C3d",
- "13",
- "15A",
- "23",
- "29",
- "H2",
- "PSA 1"
- ]
+ "lines": ["C3d", "13", "15A", "23", "29", "H2", "PSA 1"]
},
{
"stopId": 14401,
@@ -13007,10 +9565,7 @@
},
"latitude": 42.21072167,
"longitude": -8.76212542,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 14402,
@@ -13019,10 +9574,7 @@
},
"latitude": 42.210791203,
"longitude": -8.761940347,
- "lines": [
- "4A",
- "12A"
- ]
+ "lines": ["4A", "12A"]
},
{
"stopId": 14403,
@@ -13031,9 +9583,7 @@
},
"latitude": 42.25049654,
"longitude": -8.698390035,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14404,
@@ -13042,9 +9592,7 @@
},
"latitude": 42.251785642,
"longitude": -8.696871994,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14406,
@@ -13053,9 +9601,7 @@
},
"latitude": 42.249462772,
"longitude": -8.699772952,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14408,
@@ -13064,9 +9610,7 @@
},
"latitude": 42.248885006,
"longitude": -8.698128758,
- "lines": [
- "17"
- ]
+ "lines": ["17"]
},
{
"stopId": 14409,
@@ -13075,10 +9619,7 @@
},
"latitude": 42.204188441,
"longitude": -8.670257126,
- "lines": [
- "15B",
- "15C"
- ]
+ "lines": ["15B", "15C"]
},
{
"stopId": 14410,
@@ -13087,9 +9628,7 @@
},
"latitude": 42.204639457,
"longitude": -8.670329545,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 14411,
@@ -13098,9 +9637,7 @@
},
"latitude": 42.205174543,
"longitude": -8.698209134,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14412,
@@ -13109,9 +9646,7 @@
},
"latitude": 42.20497586,
"longitude": -8.697957006,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 14413,
@@ -13120,9 +9655,7 @@
},
"latitude": 42.173955568,
"longitude": -8.703050076,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 14414,
@@ -13131,9 +9664,7 @@
},
"latitude": 42.221587211,
"longitude": -8.665078444,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14415,
@@ -13142,9 +9673,7 @@
},
"latitude": 42.221557416,
"longitude": -8.665381534,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 14416,
@@ -13153,9 +9682,7 @@
},
"latitude": 42.225468623,
"longitude": -8.691491081,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 14419,
@@ -13164,9 +9691,7 @@
},
"latitude": 42.201138734,
"longitude": -8.688585073,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 14420,
@@ -13175,9 +9700,7 @@
},
"latitude": 42.201419233,
"longitude": -8.688526069,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 14421,
@@ -13186,9 +9709,7 @@
},
"latitude": 42.186683264,
"longitude": -8.669320703,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 14422,
@@ -13197,9 +9718,7 @@
},
"latitude": 42.18695315,
"longitude": -8.669514066,
- "lines": [
- "15C"
- ]
+ "lines": ["15C"]
},
{
"stopId": 14425,
@@ -13208,9 +9727,7 @@
},
"latitude": 42.232253792,
"longitude": -8.707208575,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 14475,
@@ -13219,9 +9736,7 @@
},
"latitude": 42.222992354,
"longitude": -8.728300382,
- "lines": [
- "C1"
- ]
+ "lines": ["C1"]
},
{
"stopId": 14890,
@@ -13230,15 +9745,7 @@
},
"latitude": 42.207545331,
"longitude": -8.758718406,
- "lines": [
- "5B",
- "13",
- "N4",
- "U1",
- "H",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["5B", "13", "N4", "U1", "H", "PSA 1", "PSA 4"]
},
{
"stopId": 14892,
@@ -13247,15 +9754,7 @@
},
"latitude": 42.224929414,
"longitude": -8.735414067,
- "lines": [
- "C1",
- "C3d",
- "A",
- "9B",
- "15C",
- "N4",
- "H1"
- ]
+ "lines": ["C1", "C3d", "A", "9B", "15C", "N4", "H1"]
},
{
"stopId": 14893,
@@ -13264,10 +9763,7 @@
},
"latitude": 42.243157956,
"longitude": -8.666962176,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 14894,
@@ -13276,13 +9772,7 @@
},
"latitude": 42.211736934,
"longitude": -8.733337505,
- "lines": [
- "7",
- "12B",
- "17",
- "H1",
- "VTS"
- ]
+ "lines": ["7", "12B", "17", "H1", "VTS"]
},
{
"stopId": 14895,
@@ -13291,9 +9781,7 @@
},
"latitude": 42.241392275,
"longitude": -8.681203235,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14896,
@@ -13302,9 +9790,7 @@
},
"latitude": 42.241385532,
"longitude": -8.681400937,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 14897,
@@ -13313,9 +9799,7 @@
},
"latitude": 42.213239161,
"longitude": -8.67854147,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 14898,
@@ -13324,9 +9808,7 @@
},
"latitude": 42.213239161,
"longitude": -8.678369808,
- "lines": [
- "31"
- ]
+ "lines": ["31"]
},
{
"stopId": 14899,
@@ -13335,11 +9817,7 @@
},
"latitude": 42.225485719,
"longitude": -8.730501434,
- "lines": [
- "5A",
- "5B",
- "12A"
- ]
+ "lines": ["5A", "5B", "12A"]
},
{
"stopId": 14900,
@@ -13348,10 +9826,7 @@
},
"latitude": 42.217196117,
"longitude": -8.743726669,
- "lines": [
- "23",
- "N4"
- ]
+ "lines": ["23", "N4"]
},
{
"stopId": 14901,
@@ -13360,13 +9835,7 @@
},
"latitude": 42.220211003,
"longitude": -8.734183023,
- "lines": [
- "C3i",
- "10",
- "11",
- "15A",
- "U1"
- ]
+ "lines": ["C3i", "10", "11", "15A", "U1"]
},
{
"stopId": 14903,
@@ -13375,9 +9844,7 @@
},
"latitude": 42.23174719,
"longitude": -8.731081308,
- "lines": [
- "VTS"
- ]
+ "lines": ["VTS"]
},
{
"stopId": 14905,
@@ -13386,9 +9853,7 @@
},
"latitude": 42.249981353,
"longitude": -8.667186504,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 14906,
@@ -13397,10 +9862,7 @@
},
"latitude": 42.232479787,
"longitude": -8.654890792,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 14907,
@@ -13409,10 +9871,7 @@
},
"latitude": 42.233655479,
"longitude": -8.653300242,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 14908,
@@ -13421,9 +9880,7 @@
},
"latitude": 42.233829075,
"longitude": -8.653458259,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 14909,
@@ -13432,9 +9889,7 @@
},
"latitude": 42.232663198,
"longitude": -8.655097059,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 14910,
@@ -13443,9 +9898,7 @@
},
"latitude": 42.21025095,
"longitude": -8.704036986,
- "lines": [
- "H3"
- ]
+ "lines": ["H3"]
},
{
"stopId": 14911,
@@ -13454,9 +9907,7 @@
},
"latitude": 42.208830737,
"longitude": -8.706971174,
- "lines": [
- "H3"
- ]
+ "lines": ["H3"]
},
{
"stopId": 15001,
@@ -13465,9 +9916,7 @@
},
"latitude": 42.176036704,
"longitude": -8.709480986,
- "lines": [
- "PTL"
- ]
+ "lines": ["PTL"]
},
{
"stopId": 15002,
@@ -13476,9 +9925,7 @@
},
"latitude": 42.177194637,
"longitude": -8.707850807,
- "lines": [
- "PTL"
- ]
+ "lines": ["PTL"]
},
{
"stopId": 15003,
@@ -13487,9 +9934,7 @@
},
"latitude": 42.178231278,
"longitude": -8.706474418,
- "lines": [
- "PTL"
- ]
+ "lines": ["PTL"]
},
{
"stopId": 15004,
@@ -13498,9 +9943,7 @@
},
"latitude": 42.176503017,
"longitude": -8.710007303,
- "lines": [
- "PTL"
- ]
+ "lines": ["PTL"]
},
{
"stopId": 20009,
@@ -13509,9 +9952,7 @@
},
"latitude": 42.154843231,
"longitude": -8.67357438,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20010,
@@ -13520,11 +9961,7 @@
},
"latitude": 42.212824845,
"longitude": -8.737161077,
- "lines": [
- "16",
- "23",
- "H"
- ]
+ "lines": ["16", "23", "H"]
},
{
"stopId": 20011,
@@ -13533,11 +9970,7 @@
},
"latitude": 42.213089061,
"longitude": -8.733392573,
- "lines": [
- "16",
- "23",
- "H"
- ]
+ "lines": ["16", "23", "H"]
},
{
"stopId": 20012,
@@ -13546,13 +9979,7 @@
},
"latitude": 42.215888032,
"longitude": -8.732331627,
- "lines": [
- "A",
- "16",
- "23",
- "27",
- "H2"
- ]
+ "lines": ["A", "16", "23", "27", "H2"]
},
{
"stopId": 20013,
@@ -13561,15 +9988,7 @@
},
"latitude": 42.215905917,
"longitude": -8.732471102,
- "lines": [
- "7",
- "12B",
- "17",
- "27",
- "H2",
- "VTS",
- "PTL"
- ]
+ "lines": ["7", "12B", "17", "27", "H2", "VTS", "PTL"]
},
{
"stopId": 20018,
@@ -13578,9 +9997,7 @@
},
"latitude": 42.151451604,
"longitude": -8.673803367,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20019,
@@ -13589,9 +10006,7 @@
},
"latitude": 42.149222193,
"longitude": -8.679363987,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20020,
@@ -13600,9 +10015,7 @@
},
"latitude": 42.151606055,
"longitude": -8.679299082,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20021,
@@ -13611,9 +10024,7 @@
},
"latitude": 42.152770176,
"longitude": -8.686251828,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20022,
@@ -13622,9 +10033,7 @@
},
"latitude": 42.234622237,
"longitude": -8.707758443,
- "lines": [
- "24"
- ]
+ "lines": ["24"]
},
{
"stopId": 20023,
@@ -13633,9 +10042,7 @@
},
"latitude": 42.234062973,
"longitude": -8.712195759,
- "lines": [
- "24"
- ]
+ "lines": ["24"]
},
{
"stopId": 20024,
@@ -13644,11 +10051,7 @@
},
"latitude": 42.207634066,
"longitude": -8.758920861,
- "lines": [
- "5B",
- "13",
- "N4"
- ]
+ "lines": ["5B", "13", "N4"]
},
{
"stopId": 20025,
@@ -13657,11 +10060,7 @@
},
"latitude": 42.206553268,
"longitude": -8.760122491,
- "lines": [
- "5B",
- "13",
- "N4"
- ]
+ "lines": ["5B", "13", "N4"]
},
{
"stopId": 20026,
@@ -13670,15 +10069,7 @@
},
"latitude": 42.206488366,
"longitude": -8.759906624,
- "lines": [
- "5B",
- "13",
- "N4",
- "U1",
- "H",
- "PSA 1",
- "PSA 4"
- ]
+ "lines": ["5B", "13", "N4", "U1", "H", "PSA 1", "PSA 4"]
},
{
"stopId": 20027,
@@ -13708,10 +10099,7 @@
},
"latitude": 42.245921506,
"longitude": -8.673014474,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 20030,
@@ -13720,10 +10108,7 @@
},
"latitude": 42.247859379,
"longitude": -8.674363625,
- "lines": [
- "9B",
- "28"
- ]
+ "lines": ["9B", "28"]
},
{
"stopId": 20041,
@@ -13732,10 +10117,7 @@
},
"latitude": 42.233622103,
"longitude": -8.689209566,
- "lines": [
- "27",
- "28"
- ]
+ "lines": ["27", "28"]
},
{
"stopId": 20042,
@@ -13744,9 +10126,7 @@
},
"latitude": 42.233723398,
"longitude": -8.689094231,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 20043,
@@ -13755,9 +10135,7 @@
},
"latitude": 42.236036786,
"longitude": -8.686656768,
- "lines": [
- "28"
- ]
+ "lines": ["28"]
},
{
"stopId": 20044,
@@ -13766,10 +10144,7 @@
},
"latitude": 42.215220874,
"longitude": -8.742680967,
- "lines": [
- "23",
- "N4"
- ]
+ "lines": ["23", "N4"]
},
{
"stopId": 20045,
@@ -13778,9 +10153,7 @@
},
"latitude": 42.200532989,
"longitude": -8.674075447,
- "lines": [
- "15B"
- ]
+ "lines": ["15B"]
},
{
"stopId": 20046,
@@ -13789,9 +10162,7 @@
},
"latitude": 42.201968444,
"longitude": -8.67477879,
- "lines": [
- "15B"
- ]
+ "lines": ["15B"]
},
{
"stopId": 20047,
@@ -13800,9 +10171,7 @@
},
"latitude": 42.204330306,
"longitude": -8.674670483,
- "lines": [
- "15B"
- ]
+ "lines": ["15B"]
},
{
"stopId": 20048,
@@ -13811,10 +10180,7 @@
},
"latitude": 42.182684406,
"longitude": -8.802402364,
- "lines": [
- "11",
- "12A"
- ]
+ "lines": ["11", "12A"]
},
{
"stopId": 20049,
@@ -13823,9 +10189,7 @@
},
"latitude": 42.18238342,
"longitude": -8.802126069,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 20050,
@@ -13834,9 +10198,7 @@
},
"latitude": 42.225550059,
"longitude": -8.686684563,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 20051,
@@ -13845,9 +10207,7 @@
},
"latitude": 42.225652904,
"longitude": -8.686624017,
- "lines": [
- "25"
- ]
+ "lines": ["25"]
},
{
"stopId": 20052,
@@ -13856,10 +10216,7 @@
},
"latitude": 42.232748414,
"longitude": -8.702539655,
- "lines": [
- "4A",
- "H3"
- ]
+ "lines": ["4A", "H3"]
},
{
"stopId": 20053,
@@ -13868,10 +10225,7 @@
},
"latitude": 42.248962858,
"longitude": -8.688272303,
- "lines": [
- "C3i",
- "10"
- ]
+ "lines": ["C3i", "10"]
},
{
"stopId": 20054,
@@ -13880,10 +10234,7 @@
},
"latitude": 42.248897377,
"longitude": -8.689150714,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 20057,
@@ -13892,12 +10243,7 @@
},
"latitude": 42.238843911,
"longitude": -8.713008504,
- "lines": [
- "A",
- "5B",
- "16",
- "24"
- ]
+ "lines": ["A", "5B", "16", "24"]
},
{
"stopId": 20058,
@@ -13906,10 +10252,7 @@
},
"latitude": 42.238435471,
"longitude": -8.714413687,
- "lines": [
- "5B",
- "16"
- ]
+ "lines": ["5B", "16"]
},
{
"stopId": 20059,
@@ -13918,11 +10261,7 @@
},
"latitude": 42.222745522,
"longitude": -8.677932515,
- "lines": [
- "25",
- "31",
- "H3"
- ]
+ "lines": ["25", "31", "H3"]
},
{
"stopId": 20060,
@@ -13931,11 +10270,7 @@
},
"latitude": 42.22282586,
"longitude": -8.678077606,
- "lines": [
- "25",
- "31",
- "H3"
- ]
+ "lines": ["25", "31", "H3"]
},
{
"stopId": 20061,
@@ -13944,10 +10279,7 @@
},
"latitude": 42.217568173,
"longitude": -8.744018511,
- "lines": [
- "23",
- "N4"
- ]
+ "lines": ["23", "N4"]
},
{
"stopId": 20062,
@@ -13956,10 +10288,7 @@
},
"latitude": 42.236143706,
"longitude": -8.73180718,
- "lines": [
- "10",
- "15B"
- ]
+ "lines": ["10", "15B"]
},
{
"stopId": 20071,
@@ -13968,9 +10297,7 @@
},
"latitude": 42.205511653,
"longitude": -8.672824803,
- "lines": [
- "15B"
- ]
+ "lines": ["15B"]
},
{
"stopId": 20072,
@@ -13979,9 +10306,7 @@
},
"latitude": 42.196643694,
"longitude": -8.671663218,
- "lines": [
- "15B"
- ]
+ "lines": ["15B"]
},
{
"stopId": 20075,
@@ -13990,18 +10315,7 @@
},
"latitude": 42.218011215,
"longitude": -8.745369728,
- "lines": [
- "C3i",
- "4A",
- "4C",
- "10",
- "11",
- "12A",
- "15A",
- "N1",
- "N4",
- "U1"
- ]
+ "lines": ["C3i", "4A", "4C", "10", "11", "12A", "15A", "N1", "N4", "U1"]
},
{
"stopId": 20076,
@@ -14010,17 +10324,7 @@
},
"latitude": 42.21901679,
"longitude": -8.739919147,
- "lines": [
- "C3i",
- "4A",
- "4C",
- "10",
- "11",
- "12A",
- "15A",
- "N1",
- "U1"
- ]
+ "lines": ["C3i", "4A", "4C", "10", "11", "12A", "15A", "N1", "U1"]
},
{
"stopId": 20077,
@@ -14049,15 +10353,7 @@
},
"latitude": 42.233341329,
"longitude": -8.728967219,
- "lines": [
- "4A",
- "4C",
- "11",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "11", "12B", "17", "27", "N1"]
},
{
"stopId": 20079,
@@ -14066,17 +10362,7 @@
},
"latitude": 42.23341294,
"longitude": -8.729045156,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12A",
- "12B",
- "17",
- "27",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12A", "12B", "17", "27", "PSA 4"]
},
{
"stopId": 20080,
@@ -14085,9 +10371,7 @@
},
"latitude": 42.221674556,
"longitude": -8.660937347,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 20081,
@@ -14096,9 +10380,7 @@
},
"latitude": 42.151852858,
"longitude": -8.684956786,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20082,
@@ -14107,9 +10389,7 @@
},
"latitude": 42.221758032,
"longitude": -8.661135597,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 20083,
@@ -14118,9 +10398,7 @@
},
"latitude": 42.188074669,
"longitude": -8.701928367,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20084,
@@ -14129,9 +10407,7 @@
},
"latitude": 42.18711079,
"longitude": -8.699519743,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20085,
@@ -14140,9 +10416,7 @@
},
"latitude": 42.185852445,
"longitude": -8.696410892,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20086,
@@ -14151,9 +10425,7 @@
},
"latitude": 42.190645281,
"longitude": -8.696150583,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20087,
@@ -14162,9 +10434,7 @@
},
"latitude": 42.194639373,
"longitude": -8.696795357,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20089,
@@ -14173,9 +10443,7 @@
},
"latitude": 42.213044566,
"longitude": -8.751396835,
- "lines": [
- "16"
- ]
+ "lines": ["16"]
},
{
"stopId": 20091,
@@ -14184,12 +10452,7 @@
},
"latitude": 42.238164803,
"longitude": -8.711212761,
- "lines": [
- "A",
- "5B",
- "16",
- "24"
- ]
+ "lines": ["A", "5B", "16", "24"]
},
{
"stopId": 20094,
@@ -14198,9 +10461,7 @@
},
"latitude": 42.22518736,
"longitude": -8.717399288,
- "lines": [
- "18A"
- ]
+ "lines": ["18A"]
},
{
"stopId": 20095,
@@ -14209,12 +10470,7 @@
},
"latitude": 42.219212419,
"longitude": -8.685836356,
- "lines": [
- "12A",
- "12B",
- "13",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "H3"]
},
{
"stopId": 20096,
@@ -14223,13 +10479,7 @@
},
"latitude": 42.219128991,
"longitude": -8.685753208,
- "lines": [
- "12A",
- "12B",
- "13",
- "U2",
- "H3"
- ]
+ "lines": ["12A", "12B", "13", "U2", "H3"]
},
{
"stopId": 20099,
@@ -14238,12 +10488,7 @@
},
"latitude": 42.222390674,
"longitude": -8.752507356,
- "lines": [
- "C3i",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["C3i", "15B", "15C", "N1"]
},
{
"stopId": 20100,
@@ -14252,12 +10497,7 @@
},
"latitude": 42.223195763,
"longitude": -8.749650702,
- "lines": [
- "C3i",
- "15B",
- "15C",
- "N1"
- ]
+ "lines": ["C3i", "15B", "15C", "N1"]
},
{
"stopId": 20102,
@@ -14266,16 +10506,7 @@
},
"latitude": 42.191034002,
"longitude": -8.714303116,
- "lines": [
- "6",
- "12B",
- "18H",
- "27",
- "H1",
- "H2",
- "H3",
- "H"
- ]
+ "lines": ["6", "12B", "18H", "27", "H1", "H2", "H3", "H"]
},
{
"stopId": 20103,
@@ -14284,13 +10515,7 @@
},
"latitude": 42.218946899,
"longitude": -8.733670293,
- "lines": [
- "7",
- "12B",
- "17",
- "N4",
- "H1"
- ]
+ "lines": ["7", "12B", "17", "N4", "H1"]
},
{
"stopId": 20104,
@@ -14299,9 +10524,7 @@
},
"latitude": 42.220938435,
"longitude": -8.709621883,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 20105,
@@ -14310,9 +10533,7 @@
},
"latitude": 42.221232035,
"longitude": -8.709808647,
- "lines": [
- "14"
- ]
+ "lines": ["14"]
},
{
"stopId": 20107,
@@ -14321,10 +10542,7 @@
},
"latitude": 42.188244696,
"longitude": -8.703164368,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 20110,
@@ -14333,10 +10551,7 @@
},
"latitude": 42.213797254,
"longitude": -8.741472696,
- "lines": [
- "23",
- "N4"
- ]
+ "lines": ["23", "N4"]
},
{
"stopId": 20111,
@@ -14345,17 +10560,7 @@
},
"latitude": 42.187585838,
"longitude": -8.716278919,
- "lines": [
- "A",
- "6",
- "12B",
- "18H",
- "27",
- "H1",
- "H2",
- "H3",
- "H"
- ]
+ "lines": ["A", "6", "12B", "18H", "27", "H1", "H2", "H3", "H"]
},
{
"stopId": 20112,
@@ -14364,14 +10569,7 @@
},
"latitude": 42.188578188,
"longitude": -8.713087125,
- "lines": [
- "6",
- "12B",
- "18H",
- "H1",
- "H3",
- "H"
- ]
+ "lines": ["6", "12B", "18H", "H1", "H3", "H"]
},
{
"stopId": 20113,
@@ -14380,13 +10578,7 @@
},
"latitude": 42.220876566,
"longitude": -8.733367644,
- "lines": [
- "12B",
- "N4",
- "H1",
- "H2",
- "PTL"
- ]
+ "lines": ["12B", "N4", "H1", "H2", "PTL"]
},
{
"stopId": 20114,
@@ -14395,9 +10587,7 @@
},
"latitude": 42.18846205,
"longitude": -8.703352711,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 20115,
@@ -14406,9 +10596,7 @@
},
"latitude": 42.190100441,
"longitude": -8.705453204,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 20116,
@@ -14417,10 +10605,7 @@
},
"latitude": 42.192037327,
"longitude": -8.70573732,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 20117,
@@ -14429,10 +10614,7 @@
},
"latitude": 42.191616209,
"longitude": -8.706277831,
- "lines": [
- "6",
- "27"
- ]
+ "lines": ["6", "27"]
},
{
"stopId": 20118,
@@ -14441,9 +10623,7 @@
},
"latitude": 42.228358488,
"longitude": -8.719490904,
- "lines": [
- "H2"
- ]
+ "lines": ["H2"]
},
{
"stopId": 20119,
@@ -14452,11 +10632,7 @@
},
"latitude": 42.190930878,
"longitude": -8.71409354,
- "lines": [
- "6",
- "12B",
- "H3"
- ]
+ "lines": ["6", "12B", "H3"]
},
{
"stopId": 20124,
@@ -14465,15 +10641,7 @@
},
"latitude": 42.208989468,
"longitude": -8.729330619,
- "lines": [
- "A",
- "12B",
- "U1",
- "H1",
- "H2",
- "H",
- "PTL"
- ]
+ "lines": ["A", "12B", "U1", "H1", "H2", "H", "PTL"]
},
{
"stopId": 20125,
@@ -14482,11 +10650,7 @@
},
"latitude": 42.209126911,
"longitude": -8.729344197,
- "lines": [
- "12B",
- "H1",
- "H2"
- ]
+ "lines": ["12B", "H1", "H2"]
},
{
"stopId": 20126,
@@ -14495,12 +10659,7 @@
},
"latitude": 42.190252452,
"longitude": -8.717998617,
- "lines": [
- "12B",
- "18H",
- "H1",
- "H2"
- ]
+ "lines": ["12B", "18H", "H1", "H2"]
},
{
"stopId": 20127,
@@ -14509,17 +10668,7 @@
},
"latitude": 42.19007538,
"longitude": -8.718125045,
- "lines": [
- "A",
- "12B",
- "18H",
- "27",
- "U1",
- "H1",
- "H2",
- "H",
- "PTL"
- ]
+ "lines": ["A", "12B", "18H", "27", "U1", "H1", "H2", "H", "PTL"]
},
{
"stopId": 20130,
@@ -14528,9 +10677,7 @@
},
"latitude": 42.152788309,
"longitude": -8.681902684,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20132,
@@ -14539,9 +10686,7 @@
},
"latitude": 42.260473187,
"longitude": -8.67881466,
- "lines": [
- "C3i"
- ]
+ "lines": ["C3i"]
},
{
"stopId": 20136,
@@ -14550,14 +10695,7 @@
},
"latitude": 42.225764699,
"longitude": -8.704499864,
- "lines": [
- "4C",
- "23",
- "31",
- "N4",
- "PSA 4",
- "VTS"
- ]
+ "lines": ["4C", "23", "31", "N4", "PSA 4", "VTS"]
},
{
"stopId": 20137,
@@ -14566,9 +10704,7 @@
},
"latitude": 42.246563041,
"longitude": -8.669395817,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 20139,
@@ -14577,9 +10713,7 @@
},
"latitude": 42.199144892,
"longitude": -8.758506717,
- "lines": [
- "29"
- ]
+ "lines": ["29"]
},
{
"stopId": 20141,
@@ -14588,11 +10722,7 @@
},
"latitude": 42.21057897,
"longitude": -8.671171189,
- "lines": [
- "12B",
- "15B",
- "15C"
- ]
+ "lines": ["12B", "15B", "15C"]
},
{
"stopId": 20142,
@@ -14601,9 +10731,7 @@
},
"latitude": 42.200738188,
"longitude": -8.714882876,
- "lines": [
- "18B"
- ]
+ "lines": ["18B"]
},
{
"stopId": 20143,
@@ -14612,9 +10740,7 @@
},
"latitude": 42.215448094,
"longitude": -8.756474306,
- "lines": [
- "15A"
- ]
+ "lines": ["15A"]
},
{
"stopId": 20154,
@@ -14623,9 +10749,7 @@
},
"latitude": 42.192089689,
"longitude": -8.709245389,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20155,
@@ -14634,9 +10758,7 @@
},
"latitude": 42.19217626,
"longitude": -8.708899009,
- "lines": [
- "27"
- ]
+ "lines": ["27"]
},
{
"stopId": 20156,
@@ -14645,10 +10767,7 @@
},
"latitude": 42.169627618,
"longitude": -8.67984145,
- "lines": [
- "A",
- "15C"
- ]
+ "lines": ["A", "15C"]
},
{
"stopId": 20157,
@@ -14657,9 +10776,7 @@
},
"latitude": 42.185615419,
"longitude": -8.702424678,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 20158,
@@ -14668,9 +10785,7 @@
},
"latitude": 42.185593055,
"longitude": -8.702377974,
- "lines": [
- "6"
- ]
+ "lines": ["6"]
},
{
"stopId": 20159,
@@ -14679,9 +10794,7 @@
},
"latitude": 42.160348044,
"longitude": -8.718706355,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20160,
@@ -14690,9 +10803,7 @@
},
"latitude": 42.160066796,
"longitude": -8.718938239,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20166,
@@ -14701,10 +10812,7 @@
},
"latitude": 42.202134841,
"longitude": -8.70572793,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 20167,
@@ -14713,10 +10821,7 @@
},
"latitude": 42.202095058,
"longitude": -8.705814233,
- "lines": [
- "18A",
- "18B"
- ]
+ "lines": ["18A", "18B"]
},
{
"stopId": 20168,
@@ -14725,9 +10830,7 @@
},
"latitude": 42.173596087,
"longitude": -8.730918928,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20169,
@@ -14736,9 +10839,7 @@
},
"latitude": 42.173616782,
"longitude": -8.730810863,
- "lines": [
- "7"
- ]
+ "lines": ["7"]
},
{
"stopId": 20170,
@@ -14747,11 +10848,7 @@
},
"latitude": 42.224544805,
"longitude": -8.730413561,
- "lines": [
- "5A",
- "5B",
- "12A"
- ]
+ "lines": ["5A", "5B", "12A"]
},
{
"stopId": 20171,
@@ -14760,11 +10857,7 @@
},
"latitude": 42.204380762,
"longitude": -8.726688445,
- "lines": [
- "12B",
- "H1",
- "H2"
- ]
+ "lines": ["12B", "H1", "H2"]
},
{
"stopId": 20172,
@@ -14773,15 +10866,7 @@
},
"latitude": 42.203736336,
"longitude": -8.726617869,
- "lines": [
- "A",
- "12B",
- "U1",
- "H1",
- "H2",
- "H",
- "PTL"
- ]
+ "lines": ["A", "12B", "U1", "H1", "H2", "H", "PTL"]
},
{
"stopId": 20173,
@@ -14790,10 +10875,7 @@
},
"latitude": 42.192504056,
"longitude": -8.721215121,
- "lines": [
- "7",
- "U1"
- ]
+ "lines": ["7", "U1"]
},
{
"stopId": 20174,
@@ -14802,9 +10884,7 @@
},
"latitude": 42.21519917,
"longitude": -8.726793773,
- "lines": [
- "A"
- ]
+ "lines": ["A"]
},
{
"stopId": 20177,
@@ -14813,15 +10893,7 @@
},
"latitude": 42.230767817,
"longitude": -8.715105964,
- "lines": [
- "C3i",
- "6",
- "11",
- "15A",
- "23",
- "25",
- "28"
- ]
+ "lines": ["C3i", "6", "11", "15A", "23", "25", "28"]
},
{
"stopId": 20178,
@@ -14830,9 +10902,7 @@
},
"latitude": 42.172412443,
"longitude": -8.799591567,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 20180,
@@ -14841,9 +10911,7 @@
},
"latitude": 42.229527407,
"longitude": -8.70843784,
- "lines": [
- "H2"
- ]
+ "lines": ["H2"]
},
{
"stopId": 20186,
@@ -14852,9 +10920,7 @@
},
"latitude": 42.23755404,
"longitude": -8.651558138,
- "lines": [
- "9B"
- ]
+ "lines": ["9B"]
},
{
"stopId": 20187,
@@ -14863,10 +10929,7 @@
},
"latitude": 42.237422128,
"longitude": -8.65153195,
- "lines": [
- "9B",
- "27"
- ]
+ "lines": ["9B", "27"]
},
{
"stopId": 20188,
@@ -14875,10 +10938,7 @@
},
"latitude": 42.201670402,
"longitude": -8.708928464,
- "lines": [
- "18B",
- "H3"
- ]
+ "lines": ["18B", "H3"]
},
{
"stopId": 20189,
@@ -14887,10 +10947,7 @@
},
"latitude": 42.201625853,
"longitude": -8.712945043,
- "lines": [
- "18B",
- "H3"
- ]
+ "lines": ["18B", "H3"]
},
{
"stopId": 20190,
@@ -14899,15 +10956,7 @@
},
"latitude": 42.234906013,
"longitude": -8.72662052,
- "lines": [
- "4A",
- "4C",
- "11",
- "12B",
- "17",
- "27",
- "N1"
- ]
+ "lines": ["4A", "4C", "11", "12B", "17", "27", "N1"]
},
{
"stopId": 20191,
@@ -14916,10 +10965,7 @@
},
"latitude": 42.229676205,
"longitude": -8.657383392,
- "lines": [
- "15A",
- "25"
- ]
+ "lines": ["15A", "25"]
},
{
"stopId": 20192,
@@ -14928,16 +10974,7 @@
},
"latitude": 42.237168511,
"longitude": -8.720373767,
- "lines": [
- "4A",
- "4C",
- "5B",
- "7",
- "12B",
- "16",
- "17",
- "PSA 4"
- ]
+ "lines": ["4A", "4C", "5B", "7", "12B", "16", "17", "PSA 4"]
},
{
"stopId": 20193,
@@ -14960,10 +10997,7 @@
"H1",
"VTS"
],
- "amenities": [
- "shelter",
- "display"
- ]
+ "amenities": ["shelter", "display"]
},
{
"stopId": 20194,
@@ -14972,6 +11006,7 @@
},
"latitude": 42.240364985,
"longitude": -8.724530974,
+<<<<<<< HEAD
"lines": [
"C1",
"C3d",
@@ -14986,6 +11021,9 @@
"alert": "error",
"title": "Cerrada por navidad",
"message": "Con motivo de las atracciones navideñas, esta parada queda anulada.\nLa parada más cercana es Cánovas del Castillo, 18 (frente CC A Laxe).\n"
+=======
+ "lines": ["C1", "C3d", "A", "5A", "9B", "10", "15B", "15C", "28", "N4"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 20195,
@@ -15019,9 +11057,7 @@
},
"latitude": 42.175325155,
"longitude": -8.799594139,
- "lines": [
- "12A"
- ]
+ "lines": ["12A"]
},
{
"stopId": 20197,
@@ -15030,10 +11066,7 @@
},
"latitude": 42.23558703,
"longitude": -8.728830897,
- "lines": [
- "5B",
- "12A"
- ]
+ "lines": ["5B", "12A"]
},
{
"stopId": 20198,
@@ -15051,6 +11084,7 @@
"10",
"15B",
"15C",
+<<<<<<< HEAD
"24"
],
"amenities": [
@@ -15060,6 +11094,16 @@
"alert": "error",
"title": "Parada movida a Marqués de Valladares (fronte 19)",
"message": "Con motivo del corte por las atracciones navideñas, las líneas se deben coger en Marqués de Valladares (fronte 19), excepto la línea 9B que arranca en Urzaiz-Príncipe y la 24 que para en Colón 12 (provisional)."
+=======
+ "24",
+ "28",
+ "N4"
+ ],
+ "cancelled": true,
+ "title": "Parada movida a Marqués de Valladares (fronte 19)",
+ "alternateCodes": [20206],
+ "amenities": ["shelter"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 20199,
@@ -15068,9 +11112,7 @@
},
"latitude": 42.228802205,
"longitude": -8.718136653,
- "lines": [
- "H2"
- ]
+ "lines": ["H2"]
},
{
"stopId": 20203,
@@ -15079,15 +11121,7 @@
},
"latitude": 42.230881062,
"longitude": -8.718397577,
- "lines": [
- "7",
- "12B",
- "14",
- "16",
- "18A",
- "18B",
- "18H"
- ]
+ "lines": ["7", "12B", "14", "16", "18A", "18B", "18H"]
},
{
"stopId": 20206,
@@ -15096,6 +11130,7 @@
},
"latitude": 42.238271922,
"longitude": -8.723353532,
+<<<<<<< HEAD
"lines": [
"C1",
"C3d",
@@ -15108,6 +11143,9 @@
"28",
"N4"
]
+=======
+ "lines": ["C3d", "10"]
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 20208,
@@ -15116,6 +11154,7 @@
},
"latitude": 42.23805815883466,
"longitude": -8.72057889828808,
+<<<<<<< HEAD
"lines": [
"C1",
"A",
@@ -15129,6 +11168,10 @@
],
"title": "Parada provisional sin datos",
"message": "Parada provisional donde paran las líneas de Policarpo Sanz 40 *exceptuando 9B*"
+=======
+ "lines": ["C1", "A", "5A", "9B", "15B", "15C", "24", "28", "N4"],
+ "title": "Parada provisional sin datos"
+>>>>>>> 88e0621 (Improve gallery scroll indicators and format code)
},
{
"stopId": 20209,
@@ -15137,9 +11180,7 @@
},
"latitude": 42.211481651,
"longitude": -8.734440746,
- "lines": [
- "H1"
- ]
+ "lines": ["H1"]
},
{
"stopId": 20210,
@@ -15148,10 +11189,7 @@
},
"latitude": 42.19824056,
"longitude": -8.763182189,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 20211,
@@ -15160,10 +11198,7 @@
},
"latitude": 42.198422825,
"longitude": -8.762538026,
- "lines": [
- "11",
- "29"
- ]
+ "lines": ["11", "29"]
},
{
"stopId": 20212,
@@ -15172,9 +11207,7 @@
},
"latitude": 42.188388732,
"longitude": -8.805956864,
- "lines": [
- "10"
- ]
+ "lines": ["10"]
},
{
"stopId": 20215,
@@ -15183,19 +11216,7 @@
},
"latitude": 42.223880296,
"longitude": -8.735520196,
- "lines": [
- "A",
- "5A",
- "5B",
- "10",
- "11",
- "13",
- "N4",
- "U1",
- "H1",
- "H",
- "VTS"
- ]
+ "lines": ["A", "5A", "5B", "10", "11", "13", "N4", "U1", "H1", "H", "VTS"]
},
{
"stopId": 20216,
@@ -15204,9 +11225,7 @@
},
"latitude": 42.179747589,
"longitude": -8.802157388,
- "lines": [
- "11"
- ]
+ "lines": ["11"]
},
{
"stopId": 20217,
@@ -15215,10 +11234,7 @@
},
"latitude": 42.238229421,
"longitude": -8.719950346,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 20218,
@@ -15227,10 +11243,7 @@
},
"latitude": 42.23721395,
"longitude": -8.716444794,
- "lines": [
- "C3d",
- "10"
- ]
+ "lines": ["C3d", "10"]
},
{
"stopId": 20219,
@@ -15239,11 +11252,6 @@
},
"latitude": 42.234830699,
"longitude": -8.695443515,
- "lines": [
- "A",
- "9B",
- "27",
- "28"
- ]
+ "lines": ["A", "9B", "27", "28"]
}
-] \ No newline at end of file
+]
diff --git a/src/frontend/react-router.config.ts b/src/frontend/react-router.config.ts
index ffc98bc..b913b59 100644
--- a/src/frontend/react-router.config.ts
+++ b/src/frontend/react-router.config.ts
@@ -4,5 +4,5 @@ export default {
ssr: false,
future: {
unstable_subResourceIntegrity: true,
- }
+ },
} satisfies Config;